#recaptcha{
    position: relative;
    z-index: 1;
}
#recaptcha .grecaptcha-badge{
    bottom: 170px !important;
    /*right: -260px !important;*/
}
#recaptcha .grecaptcha-badge:hover {
    right: -2px !important;
}
@media (max-width: 991px){
    #recaptcha .grecaptcha-badge{
        bottom: 100px !important;
    }
}

.form-group {
    margin-bottom: 30px;
}
.control-label{
    font-size: 14px;
    line-height: 20px;
}
.help-block{
    font-size: 14px;
    line-height: 20px;
}
.form-control {
    height: 46px;
    padding: 10px 16px;
    font-size: 16px;
    line-height: 26px;
    border-radius: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
    
    background: none;
    border: 0;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    font-size: 14px;
    color: #231f20;
    padding-left: 20px;
    padding-right: 30px;
}
.form-control:focus {
    border-color: #000;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.has-error .form-control,
.has-error .form-control:focus,
.has-success .form-control,
.has-success .form-control:focus{
  -webkit-box-shadow: none;
    box-shadow: none;
}


.input-lg {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 26px;
    border-radius: 0px;
}

.has-feedback label ~ .form-control-feedback {
    top: 30px;
}
@media (max-width: 991px){
    .has-feedback label ~ .form-control-feedback {
        top: 26px;
    }
}
.form-control-feedback{
    width: 46px;
    height: 46px;
    line-height: 46px;
}
.input-lg + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
    width: 46px;
    height: 46px;
    line-height: 46px;
}

select.form-control{
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-repeat: no-repeat;
    background-position: center right 8px;
    background-image: url(../design/caret-down-black.svg);
}

select.form-control::-ms-expand { /* for IE 11 */
    display: none;
}
.has-feedback select.form-control ~ .form-control-feedback {
    right: 20px;
}
.has-feedback select.form-control {
    padding-right: 50px;
}
select.input-lg {
    height: 46px;
    line-height: 26px;
}
.radio, .checkbox{
    position: relative;
    display: block;
    padding-left: 25px;
    margin-left: 20px;
}
.radio input[type="radio"], 
.radio-inline input[type="radio"], 
.checkbox input[type="checkbox"], 
.checkbox-inline input[type="checkbox"] {
    position: absolute;
    margin-top: 5px;
    margin-left: -25px;
}
.radio label, 
.checkbox label {
    padding-left: 0px;
}
textarea.form-control {
    overflow-y: hidden;
    resize: none;
    line-height: 20px;
}

