﻿.clsCartLi.active {
    border: 1px solid #ff0000 !important;
}

header .onhover-dropdown .onhover-div .cart-list {
    max-height: 200px !important;
    overflow: auto !important;
}

.clsawtmenu::before {
    content: "" !important;
    right: 0px !important;

}
header .navbar.navbar-expand-xl .navbar-nav .nav-item + .nav-item {
    margin-left: calc(11px + 10 * (100vw - 1200px) / 720)!important;
}

.toast-noti {
    display: flex;
    position: fixed;
    align-items: flex-start;
    justify-content: space-around;
    padding: 12px 20px;
    transition: all 1s cubic-bezier(.25, .8, .25, 1);
    background: #34495e;
    bottom: -200px;
    /*left: 50%;
        transform: translate(-50%, -50%);*/
    pointer-events: none;
    color: #fff;
    border-radius: 3px;
    box-shadow: 0 3px 13px -2px #00000052;
    max-width: 400px;
    z-index: 9999999999999999;
}

@-webkit-keyframes _tostShow {
    0% {
        opacity: 1;
        bottom: -100px;
    }

    100% {
        opacity: 1;
        bottom: 0px;
    }
}

@-webkit-keyframes _tostClose {
    0% {
        opacity: 1;
        bottom: 0px;
    }

    100% {
        opacity: 0;
        bottom: -100px;
    }
}

.toast-icon {
    padding: 0;
    display: flex;
    width: 30px;
    height: 30px;
    font-size: 26px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /*box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);*/
}

.tost-success {
    background: #2ecc71;
}

    .tost-success .toast-icon {
        background: #2ecc71;
        color: #FFF;
    }

.tost-warning {
    background: #f1c40f;
}

    .tost-warning .toast-icon {
        background: #f1c40f;
        color: #fff;
    }

.tost-error {
    background: #e74c3c;
}

    .tost-error .toast-icon {
        background: #e74c3c;
        color: #fff;
    }

.tost-heart {
    background: #9C27B0;
}

    .tost-heart .toast-icon {
        background: #9C27B0;
        color: #fff;
    }

.tost-sad {
    background: #03a9f4;
}

    .tost-sad .toast-icon {
        background: #03a9f4;
        color: #fff;
    }

.toast-text {
    padding: 0 10px;
    font-size: 16px;
    line-height: 20px;
    min-height: 30px;
    display: flex;
    align-items: center;
}