/* Fret Mill - Out of Stock Notifications - CSS */	

.fretmill-stock-notification-form {
	visibility: hidden;
	opacity: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	z-index: 1111;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0,0,0,.7);
	transition: all .25s;
}

.fretmill-stock-notification-form.active {
	visibility: visible;
	opacity: 1;
}

.fretmill-stock-notification-form__container {
	background: white;
	max-width: 800px;
	border-radius: 14px;
	padding: 40px;
	position: relative;
	margin: 20px;
}

.fretmill-stock-notification-form__container form {
	margin: 0;
}

.fretmill-stock-notification-form__container .closer {
	font-weight: bold;
	padding: 15px;
	cursor: pointer;
	position: absolute;
	top: 0;
	right: 0;
	font-size: 25px;
	line-height: 1;
	color: black;
}

.stock-form-field {
	margin-bottom: 12px;
}

.stock-form-field:last-of-type {
	margin-bottom: 0px;
}

.stock-email {
	width: 100%;
}

.stock-button, .stock-button-style {
	color: #f6870f;
    border-color: #f6870f;
    border-width: 2px;
    background: #fff;
    display: block;
    border-style: solid;
    text-align: center;
    padding: 0.6em;
    border-radius: 0.3em;
    margin-bottom: 10px;
    transition: all 0.2s;
}

.stock-button:hover, .stock-button-style:hover {
	border-color: #f8a040;
    color: #f8a040;
    background-color: #f6870f;
    color: #fff;
    border-color: #f6870f;
}

.stock-button {
	margin-left: auto;
}

.stock-form-field {
	text-align: right;
}

.stock-success {
    background: #2e662e;
    color: white;
    padding: 10px;
    text-align: center;
    border-radius: 3px;
}

.hide {
	display: none;
}