.hidden {
    height: 100%;
    overflow: hidden;
}

@media (max-width: 800px) {
    .hidden {
        height: auto;
        overflow: auto;
    }
}

#popup {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    position: fixed;
    display: none;
}

@media (max-width: 800px) {
    #popup {
        position: absolute;
    }
}

#popup .close {
    background-size: 15px 15px;
    background-repeat: no-repeat;
    background-image: url(../images/close.jpg);
    height: 15px;
    width: 15px;
    top: 5px;
    right: 6px;
    cursor: pointer;
    position: absolute;
}

#blur {
    -moz-transition: all 0.1s;
    -o-transition: all 0.1s;
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
}

#blur.active {
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -o-filter: blur(15px);
    -ms-filter: blur(15px);
    filter: blur(15px);
    -moz-transition: all 0.6s;
    -o-transition: all 0.6s;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}

#popup form {
    overflow: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

#popup #content {
    width: 90%;
    padding: 35px 35px 15px 35px;
    z-index: 200;
    position: relative;
    margin: auto;
    /*top: 50%;
    left: 50%;
    margin-left: -165px;*/
    /*position: absolute;*/
    background-color: rgba(222, 223, 222, .85);
    border-radius: 8px;
    border: 1px solid #a4abad;
    /*-moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);*/
}

@media (max-width: 800px) {
    #popup form {
        margin: 150px auto 20px auto;
        padding: 15px 4px;
    }
}

#popup .notification {
    display: none;
    color: #495466;
    font-size: 18px;
    text-align: center;
}

#popup .notification img {
    display: block;
    margin: 15px auto 30px auto;
}

#popup .notification p {
    color: #485363;
    font-size: 16px;
    padding: 15px 0;
    line-height: 22px;
}

#popup .notification a {
    color: #eb8e26;
    font-weight: 600;
    display: inline-block;
    position: relative;
    margin: 15px 0;
    text-decoration: none;
}

#popup .notification a.without_arrow {
    display: block;
    margin: 10px 0;
}

#popup .notification a.without_arrow:before {
    display: none;
}

#popup .notification a:before {
    content: "";
    height: 25px;
    width: 31px;
    margin-right: 10px;
    vertical-align: middle;
    display: inline-block;
    background-image: url(../images/signup/ic_arrow.png);
}

#popup .notification span {
    color: #818FE4;
    font-weight: 600;
}

#captcha {
    margin-top: 20px;
}

#popup form input,
#popup form textarea,
#popup form select {
    font-size: 16px;
    font-family: 'Open Sans';
    width: 100%;
    outline: none;
    background-color: #fff;
    border-radius: 3px;
    padding: 0 10px;
    box-sizing: border-box;
    border: 2px solid #a3a9b0;
    -moz-transition: border-color 0.3s;
    -o-transition: border-color 0.3s;
    -webkit-transition: border-color 0.3s;
    transition: border-color 0.3s;
}

#popup form input,
#popup form select {
    height: 40px;
}

#popup #signupForm input,
#popup #signupForm textarea,
#popup #signupForm select {
    margin-bottom: 10px;
}

#popup .invalid {
    border-color: red;
}

#popup .separator {
    height: 20px;
    font-weight: 600;
    font-size: 18px;
    line-height: 20px;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

#popup .separator:before,
#popup .separator:after {
    content: "";
    height: 1px;
    width: 40%;
    top: 50%;
    left: 0;
    z-index: 0;
    position: absolute;
    background-color: #bbbdc1;
}

#popup .separator:before {
    left: auto;
    right: 0;
}

#popup label:not(.selectLabel):not(.inputLabel) {
    font-size: 14px;
    line-height: 30px;
    display: block;
    margin-bottom: 20px;
    text-align: center;
}

#popup .selectBox,
#popup .inputBox
 {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
}

#popup .selectBox label,
#popup .inputBox label 
 {
    color: grey;
    margin: 10px;
}

#popup form input:focus {
    border-color: #FFCC00;
}

#google_btn {
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    text-decoration: none;
    background: #DF4A32;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    margin: 0 0 20px 0 !important;
    -moz-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

#google_btn:hover {
    background: #d33921;
}

#popup .yellow_btn,
#popup #google_btn {
    padding: 15px 0;
    width: 100%;
    display: block;
    margin-top: 20px;
    font-weight: normal;
    text-align: center;
}

#popup #signupForm {
    display: none;
}

#popup .signupForm__field {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#popup .signupForm__field textarea {
    margin-left: 8px;
}

#popup .validation-simbol-require {
    position: relative;
    left: -10px;
    top: -2px;
    color: #d33921;
}

