/* Form */
.ap_form {
	color: #fff;
}
.ap_form::after {
	clear: both;
	content: '';
	display: table;
}
.ap_form *,
.ap_form *::after,
.ap_form *::before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.ap_form fieldset {
	margin: 0px 0 0;
	padding: 0;
	border: 0;
}
.ap_basic_info{
	display:flex;
	flex-wrap: wrap;
}
.ap_form fieldset:first-of-type {
	margin-top: 0;
}
.ap_form fieldset:last-of-type {
	margin: 0;
}
.ap_form legend {
	margin-bottom: 20px;
	font-size: 16px;
	border-bottom: 2px solid #cfd9db;
	display:none !important;
}
.ap_form fieldset > div {
	/* form element wrapper */
	position: relative;
	margin: 12px 0 18px 0;
	width:50%;
	box-sizing: border-box;
	padding:0 50px 0 130px;
}

.ap_form legend + div {
	/* reduce margin-top for first form element after the legend */
	margin-top: 12px;
}
.ap_form ul {
	margin: 0;
	padding: 8px 0 0;
	min-height: 44px;
}
.ap_form ul li {
	position: relative;
	display: inline-block;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	margin: 8px 26px 4px 0;
}
.ap_form .ap_extra p {
	margin: 4px 0;
	text-align: left;
	font-size: 13px;
}
.ap_form label,
.ap_form h4 {
	font-size: 14px;
	font-weight: normal;
	color: #94aab0;
}
.ap_form h4 {
	margin: 0;
}
.ap_form h4 + div {
	/* reduce margin-top/bottom for a gap between form elements */
	margin: 2px 0 20px;
}
.ap_form input,
.ap_form select,
.ap_form textarea {
	font-size: 14px;
	color: #fff;
}
.ap_form input[type="text"],
.ap_form input[type="url"],
.ap_form input[type="email"],
.ap_form input[type="tel"],
.ap_form input[type="number"],
.ap_form input[type="password"],
.ap_form select,
.ap_form textarea,
.ap_form legend {
	display: block;
	width: 100%;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
}
.ap_form input[type="text"],
.ap_form input[type="url"],
.ap_form input[type="email"],
.ap_form input[type="tel"],
.ap_form input[type="number"],
.ap_form input[type="password"],
.ap_form select,
.ap_form textarea {
	/* general style for input elements */
	padding:15px 12px;
	line-height:30px;
	border: 0;
	background-color: #ffffff;
	border-radius:0px;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.);
}
.ap_form input[type="text"]:focus,
.ap_form input[type="url"]:focus,
.ap_form input[type="email"]:focus,
.ap_form input[type="tel"]:focus,
.ap_form input[type="number"]:focus,
.ap_form input[type="password"]:focus,
.ap_form select:focus,
.ap_form textarea:focus {
	outline: none;
	border-color: #000;
	box-shadow: 0 0 5px rgba(44, 151, 222, 0.2);
}
.ap_form select {
	box-shadow: 0 1px 3px rgba(0,0,0,.08);
    cursor: pointer;
}
.ap_form textarea {
	min-height: 200px;
	resize: vertical;
	overflow: auto;
}
.ap_form input[type=radio],
.ap_form input[type=checkbox] {
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	margin: 0;
	padding: 0;
	opacity: 0;
	z-index: 2;
}
.ap_form input[type=radio]+label,
.ap_form input[type=checkbox]+label {
	position: relative;
	top: 0;
	left: 0 !important;
	padding-left: 32px;
	cursor: pointer;
}
.ap_form input[type=radio]+label::before,
.ap_form input[type=radio]+label::after,
.ap_form input[type=checkbox]+label::before{
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -11px;
	width: 16px;
	height: 16px;
}
.ap_form input[type=radio]+label::before,
.ap_form input[type=checkbox]+label::before {
    border: 0;
    background: url("../img/check.png") 50% top no-repeat;
    background-size:22px;
	width:22px;
	height:22px;
}
.ap_form input[type=radio]+label::before, .ap_form input[type=radio]+label::after {
    border-radius: 50%;
}
.ap_form .ap_basic_info input[type=radio]+label::before{
	display:none;
}
.ap_form input[type=checkbox]:checked+label::before{
	background-position:50% bottom;
}
.ap_form input[type=radio]+label::after,
.ap_form input[type=checkbox]+label::after {
	background-color: #846874;
	background-position: center center;
	background-repeat: no-repeat;
	box-shadow: 0 0 5px rgba(44,151,222,.4);
	display: none;
}
.ap_form input[type=radio]+label::before,
.ap_form input[type=radio]+label::after {
	border-radius: 50%;
}
.ap_form input[type=radio]:checked+label::after,
.ap_form input[type=checkbox]:checked+label::after {
    display: block;
}
.ap_form input[type=radio]:checked+label::before,
.ap_form input[type=radio]:checked+label::after,
.ap_form input[type=checkbox]:checked+label::before,
.ap_form input[type=checkbox]:checked+label::after {
	-webkit-animation: ap_bounce .3s;
	-moz-animation: ap_bounce .3s;
	animation: ap_bounce .3s;
}
.ap_form ul input[type=radio]:checked+label::after{
	display:none !important;
}
.ap_form .ap_message[rel="password"] {
	display: table;
	margin: 32px auto !important;
}