.form-control::-webkit-input-placeholder {
    color: #3c3c3b;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}
/*.form-control:focus::-webkit-input-placeholder {
    color: #eee;
}*/
.form-control::-moz-placeholder{
    color: #3c3c3b;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}
/*.form-control:focus::-moz-placeholder{
    color: #eee;
}*/
.form-control:-ms-input-placeholder{
    color: #3c3c3b;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}
/*.form-control:focus:-ms-input-placeholder {
    color: #eee;
}*/
.form-control:-moz-placeholder {
    color: #3c3c3b;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}
/*.form-control:focus:-moz-placeholder {
    color: #eee;
}*/
.form-control::placeholder {
    color: #3c3c3b;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}
/*.form-control:focus::placeholder {
    color: #eee;
}*/


input[type="radio"],
input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}
.checkbox input[type="checkbox"]:checked, 
.checkbox input[type="checkbox"]:not(:checked) {
    position: absolute;
    left: -9999px;
    /*visibility: hidden;*/
}
.checkbox input[type="checkbox"]+label {
    cursor: default;
    display: inline-block;
    position: relative;
    margin: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 18px;
}
.checkbox input[type="checkbox"]+label:after,
.checkbox input[type="checkbox"]+label:before {
    cursor: pointer;
    content: '';
    position: absolute;
    top: 0;
    left: -25px;
    width: 16px;
    height: 16px;
    z-index: 0;
    border-radius: 2px;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -o-transition: .2s;
    -ms-transition: .2s;
    transition: .2s;
}
.checkbox input[type="checkbox"]+label:before{
    z-index: 0;
    background: none;
    border: 1px solid #3c3c3b;
}
.checkbox input[type="checkbox"]+label:after{
    z-index: 1;
    opacity: 0;
    top: 0px;
    left: -22px;
    width: 5px;
    height: 9px;
    border-top: 2px solid transparent;
    border-left: 2px solid transparent;
    border-right: 2px solid #3c3c3b;
    border-bottom: 2px solid #3c3c3b;
    -webkit-transform: rotate(40deg);
    -moz-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    -o-transform: rotate(40deg);
    transform: rotate(40deg);
    -webkit-transform-origin: bottom left;
    -moz-transform-origin: bottom left;
    -ms-transform-origin: bottom left;
    -o-transform-origin: bottom left;
    transform-origin: bottom left;
}
.checkbox input[type="checkbox"]:checked+label:before {
    border-color: #4CAF50;
    background: none;
}
.checkbox input[type="checkbox"]:checked+label:after {
    opacity: 1;
    border-right-color: #4CAF50;
    border-bottom-color: #4CAF50;
}


.btn {
    padding: 10px 30px;
    font-size: 14px;
    line-height: 20px;
    border-radius: 21px;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: background 0.3s ease, color 0.3s ease;
    transition: background 0.3s ease, color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
	text-decoration: none;
}
.btn:active, .btn.active {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.btn-lg{
    padding: 14px 40px;
    font-size: 15px;
    line-height: 20px;
    border-radius: 25px;
}
@media (max-width: 991px){    
    .btn{
        font-size: 12px;
    }
    .btn-lg{
        padding: 10px 30px;
        font-size: 13px;
        line-height: 18px;
        border-radius: 20px;
    }
}

.btn-primary{
    color: #000;
    background: none;
    border-color: #000;
}
.btn-primary:focus,.btn-primary.focus{
    color: #ffffff;
    background-color: #1a1614;
    border-color: #1a1614;
}
.btn-primary:hover{
    color: #ffffff;
    background-color: #1a1614;
    border-color: #1a1614;
}
.btn-primary:active,.btn-primary.active{
    color: #ffffff;
    background-color: #1a1614;
    border-color: #1a1614;
}
.btn-primary:active:hover, .btn-primary.active:hover,
.btn-primary:active:focus, .btn-primary.active:focus,
.btn-primary:active.focus, .btn-primary.active.focus{
    color: #ffffff;
    background-color: #1a1614;
    border-color: #1a1614;
}
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus{
    background-color: #1a1614;
    border-color: #1a1614;
}


.btn-white{
    color: #fff;
    background: none;
    border-color: #fff;
}
.btn-white:focus,.btn-white.focus{
    color: #1a1614;
    background-color: #fff;
    border-color: #fff;
}
.btn-white:hover{
    color: #1a1614;
    background-color: #fff;
    border-color: #fff;
}
.btn-white:active,.btn-white.active{
    color: #1a1614;
    background-color: #fff;
    border-color: #fff;
}
.btn-white:active:hover, .btn-white.active:hover,
.btn-white:active:focus, .btn-white.active:focus,
.btn-white:active.focus, .btn-white.active.focus{
    color: #1a1614;
    background-color: #fff;
    border-color: #fff;
}
.btn-white.disabled:hover,
.btn-white[disabled]:hover,
.btn-white.disabled:focus,
.btn-white[disabled]:focus,
.btn-white.disabled.focus,
.btn-white[disabled].focus{
    background-color: #fff;
    border-color: #fff;
}


.btn-link-fake,
.btn-link{
    display: inline-block;
    border: 0px;
    padding: 0px;
    position: relative;
    font-weight: 700;
    color: #4d4d4f;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    white-space: normal;
    text-align: left;
}
.btn-link-fake{
    padding: 0;
    font-size: 0;
}
.btn-link::after{
    font-family: beeicon;
    font-weight: normal;
    content: "\f101";
    display: inline;
    width: 12px;
    height: 20px;
    line-height: 1em;
    color: #ae8b00;
    text-align: center;
    margin-left: 5px;
}
.btn-lg.btn-link{
    padding: 10px 25px;
    font-size: 16px;
    line-height: 20px;
}
.btn-lg.btn-link::after{
}
.btn-link:focus,
.btn-link:hover{
    color: #ae8b00;
    text-decoration: none;
}
@media (max-width: 991px){
    .btn-link {
        font-size: 12px;
    }
}