body::-webkit-scrollbar {
    width: 8px;               /* width of the entire scrollbar */
}
  
body::-webkit-scrollbar-track {
    background: #f5f5f5;        /* color of the tracking area */
}

.bootstrap-select .dropdown-menu{
    max-width: 100%!important;
 }
  
body::-webkit-scrollbar-thumb {
    background-color: #0e2238;    /* color of the scroll thumb */
    border-radius: 10px;       /* roundness of the scroll thumb */
    border: 1px solid #f5f5f5;  /* creates padding around scroll thumb */
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
    }
input[type=number] { -moz-appearance:textfield; }

::after,
::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.headerRegister, .header-primary{
	background: #007bff;
	color: #FFF;
}
.headerUpdate{
    background: #009688;
	color: #FFF;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}


body {
    font-family: 'Poppins', sans-serif;
}

.wrapper {
    display: flex;
}

.main {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    transition: all 0.35s ease-in-out;
    background-color: #fff;
    min-width: 0;
}

#sidebar {
    width: 70px;
    min-width: 70px;
    z-index: 1000;
    transition: all .25s ease-in-out;
    background-color: #0e2238;
    display: flex;
    flex-direction: column;
}

#sidebar.expand {
    width: 260px;
    min-width: 260px;
}

#toggle-btn {
    background-color: transparent;
    cursor: pointer;
    border: 0;
    margin-left: 5px;
    padding: 1rem 1.4rem;
}

#toggle-btn i {
    font-size: 1.5rem;
    color: #FFF;
}

.sidebar-logo {
    margin: auto 0;
}

.sidebar-logo a {
    color: #FFF;
    font-size: 1.15rem;
    font-weight: 600;
}

#sidebar:not(.expand) .sidebar-logo,
#sidebar:not(.expand) a.sidebar-link span {
    display: none;
}

#sidebar.expand .sidebar-logo,
#sidebar.expand a.sidebar-link span {
    animation: fadeIn .25s ease;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.sidebar-nav {
    padding: 2rem 0;
    flex: 1 1 auto;
}

a.sidebar-link {
    padding: .825rem 1.625rem;
    color: #FFF;
    display: block;
    font-size: 0.9rem;
    white-space: nowrap;
    border-left: 3px solid transparent;
}

.sidebar-link i,
.dropdown-item i {
    font-size: 1.3rem;
    margin-right: .70rem;
}

a.sidebar-link:hover {
    background-color: rgba(255, 255, 255, .075);
    border-left: 3px solid #3b7ddd;
}

.sidebar-item {
    position: relative;
}

#sidebar:not(.expand) .sidebar-item .sidebar-dropdown {
    position: absolute;
    top: 0;
    left: 70px;
    background-color: #0e2238;
    padding: 0;
    min-width: 15rem;
    display: none;
}

#sidebar:not(.expand) .sidebar-item:hover .has-dropdown+.sidebar-dropdown {
    display: block;
    max-height: 15em;
    width: 100%;
    opacity: 1;
}

#sidebar.expand .sidebar-link[data-bs-toggle="collapse"]::after {
    border: solid;
    border-width: 0 .075rem .075rem 0;
    content: "";
    display: inline-block;
    padding: 2px;
    position: absolute;
    right: 1.5rem;
    top: 1.4rem;
    transform: rotate(-135deg);
    transition: all .2s ease-out;
}

#sidebar.expand .sidebar-link[data-bs-toggle="collapse"].collapsed::after {
    transform: rotate(45deg);
    transition: all .2s ease-out;
}

.navbar {
    background-color: #f5f5f5;
    box-shadow: 0 0 2rem 0 rgba(33, 37, 41, .1);
}

.navbar-expand .navbar-collapse {
    min-width: 200px;
}

.avatar {
    height: 40px;
    width: 40px;
}

.card {
    background-color: #f5f5f5;
    transition: .4s;
    cursor: pointer;
    color: #000;
    margin-bottom: 1rem;
}

.card:hover {
    background-color: #293b5f;
    color: #fff;
    transform: translateY(-10.5px);
}

.text-success {
    background-color: #71c664;
    padding: 0.25rem 0.35rem;
    font-size: 0.715rem;
    color: #fff  !important;
    border-radius: 5px;
}

.text-danger {
    background-color: #8b1505;
    padding: 0.25rem 0.35rem;
    font-size: 0.715rem;
    color: #fff  !important;
    border-radius: 5px;
}

tr.highlight th {
    background-color: #293b5f;
    color: #fff;
    text-align: center;
    
}

tbody {
    font-size: 0.85rem;
}

.content {
    flex: 1 1 auto;
}

footer {
    background-color: #f5f5f5;
    width: 100%;
    padding: 1rem .875rem;
    left: 70px;
    bottom: 0;
}

@media (min-width: 768px) {
    .navbar form {
        max-width: 320px;
    }

    .input-group-navbar .form-control:focus {
        outline: none;
        box-shadow: 0 0 0 0 rgba(255, 255, 255);
        border: none;
    }

    .input-group-navbar .form-control {
        color: #3e4455;
    }

    .form-control::placeholder {
        background-color: #fff;
    }

    .input-group-navbar .btn {
        background-color: #727cf5;
        color: #fff;
        font-family: 'Poppins'm sans-serif;
        cursor: pointer;
        z-index: 10000;
    }

    .navbar-expand .navbar-nav .dropdown-menu{
        box-shadow: 0 .1rem .2rem rgba(0, 0, 0, .05);
    }
}

#divLoading{   
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    display: none;
}

.loading{
    width: 120px;
    height: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    margin: 0 auto; 
}

.text-loading{ 
    padding-top:20px;
    color: #8b1505;
    font-weight: bold;
}
  
.loading span{
    font-size: 20px;
    text-transform: uppercase;
}
  
.ball{
    width: 30px;
    height: 30px;
    background-image: url("../img/agency/900502004.png");
    animation: salto .5s alternate infinite;
    border-radius: 50%  
}
  
.ball:nth-child(2) {
    animation-delay: .18s;
}
  
.ball:nth-child(3) {
    animation-delay: .37s;
}
  
@keyframes salto {
    from {
        transform: scaleX(1.25);
    }
    to{
        transform: 
        translateY(-30px) scaleX(1);
    }
}