/* ExtraKeys Info */
.ap_form .ap_extra[rel="tel"] {
	text-align: center;
	clear: both;
}
.ap_form .ap_extra[rel="tel"]:after {
	content: '';
	display: table;
	clear: both;
}
.ap_form .ap_extra[rel="tel"] input.tel {
	display: inline-block;
	padding-left: 12px !important;
	width: calc(33.1% - 18px);
}
.ap_form .ap_extra[rel="tel"] input.tel:nth-child(1) {
	margin-left: 54px;
	float: left;
}
.ap_form .ap_extra[rel="tel"] input.tel:nth-child(3) {
	float: right;
}
.ap_form .ap_extra[rel="select"]::after,
.ap_form .ap_message[rel="category"]::after {
	content: '';
	position: absolute;
	z-index: 1;
	right: 28px;
	top: 24px;
	margin-top: -8px;
	display: block;
	width: 16px;
	height: 16px;
	background: url("../img/ap_icon-arrow.svg") no-repeat center center;
	pointer-events: none;
}
.ap_form .ap_extra[rel="date"] input[type="button"] {
	position: absolute;
	top: 0;
	right: 0;
	margin: 8px;
	padding: 0 16px !important;
	height: 30px !important;
	font-size: 12px;
	border-radius: 4px;
}
.ap_form .ap_extra[rel="date"].is_required input[type="button"] {
	margin-right: 32px;
}
.ap_form .ap_extra[rel="kr_zip"] .krZip {
	margin: 0;
}
.ap_form .ap_extra[rel="kr_zip"] .krZip input {
	padding: 16px !important;
	font-size: 14px;
}
.ap_form .ap_extra[rel="kr_zip"] .krZip .krzip-postcode-wrap,
.ap_form .ap_extra[rel="kr_zip"] .krZip .krzip-address-wrap,
.ap_form .ap_extra[rel="kr_zip"] .krZip .krzip-detailAddress-wrap {
	margin: 0;
	padding: 4px 0;
	clear: both;
}
.ap_form .ap_extra[rel="kr_zip"] .krZip .krzip-postcode-wrap {
	padding-top: 8px;
}
.ap_form .ap_extra[rel="kr_zip"] .krZip .krzip-postcode-wrap label,
.ap_form .ap_extra[rel="kr_zip"] .krZip .krzip-address-wrap label,
.ap_form .ap_extra[rel="kr_zip"] .krZip .krzip-detailAddress-wrap label {
	position: relative;
	top: 0;
	left: 0;
	min-width: unset;
	font-size: 14px;
}
.ap_form .ap_extra[rel="kr_zip"] .krZip .krzip-postcode-wrap label {
	display: inline-block;
	margin-right: 2px;
	padding: 3px 0;
	height: 26px;
	vertical-align: bottom;
}
.ap_form .ap_extra[rel="kr_zip"] .krZip .krzip-postcode-wrap input.krzip-postcode {
	display: inline-block;
	padding: 12px !important;
	width: 80px;
	min-width: 80px;
	text-align: center;
}
.ap_form .ap_extra[rel="kr_zip"] .krZip .krzip-postcode-wrap input.krzip-search {
	padding: 0 16px !important;
    font-size: 12px;
}
.ap_form .ap_extra[rel="kr_zip"] .krZip .krzip-address-wrap {
	height: 84px;
	text-align: justify;
}
.ap_form .ap_extra[rel="kr_zip"] .krZip .krzip-address-wrap input.krzip-roadAddress {
	margin-bottom: 4px;
}
.ap_form .ap_extra[rel="kr_zip"] .krZip .krzip-address-wrap input.krzip-jibunAddress,
.ap_form .ap_extra[rel="kr_zip"] .krZip .krzip-address-wrap input.krzip-extraAddress {
	display: inline-block;
}
.ap_form .ap_extra[rel="kr_zip"] .krZip .krzip-address-wrap input.krzip-jibunAddress{
	width: 66.6%;
	float: left;
}
.ap_form .ap_extra[rel="kr_zip"] .krZip .krzip-address-wrap input.krzip-extraAddress {
	width: 33.3%;
	float: right;
}
.ap_form .ap_item[rel="password"] .ap_eye {
	position: absolute;
	display: none;
	z-index: 1;
	right: 32px;
	top: 24px;
	margin-top: -11px;
	width: 20px;
	height: 20px;
	cursor: pointer;
}

