/* CSS Document */
/*--------------------------
  Form
--------------------------*/
.required_icon {
  display: inline-block;
  margin-right: 5px;
  padding: 1px 3px 1px 3px;
  font-size: 0.5rem;
  vertical-align: 1px;
  color: #fff;
  background-color: #ff4d4d;
  border-radius: 2px;
}
.required_ans {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0 0 15px 0;
    line-height: 1.5;
}
.iptxt {
  display: inline-block;
}
.error {
    padding: 10px 20px;
    margin-bottom: 25px;
    border: 1px solid transparent;
    border-radius: 4px;
    background-color: #f2dede;
    border-color: #ebccd1;
    color: #a94442;
    font-size: 0.8rem;
}
.iptxt input[type=radio], .iptxt input[type=checkbox] {
  display: none;
}
.iptxt .radio, .iptxt .checkbox {
  box-sizing: border-box;
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
  position: relative;
  display: inline-block;
  margin: 0 10px 2px 0;
  padding: 6px 6px 6px 32px;
  border-radius: 5px;
  background-color: #f6f7f8;
  vertical-align: middle;
  cursor: pointer;
}
.radio:hover, .checkbox:hover {
  background-color: #e2edd7;
}
.radio:hover:after, .checkbox:hover:after {
  border-color: #53b300;
}
.radio:after, .checkbox:after {
  -webkit-transition: border-color 0.2s linear;
  transition: border-color 0.2s linear;
  position: absolute;
  top: 50%;
  left: 10px;
  display: block;
  margin-top: -8px;
  width: 15px;
  height: 15px;
  border: 2px solid #bbb;
  border-radius: 3px;
  content: '';
}
.radio:before, .checkbox:before {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  position: absolute;
  top: 50%;
  left: 10px;
  display: block;
  margin-top: -8px;
  width: 15px;
  height: 15px;
  border-radius: 3px;
  background-color: #53b300;
  content: '';
  opacity: 0;
  z-index: 10;
}
input[type=radio]:checked + .radio:before {
  opacity: 1;
}
input[type=checkbox]:checked + .checkbox:before {
  opacity: 1;
}
.radio2 {
  box-sizing: border-box;
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
  position: relative;
  display: inline-block;
  margin: 0 5px 1px 0;
  padding: 6px 6px 6px 21px;
  border-radius: 4px;
  background-color: #f6f7f8;
  vertical-align: middle;
  cursor: pointer;
}
.radio2:hover {
  background-color: #e2edd7;
}
.radio2:hover:after {
  border-color: #53b300;
}
.radio2:after {
  -webkit-transition: border-color 0.2s linear;
  transition: border-color 0.2s linear;
  position: absolute;
  top: 50%;
  left: 7px;
  display: block;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  border: 1px solid #bbb;
  border-radius: 3px;
  content: '';
}
.radio2:before {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  position: absolute;
  top: 50%;
  left: 9px;
  display: block;
  margin-top: -2px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #53b300;
  content: '';
  opacity: 0;
}
input[type=radio]:checked + .radio2 {
  background-color: #e2edd7;
}
input[type=radio]:checked + .radio2:before {
  opacity: 1;
}
.iptxt input[type=text], .iptxt input[type=password], .iptxt input[type=email] {
  box-sizing: border-box;
  width: 100%;
  margin: 0 5px 4px 0;
  border-radius: 4px;
  outline: none;
}
.iptxt input[type=text]:focus, .iptxt input[type=password]:focus, .iptxt input[type=email]:focus {
  border-color: #da3c41;
}
.iptxt i {
  position: absolute;
  top: 8px;
  left: 0;
  padding: 9px 8px;
  transition: 0.3s;
}
.iptxt input[type=text]:focus + i {
  color: #da3c41;
}
.i_mail {
  background: url("../icon/email.svg") no-repeat;
  background-size: 80% 80%;
  background-position: 50% 50%;
}
.i_pass {
  background: url("../icon/pass.svg") no-repeat;
  background-size: 80% 80%;
  background-position: 50% 50%;
}
/*--------------------------
  Button
--------------------------*/
.btneria {
  position: relative;
  width: 100%;
  height: auto;
  margin: 15px auto 0 auto;
  padding: 0;
  font-weight: 600;
	text-align: center;
}
.login_button {
  position: relative;
  width: 100%;
  padding: 7px 15px;
  border-radius: 3px;
  background: #ea657c;
  color: #FFF;
  cursor: pointer;
}
.login_button:hover {
  background: #9E4252;
}
.entry_button {
  position: relative;
  width: 100%;
  padding: 7px 15px;
  border-radius: 3px;
  background-color: rgba(255, 255, 255, .2);
  box-shadow: 0 3px 3px rgba(0, 0, 0, .2), inset 0 1px 1px rgba(255, 255, 255, .7);
  text-shadow: 0px 1px 0px rgba(0, 0, 0, .4);
  color: #FFF;
  cursor: pointer;
}
.conf_button,
.submit_button{
    display: inline-block;
    width: 200px;
    margin: 0 10px;
    padding: 12px;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.3;
    color: #392c00;
    background: #ffc003;
    background: -moz-linear-gradient(top, #ffc003 0%, #ffd148 100%);
    background: -webkit-linear-gradient(top, #ffc003 0%, #ffd148 100%);
    background: linear-gradient(to bottom, #ffc003 0%, #ffd148 100%);
    border: 2px solid #f2c646;
    border-radius: 4px;
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}
.submit_icon:before {
    content: " ";
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-right: 10px;
    vertical-align: -1px;
	background: url("../icon/submit_icon.png") 0 0;
    -webkit-background-size: 15px 15px;
    -moz-background-size: 15px 15px;
    background-size: 15px 15px;
}

.histryback {
    display: inline-block;
    width: 150px;
    margin: 0 10px;
    padding: 12px;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.3;
    color: #fff;
    background: #797979;
    background: -moz-linear-gradient(top, #828282 0%, #797979 100%);
    background: -webkit-linear-gradient(top, #828282 0%, #797979 100%);
    background: linear-gradient(to bottom, #828282 0%, #797979 100%);
    border: 2px solid #efefef;
    border-radius: 4px;
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}