.popupBack {
    display: none;
}

.popupBack.active {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 555;
}

.popupBack .popup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 480px;
    height: auto;
    padding: 30px;
    background: #ffffff;
    margin-top: -50px;
    border-radius: 10px;
}

@media (max-width: 520px) {
    .popupBack .popup {
        width: 93%;
        height: auto;
        margin-top: -110px;
    }
}

@media (max-width: 375px) {
    .popupBack .popup {
        margin-top: 0;
    }
}

.popupBack .popup .popup__close {
    position: absolute;
    right: 10px;
    top: 10px;
    border-radius: 50%;
    display: inline-flex;
    background: #f0f1f3;
    height: 30px;
    width: 30px;
    justify-content: center;
    align-items: center;
    opacity: 0.7;
    transition: 0.5s;
    cursor: pointer;
}

.popupBack .popup .popup__close:hover {
    opacity: 1;
}

.popupBack .popup .popup__title {
    font-size: 28px;
    font-weight: 700;
    line-height: 34px;
}

@media (max-width: 420px) {
    .popupBack .popup .popup__title {
        font-size: 25px;
        font-weight: 700;
        line-height: 34px;
        margin-bottom: 0px;
    }
}

.popupBack .popup .popup__description {
    margin-top: 11px;
    font-size: 15px;
    color: #5a6472;
    margin-bottom: 5px;
}

.popupBack .popup .popup__form {
    position: relative;
    width: 100%;
}

