/*************************
common-form.css
**************************/
.o-inp-ti,.o-ad-ti{
	font-size: 15px;
	box-sizing: border-box;
}

.o-inp-ti{
	width: 100%;
	display: block;
	margin-bottom: 10px;
}

.o-ad-ti,.o-pri-radio{
	font-size: 15px;
	line-height: 22px;
	text-align: left;
}

.o-pri-radio{
	font-weight: normal;
	margin-bottom: 0;
}

.zinput label:before {
    width: 25px;
    height: 25px;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    cursor: pointer;
    content: '';
    border: 1px solid #e1e1e1;
    transition: box-shadow 0.2s ease-in-out;
    box-shadow: inset 0 0 0 0px #00a0e8, 0 0 0 0 #00a0e8;
}

.zinput.zradio input[type='radio']:checked + label:before {
    box-shadow: inset 0 0 0 6px #00a0e8, 0 0 0 0 #00a0e8;
}

.o-address-ob{
	width:100%;
}

.o-postal{
	width:150px;
}

.o-pref-slc{
	padding-bottom: 10px;
	height: 46px!important;
}

.o-privacy-oob{
	width: 100%;
}

.o-privacy-ob{
	width: 100%;
	box-sizing: border-box;
	padding: 15px 9px 15px 9px;
	background: #fff;
	margin-bottom: 10px;
	border: solid 1px #e1e1e1;
}

.o-privacy-ib{
    box-sizing: border-box;
    height: 230px;
    margin-bottom: 0;
    overflow-y: scroll;
    padding: 5px;
    text-align: left;
}

.o-pri-h2{
	font-size: 15px;
	line-height: 23px;
	margin-bottom: 10px;
	text-align: left;
}

.o-pri-h3{
	font-size: 15px;
	line-height: 22px;
	margin-bottom: 10px;
	text-align: left;
	margin-top: 30px;
}

.o-pri-txt{
	font-size: 14px;
	line-height: 23px;
	text-align: justify;
}

.form-group{
	margin-bottom: 25px;
	flex-wrap: nowrap;
}


.o-com-btn-w{
	width: 200px;
	display: block;
	font-size: 15px;
}

.o-must{
	color: #e50011;
}

.o-not-mst{
}

.o-cont-txt{
	font-size: 15px;
	line-height: 26px;
	text-align: left;
	color: #000;
	margin: 0;
}

.o-ssl-txt{
	display: block;
	font-size: 13px;
	line-height: 20px;
	text-align: left;
	color: #000;
	box-sizing: border-box;
	padding-left: 13px;
	text-indent: -13px;	
}

.o-ad-ti{
	width: 93px;
	text-align: right;
	box-sizing: border-box;
	padding-right: 15px;
}

.o-clear-btn{
	color: #595757;
	transition: .3s;
	background: #fff;
}

.o-clear-btn:active,.o-clear-btn:hover{
	background: #dcdcdd;
}

.o-com-btn-w{
	cursor: pointer;
}

.o-btn-box{
	width: 300px;
	margin: 80px auto 0 auto;
	flex-wrap: wrap;
}

.form-control{
	font-size: 15px!important;
}

.o-vari-b{
	width: 100%;
}

.org-feedback{
	/* width: 100%; */
	font-size: 14px;
	text-align: left;
	color: #e50011;
	margin-top: 5px;
}

.o-green-bk{
	/* background: #eff6e1; */
}

.form-control{
	border: none;
	background: #fff;
}

/*Checkboxes styles*/
input[type="checkbox"] { display: none; }

input[type="checkbox"] + label {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
  font: 14px/20px 'Open Sans', Arial, sans-serif;
  color: #000;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

input[type="checkbox"] + label:last-child { margin-bottom: 0; }

input[type="checkbox"] + label:before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #6cc0e5;
  position: absolute;
  left: 0;
  top: 11px;
  opacity: .6;
  -webkit-transition: all .12s, border-color .08s;
  transition: all .12s, border-color .08s;
}

input[type="checkbox"]:checked + label:before {
  width: 10px;
  top: -5px;
  left: 5px;
  border-radius: 0;
  opacity: 1;
  border-top-color: transparent;
  border-left-color: transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}


.progressbar{
    position: relative;
    margin: 60px auto 60px auto;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	width: 100%;
}
.progressbar li {
    position: relative;
    list-style-type: none;
    text-align: center;
    text-transform: uppercase;
    width: 33.333%;
    color: #999999;
    font-weight: bold;
    counter-increment: steps;
	font-size: 15px;
}
.progressbar li:before {
    display: block;
    width: 26px;
    height: 26px;
    margin: 7px auto 20px auto;
    content: '';
    line-height: 26px;
    font-size: 12px;
    text-align: center;
    border-radius: 50%;
    background-color: #dcdcdd;
    content: counter(steps);
}
.progressbar li:after {
    position: absolute;
    z-index: -1;
    top: 15px;
    left: -50%;
    width: 100%;
    height: 2px;
    content: '';
    background-color: #dcdcdd;
}
.progressbar li:first-child:after {
    content: none;
}
.progressbar li.active,
.progressbar li.complete{
    color: #0070BD;
}
.progressbar li.active:before,
.progressbar li.complete:before {
    background-color: #0070BD;
    color: #FFF;
}
.progressbar li.active:after,
.progressbar li.complete:after {
    background-color: #0070BD;
}

.o-priv-ul{
	padding: 0;
	list-style: none;
}

.o-priv-ul li{
	font-size: 14px;
	line-height: 23px;
	box-sizing: border-box;
	padding-left: 14px;
	text-indent: -18px;
}



/*** check ***/
.o-ck-txt{
	font-size: 15px;
	width: 60%;
}

.ck-ob .o-inp-ti{
	font-weight: 500;
	color: #000;
	margin-bottom: 5px;
}

/** thanks**/
.o-thanks-h2{
	font-size: 18px;
	line-height: 28px;
	margin-bottom: 20px;
}

.o-thanks-ul{
	padding: 0;
	margin-left: 15px;
	list-style: none;
}

.o-thanks-ul li{
	font-size: 15px;
	line-height: 28px;
}

.o-thanks-top{
	margin: 70px auto 0 auto;
}

.o-thanks-ob{
	/*max-width: 900px;
	margin: 0 auto;*/
}



@media (min-width:576px){
.o-btn-box {
    width: 420px;
    margin: 80px auto 0 auto;
}
}


@media (min-width:768px){
.o-btn-box{
	width: 440px;
	margin: 80px auto 0 auto;
}

.o-not-mst{
	padding-left: 15px;
}

.o-inp-ti{
	margin: 0;
	width: 40%;
}

.o-ad-ti{
	text-align: right;
}

.o-full-inp{
	width: 100%;
}

.o-vari-b{
	width: 100%;
}

/** thanks**/
.o-thanks-h2{
	font-size: 20px;
}
}

/*@media (orientation: landscape) and (max-width: 992px){

}*/

@media (min-width:992px){
.o-inp-ti{
	width: 40%;
	max-width: 250px;
}

.o-vari-b{
	width: 77%;
}
}

@media (min-width:1200px){
.o-inp-ti{
	width: 40%;
}
}

/*@media only screen and (min-device-width: 520px) and (max-device-width: 1024px) and (orientation:portrait) {

}*/
