.select2-container.form-control{
    height: fit-content;
}

.app-alert {
    z-index: 9999 !important;
}

.box-style-tabs .nav-tabs {
    display: flex;
    justify-content: center;
    position: absolute;
    width: 100%;
    left: 0;
    top:  0;
    background: transparent;
    border: none;
}
.box-style-tabs .nav-tabs .nav-link {
    background-color: #fff;
    border: 1px solid #ddf;
    border-radius: 0;
    margin: 14px 2px;
    padding: 10px 17px;
    font-size: 10px;
}
.box-style-tabs .nav-tabs .nav-link.active {
    background-color: #42c4f9 !important;
    color: #fff !important;
    border: 1px solid #42c4f9 !important;
}
.box-style-tabs .modal-body {
    background-color: #f6f8f7;
}
.box-style-tabs .tab-content {
    background-color: #fff;
    padding: 50px 30px 20px;
    min-height: 20vh;
}

.line-loader {
    width: 100%;
    height: 4.8px;
    display: inline-block;
    position: relative;
    background: rgba(255, 255, 255, 0.15);
    overflow: hidden;
}
.line-loader::after {
    content: '';
    width: 96px;
    height: 4.8px;
    background: #6690f4;
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    animation: hitZak 1s linear infinite alternate;
}

@keyframes hitZak {
    0% {
        left: 0;
        transform: translateX(-1%);
    }
    100% {
        left: 100%;
        transform: translateX(-99%);
    }
}