/* Custom CSS of this template Note: Default is Mobile */

a {
    /*font-weight: 550;*/
    color: inherit;
    -webkit-text-decoration-line: none;
    text-decoration-line: none;
}

hr:not([size]) {
    height: 1px;
}

hr {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0)) !important;
    background-color: unset !important;
    border: unset !important;
}

.form-select, .form-select option {
    font-family: 'Segoe UI Emoji', 'Noto Color Emoji', 'Arial', sans-serif;
}

.box-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(216, 216, 216, 0.52);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(3px);
    min-height: 50px;
    border-radius: 5px;
}

    .box-loading-overlay::after {
        content: "";
        position: absolute;
        width: 35px;
        height: 35px;
        border: 3px solid rgba(0, 0, 0, 0.1);
        border-top: 3px solid rgb(216, 216, 216, 0.52);
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

@keyframes spin {
    0% {transform: rotate(0deg);}
    100% {transform: rotate(360deg);}
}

#checkout-page-body{
    /*min-height: calc(100vh - 50px);*/
}
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {


}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {

}