#tempAlert {
    width: auto;
    height: auto;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    display: none;
    background: #00121E;
    padding: 25px;
    line-height: 1.5;
    /* -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; */
    -webkit-box-shadow: 0px 10px 20px 1px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 10px 20px 1px rgba(0, 0, 0, 0.2);
}
#tempAlert span {
    font-size: 16px;
    /* color: #58585A; */
    font-weight: bold;
    color: white !important;
    text-align: center;
    display: block;
}


#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #1C274C;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}
#backToTop.show {
    opacity: 1;
    visibility: visible;
}
@media screen and (max-width: 575px) {
    #backToTop {
        width: 40px;
        height: 40px;
    }
}


#price-slider {
    height: 1px;
}
#price-slider .noUi-connect {
    background: #00121E33;
}
#price-slider .noUi-handle {
    height: 18px;
    width: 18px;
    top: -8px;
    right: -9px;
    /* half the width */
    border-radius: 9px;
}


.scroll-menu-cart {
    max-height: 240px;
    overflow-y: auto;
    padding-top: 20px;
}


.loader-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1.5rem;
}
.loader-order {
    display: block;
    /* border: 4px solid rgba(0, 0, 0, 0.3); */
    border: 4px solid rgba(255, 255, 255, 0.3);
    /* border-top: 4px solid #2E3091; */
    border-top: 4px solid white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 2s linear infinite;
    margin-right: 1rem;
}
.loader-order.hidden {
    display: none;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.lds-dual-ring {
    color: #1C274C;
}
.lds-dual-ring,
.lds-dual-ring:after {
    box-sizing: border-box;
}
.lds-dual-ring {
    height: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 30px;
    height: 30px;
    margin: 0px;
    border-radius: 50%;
    border: 3px solid currentColor;
    border-color: currentColor transparent currentColor transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}




  
.modal-message .modal-body-message .poslato {
    color: #4F8A10;
    font-size: 2.2rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 0;
}

.modal-message .modal-body-message .nije-poslato {
    color: #FF0000;
    font-size: 2.2rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 0;
}

.modal-message .modal-body-message .icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 1rem;
}

.modal-message {
    height: 100vh;
    width: 100vw;
    background: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 99999;
}

.modal-body-message {
    background: white;
    position: relative;
    padding: 2rem;
    margin: 0 15px;
}



.coupon-message {
    margin-top: 10px;
    font-size: 14px;
    color: #CC0202;
    font-weight: 500;
}
.coupon-message.success {
  color: #5cb85c;
}


    
    







