/* ==========================================================================
   7 MOONS + KABOOKABOO MARKETING
   ========================================================================== */





form input,
form select,
form textarea,
form button {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    outline: none;
    border-radius: 0;
}

form input,
form select,
form textarea,
form input[type="checkbox"] + span {
    padding: 0 15px;
    width: 100%;
	height: 45px;
	font-family: 'OpenSans', sans-serif;
	color: #000;
	font-size: 16px;
	line-height: 150%;
	letter-spacing: .02em;
    border: 1px solid rgba(0,0,0,0) !important;
	display: block;
    background-color: rgba(255,255,255,1) !important;
	transition: color .4s ease, border .4s ease, background .4s ease !important;
}

form select {
    padding: 0 45px 0 15px;
}

form textarea {
    padding: 15px;
    height: 150px;
    resize: none;
}

form input.error,
form select.error,
form textarea.error,
form input[type="checkbox"]:not(:checked).error + span::after {
    border: 1px solid #FF0000 !important;
    background-color: #FFDEDE !important;
}

form input[type=submit] {
	width: auto;
	height: auto;
	left: 50%;
    transform: translateX(-50%);
	cursor: pointer;
	display: block;
}

form input[type="text"]::-webkit-input-placeholder {color: #a4a4a4 !important;}
form input[type="text"]:-moz-placeholder {color: #a4a4a4 !important;}
form input[type="text"]::-moz-placeholder {color: #a4a4a4 !important; opacity: 1;}
form input[type="text"]:-ms-input-placeholder {color: #a4a4a4 !important;}

form .form__item--radio > span {
	display: flex !important;
}

form .radio-item {
	margin-right: 30px;
	padding: 0 0 0 30px;
	width: auto;
    font-family: 'OpenSans', sans-serif !important;
	font-size: 16px !important;
    font-weight: 400;
	text-transform: none !important;
    letter-spacing: 0;
}

form .radio-item input {
	padding: 0;
	margin: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	border: none !important;
	opacity: 0;
	cursor: pointer;
}

form .radio-item .checkmark {
	height: 20px;
    width: 20px;
	position: absolute;
    top: 50%;
    left: 0;
	background-color: #606060;
	border-radius: 50%;
	pointer-events: none;
    transform: translateY(-50%);
	transition: background .3s ease;
}

form .radio-item input:checked ~ .checkmark {
	background-color: #9c9c9c;
}

form .radio-item .checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

form .radio-item input:checked ~ .checkmark:after {
	display: block;
}

form .radio-item .checkmark:after {
 	top: 50%;
	left: 50%;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #fff;
	transform: translate(-50%, -50%);
	transition: background .3s ease;
}

form label {
    padding-bottom: 5px;
    width: 100%;
    font-family: 'Uniform-Condensed';
    color: #E2E2E2;
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: .02em;
	text-align: left;
    text-transform: uppercase;
    display: block;
}

form label.error {
	display: none !important;
}

form label > span {
    font-size: 80%;
    line-height: 80%;
}

@media (max-width: 980px) {

	form label {
		padding-bottom: 5px;
		font-size: 15px;
	}
}

@media (max-width: 760px) {

	form label {
		padding-bottom: 5px;
		font-size: 14px;
	}
}

form .form__item--select span:after {
	width: 0; 
  	height: 0; 
	content: '';
  	border-left: 5px solid transparent;
  	border-right: 5px solid transparent;
  	border-top: 6px solid #000;
	position: absolute;
	top: 50%;
	right: 15px;
	z-index: 10;
	pointer-events: none;
	transform: translateY(-50%);
}


form .form__list {
    justify-content: space-between;
    flex-wrap: wrap;
    display: flex;
}

form .form__item {
    margin-bottom: 30px;
}

form .form__item.form__item--1x {
    width: 100%;
}

form .form__item.form__item--2x {
    width: calc(50% - 10px);
}

form .form__item.form__item--3x {
	width: calc(33.33% - 13.33px);
}

@media (max-width: 980px) {

	form .form__item {
		margin-bottom: 25px;
	}

	form .form__item.form__item--1x {
		width: 100%;
	}

	form .form__item.form__item--2x {
		width: calc(50% - 7.5px);
	}

	form .form__item.form__item--3x {
		width: calc(33.33% - 10px);
	}
}

@media (max-width: 760px) {

	form .form__item {
		margin-bottom: 20px;
	}

	form .form__item.form__item--1x {
		width: 100%;
	}

	form .form__item.form__item--2x {
		width: calc(50% - 5px);
	}

	form .form__item.form__item--3x {
		width: calc(33.33% - 6.66px);
	}
}

@media (max-width: 540px) {

	form .form__item.form__item--1x {
		width: 100%;
	}

	form .form__item.form__item--2x {
		width: 100%;
	}

	form .form__item.form__item--3x {
		width: 100%;
	}
}

form .form__item > span {
	display: block;
}

.sent-notification {
    margin: 30px 0 0 0;
    width: 100%;
	text-align: center;
    display: block;
}

@media (max-width: 980px) {

	.sent-notification {
    	margin: 25px 0 0 0;
	}
}

@media (max-width: 760px) {

	.sent-notification {
    	margin: 20px 0 0 0;
	}
}






