.auth-box {
    max-width: 370px;
}

.auth-box-tab__btn {
    background-color: #ffffff;
    border: 1px solid #ccc;
    font-size: 15px;
    color: #333333;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    display: inline-block;
    vertical-align: top;
    height: 40px;
    line-height: 40px;
    width: 50%;
    transition: all 0.4s;
    text-align: center;
}

.auth-box-tab__btn:not(:first-child) {
    margin-left: -1px;
}

.auth-box-tab__btn._active {
    color: #fff;
    background-color: #5e6db3;
    border-color: #5e6db3;
}

.auth-box-tab__box:not(._active) {
    display: none;
}

.auth-box-checkbox {
    position: relative;
    display: block;
    cursor: pointer;
}

.auth-box-checkbox__input {
    display: none;
}

.auth-box-checkbox__input:checked+.auth-box-checkbox__text:after {
    opacity: 1;
}

.auth-box-checkbox__text {
    position: relative;
    padding-left: 30px;
    font-weight: normal;
    line-height: 1.46667;
    font-size: 15px;
}

.auth-box-checkbox__text:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #999;
    -webkit-border-radius: 2px;
    border-radius: 2px;
}

.auth-box-checkbox__text:after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    position: absolute;
    top: 4px;
    left: 4px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    background-color: #999;
    opacity: 0;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.auth-box-form {
    display: block;
    width: 100%;
}

.auth-box-form__box:not(:last-child) {
    margin-bottom: 30px;
}

.auth-box-form__item {
    position: relative;
}

