.show {
	background: #000;
	width: 100px;
	height: 100px;
	position: absolute;
	z-index: 100000;
	display: block;
}

.add_hero {
	background: transparent;
}

.add_hero input:-webkit-autofill,
.add_hero input:-webkit-autofill:hover,
.add_hero input:-webkit-autofill:focus,
.add_hero textarea:-webkit-autofill,
.add_hero textarea:-webkit-autofill:hover,
.add_hero textarea:-webkit-autofill:focus,
.add_hero select:-webkit-autofill,
.add_hero select:-webkit-autofill:hover,
.add_hero select:-webkit-autofill:focus {
	-webkit-text-fill-color: #000;
	-webkit-box-shadow: 0 0 0px 1000px #ededed inset;
	-webkit-transition: background-color 5000s ease-in-out 0s;
	transition: background-color 5000s ease-in-out 0s;
}

.add_hero input {
	display: inline-block;
	width: 100%;
	border: none;
	border-bottom: 2px solid transparent;
	padding: 25px 30px 5px 20px;
	margin-bottom: 30px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	font-size: 14px;
	color: #000;
	background: #ededed;
	font-family: GoodPro-Medium;
	text-transform: capitalize;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.add_hero input:focus {
	border-bottom: 2px solid #909090;
}

.add_hero input.error {
	border-bottom: 2px solid #e23b2a;
}

.add_hero input.success {
	border-bottom: 2px solid #65ba18;
}

.add_hero .relative {
	position: relative;
}

.add_hero span.placeholder {
	position: absolute;
	top: 15px;
	left: 10px;
	font-size: 14px;
	font-family: GoodPro-Medium;
	color: #909090;
	-webkit-transform: scale(1) translateY(0);
	transform: scale(1) translateY(0);
	padding: 0 0 0 10px;
	background: #ededed;
	width: 220px;
	border-radius: 5px;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.add_hero span.placeholder.focus_input {
	-webkit-transform: scale(.75) translate3d(-35px, -90%, 0);
	transform: scale(.75) translate3d(-35px, -90%, 0)
}

.add_hero input:focus,
.add_hero textarea:focus {
	outline: none;
}

.add_hero input.required {
	background: #ededed url(/assets/img/star.svg) no-repeat 95% center;
	background-size: 10px;
}

.add_hero textarea::-webkit-input-placeholder {
	color: #909090;
}

.add_hero textarea:-ms-input-placeholder {
	color: #909090;
}

.add_hero textarea::placeholder {
	color: #909090;
}

.add_hero textarea {
	background: #ededed url(/assets/img/star.svg) no-repeat 97.5% 15px;
	background-size: 10px;
	padding: 10px 30px 10px 20px;
	width: 100%;
	height: 200px;
	font-size: 14px;
	border-radius: 5px;
	margin-bottom: 20px;
	font-family: GoodPro-Medium;
	border: none;
	border-bottom: 2px solid transparent;
	resize: vertical;
}

.add_hero textarea.error {
	border-bottom: 2px solid #e23b2a;
}

.add_hero textarea.success {
	border-bottom: 2px solid #65ba18;
}

.add_hero .textarea_container {
	position: relative;
}

.add_hero .textarea_container .arealenght {
	position: absolute;
	bottom: calc(2% + 20px);
	right: calc(2% + 15px);
}

.add_hero .textarea_container .arealenght p {
	font-size: 12px;
	color: #909090;
	font-family: GoodPro-Medium;
}

.add_hero input[type="file"] {
	cursor: pointer;
}

.add_hero input[type="email"] {
	text-transform: none;
}

.add_hero input[type="submit"] {
	display: inline-block;
	width: 100%;
	border: none;
	padding: 10px 20px;
	margin-bottom: 20px;
	border-radius: 5px;
	color: #fff;
	text-transform: none;
	font-size: 16px;
	background: #e23b2a;
	font-family: CTCScreenBold;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.add_hero input[type="submit"]:hover {
	-webkit-box-shadow: 0 0 10px #e23b2a;
	box-shadow: 0 0 10px #e23b2a;
}

.add_hero input[type="file"] {
	display: none;
}

.add_hero label {
	position: relative;
	z-index: 20;
	display: block;
	padding: 40px 20px;
	margin-bottom: 20px;
	border-radius: 5px;
	position: relative;
	text-align: center;
	border: 2px solid #909090;
	border-style: dashed;
	background: #fff;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.add_hero label.error {
	background: #e23b2a;
	border: 2px solid #e23b2a;
	font-family: GoodPro-Medium;
	color: #fff;
}

.add_hero label.error_drop {
	background: none;
	border: 2px solid #e23b2a;
	font-family: GoodPro-Medium;

}

.add_hero label.file_drop {
	border: 2px solid transparent;
	border-style: dashed;
	background: #ededed;
}

.add_hero label.file_hover {
	border: 2px solid transparent;
	border-style: dashed;
	background: #ededed;
	-webkit-box-shadow: inset 0 0 20px rgba(0, 0, 0, .2);
	box-shadow: inset 0 0 20px rgba(0, 0, 0, .2);
}

.add_hero label svg g path {
	-webkit-transition: fill .3s ease;
	transition: fill .3s ease;
	fill: #808080;
}

.add_hero label.error_drop p {
	color: #e23b2a;
}

.add_hero label.file_drop p {
	opacity: 1;
	color: #202020;
}

.add_hero label.error_drop svg g path {
	fill: #e23b2a;
}

.add_hero label.file_drop svg g path {
	fill: #65ba18;
}

.add_hero label.file_hover svg g path {
	fill: #202020;
}

.add_hero label.file_hover p {
	opacity: 0;
}

.add_hero label svg {
	width: 60px;
}

.add_hero label p {
	text-align: center !important;
	color: #909090;
	margin-top: 30px;
	margin-bottom: 30px;
	font-family: GoodPro-Medium;
	text-indent: 0px !important;
	word-break: break-all;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.add_hero label.file_drop .button {
	background: #202020;
}

.add_hero label .button {
	display: block;
	width: 50%;
	margin: 0 auto;
	padding: 10px 40px;
	border-radius: 5px;
	color: #fff;
	font-family: CTCScreenBold;
	border: none;
	background: #e23b2a;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	cursor: pointer;
}

.add_hero label .button:hover {
	-webkit-box-shadow: 0 0 10px #e23b2a;
	box-shadow: 0 0 10px #e23b2a;
	cursor: pointer;
}

.add_hero label.file_drop .button:hover {
	-webkit-box-shadow: 0 0 10px #000;
	box-shadow: 0 0 10px #000;
}

.add_hero label .button img {
	width: 20px;
	margin-right: 10px;
}

.add_hero .error_label {
	margin: 0;
	padding: 0;
	border: none;
	margin-bottom: 14px;
	margin-top: -30px;
	font-size: 11px;
	color: #e23b2a;
	font-family: GoodPro-Medium;
	text-align: left;
	padding-left: 20px;
	z-index: 0;
}

img.required {
	width: 10px;
	margin-top: -15px;
	margin-right: 5px;
}

.datepicker {
	border-radius: 5px;
	border: none;
	font-family: GoodPro-Medium;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .2) !important;
	box-shadow: 0 0 10px rgba(0, 0, 0, .2) !important;
}

.datepicker-inline {
	position: absolute;
	z-index: 10;
	visibility: hidden;
	opacity: 0;
	top: 60px;
	border-radius: 5px;
	-webkit-transition: opacity .3s ease;
	transition: opacity .3s ease;
}

.datepicker-inline.show {
	opacity: 1;
}

.datepicker-inline.visible {
	visibility: visible;
}

.datepicker--day-name {
	color: #e23b2a;
	text-transform: none;
}

.datepicker--cell.-selected-,
.datepicker--cell.-selected-.-current- {
	background: #e23b2a;
}

.datepicker--cell.-current- {
	color: #e23b2a;
}

.datepicker--cell.-selected-:hover,
.datepicker--cell.-selected-.-current-:hover {
	background: #e23b2a;
}

.-selected-.datepicker--cell-day.-other-month-,
.-selected-.datepicker--cell-year.-other-decade- {
	background: #e23b2a;
}

body.thanks {
	overflow: hidden !important;
}

.thanks {
	background: url(/assets/img/background.png) no-repeat top center;
	background-size: cover;
	width: 100vw;
	height: 100vh;
}

.thanks .content {
	padding: 40px;
	max-width: 800px;
	position: relative;
	top: 50%;
	left: 50%;
	-webkit-transform: translate3d(-50%, -50%, 0);
	transform: translate3d(-50%, -50%, 0);
}

.thanks h1 {
	font-family: CTCScreenBold;
	display: block;
	text-align: center;
	margin-bottom: 20px;
}

.thanks p {
	font-family: GoodPro-Medium;
	text-align: center;
	display: block;
	margin-bottom: 50px;
}

.thanks a {
	text-decoration: none;
}

.thanks a button {
	font-family: CTCScreenBold;
	border: none;
	padding: 10px 40px;
	padding-bottom: 8px;
	background: #e23b2a;
	border-radius: 5px;
	color: #FFF;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .2);
	box-shadow: 0 0 10px rgba(0, 0, 0, .2);
	display: block;
	margin: 0 auto;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .2);
	box-shadow: 0 0 10px rgba(0, 0, 0, .2);
	-webkit-transition: box-shadow .3s ease;
	-webkit-transition: -webkit-box-shadow .3s ease;
	transition: -webkit-box-shadow .3s ease;
	transition: box-shadow .3s ease;
	transition: box-shadow .3s ease, -webkit-box-shadow .3s ease;
}

.thanks a button:hover {
	-webkit-box-shadow: 0 0 10px #e23b2a;
	box-shadow: 0 0 10px #e23b2a;
}

.thanks .top_line {
	background: url(/assets/img/line_top.png) no-repeat center center;
	background-size: contain;
	width: 100%;
	height: 3px;
	margin-bottom: 50px;
}

.thanks .bottom_line {
	background: url(/assets/img/line_bottom.png) no-repeat center center;
	background-size: contain;
	width: 100%;
	height: 3px;
	margin-top: 30px;
	margin-bottom: 50px;
}

.thanks .top_photo,
.thanks .bottom_photo {
	position: absolute;
}

.thanks .top_photo img,
.thanks .bottom_photo img {
	width: 300px;
}

.thanks .top_photo {
	top: 0;
	left: 0;
}

.thanks .bottom_photo {
	bottom: 0;
	right: 0;
}

@media screen and (max-width: 725px) {
	.add_hero label button {
		width: 100%;
	}

	.add_hero input,
	.add_hero textarea {
		font-size: 16px;
	}

	.datepicker-inline {
		left: 5%;
		width: 90%;
	}

	.datepicker {
		width: 100%;
	}

}

@media screen and (max-width: 767px) {
	.add_hero label button {
		width: 100%;
	}

	.add_hero textarea {
		background: #ededed url(/assets/img/star.svg) no-repeat 95% 15px;
		background-size: 10px;
	}

}