.ap_form .ap_submit_info {
	position: relative;
	min-height: 66px;
	line-height: 2;
}
.ap_form .ap_submit_info::after {
	content: '';
    display: table;
	clear: both;
}
.ap_form .ap_submit_info .ap_section {
	display: inline-block;
	margin: 0 0px 0 0 !important;
}
.ap_form .ap_submit_info ul.ap_section {
	margin: 30px 0 !important;
	padding: 0;
	min-height: auto;
	white-space: nowrap;
	line-height:34px;
	display:inline-block;
}
.ap_form .ap_submit_info ul.ap_section li {
	margin: 0 0px 15px 0;
	display:inline;
}
.ap_form .ap_submit_info .ap_privacy,
.ap_form .ap_submit_info .ap_privacy li {
	display: block;
}
.ap_form .ap_submit_info .ap_privacy .ap_popup_trigger {
	font-size: 14px;
	color: #fff;
    padding: 2px 5px;
    line-height: 20px;
    background: #666;
    top: 0;
	font-weight:600;
    display: inline-block;
	position: relative;
}
.ap_form .ap_submit_info .ap_privacy .ap_privacy_content {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 100%;
	max-width: 1000px;
	height: 100%;
	max-height: 525px;
	padding: 3% 6%;
	background-color:#6d7e70;
	box-shadow: 0 0 20px rgba(0,0,0,.2);
	opacity: 0;
	visibility: hidden;
	white-space: normal;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: opacity .3s 0s,visibility 0s .3s;
	-moz-transition: opacity .3s 0s,visibility 0s .3s;
	transition: opacity .3s 0s,visibility 0s .3s;
}
.ap_form .ap_submit_info .ap_privacy .ap_privacy_content.is_visible {
	opacity: 1;
	visibility: visible;
	-webkit-transition: opacity .3s 0s,visibility 0s 0s;
	-moz-transition: opacity .3s 0s,visibility 0s 0s;
	transition: opacity .3s 0s,visibility 0s 0s;
	z-index: 1;
}
.ap_form .ap_submit_info .ap_privacy .ap_privacy_title_container {
	position: relative;
	height: 32px;
}
.ap_form .ap_submit_info .ap_privacy .ap_privacy_title {
	font-size: 16px;
	font-weight: bold;
	color: #fff;
}
.ap_form .ap_submit_info .ap_privacy .ap_popup_close {
	position: absolute;
	right: -2px;
	bottom: 0;
	width: 32px;
	height: 32px;
	display: inline-block;
	overflow: hidden;
	text-indent: 100%;
	color: transparent;
	white-space: nowrap;
}
.ap_form .ap_submit_info .ap_privacy .ap_popup_close::before,
.ap_form .ap_submit_info .ap_privacy .ap_popup_close::after {
	content: '';
	position: absolute;
	top: 16px;
	width: 16px;
	height: 3px;
	background-color: #fff;
}
.ap_form .ap_submit_info .ap_privacy .ap_popup_close::before {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	left: 8px;
}
.ap_form .ap_submit_info .ap_privacy .ap_popup_close::after {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	right: 8px;
}
.ap_form .ap_submit_info .ap_privacy .ap_privacy_desc {
	position: relative;
	width: 100%;
	height: calc(100% - 64px);
	padding: 6%;
	overflow: auto;
	background: #fff;
	border-radius: .25em .25em .4em .4em;
	font-size: 14px;
	-webkit-transition-duration: .3s;
	-moz-transition-duration: .3s;
	transition-duration: .3s;
	color:#444;
}
.ap_form .ap_submit_info .ap_privacy .ap_privacy_command_container {
	position: relative;
	height: 28px;
	text-align: right;
	padding-top:5px;
}
.ap_form .ap_submit_info .ap_privacy .ap_privacy_check,
.ap_form .ap_submit_info .ap_privacy .ap_privacy_check + label::before,
.ap_form .ap_submit_info .ap_privacy .ap_privacy_check + label::after {
	right: 0;
	left: auto;
}
.ap_form .ap_submit_info .ap_privacy .ap_privacy_check + label {
	padding-right: 42px;
	padding-left: 0;
	color: #eee;
}
.ap_form .ap_submit_info .g-recaptcha {
	display: table;
	margin: 0 auto 16px;
}
.ap_form .ap_submit_info input[type="submit"] {

}
.wrap-submit{
	padding:0px 0 0 0px !important;
	text-align: center;
	width:100% !important;
}

