.input {
	position: relative;
	z-index: 1;
	display: inline-block;
	margin: 20px 0 10px;
	width: 100%;
	vertical-align: top;
}


.input__field {
	position: relative;
	display: block;
	float: right;
	padding: 5px 10px ;
	width: 60%;
	border: none;
	border-radius:3px;
	background: #f0f0f0;
	color: #696969;
	font-weight: 400;
/*	font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;*/
	-webkit-appearance: none; /* for box shadows to show on iOS */
}

.input__field:focus {
	outline: none;
}

.input__label {
	display: inline-block;
	float: right;
	padding: 0 1em;
	width: 40%;
	color: #696969;
	font-weight: 400;
	font-size: 13px;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
   
	-ms-user-select: none;
	user-select: none;
}

.input__label-content {
	position: relative;
	display: block;
	padding: 1.6em 0;
	width: 100%;
}

.graphic {
	position: absolute;
	top: 0;
	left: 0;
	fill: none;
}

.icon {
	color: #ddd;
	font-size: 13px;
}


.input__field--yoshiko {
	width: 100%;
	background-color: #fff;
border:1px solid #ccc;
	-webkit-transition: background-color 0.25s, border-color 0.25s;
	transition: background-color 0.25s, border-color 0.25s;
}

.input__label--yoshiko {
    width: 100%;
    text-align: left;
    position: absolute;
    bottom: 100%;
    pointer-events: none;
    overflow: hidden;
    padding: 0 10px;
    -webkit-transform: translate3d(0, 36px, 0);
    transform: translate3d(0, 36px, 0);
    -webkit-transition: -webkit-transform 0.30s;
    transition: transform 0.30s;
        transition-timing-function: ease;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}


.input__label-content--yoshiko {
	color: #4c5a62;
	padding: 0.25em 0;
	-webkit-transition: -webkit-transform 0.25s;
	transition: transform 0.25s;
	-webkit-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
    font-size: 14px;
}

.input__label-content--yoshiko::after {
	content: attr(data-content);
	position: absolute;
	font-weight: 600;
	bottom: 100%;
	left: 0;
	height: 100%;
	width: 100%;
	color: #f28026;
	padding: 0.25em 0;
    font-style: normal;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.70em !important;
}

.input__field--yoshiko:focus + .input__label--yoshiko,
.input--filled .input__label--yoshiko {
	-webkit-transform: translate3d(0, 10px, 0);
	transform: translate3d(0, 10px, 0);
}

.input__field--yoshiko:focus + .input__label--yoshiko .input__label-content--yoshiko,
.input--filled .input__label-content--yoshiko {
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
}

.input__field--yoshiko:focus + .input__field--yoshiko,
.input--filled .input__field--yoshiko {
	background-color: transparent;
	border-color: #f28026;
}


[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 38px;
    padding-top: 1px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    font-weight: 400;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    border: 1px solid #696969;
    border-radius: 100%;
    background: #fff;
}
[type="radio"]:checked + label:after,
[type="radio"]:checked + label::after, [type="radio"]:not(:checked) + label::after {
    content: '';
    width: 15px;
    height: 15px;
    background: #00baf1;
    position: absolute;
    top: 5px;
    left: 5px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:checked + label::before{
	border: 1px solid #00baf1;
}
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}



[type="checkbox"]{/*display: none*/}
[type="checkbox"]:checked,
[type="radio"]:not(:checked) {
    checkbox: absolute;
    left: -9999px;
}
[type="checkbox"]:checked + label,
[type="checkbox"]:not(:checked) + label
{
    position: relative;
    padding-left: 38px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    font-weight: 400;
}
[type="checkbox"]:checked + label::before, [type="checkbox"]:not(:checked) + label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 21px;
    height: 21px;
    border: 1px solid #696969;
    border-radius: 50%;
    background: #fff;
}

[type="checkbox"]:checked + label::after, [type="checkbox"]:checked + label::after, [type="checkbox"]:not(:checked) + label::after {
    content: '';
    width: 13px;
    height: 13px;
    background: #f28026;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 50%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

[type="checkbox"]:checked + label::before{
	border: 1px solid #f28026;
}
[type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="checkbox"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}




.authorizationdiv [type="checkbox"]:checked,
.authorizationdiv [type="checkbox"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
.authorizationdiv [type="checkbox"]:checked + label,
.authorizationdiv [type="checkbox"]:not(:checked) + label
{
    position: relative;
    padding-left: 38px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    font-weight: 400;
}
.authorizationdiv [type="checkbox"]:checked + label:before,
.authorizationdiv [type="checkbox"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    padding-top: 1px;
    width: 25px;
    height: 25px;
    border: 1px solid #696969;
    border-radius: 100%;
    background: #fff;
}
.authorizationdiv [type="checkbox"]:checked + label:after,
.authorizationdiv [type="checkbox"]:checked + label::after, .authorizationdiv [type="checkbox"]:not(:checked) + label::after {
    content: '';
    width: 15px;
    height: 15px;
    background: #00baf1;
    position: absolute;
    top: 5px;
    left: 5px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.authorizationdiv [type="checkbox"]:checked + label::before{
    border: 1px solid #00baf1;
}
.authorizationdiv [type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.authorizationdiv [type="checkbox"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.authorizationdiv .conditions {margin-top: 10px }