.woocommerce-variation-add-to-cart.variations_button {
    display: none;
}
.alert-stock-status {
    display: block;    
}
.stock-toast-popup{
    position: fixed;
    top: 25%;
    right: 50%;
    background: #202321;  
    color: #fff;
    padding: 5px 15px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 999999;
    display: none;
    min-width: 220px;
    animation: slideIn 0.3s ease;
    overflow-y: auto;

}
.stock-toast-popup button {
    margin-right: 50px;
    background: none;
    border: none;
    color: #25A595;
    padding: 0px !important;
    cursor: pointer;
    font-size: 14px !important;
    font-weight: 500 !important;
    float: left;
}

.stock-toast-popup .msg {
    line-height: 40px;
}

.stock-toast-popup button:hover {
    background: none;
    color: #25A595;
    border-radius: 12px;
}

.stock-alert-btn[data-subscribed="0"] {
    background:#e53935;
    color: #fff;
    border-radius: 12px;
    border: solid 2px #E11D48;
    padding: 5px 27px !important;
}

.stock-alert-btn[data-subscribed="1"] {
    background:transparent;
    color: #E11D48;
    border-radius: 12px;
    border: solid 2px #E11D48;
    padding: 5px 20px !important;
}

.stock-alert-btn[data-subscribed="1"]::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-left: 6px;
    vertical-align: middle;
    background-image: url('../icons/Notification-icon.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

@media (max-width: 480px) {
    .stock-toast-popup{
        top: auto;
        bottom: 90px;
        right: 50%;
        transform: translateX(50%);
        width: calc(100% - 40px);
        max-width: 320px;
    }
}
