/*custom css*/
.area {
    background: #1e7dc7;
    background: linear-gradient(to left, #1e76bb, #2092EC);
    width: 100%;
    height: 100vh;
}

.circles{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin:0;
}

.circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 25s linear infinite;
    bottom: -150px;

}

.circles li:nth-child(1){
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.circles li:nth-child(2){
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6){
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7){
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10){
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}

@keyframes animate {
    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}

.login-form {
    background: #fff;
    position: absolute;
    top: 10%;
    left: 0;
    right: 0;
    max-width: 380px;
    margin: auto;
    width: 100%;
    border-radius: 3px;
}

.login-title {
    background: #fff;
    text-align: center;
    font-size: 25px;
    color: #333;
    font-weight: 800;
    padding: 10px;
    margin-bottom: 10px;
    box-shadow: 0 3px 8px -3px #ccc;
    border-radius:3px 3px 0 0;
}

.imp-bure {
    padding: 0 15px;
}

.login-field {
    padding: 20px;
}

.form-field {
    background: #f5f5f5;
    border: 1px solid #ddd;
    padding: 10px;
    width: 100%;
    display: block;
    border-radius: 3px;
    color: #333;
}

.login-button {
    background: linear-gradient(to left, #1e76bb, #2092EC);
    width: 100%;
    color: #fff;
    border: none;
    padding: 10px;
    text-transform: uppercase;
}

#navbarSupportedContent {
    background: #2092EC !important;
}

.sidebar-nav ul .sidebar-item.selected>.sidebar-link {
    background: #2092ec;
    opacity: 1;
}

#main-wrapper .left-sidebar[data-sidebarbg=skin5], #main-wrapper .left-sidebar[data-sidebarbg=skin5] ul {
    background: #00182b;
}

.mb-2{
    margin-bottom:20px;
}

.sidebar-nav{
    max-height:100%;
    overflow:auto;
}

.sidebar-nav::-webkit-scrollbar {
    width: 5px;
}

.sidebar-nav::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.sidebar-nav::-webkit-scrollbar-thumb {
    background-color: #2092ec;
    outline: 1px solid #2092ec;
}

.required::after{
    content: "*";
    color: red;
}

.select2-selection--multiple{
    overflow: hidden !important;
    height: auto !important;
}

.page-wrapper{
    margin-top:64px !important;
}

.topbar{
    position: fixed; !important;
    width: inherit;
}

.left-sidebar{
    position: fixed !important;
}
#overlay {
    background: #00000073;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 5000;
    display: none;
}

.lds-hourglass {
    display: inline-block;
    position: fixed;
    width: 80px;
    height: 80px;
    top:50%;
    left:50%;
}
.lds-hourglass:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: lds-hourglass 1.2s linear infinite;
}
@keyframes lds-hourglass {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.select2-container .select2-selection--single{
    height: 40px !important;
    margin-top: 8px !important;
}

.select2-container .select2-selection__arrow{
    top: 14px !important;
}

.spinner{
    font-size: 16px;
    position: absolute;
    top: 60%;
    right: 40px;
    display: none;
}

.form-field.is-invalid{
    border:0.5px solid #f90a0a;
}
.done{background-color: #00ff0069; color: #fff;}

.customer-info{background-color: #2092ec29!important;}

.datepicker table tr td.disabled, .datepicker table tr td.disabled:hover{text-decoration: line-through;}