.auth-box-form__btn {
    background-color: #eb1831;
    height: 60px;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    color: #fff;
    width: 100%;
    border: 0;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.auth-box-form__btn:hover {
    background-color: #bd0117;
}

.auth-box-form__send-code {
    position: absolute;
    top: 0;
    right: 0;
    width: 154px;
    height: 100%;
    background-color: #5cb85c;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    color: #fff;
    border: 0;
}

.auth-box-form__send-code:hover {
    background-color: #3f9a3f;
}

.auth-box-form__input {
    border: 1px solid #ccc;
    height: 60px;
    width: 100%;
    background-color: #fff;
    padding-left: 16px;
    padding-right: 16px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -webkit-transition: border-color 0.4s, color 0.4s;
    transition: border-color 0.4s, color 0.4s;
}

.auth-box-form__input:disabled {
    background-color: #e8e6e6;
}

.auth-box-form__input._phone {
    padding-right: 160px;
}

.auth-box-form__input:focus {
    border-color: #000;
    color: #000;
}

.auth-box-soc {
    margin-top: 30px;
    margin-bottom: 30px;
}

.auth-box-soc__box {
    display: inline-block;
    vertical-align: top;
    margin-left: 3px;
    margin-right: 3px;
}

body._noscroll {
    overflow: hidden;
}

.modal-box {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.modal-box:not(._active) {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.modal-box__overlay {
    background-color: rgba(0, 0, 0, 0.65);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.modal-box__container {
    background-color: #fff;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    position: relative;
    z-index: 100;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 60px;
    padding-top: 100px;
}

.modal-box__container:before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 40px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 70px;
    height: 2px;
    background-color: #eb1831;
}

.modal-box__wrapper {
    max-width: 370px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-family: "Open Sans";
}

.modal-box__title {
    color: #363636;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 35px;
}

.modal-box__desc {
    font-size: 16px;
    margin-bottom: 45px;
    color: #363636;
}

.modal-box__btn {
    background-color: #eb1831;
    height: 65px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    font-size: 18px;
    border: 0;
    color: #fff;
    font-weight: bold;
    width: 100%;
    -webkit-transition: background-color 0.4s;
    transition: background-color 0.4s;
    display: inline-block;
    vertical-align: top;
    line-height: 65px;
}

.modal-box__btn:focus,
.modal-box__btn:active,
.modal-box__btn:hover {
    background-color: #d8001a;
    color: #fff;
    text-decoration: none;
}

.modal-box__close-icon {
    background: url(/img/close-icon.svg) 50% 50% / contain no-repeat;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 20px;
    right: 20px;
    border: 0;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.modal-box__close-icon:hover {
    opacity: 0.7;
}

.n-banner {
    margin-bottom: 20px;
}

.n-banner img {
    max-width: 100%;
    width: auto;
    height: auto;
}

.usloviamain {
    margin-top: 8px;
}

.usloviamain a {
    color: #d4d0d0;
    font-size: 14px;
    position: relative;
}

.usloviamain a:after {
    content: "";
    margin-left: 5px;
    width: 6px;
    height: 6px;
    display: inline-block;
    border-right: solid 1px #fff;
    border-bottom: solid 1px #fff;
    transform: rotate(-45deg);
    transition: transform 0.2s linear;
}

.auth-split__inner {
    margin-left: -15px;
    margin-right: -15px;
}

.auth-split__box {
    padding-left: 15px;
    padding-right: 15px;
}

.auth-price {
    border: 1px solid #ccc;
}

.auth-price__header {
    border-bottom: 1px solid #cccccc;
    text-align: center;
}

.auth-price__title {
    font-size: 17px;
    font-weight: bold;
    color: #333333;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: "Open Sans";
    line-height: 1.3;
}

.auth-price__row {
    text-align: center;
    color: #333333;
    font-family: "Open Sans";
    padding-top: 12px;
    padding-bottom: 12px;
    position: relative;
    font-size: 13px;
    line-height: 1.38462;
    padding-left: 12px;
    padding-right: 12px;
}
.auth-price__row span{
    display: block;
}
.auth-price__row.py-0 span{
    display: block;
    padding-top: 12px;
    padding-bottom: 12px;
}
.flex-basis-1{
    flex-basis:1px;
}
.auth-price-split__item{
    height: 100%;
}
.auth-price-option {
    padding: 0 5px;
}
.auth-price-option:not(:first-of-type){
    border-left: 1px solid #ccc;
}

.auth-price__row._price {
    background-color: #5e6db3;
    color: #fff;
    font-size: 16px;
}

.auth-price__row:not(._price):not(:first-child):not(:last-child):after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: -webkit-calc(100% - 40px);
    width: calc(100% - 40px);
    height: 1px;
    background-color: #cccccc;
}

.auth-price__name {
    font-size: 15px;
}

.auth-price__subtitle {
    font-size: 12px;
    color: #555555;
    text-align: center;
    margin-bottom: 25px;
    margin-top: 12px;
}

.auth-price__info {
    font-weight: 500;
    font-size: 13px;
    color: #333333;
    text-align: center;
    font-family: "Open Sans", sans-serif;
}

.auth-price__info p:not(:last-child) {
    margin-bottom: 10px;
}

.auth-price__content {
    position: relative;
    z-index: 1;
}

/*.auth-price__content:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    width: 50%;
    right: 0;
    background-color: #f4f5fa;
    height: 100%;
    z-index: -1;
}*/

.crumbsVsTitleContainer {
    line-height: 1.2;
    padding-top: 35px;
    padding-bottom: 20px;
}

.crumbsVsTitleContainer h1 {
    margin-top: 5px;
    margin-bottom: 10px;
    font-size: 34px;
}

.crumbsVsTitleContainer .crumbs a[href="/"] {
    color: #2c9dd7;
    text-decoration: underline;
}

.crumbsVsTitleContainer h1 {
    margin-top: 5px;
    margin-bottom: 10px;
    font-size: 34px;
    font-weight: 500;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.crumbs a {
    color: #999;
    font-size: 12px;
    display: inline-block;
    margin-right: 2px;
    position: relative;
    padding-right: 10px;
}

.crumbs a:after {
    content: '';
    display: block;
    position: absolute;
    border-right: solid 1px #999;
    border-bottom: solid 1px #999;
    width: 4px;
    height: 4px;
    transform: rotate(-45deg);
    right: 0;
    top: 5px;
}

.crumbs a:last-child:after {
    display: none;
}

.sms-modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
}

.sms-modal-header h4 {
    font-size: 18px;
}

.mob-price__btn {
    background-color: #da0081;
    height: 60px;
    width: 100%;
    border: 0;
    color: #fff;
    font-size: 15px;
    font-family: 'Open Sans';
    text-align: center;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -webkit-transition: background-color .4s;
    transition: background-color .4s;
}

.mob-price__content {
    padding-top: 12px;
    -webkit-transition: max-height .4s;
    transition: max-height .4s;
    overflow: hidden;
    margin-bottom: 20px;
}

.mob-price__content:not(._active) {
    max-height: 0;
}
.country-select{
    width: 100%;
}
@media (min-width: 991px) {
    .auth-split__box {
        width: 50%;
        padding-left: 0;
        padding-right: 0;
    }
    .auth-split__inner {
        padding-left: 15px;
        padding-right: 15px;
    }
    .content-login {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 991px) {
    .auth-split__inner {
        margin-left: 0;
        margin-right: 0;
    }
    .auth-split__box {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    .auth-split__box:last-child {
        margin-top: 25px;
    }
    .auth-split__box:last-child {
        display: none;
    }
    .mob-price {
        display: block;
    }
}

@media (max-width: 992px) {
    body._noscroll {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}
