/* PRELOADER  */

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust the alpha (0.7) for transparency */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.lds-dual-ring {
    display: inline-block;
    width: 80px;
    height: 80px;
  }
  .lds-dual-ring: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-dual-ring 1.2s linear infinite;
  }
  @keyframes lds-dual-ring {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }  


/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.select2-close-mask {
    z-index: 2099;
}

.select2-dropdown {
    z-index: 3051;
}

label {
    color: #0f48a2 !important;
    font-weight: 450;
}

#toast-container {
    backdrop-filter: blur(5px);
    margin-top: 70px;
    z-index: 50;
}

select {
    width: 100%;
}

.invoice-info {
    font-weight: 450;
    color: #3f4e8d;
}

.linear1 {
    border-radius: 10px;
    background: #0f2027;
    background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    color: #fff;
}

.linear2 {
    border-radius: 10px;
    background: #0f0c29;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #24243e, #302b63, #0f0c29);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #24243e, #302b63, #0f0c29);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    color: #fff;

}

.linear3 {
    border-radius: 10px;
    background: #283c86;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #45a247, #283c86);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #45a247, #283c86);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    color: #fff
}

.linear1:hover,
.linear2:hover,
.linear3:hover {
    color: #fff;
    transform: translate(0px, -1px);
}

@media print {

    .preloader,
    .page-titles,
    .btn,
    select,
    .form-control,
    label,
    input {
        display: none !important;
    }

    header,
    aside,
    nav,
    .topbar,
    .left-sidebar,
    .navbar-collapse,
    .scroll-sidebar {
        display: none !important;
    }

    .left-sidebar,
    .left-sidebar * {
        display: none !important;
    }

    body,
    .container-fluid {
        margin: 0 !important;
        padding: 0 !important;
    }

    .topbar,
    .topbar * {
        display: none !important;
    }



    .page-break-before {
        page-break-before: always;
    }

    .page-break-after {
        page-break-after: always;
    }

}
@media screen and (max-width:600px){
    body {
        font-size: 0.85em;
    }
    .container-fluid{
        padding: 25px 10px !important;
    }
    .card-body , .card{
        padding-left: .5em;
        padding-right: .5em;
    }
}
