.stock-allert-button-container {
    display: flex;
    justify-content: center;
    padding: 30px 0px 0px 0px;
}
.woocommerce .product .stock-alert-button{
    cursor: pointer;
    display: inline-block;
    text-align: center;
    padding: 20px 40px !important;
    border: none;
    border-radius: 100px;
    background-color: #FFE92F;
    color: #2B3838!important;
    font-size: 14px;
    font-weight: 700;
    line-height: 14px!important;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 1!important;
}
.woocommerce .product .stock-alert-button:hover{
    background-color: #FFEF6D!important;
}
.popup-alert-stock {
    display: none;
    position: absolute;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #aaa;
    border-radius: 4px;
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
}
.popup-alert-stock header{
    padding: 12px 20px;
    border-bottom: 1px solid #e1e3e4;
}
.popup-alert-stock header h3{
    margin: 0; 
    padding:0 20px;
	color:#000;
	width:100%;
	text-align:center;
}
.popup-alert-stock .popup-alert-body { 
    padding: 20px 20px 0 20px; 
}
.popup-alert-body ul{
    list-style: none;
    margin:0;
    padding:0;
}
.popup-alert-body ul li{
    list-style: none;
    margin:0 0 20px 0;
    padding:0;
}
.popup-alert-body label{
    display:none;
}
.popup-alert-body input[type="text"],
.popup-alert-body input[type="email"]{
    width:100%;
    padding:10px;
    border-radius: 8px;
    border-color: #eaebeb;
}
.popup-alert-stock .gdpr-text{
    padding: 12px 20px;
    border-top: 1px solid #e1e3e4;
}
.popup-alert-stock footer{
    padding: 12px 20px;
    border-top: 1px solid #e1e3e4;
    text-align: center;
}
.popup-alert-stock footer .popup-alert-submit,
.popup-response-close{
	display:grid;
	justify-self:center;
    cursor:pointer;
	margin:0 auto;
    padding: 20px 40px;
    border: 1px solid #00536C;
    border-radius: 100px;
    background-color: #fff;
    color: #00536C!important;
    font-size: 14px!important;
    font-weight: 700!important;
    line-height: 14px!important;
    letter-spacing: 1px!important;
    text-transform: uppercase!important;
	width:fit-content;
	transition: all .3s;
}
.popup-alert-stock footer .popup-alert-submit:hover,
.popup-response-close:hover{
    background-color: #00779A!important;
    color: #fff!important;
	opacity:1!important;
}

.popup-alert-stock a.close {
    line-height: 1;
    font-size: 2em;
    position: absolute;
    top: 10px;
    right: 15px;
    text-decoration: none;
    color: #4F5A5A;
    font-weight: 700;
	opacity:1;
}
.popup-alert-stock a.close:hover{
    line-height: 1;
    font-size: 2em;
    position: absolute;
    top: 10px;
    right: 15px;
    text-decoration: none;
    color: #4F5A5A;
    font-weight: 700;
	opacity:1;
}
.popup-alert-stock-overlay{
    position:absolute;
    display:none;
    left:0;
    top:0;
    background: rgba( 255, 255, 255, 0.5 );
    width:100%;
    height:100%;
    /*display: flex;*/
    align-items: center;
    justify-content: center;
    text-align:center;
}
.popup-alert-stock-response,
.popup-alert-stock-email-error{
    position:absolute;
    display:none;
    left:0;
    top:0;
    background: rgba( 255, 255, 255, 1 );
    width:100%;
    height:100%;    
    text-align:center;
	border-radius: 4px;
}
.popup-alert-stock-email-error-content{
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 20px;
	width: 100%;
	height: 100%;
	padding: 40px !important;
	box-sizing: border-box;
}
.popup-alert-stock-response h2,
.popup-alert-stock-email-error h2{
    margin:0;    
}
.popup-alert-stock-response h3,
.popup-alert-stock-email-error h3{
    margin-bottom:0px;
}
@media only screen and (min-width: 600px){
    .popup-alert-stock{
        width:500px;
    }
}
@media only screen and (max-width: 599px){
    .popup-alert-stock{
        width:80%;
    }
}

.popup-alert-stock-response-content{
	display: flex;		
	flex-direction: column;
	justify-content: center;
	gap: 20px;
	width: 100%;
	height: 100%;	
	padding:20px;
}