/* Variable definitions using :root */
:root {
	/* Color variables */
	--studio-seizh-tomato: hsl(4, 100%, 67%);
	--studio-seizh-dark_slate_Grey: hsl(234, 29%, 20%);
	--studio-seizh-charcoal_grey: hsl(235, 18%, 26%);
	--studio-seizh-grey: hsl(231, 7%, 60%);
	--studio-seizh-white: hsl(0, 0%, 100%);

	/* Font Size variables */
	--studio-seizh-h-fs: 2rem;
	--studio-seizh-p-fs: 1.5rem;
	--studio-seizh-s-fs: 0.8rem;
}

overflow-hidden {
    overflow: hidden;
}

.studio-seizh-restock-button {
    width: 100%;
    cursor: pointer;
}

#STUDIO-SEIZH-RESTOCK-SUCCESS {
    display: none;
    background-color: rgba(0, 0 , 0 , 0.5);
    padding: 20px;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 2147483646123 !important;
    -webkit-animation: fadeIn 0.2s;
    -moz-animation: fadeIn 0.2s;
    -o-animation: fadeIn 0.2s;
    -ms-animation: fadeIn 0.2s;
}

#STUDIO-SEIZH-RESTOCK {
    display: none;
    background-color: rgba(0, 0 , 0 , 0.5);
    padding: 20px;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 2147483646123 !important;
    -webkit-animation: fadeIn 0.2s;
    -moz-animation: fadeIn 0.2s;
    -o-animation: fadeIn 0.2s;
    -ms-animation: fadeIn 0.2s;
}

#STUDIO-SEIZH-CLOSE-RESTOCK-FORM {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    position: absolute;
    top: 3px;
    right: 3px;
}


.studio-seizh-restock-form-container {
    position: relative;
    background-color: #fff;
    margin: auto;
    width: 400px;
    border-radius: 10px;
    padding: 10px 15px;
}

.studio-seizh-restock-form-container label {
    line-height: 0 !important;
}

.studio-seizh-restock-form-container button {
    background-color: var(--studio-seizh-dark_slate_Grey);
	color: var(--studio-seizh-white);
	padding: 20px;
	width: 100%;
	border-radius: 5px;
	border: 0;
    cursor: pointer;
}

.studio-seizh-restock-form-container button:hover {
    background-color: var(--studio-seizh-charcoal_grey);
}

.studio-seizh-restock-form-container .email-field {
    display: flex;
    align-items: center;
}

/* Styles for error text (initially hidden) */
.studio-seizh-restock-form-container .error-text {
	display: none;
    color: var(--studio-seizh-tomato);
}

.studio-seizh-restock-form-container input {
    display: block;
    width: 100%;
    padding: 13px 0.5em;
    border: 1.5px solid var(--studio-seizh-grey);
    border-radius: 5px;
    outline: none;
    margin: 0.5rem 0 1.5rem 0;

    font-weight: 500;
    font-size: var(--studio-seizh-p-fs);
    color: var(--studio-seizh-dark_slate_Grey);
    box-shadow: none !important;
}

/* Styles for error input fields */
.studio-seizh-restock-form-container .error-input {
	background-color: hsl(4, 100%, 95%);
	color: var(--studio-seizh-tomato);
	border-color: var(--studio-seizh-tomato);
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@-moz-keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@-webkit-keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@-o-keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@-ms-keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}