.popupBack .popup .popup__form .popup__form_chose {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.popupBack .popup .popup__form .popup__form_chose .chose__navigate {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    /* Checked */
}

.popupBack .popup .popup__form .popup__form_chose .chose__navigate .form_toggle {
    display: inline-block;
    overflow: hidden;
}

@media (max-width: 730px) {
    .popupBack .popup .popup__form .popup__form_chose .chose__navigate .form_toggle {
        display: flex;
    }
}

.popupBack .popup .popup__form .popup__form_chose .chose__navigate .form_toggle-item {
    float: left;
    display: inline-block;
}

.popupBack .popup .popup__form .popup__form_chose .chose__navigate .form_toggle-item input[type=radio] {
    display: none;
}

.popupBack .popup .popup__form .popup__form_chose .chose__navigate .form_toggle-item label {
    display: inline-block;
    padding: 2px 25px;
    line-height: 34px;
    border: 1px solid #999;
    border-right: none;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: 400;
    width: 138px;
    text-align: center;
}

.popupBack .popup .popup__form .popup__form_chose .chose__navigate .form_toggle .item-1 label {
    border-radius: 6px 0 0 6px;
}

.popupBack .popup .popup__form .popup__form_chose .chose__navigate .form_toggle .item-2 label {
    border-radius: 0 6px 6px 0;
    border-right: 1px solid #999;
}

.popupBack .popup .popup__form .popup__form_chose .chose__navigate .form_toggle .item-1 input[type=radio]:checked+label {
    background: #26867A;
    color: #fff;
}

.popupBack .popup .popup__form .popup__form_chose .chose__navigate .form_toggle .item-2 input[type=radio]:checked+label {
    background: #26867A;
    color: #fff;
}

.popupBack .popup .popup__form .popup__form_chose .chose__block {
    margin-top: 40px;
}

.popupBack .popup .popup__form .popup__form_chose .chose__block_agent {
    display: none;
}

.popupBack .popup .popup__form .popup__form_chose .chose__block_agent .input-file-type {
    margin-top: 1px;
}

.popupBack .popup .popup__form form .popup__block {
    position: relative;
    margin-top: 15px;
}

.popupBack .popup .popup__form form .popup__block input {
    border: 1px solid #e7e7e7;
    color: #adadad;
    border-radius: 10px;
    height: 48px;
    padding: 0 16px;
    width: 100%;
    color: #000;
}

.popupBack .popup .popup__form form .popup__block .popup__error {
    position: absolute;
    right: 15px;
    top: 0;
    color: #EE1D23;
    font-size: 12px;
    white-space: nowrap;
}

.popupBack .popup .popup__form form .popup__block .input-file-type .btn-tertiary {
    transition: 0.5s;
    color: rgb(111, 111, 111);
    padding: 0;
    line-height: 40px;
    width: 300px;
    margin: auto;
    display: flex;
    align-items: center;
    height: 48px;
    border-radius: 10px;
    font-weight: 400;
    border: 1px solid #e7e7e7;
    font-size: 14px;
}

.popupBack .popup .popup__form form .popup__block .js-fileName {
    margin-left: 5px;
}

.popupBack .popup .popup__form form .popup__block .input-file-type .btn-tertiary:hover,
.popupBack .popup .popup__form form .popup__block .input-file-type .btn-tertiary:focus {
    color: #888;
    border-color: #888;
}

.popupBack .popup .popup__form form .popup__block .input-file-type .input-file {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.popupBack .popup .popup__form form .popup__block .input-file-type .input-file+.js-labelFile {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0 10px;
    padding-left: 18px;
    cursor: pointer;
}

.popupBack .popup .popup__form form .popup__block .input-file-type .input-file+.js-labelFile .icon:before {
    content: "\f093";
}

.popupBack .popup .popup__form form .popup__block .input-file-type .input-file+.js-labelFile.has-file .icon:before {
    content: "\f00c";
    color: #5AAC7B;
}

.popupBack .popup .popup__form form .popup__block .select2-container--default .select2-selection--single .select2-selection__rendered {
    width: 300px;
    border: 1px solid #e7e7e7;
    border-radius: 10px;
    height: 48px;
    padding: 0 16px;
    color: #000;
    font-size: 13px;
    margin-bottom: 16px;
    display: block;
}

.popupBack .popup .popup__form form .popup__block .select2-container {
    width: 300px !important;
}

.popupBack .popup .popup__form form .popup__block .select2-container--default .select2-selection--single .select2-selection__rendered {
    margin-top: -1px;
    margin-left: -1px;
}

.popupBack .popup .popup__form form .popup__block .select2-container--default .select2-selection--single {
    border: 0px solid #aaa;
}

.popupBack .popup .popup__form form .popup__block .select2-container--open .select2-dropdown {
    top: 16px;
}

.popupBack .popup .popup__form form .popup__block .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 8px;
}

.popupBack .popup .popup__form form .popup__block .select2-container--default .select2-results__option--selected {
    background-color: #ddd;
    font-size: 14px;
}

.popupBack .popup .popup__form form button {
    background: #EE1D23;
    height: 48px;
    width: 100%;
    margin-top: 14px;
    color: #ffffff;
    text-align: center;
    border-radius: 10px;
    transition: 0.5s;
    font-size: 16px;
}

.popupBack .popup .popup__form form button:hover {
    background: #c12328;
}

.popupBack .popup .popup__form .popup__link {
    border-bottom: 1px solid #e7e7e7;
    color: #616161;
    height: 30px;
    max-width: 125px;
    font-size: 12px;
    font-weight: 400;
    display: flex;
    justify-content: center;
    text-align: center;
    transition: 0.5s;
    margin-left: auto;
    margin-top: 17px;
    padding: 2px 12px 4px 12px;
    cursor: pointer;
    transition: 0.5s;
}

.popupBack .popup .popup__form .popup__link:hover {
    border-bottom: 1px solid #26867a;
}

.popupBack .login-registration {
    width: 720px;
}

@media (max-width: 730px) {
    .popupBack .login-registration {
        width: 93%;
    }
}

.popupBack .login-registration .popup__union {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 20px;
}

@media (max-width: 730px) {
    .popupBack .login-registration .popup__union {
        padding: 0px 10px;
        flex-direction: column;
        height: 308px;
        overflow: scroll;
        margin-bottom: 20px;
        margin-top: 20px;
        padding-top: 40px;
    }

    .popupBack .login-registration .popup__union::-webkit-scrollbar {
        width: 3px;
        background: #e0e0e0;
        height: 0px;
    }

    .popupBack .login-registration .popup__union::-webkit-scrollbar-thumb {
        background-color: #929292;
    }
}

.popupBack .login-registration .popup__union .popup__box {
    margin: 0 5px;
    display: flex;
    flex-direction: column;
}

.popupBack .login-registration .popup__union .popup__box input {
    min-width: 300px;
}

.popupBack .login-registration .popup__union .popup__block_photo input {
    border: 0 !important;
}

.popupBack .login-registration .popup__union .popup__block_title {
    position: absolute;
    bottom: 2px;
    font-size: 12px;
    margin-left: 14px;
}

.popupBack .login-registration button {
    max-width: 300px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.popupBack .login-registration .popup__link {
    max-width: 132px !important;
}

.popupBack .successPopup {
    background: #eff1f4;
    width: 568px;
    min-height: 270px;
    justify-content: flex-start;
    align-items: flex-start;
}

@media (max-width: 600px) {
    .popupBack .successPopup {
        width: 93%;
    }
}

.popupBack .successPopup::after {
    position: absolute;
    height: 154px;
    right: 0;
    top: 60px;
    width: 150px;
    background: url(../../img/modules/phoro-popup.webp);
    content: "";
    background-size: contain;
}

@media (max-width: 420px) {
    .popupBack .successPopup::after {
        height: 100px;
        right: 0;
        top: 75px;
        width: 100px;
    }

    .popupBack .login-registration .field-signupagentform-city_id {
        margin-bottom: 20px;
    }
}

.popupBack .successPopup .popup__title {
    text-align: center;
    margin: 0 auto;
    margin-bottom: 25px;
}

@media (max-width: 420px) {
    .popupBack .successPopup .popup__title {
        margin-bottom: 20px;
    }
}

.popupBack .popup__close {
    background: #d1d1d1 !important;
}

.popupBack .popup__box-info {
    border-radius: 10px;
    padding: 16px;
    width: 70%;
    min-height: 100px;
    background: #ffffff;
    font-size: 13px;
    line-height: 19px;
}

@media (max-width: 600px) {
    .popupBack .popup__box-info {
        width: 215px;
    }
}

.popupBack .popup__box-info .info__title {
    font-size: 17px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

@media (max-width: 420px) {
    .popupBack .popup__box-info .info__title {
        margin-bottom: 4px;
    }
}

.popupBack .popup__box-info .info__title span {
    width: 322px;
    overflow-y: scroll;
    white-space: nowrap;
}

.popupBack .popup__box-info .info__title span::-webkit-scrollbar {
    width: 0px;
    background: transparent;
    height: 0px;
}

.popupBack .popup__box-info .info__title span::-webkit-scrollbar-thumb {
    background-color: #EEEFF5;
}

.popupBack .popup__box-info .info__title svg {
    margin-right: 5px;
}

.popupBack .info-visa {
    background: #eff1f4;
    width: 620px;
    min-height: 270px;
    justify-content: flex-start;
    align-items: flex-start;
}

@media (max-width: 630px) {
    .popupBack .info-visa {
        width: 93%;
    }
}

.popupBack .info-visa::after {
    position: absolute;
    height: 154px;
    right: 0;
    top: 60px;
    width: 150px;
    background: url(../../img/modules/phoro-popup.webp);
    content: "";
    background-size: contain;
}

@media (max-width: 420px) {
    .popupBack .info-visa::after {
        height: 100px;
        right: 0;
        top: 75px;
        width: 100px;
    }
}

.popupBack .info-visa .popup__title {
    text-align: center;
    margin: 0 auto;
    margin-bottom: 20px;
}

@media (max-width: 420px) {
    .popupBack .info-visa .popup__title {
        margin-bottom: 15px;
    }
}

.popupBack .info-visa .popup__box-info {
    position: relative;
    border-radius: 10px;
    padding: 16px;
    width: 100%;
    height: 300px;
    font-size: 13px;
    line-height: 19px;
    z-index: 111;
    background: rgba(255, 255, 255, 0.75);
    max-height: 300px;
    margin-bottom: 10px;
    overflow-y: scroll;
}

.popupBack .info-visa .popup__box-info::-webkit-scrollbar {
    width: 3px;
    background: #e0e0e0;
    height: 0px;
}

.popupBack .info-visa .popup__box-info::-webkit-scrollbar-thumb {
    background-color: #929292;
}

@media (max-width: 600px) {
    .popupBack .info-visa .popup__box-info {
        width: 300px;
    }
}

.popupBack .info-visa .popup__box-info ul li {
    list-style: disc;
    margin-left: 20px;
    margin-top: 7px;
    margin-bottom: 7px;
}

.popupBack .popup-error .popup__ico {
    display: flex;
    height: 64px;
    justify-content: center;
    width: 64px;
    background: #EE1D23;
    padding: 5px;
    border-radius: 50%;
}

.popupBack .popup-error .popup__ico svg {
    width: 50px;
    height: 50px;
}

.popupBack .popup-error .popup__ico svg path {
    fill: #ffffff;
}

.popupBack .popup-error .popup__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    margin-top: 12px;
    margin-bottom: 0px;
    overflow-y: scroll;
    white-space: nowrap;
    width: 100%;
    text-align: center;
}

.popupBack .popup-error .popup__title::-webkit-scrollbar {
    width: 0px;
    background: transparent;
    height: 0px;
}

.popupBack .popup-error .popup__title::-webkit-scrollbar-thumb {
    background-color: #EEEFF5;
}

.popupBack .popup-error .popup__description {
    text-align: center;
}

@media (max-width: 420px) {
    .popupBack .login-autorisation .popup__title {
        margin-bottom: 0;
    }
}

.popupBack .our-popup {
    background: #eff1f4;
    width: 568px;
    min-height: 270px;
    justify-content: flex-start;
    align-items: flex-start;
}

@media (max-width: 600px) {
    .popupBack .our-popup {
        width: 93%;
        overflow-y: scroll;
        margin-top: 0;
    }

    .popupBack .our-popup::-webkit-scrollbar {
        width: 0px;
        background: #e0e0e0;
        height: 0px;
    }

    .popupBack .our-popup::-webkit-scrollbar-thumb {
        background-color: #929292;
    }
}

.popupBack .our-popup::after {
    position: absolute;
    height: 154px;
    right: 0;
    top: 60px;
    width: 150px;
    background: url(../../img/modules/phoro-popup.webp);
    content: "";
    background-size: contain;
}

@media (max-width: 420px) {
    .popupBack .our-popup::after {
        height: 100px;
        right: 0;
        top: 95px;
        width: 100px;
    }
}

.popupBack .our-popup .popup__title {
    text-align: center;
    margin: 0 auto;
    margin-bottom: 30px;
}

@media (max-width: 420px) {
    .popupBack .our-popup .popup__title {
        margin-bottom: 20px;
    }
}

.popupBack .our-popup .popup__description {
    width: 80%;
    margin-top: -10px;
}

.popupBack .our-popup .popup__video {
    height: 200px;
    width: 100%;
    margin-top: 18px;
}

@media (max-width: 420px) {
    .popupBack .our-popup .popup__video {
        margin-top: 10px;
    }
}

.popupBack .our-popup .popup__video iframe {
    width: 100%;
}

.popupBack .our-popup .popup__items {
    border-radius: 10px;
    padding: 16px;
    padding-top: 20px;
    width: 100%;
    background: #ffffff;
}

.popupBack .our-popup .popup__items ul li,
.popupBack ol li {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 22px;
}

.popupBack .our-popup .popup__items ul li .popup__ico,
.popupBack ol li .popup__ico {
    height: 36px;
    justify-content: center;
    width: 36px;
    display: flex;
    background-color: #278377;
    border-radius: 50%;
    align-items: center;
    margin-right: 8px;
}

.popupBack .our-popup .popup__items ol li .popup__ico svg path,
.popupBack ul li .popup__ico svg path {
    fill: #ffffff;
}