/*---------------------------- popup sign up ----------------------------*/
.bg-white {
    background-color: #ffffff;
}
.limit-content {
    max-width: 320px;
    margin: 0 auto;
}
.overlay-block {
    overflow-y: auto;
}
.overlay-block .overlay-container {
    max-width: 1100px;
    padding: 0;
    font-size: 1em;
    background-color: #ececec;
}
.overlay-block p {
    font-size: 1em;
}
.overlay-block .grid-6 {
    padding: 4em;
}
.overlay-block .left .h2 {
    text-transform: uppercase;
}
.btn-face {
    display: block;
    width: 100%;
    background-color: #3062c5;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    font-size: 1em;
    line-height: 1;
    padding: 1.2em 10px 1em;
    border: 0;
}
.btn-face:hover, .btn-face:focus {
    background-color: #133d90;
    color: #ffffff;
    border: 0;
    text-decoration: none;
}
.btn-face i {
    font-size: 36px;
    vertical-align: middle;
    margin-right: 15px;
}
.overlay-block .btn-face {
    margin-bottom: 1.25em;
}
.signup-form {
    width: 100%;
}
.form-control, .signup-form input[type=text], .signup-form input[type=email], .signup-form textarea {
    display: block;
    width: 100%;
    height: 55px;
    font-size: 1em;
    line-height: 1.42857143;
    background-color: transparent;
    background-image: none;
    border: 2px solid #000;
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    margin-bottom: 15px;
}
.signup-form .checkbox {
    margin-top: 20px;
    margin-bottom: 1em;
}

.signup-form .btn-lg {
    width: 100%;
    margin-top: 20px;
    text-transform: capitalize;
    padding: 0.875em 1.25em;
    cursor: pointer;
}
.checkbox {
    position: relative;
    margin: 20px auto;
}
.checkbox label + label {
    width: 18px;
    height: 18px;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    background: transparent;
    border-radius: 0px;
    box-shadow: none;
    border: 2px solid #333;
}
.checkbox label + label:after {
    content: '';
    width: 9px;
    height: 5px;
    position: absolute;
    top: 4px;
    left: 3px;
    border: 3px solid #333;
    border-top: none;
    border-right: none;
    background: transparent;
    opacity: 0;
    transform: rotate(-45deg);
}
.checkbox label + label:hover::after {
    opacity: 0.8;
}
.checkbox input[type=checkbox] {
    visibility: hidden;
    margin-right: 10px;
}
.checkbox input[type=checkbox]:checked + label + label:after {
    opacity: 1;
}

.overlay-block-active .modal {
    opacity: 0;
    visibility: hidden;
}

.overlay-block-active .open-modal {
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.overlay-block .overlay-container.padding-block {
    padding: 3em;
}

@media handheld, only screen and (max-width: 70em) {
    .overlay-close {
        top: 0;
    }
    .overlay-block .grid-6 {
        padding: 2em;
    }
}
/*---------------------------- end popup sign up ----------------------------*/