#popup-alert-form {
    display:grid;
	width:100%;
	margin: 0;
	box-sizing: border-box;
}

#popup-alert-form .popup-alert-title {
    color: #555;
	font-size:24px;
}

#popup-alert-form input {
    margin-bottom: 0.1rem;
}

.woocommerce .product .stock-alert-button{
    border: solid 1px #b00024;
    background: #b00024;
    color: #fff;
    cursor: pointer;
    padding: 16px 28px;
    margin-bottom: 20px;
    display: inline-block;
    text-align: center;
    border-radius: 3px;
}
.woocommerce .product .stock-alert-button:hover{
    opacity:0.7;
}
.popup-alert-stock header{
    padding: 12px 20px;
    border-bottom: 1px solid #e1e3e4;
}
.popup-alert-stock header h3{
    margin: 0;
    padding:0;
	color:#ffffff;
}
.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;
	box-sizing: border-box;
	border-color:#555555;
	border-width:1px;
}
.popup-alert-body .alert-first-name.error,
.popup-alert-body .alert-last-name.error,
.popup-alert-body .alert-email.error{
	border-color:red;
}
.error-message{
	margin-top: 5px;
    margin-bottom: 0px;
    font-size: 12px;
    color: red;
	text-align:left;
}
.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: right;
}
.popup-alert-stock footer .popup-alert-submit,
.popup-response-close{
    color:#ffffff;
    background:#b00024;
    border:none;
    padding:10px 20px;
    cursor:pointer;
}
.popup-alert-stock footer .popup-alert-submit:hover,
.popup-response-close:hover{
    opacity:0.6;
}

.popup-alert-stock a.close {
    line-height: 1;
    font-size: 1.5em;
    position: absolute;
    top: 10px;
    right: 15px;
    text-decoration: none;
    color: #ffffff;
    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;
}
.popup-alert-stock-response h2,
.popup-alert-stock-email-error h2{
    margin-top:50px;
    margin-bottom:20px;
}
.popup-alert-stock-response h3,
.popup-alert-stock-email-error h3{
    margin-bottom:20px;
}
@media only screen and (min-width: 600px){
    .popup-alert-stock{
        width:500px;
    }
}
@media only screen and (max-width: 599px){
    .popup-alert-stock{
        width:80%;
    }
}
