.hide { display: none !important; }
.btnBlue { color: #FFF !important; background-color: var(--skyblue) !important; }
.show { display: block; }
.w90 { width:90% !important;}
.variantList
{
    font-family: var(--lightfont);
    font-size: 12px;
}
.variant {
    padding: 5px;
    cursor: pointer;
    text-align: center;
}

.variant.selected {
    font-weight: bold;
    text-decoration:underline;
}

.recently_viewed_variant {
    padding: 4px;
    text-align: center;
}

span.qty {
    color: #CCC;
    border: 1px #CCC solid;
    padding: 5px 10px;
    cursor: pointer;
    text-align: center;
}

span.qty.selected {
    color: #000;
    border: 1px #000 solid;
}

select.qty
{
    padding: 12px 20px;
    margin-right: -2px;
    justify-content: center;
    border-radius: 10px 0px 0px 10px;
}

.btn-inline
{
    padding: 12px 20px;
    margin-left: -2px;
    text-transform: capitalize;
    border-radius: 0px 10px 10px 0px;
}

.text-center { text-align: center; }
.deleted { text-decoration: line-through;}

.show-password {
    cursor: pointer;
    opacity: 1;
    position: absolute;
    top: 25px;
    right: 22px;
}
  
.show-password.phide {
    opacity: 0.75;
}
  
.show-password.phide::after {
    content: "/";
    position: absolute;
    top: -7px;
    left: 6px;
    color: #444;
    font-size: 27px;
    transform: rotate(25deg);
}

#overlay{
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    height:100%;
    display: none;
    background: rgba(249, 247, 247, 1);
}
.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;  
}
.spinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #2e93e6 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}
@keyframes sp-anime {
    100% { 
    transform: rotate(360deg); 
    }
}
.is-hide{
    display:none;
}


/*toast*/
.toast {
    position: fixed;
    top: 25px;
    right: 25px;
    max-width: 300px;
    background: #fff;
    padding: 0.5rem;
    border-radius: 4px;
    box-shadow: -1px 1px 10px
        rgba(0, 0, 0, 0.3);
    z-index: 10230000;
    animation: slideInRight 0.3s
            ease-in-out forwards,
        fadeOut 0.5s ease-in-out
            forwards 3s;
    transform: translateX(110%);
}

.toast.closing {
    animation: slideOutRight 0.5s
        ease-in-out forwards;
}

.toast-progress {
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: #b7b7b7;
    animation: toastProgress 3s
        ease-in-out forwards;
}

.toast-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toast-icon {
    padding: 0.35rem 0.5rem;
    font-size: 1.5rem;
}

.toast-message {
    flex: 1;
    font-size: 0.9rem;
    color: #000000;
    padding: 0.5rem;
}

.toast.toast-success {
    background: #95eab8;
}

.toast.toast-success .toast-progress {
    background-color: #2ecc71;
}

.toast.toast-error {
    background: #efaca5;
}

.toast.toast-error .toast-progress {
    background-color: #e74c3c;
}

.toast.toast-info {
    background: #bddaed;
}

.toast.toast-info .toast-progress {
    background-color: #3498db;
}

.toast.toast-warning {
    background: #ead994;
}

.toast.toast-warning .toast-progress {
    background-color: #f1c40f;
}

@keyframes slideInRight {
    0% {
        transform: translateX(110%);
    }

    75% {
        transform: translateX(-10%);
    }

    100% {
        transform: translateX(0%);
    }
}

@keyframes slideOutRight {
    0% {
        transform: translateX(0%);
    }

    25% {
        transform: translateX(-10%);
    }

    100% {
        transform: translateX(110%);
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes toastProgress {
    0% {
        width: 100%;
    }

    100% {
        width: 0%;
    }
}