@media only screen and (min-width: 768px) {
	.ap_form legend {
		font-size: 18px;
	}
	.ap_form input,
	.ap_form select,
	.ap_form textarea,
	.ap_form label {
		font-size: 16px;
	}	
	.ap_form ul {
		padding-top: 6px;
	}
	.ap_form .ap_extra[rel="date"] input[type="button"] {
		margin: 10px;
	}
	.ap_form .ap_submit_info .ap_privacy .ap_privacy_content {
		width: 80%;
		height: 80%;
	}
	.ap_form .ap_submit_info .ap_privacy .ap_privacy_command_container {
		height: 32px;
	}
	
}

/* Disabled elements  */
.ap_form input:disabled,
.ap_form select:disabled,
.ap_form textarea:disabled {
	background-color: #f6f6f6 !important;
	cursor: not-allowed;
}

@-webkit-keyframes ap_bounce {
	0%, 100% {
		-webkit-transform: scale(1);
	}
	50% {
		-webkit-transform: scale(0.8);
	}
}
@-moz-keyframes ap_bounce {
	0%, 100% {
		-moz-transform: scale(1);
	}
	50% {
		-moz-transform: scale(0.8);
	}
}
@keyframes ap_bounce {
	0%, 100% {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
	50% {
		-webkit-transform: scale(0.8);
		-moz-transform: scale(0.8);
		-ms-transform: scale(0.8);
		-o-transform: scale(0.8);
		transform: scale(0.8);
	}
}

/* Custom icons */
.ap_form .ap_item input,
.ap_form .ap_item select,
.ap_form .ap_item textarea {
	color:#333;
}
.ap_form input[type=radio] + label::after {
    background-image: url("../img/ap_icon-radio.svg");
}


.ap_form .ap_basic.rx_phone_country:after {
	content: '';
	position: absolute;
	z-index: 1;
	left: 290px;
	top: 16px;
	display: block;
	width: 16px;
	height: 16px;
	background: url(widgets/ap_form/skins/default/img/ap_icon-arrow.svg) no-repeat center center;
	pointer-events: none;
}
.ap_form .ap_basic.rx_phone_country[disabled]:after {
	background: none;
}

/* FLoating labels  */
.js .floating-labels label {
	font-size: 18px;
	cursor: text;
	-webkit-transition: top 0.2s, left 0.2s, font-size 0.2s;
	-moz-transition: top 0.2s, left 0.2s, font-size 0.2s;
	transition: top 0.2s, left 0.2s, font-size 0.2s;
	color:#fff;
	position:absolute;
	left:0;
	top:12px;
}


/* Result */
.ap_result {
	display: none;
	margin: 0 auto;
	width: 100%;
	max-width: 720px;
	font-size: 16px;
	color: #333;
}
.ap_result *,
.ap_result *::before,
.ap_result::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
    border-collapse: collapse;
}
.ap_result header {
	display: block;
	margin: 0 auto;
	text-align: center;
	padding: 24px;
	border-radius: 6px;
}
.ap_result header.is_blink {
	animation: blink .8s linear infinite;
	-webkit-animation: blink .8s linear infinite;
}
.ap_result header::after {
	content: '';
	display: table;
	clear: both;
}
.ap_result .ap_image_wrapper {
	position: relative;
	display: inline-block;
	width: 200px;
	height: 120px;
	overflow: hidden;
	vertical-align: middle;
	background: url("../img/ap_send.gif") no-repeat center center;
	background-size: 200px;
}
.ap_result .ap_image {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: auto;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.ap_result .ap_text_wrapper {
	position: relative;
	display: inline-block;
	height: 120px;
	text-align: left;
	vertical-align: middle;
}
.ap_result h3 {
	font-size: 18px;
	color: #666;
}
.ap_result p {
	margin: 0;
	color: #999;
}
.ap_result a {
	color: #678;
	text-decoration: none;
}
.ap_result section {
	display: block;
	margin: 32px auto;
}
.ap_result section:first-of-type {
	margin-top: 0;
}
.ap_result section:last-of-type {
    margin-bottom: 16px;
	padding-bottom: 32px;
	border-bottom: 1px solid #999;
}
.ap_result .ap_result_basic {
	display: table;
	margin: 4px 0;
}
.ap_result .ap_result_basic:first-child {
	display: block;
	padding: 24px 0;
	text-align: center;
}
.ap_result .ap_result_basic_th {
	display: table-cell;
	margin: 0;
	min-width: 120px;
	padding-right: 20px;
	font-weight: bold;
	text-align: right;
}
.ap_result .ap_result_basic:first-child .ap_result_basic_th {
	display: none;
}
.ap_result .ap_result_basic_td {
	display: table-cell;
	margin: 0;
}
.ap_result .ap_result_basic:first-child .ap_result_basic_td {
	display: block;
	width: 100%;
	padding: 36px 24px;
	font-size: 24px;
	font-weight: bold;
	border-top: 2px solid #333;
	border-bottom: 1px solid #666;
}
.ap_result .ap_result_extra {
	margin: 0 auto;
	width: 84%;
	max-width: 672px;
	padding: 0;
	font-size: 14px;
	box-sizing: border-box;
}
.ap_result .ap_result_extra th {
	margin: 0;
	border-bottom: 1px solid #ccc;
	padding: 8px 16px;
	text-align: center;
	white-space: nowrap;
	vertical-align: top;
}
.ap_result .ap_result_extra td {
	margin: 0;
	border-bottom: 1px solid #ccc;
	padding: 8px 16px;
	vertical-align: middle;
}
.ap_result .ap_result_extra tr:last-child th,
.ap_result .ap_result_extra tr:last-child td {
	border-bottom: none;
}
.ap_result .ap_result_content {
	display: table;
	margin: 0;
	padding: 3px;
}
.ap_result .ap_result_content_th {
	display: table-cell;
	margin: 0;
	min-width: 112px;
	padding-right: 18px;
	font-weight: bold;
	text-align: right;
}
.ap_result .ap_result_content_td {
	display: table-cell;
	margin: 0;
	word-break: break-word;
}
.ap_result .ap_result_content_td pre {
	white-space: normal;
	font-family: inherit;
}
.ap_result footer {
	margin: 0;
}
.ap_result .ap_result_footer {
	margin: 0;
	text-align: right;
}
.ap_result .ap_result_footer a {
	position: relative;
	border-bottom: 1px solid #9ab;
	padding-right: 16px;
	font-size: 14px;
	font-weight: bold;
	background: url(../img/ap_icon-forward.svg) no-repeat center right 0;
	background-size: 13px;
}

@keyframes blink {
	0% {
		 background-color: transparent;
	}
	50% {
		background-color: #ccf;
	}
}
@-webkit-keyframes blink {
	0% {
		background-color: transparent;
	}
	50% {
		background-color: #ccf;
	}
}
.form-right .floating-labels label{
	display:none;
}
.form-right .ap_form fieldset > div{
	width:100%;
	padding:0;
	margin:5px 0;
}
.form-right .ap_form fieldset > div.v_phoneB{
	display:none;
}
.form-right .ap_form input[type="text"],.form-right .ap_form input[type="tel"],.form-right .ap_form textarea {
    padding: 4px 10px;
    line-height: 30px;
    border: 2px solid #aca897 ;
    background-color: #ffffff;
    border-radius: 0px;
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
}
.form-right .ap_form .ap_submit_info input[type="submit"]{
	position:relative;
	right:0;
	top:0;
	padding:0;
}
.form-right .ap_form .ap_submit_info ul.ap_section li,
.form-right .ap_form .ap_submit_info ul.ap_section{
	margin:0 !important;
}
.form-right .floating-labels .ap_privacy label{
	display: block;
    padding: 0;
    padding-left: 18px;
    color: #2e2e2e;
}
.form-right .floating-labels .ap_privacy label.privacy22{
	font-size: 11px;
	text-align: left;
	font-family:'돋움', Dotum;
}
.form-right .ap_form .ap_submit_info input[type="submit"]{
	display:block;
	font-size:16px;
	line-height:20px;
	padding:10px 0;
	border-radius: 10px;
	height:40px;
	width:100%;
	font-weight:600;
	margin-top:10px;
	background:#af8865  !important;

}
.form-right .ap_form .ap_submit_info .ap_privacy .ap_popup_trigger {
    font-size: 11px;
    color: #000;
	padding:3px 5px 3px;
	display:block;
	border:1px solid #bababa;
	border-radius: 3px;
	line-height:14px;
	text-align: center;
	background:#fff !important;
	overflow: hidden;
	width:60px;
	margin:0 auto;
	font-weight:600;
	vertical-align: text-bottom;
}

.form-right .ap_form fieldset{
	margin-bottom:0;
}

.form-right .ap_form .ap_privacy li > input[type=checkbox]+label::before {
    border: 0;
    background-size:15px;
	width:15px;
	height:15px;
	margin-top:-7px;
}
.form-right .ap_form .ap_privacy li > input[type=checkbox]:checked+label::before{
	background-position:50% bottom; 
}
.ap_form fieldset > div.v_phoneC,
.wrap-form .ap_form fieldset > div.v_detailsA{
	display:none;
}
@media only screen and (max-width: 768px) {
	.js .floating-labels label {
		font-size: 14px;
	}
	.js .floating-labels label {
		position: absolute;
		top: 12px;
		left: 16px;
		font-size: 16px;
	}
	
	.js .floating-labels .ap_item label {
		left: 56px;
	}
	.js .floating-labels label.float {
		/* move label out the input field */
		font-size: 12px;
		color: #fff;
		top: -20px;
		left: 0 !important;
	}
	.ap_form fieldset{
		margin:0 3% 24px;
	}
	.ap_form fieldset > div{
		padding:0 3%;
		margin:3vw 0;
	}
	.js .floating-labels label{
		color:#cccccc;
		font-size:3.5vw;
	}
}
@media only screen and (max-width: 540px) {
	.ap_form .ap_basic select[name="phone_country"] {
		width: 100%;
	}
	.ap_form .ap_basic.rx_phone_country:after {
		right: 16px;
		left: auto;
	}
}