/*------------------------------------------------------------------------------------------- */
/*----------------------------------------- MODAL ------------------------------------------ */
/*------------------------------------------------------------------------------------------- */
.modal {
    position: relative;
    max-width: 360px;
    padding: 30px;
    background: #ffffff;
    border-radius: 5px;
}
.modal .modal_title {
    margin-bottom: 20px;
    font-size: 26px;
    font-family: bold;
    text-align: center;
    color: #0099cc;
    text-transform: uppercase;
    padding: 0;
}
.modal .close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    font-size: 16px;
    color: #0099cc;
    cursor: pointer;
}
.modal .modal_body {
    padding: 0;
}
.modal .text {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
}
.modal .basic_form input[type=text],
.modal .basic_form input[type=password] {
    height: 40px;
    font-size: 18px;
    line-height: 40px;
    color: #333333;
    background: #e6e6e6;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) inset;
}
.modal .basic_form .pass_link {
    position: absolute;
    top: 50%;
    right: 10px;
    height: 20px;
    margin-top: -10px;
    font-size: 12px;
    line-height: 20px;
    font-family: light;
    text-transform: uppercase;
    cursor: pointer;
}
.modal .basic_form .pass_link:hover {
    color: #0099cc;
}
.modal .basic_form .login_button,
.modal .basic_form .pass_button {
    width: 100%;
    height: 40px;
    font-size: 16px;
    line-height: 40px;
    font-family: bold;
    color: #ffffff;
    text-transform: uppercase;
    background: #0099cc;
    border-radius: 3px;
    cursor: pointer;
}
.modal .basic_form .login_button:hover,
.modal .basic_form .pass_button:hover {
    background: #07abe1;
}

.adaptive_menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    display: none;
    width: 100%;
    height: 100%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.9);
}
.adaptive_menu a {
    display: block;
    height: 40px;
    font-size: 18px;
    line-height: 40px;
    font-family: bold;
    color: #ffffff;
    text-transform: uppercase;
}
.adaptive_menu .icon-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 22px;
    height: 22px;
    font-size: 22px;
    color: #ffffff;
    cursor: pointer;
}
.adaptive_menu .icon-close:hover {
    color: #0099cc;
}

.login_modal label {
    display: inline-block;
    height: 20px;
    font-size: 14px;
    line-height: 21px;
    font-family: light;
    vertical-align: top;
    color: #767676;
    text-transform: uppercase;
    cursor: pointer;
}
.login_modal .social_login {
    padding-top: 30px;
}
.login_modal .social_login .or {
    position: relative;
    position: relative;
    height: 20px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 20px;
    font-family: bold;
    text-align: center;
    text-transform: uppercase;
}
.login_modal .social_set {
    display: block;
    height: 30px;
    text-align: center;
}
.login_modal .social_set a {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin: 0 2px;
    vertical-align: top;
    background-image: url(../images/social_set.png);
    background-repeat: no-repeat;
    background-size: 270px 90px;
}
.login_modal .social_set a.vk {
    background-position: 0 -30px;
}
.login_modal .social_set a.fb {
    background-position: -30px -30px;
}
.login_modal .social_set a.tw {
    background-position: -60px -30px;
}
.login_modal .social_set a.gp {
    background-position: -90px -30px;
}
.login_modal .social_set a.ok {
    background-position: -120px -30px;
}
.login_modal .social_set a.li {
    background-position: -150px -30px;
}
.login_modal .social_set a.mail {
    background-position: -180px -30px;
}
.social_login .or:before {
    top: 130%;
}