:root {
    --active-color: #000;
    --color-grey: #CECECE;
    --color-grey2: #868686;
    --color-grey3: #efefef;
    --default-spacing: 10px;
}
@media only screen and (min-width: 768px) {
    :root {
        --default-spacing: 15px;
    }
}
@media only screen and (min-width: 1024px) {
    :root {
        --default-spacing: 20px;
    }
}


/* Form */
form p {
	margin-bottom: 10px;
}
textarea,
input[type=password],
input[type=text] {
	border: 1px solid #999;
	padding: 10px;
    width: 100%;
    box-sizing: border-box;
	resize: none;
}
fieldset.delivery {
	display: none;
}
button {
	background: var(--active-color);
	padding: 10px;
	border: 0;
	color: #fff;
	cursor: pointer;
	text-transform: uppercase;
}
button:hover {
	background: #000;
}
#has_delivery_address_label {
	display: inline;
}
label.error {
	color: #000;
	text-transform: uppercase;
}