﻿.form-warning {
	padding: 1px 10px;
	color: #9f6000;
	background-color: #feefb3;
	border: 1px solid #9f6000;
	border-radius: 3px;
	margin-bottom: 1em;
}
.required {
	color: #f33;
	text-transform: lowercase;
}
.tick {
	color: green;
}
.empty .tick {
	display: none;

}
.submit {
	text-align: center;
	color: #000;
	font-size: 16px;
	display: block;
	width: 100%;
	padding: 10px;
	text-transform: uppercase;
	background: #eee;
	background: linear-gradient(#eee, #ddd);
	border: 1px solid #999;
	border-radius: 3px;
	cursor: pointer;
}
.checkout-submit {
	/*
    background: #cb9b38;
    background: linear-gradient(to bottom, #fddf90, #cb9b38);*/
    background: #cbab38;
    background: linear-gradient(to bottom, #fdef90, #cbab38);
}
.checkout-submit[disabled] {
	opacity: 0.5;
	cursor: default;
}
input[type=reset], .reset {
	background: #f3961c;
	background: linear-gradient(#f9d835, #f3961c);
}
.empty .required {
	text-transform: uppercase;
}
@media (min-width: 800px) {
	.form-row {
		display: flex;
		align-items: center;
	}
	.form-row .form-cell {
		-webkit-flex: 1;
		flex-grow: 1;
		margin: 0 10px 0 0;
	}
	.form-row .form-cell:last-child {
		margin-right: 0;
	}
}
.form-cell {
	position: relative;
	padding: 10px 0;
}
.form-cell label {
	position: absolute;
	font-size: 0.8em;
	top: 4px;
	left: 16px;
	color: #69c;
	background: #fff;
	font-weight: bold;
	z-index: 1;
	transition: all 150ms ease;
}
.empty label {
	font-size: 14px;
	top: 24px;
	left: 12px;
	color: #bbb;
	font-weight: normal;
	z-index: 0;
}
.input {
	/*-webkit-appearance: none;*/
	font-size: 14px;
	position: relative;
	display: block;
	width: 100%;
	padding: 12px;
	border: 1px solid #d9d9d9;
	border-radius: 3px;
	background: rgba(255, 255, 255, 0);
}
input.input:-webkit-autofill {
    -webkit-box-shadow: inset 0 0 0px 9999px #fff;
}
.input-caption {
	color: #999;
	font-size: 0.8em;
	font-style: italic;
	margin-top: 3px;
}
textarea.input {
	height: 150px;
}
.empty input.input, .empty textarea.input, .empty select.input {
	border-color: #d9d9d9;
}
.input:focus, .empty input.input:focus {
	border-color: #aaa;
}
/*
.input[pattern]:valid {
	border-color: #42d142;
}
.input:invalid  {
	border-color: #ff8e7a;
}
.form-submitted .empty .input:invalid {
	border-color: #ff8e7a;
}*/

label.nonEmpty {
	top: 2px;
	font-weight: bold;
	color: #69c;
	z-index: 1;
}
.darkInput {
	background: #444;
	color: #fff;
	border-radius: 5px;
}

