body {
    position: relative;
}

.accordion-btn .arrow {
    transform: rotateX(180deg);
    transition: .3s;
}

.accordion-btn.collapsed .arrow {
    transform: rotateX(0);
    transition: .3s;
}

.tablinks {
    background-color: transparent;
    border: none;
    outline: none;
    font-size: 16px;
    position: relative;
}

.tablinks.active::after {
    content: '';
    display: block;
    position: absolute;
    bottom: -18px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #3b7ddd;
}

.tabcontent {
    display: none;
}

.tabcontent.active {
    display: block;
}


/*LOADER STYLES*/

.loader {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #222E3C;
    position: fixed;
    z-index: 10000;
    width: 100%;
    transition: .2s;
}

.loader.hidden {
    transform: translateY(-100%);
}

@keyframes my_anime {
    from {
        opacity: 0;
    }
    to {
        display: none;
    }

}

.loader-items {
    position: relative;
    margin-left: 92px;
}

.loader-items span {
    position: absolute;
    width: 6px;
    height: 90px;
    margin-top: -45px;
    border-radius: 10px;
    background-color: #60b8ba;
    animation: animate 0.8s infinite;
    animation-direction: alternate-reverse;
}

.loader-items span:nth-child(1) {
    margin-left: 0px;
}

.loader-items span:nth-child(2) {
    margin-left: -14px;
    animation-delay: 0.1s;
}

.loader-items span:nth-child(3) {
    margin-left: -28px;
    animation-delay: 0.2s;
}

.loader-items span:nth-child(4) {
    margin-left: -42px;
    animation-delay: 0.3s;
}

.loader-items span:nth-child(5) {
    margin-left: -56px;
    animation-delay: 0.4s;
}

.loader-items span:nth-child(6) {
    margin-left: -70px;
    animation-delay: 0.5s;
}

.loader-items span:nth-child(7) {
    margin-left: -84px;
    animation-delay: 0.6s;
}

.loader-items span:nth-child(8) {
    margin-left: -98px;
    animation-delay: 0.7s;
}

@keyframes animate {
    0% {
        height: 5px;
        margin-top: 0;
        transform: rotate(40deg);
    }
    100% {
        height: 90px;
        transform: rotate(0deg);
    }
}

.field-label {
    font-weight: normal;
}

.field-helptext {
    font-size: 12px;
}

.field-error {
    font-size: 14px;
    color: red;
}

.field-required {
    font-weight: bold;
}

.field-required:after {
    content: " *";
}


.pulsating-circle {
    position: absolute;
    left: 45%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 10px;
    height: 10px;
}

.pulsating-circle:before {
    content: '';
    position: relative;
    display: block;
    width: 300%;
    height: 300%;
    box-sizing: border-box;
    margin-left: -100%;
    margin-top: -100%;
    border-radius: 45px;
    background-color: #0d7f3a;
    animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.pulsating-circle:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #11b64f;
    border-radius: 15px;
    box-shadow: 0 0 8px rgba(13, 127, 58, 0.3);
    animation: pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.33);
    }
    80%, 100% {
        opacity: 0;
    }
}

@keyframes pulse-dot {
    0% {
        transform: scale(0.8);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(0.8);
    }
}

.position-relative > strong > .offline-circle {

    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: #FF0000FF;
}

.position-relative > .offline-circle {
    position: absolute;
    left: 20%;
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: #FF0000FF;
}

.tracking-user__image {
    display: inline-block;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 32px;
    height: 32px;
    border-radius: 100%;
}

.sidebar {
    z-index: 1000;
}

.total-info {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
    text-align: center;
    background-color: #3b7ddd;
    padding: 10px;
    color: #ffffff;
    width: 100%;
    text-transform: uppercase;
}

.selectize-input input {
    width: 100% !important;
}

.selectize-input {
    border-radius: .3rem !important;
}

.bg-success-light {
    background-color: rgba(28, 187, 140, .15) !important;
    color: #1cbb8c !important;
}

.bg-danger-light {
    background-color: rgba(220, 53, 69, .15) !important;
    color: #dc3545 !important;
}

.bg-warning-light {
    background-color: rgba(252, 185, 44, .15) !important;
    color: #fcb92c !important;
}


.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999999;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.close {
    cursor: pointer;
    float: right;
    font-size: 20px;
}