
.nearest__back {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 555555;
    justify-content: center;
    align-items: center;
    display: none;
}

.nearest {
    position: relative;
    z-index: 1;
    width: 846px;
    background: #FFFFFF;
    border-radius: 14px;
    padding: 40px 20px;
}

@media (max-width: 420px) {
    .nearest {
        width: 90%;
        margin-top: -80px;
    }
}

.nearest .nearest__title {
    font-weight: 600;
    font-size: 26px;
    line-height: 35px;
    text-align: center;
    color: #000000;
}

.nearest .nearest__schedule {
    position: relative;
    width: 604px;
    height: 120px;
    margin: 0 auto;
}

@media (max-width: 720px) {
    .nearest .nearest__schedule {
        width: 100%;
    }
}

.nearest .nearest__schedule .schedule__box {
    position: absolute;
    bottom: 0;
    display: flex;
    width: 100%;
}

.nearest .nearest__schedule .schedule__box .schedule {
    position: absolute;
    width: 14px;
    bottom: 0;
    background: #D9D9D9;
}

.nearest .nearest__schedule .schedule__box .schedule-st {
    transition: 0.5s;
}

.nearest .nearest__schedule .schedule__box .schedule-st .schedule__text {
    position: absolute;
    right: 0;
    top: -35px;
    min-width: 170px;
    padding: 10px 10px;
    font-weight: 600;
    font-size: 11px;
    line-height: 15px;
    color: #000000;
    background: #FFFFFF;
    box-shadow: 0px 2px 7px 1px rgba(0, 0, 0, 0.15);
    border-radius: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
}

.nearest .nearest__schedule .schedule__box .schedule-st .schedule__text span {
    font-weight: 600;
    font-size: 11px;
    line-height: 15px;
    color: #28762B;
    margin-left: 10px;
    display: block;
}

.nearest .nearest__schedule .schedule__box .schedule-st:hover {
    transition: 0.5s;
    background: #ef4050;
    cursor: pointer;
}

.nearest .nearest__schedule .schedule__box .schedule-st:hover .schedule__text {
    transition: 0.5s;
    opacity: 1;
}

.nearest .nearest__schedule .schedule__line {
    position: absolute;
    left: 50%;
    bottom: 0px;
    transform: translateX(-50%);
    width: 604px;
    height: 7px;
    background: #D9D9D9;
}

@media (max-width: 720px) {
    .nearest .nearest__schedule .schedule__line {
        width: 100%;
    }
}

.nearest .nearest__box-data {
    margin-top: 35px;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

@media (max-width: 420px) {
    .nearest .nearest__box-data {
        justify-content: center;
        height: 250px;
        overflow: scroll;
    }
}

.nearest .nearest__box-data .nearest__block {
    position: relative;
    width: 250px;
    background: #FFFFFF;
    box-shadow: 0px 2px 7px 1px rgba(0, 0, 0, 0.15);
    border-radius: 7px;
    padding: 10px;
    margin-bottom: 12px;
    margin-left: 12px;
}

.nearest .nearest__box-data .nearest__block .nearest__block_title {
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    color: #000000;
    padding-right: 65px;
}

.nearest .nearest__box-data .nearest__block .nearest__description {
    font-weight: 600;
    font-size: 10px;
    line-height: 14px;
    color: #6A6A6A;
    margin-top: 3px;
}

.nearest .nearest__box-data .nearest__block .nearest__block_data {
    font-weight: 600;
    font-size: 11px;
    line-height: 15px;
    color: #ef4050;
    position: absolute;
    right: 12px;
    top: 8px;
}

@media (max-width: 420px) {
    .nearest .nearest__box-data .nearest__block {
        position: relative;
        width: 250px;
        background: #FFFFFF;
        box-shadow: 0px 2px 7px 1px rgb(0 0 0 / 15%);
        border-radius: 7px;
        padding: 10px;
        margin-bottom: 12px;
        margin-left: 0;
    }
}




/* POPUP */
.popupPage {
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.697);
    width: 100%;
    height: 100%;
    z-index: 11111;
    display: none;
}

.popupPage.active {
    display: block;
}

.popupPage .popup {
    position: relative;
    width: 900px;
    height: 100%;
    background: rgb(255, 255, 255);
    padding: 40px;
    margin: 0 auto;
}

@media (max-width: 990px) {
    .popupPage .popup {
        width: 95%;
        padding: 20px;
        height: auto;
    }
}

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

.popupPage .popup__close:hover {
    opacity: 1;
}

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

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

.popupPage .popup__body {
    margin-top: 15px;
    height: 100%;
    overflow-y: scroll;
    padding-bottom: 100px;
}

@media (max-width: 990px) {
    .popupPage .popup__body {
        height: auto;
    }
}

.popupPage .popup__body::-webkit-scrollbar {
    width: 3px;
    background: transparent;
    height: 0px;
    background-color: #f3f3f3;
}

@media (max-width: 990px) {
    .popupPage .popup__body::-webkit-scrollbar {
        width: 0;
    }
}

.popupPage .popup__body::-webkit-scrollbar-thumb {
    background-color: var(--red-color);
}

.popupPage .popup__body h1 {
    font-weight: 600;
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 12px;
    color: #000000;
}

.popupPage .popup__body h2 {
    font-weight: 600;
    font-size: 26px;
    line-height: 35px;
    margin-bottom: 12px;
    color: #000000;
}

.popupPage .popup__body h3 {
    font-weight: 600;
    font-size: 23px;
    line-height: 31px;
    margin-bottom: 12px;
    color: #000000;
}

.popupPage .popup__body h4 {
    font-weight: 600;
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 12px;
    color: #000000;
}

.popupPage .popup__body h5 {
    font-weight: 600;
    font-size: 21px;
    line-height: 30px;
    margin-bottom: 12px;
    color: #000000;
}

.popupPage .popup__body h6 {
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 12px;
    color: #000000;
}

.popupPage .popup__body p {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 12px;
    color: #000000;
}

.popupPage .popup__body a {
    margin-bottom: 12px;
    display: inline-block;
    color: #104050;
}

.popupPage .popup__body a:hover {
    text-decoration: underline;
}

.popupPage .popup__body ul {
    margin: 10px;
    margin-left: 15px;
    padding-left: 12px;
}

.popupPage .popup__body ul li {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 12px;
    color: #000000;
    list-style: disc;
}

.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 {
    width: 950px;
    height: auto;
    padding: 30px;
    background: #ffffff;
    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: 38px;
    font-weight: 700;
    line-height: 34px;
    margin-bottom: 16px;
}

@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: 8px;
    font-size: 16px;
    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 .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: 7px;
    bottom: 4px;
    top: auto;
    color: #ef4050;
    font-size: 8px;
    white-space: nowrap;
    font-weight: 500;
    line-height: 1;
}

.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;
    min-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;
}

@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;
}



.messenger-btn, .reviews-btn {
    position: fixed;
    right: 2%;
    bottom: 4%;
    width: 61px;
    height: 61px;
    border-radius: 50%;
    color: #fff;
    padding: 5px;
    background: #1b4f6d;
    border: 1px solid #1b4f6d;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    cursor: pointer;
    box-shadow: 0px 0px 2px 1px rgb(0 0 0 / 20%);
}

.messenger-btn .fa-comment:before {
    content: "\f075";
}
.popup-window__messenger {
    display: none;
}
.popup-window__messenger.active {
    margin: 0;
    padding: 0;
    bottom: 106px;
    position: fixed;
    min-height: 590px;
    width: 360px;
    max-height: 590px;
    right: 30px;
    border-radius: 12px;
    background-color: #F5F5F5;
    z-index: 5555;
    display: block;
}
.messenger-btn img {
    display: none;
}
.messenger__btn-open.active {
    display: block;
    height: 18px;
}
.messenger__btn-close.active {
    display: block;
}
.modal-window__messenger {
    position: relative;
    overflow: hidden;
}
.modal-window__messenger-header {
    background: #EAEAEA;
    padding: 28px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 12px 12px 0 0;
}
.modal-window__messenger-header-show-menu {
    cursor: pointer;
}
.modal-window__messenger-header-title {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #000000;
}
.modal-window__messenger-header-icon {
    width: 31px;
    height: 31px;
    border-radius: 50%;
    color: #fff;
    padding: 5px;
    background: #1D5AB6;
    border: 1px solid #1D5AB6;
    display: flex;
    justify-content: center;
    align-items: center;
}
.modal-window__messenger-header-icon img {
    height: 15px;
    width: 15px;
}
.modal-window__messenger-buttons {
    margin-top: 50%;
    transform: translate(0, -50%);
    display: none;
}
.modal-window__messenger-btn {
    background: #FFFFFF;
    border-bottom: 3px solid #1D5AB6;
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 18px;
    color: #000000;
    padding: 12px;
    margin: 0 auto 24px;
    max-width: 248px;
    width: 100%;
    text-align: center;
    cursor: pointer;
}
.modal-window__messenger-buttons.active {
    display: block;
    z-index: 555;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}
.modal-window__messenger-btn span {
    display: flex;
    justify-content: center;
}
.modal-window__messenger-btn span .sk-chase {
    margin-left: 10px;
}
.modal-window__messenger-buttons--blur {
    display: none;
}
.modal-window__messenger-buttons--blur.active {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    border-radius: 12px;
    display: block;
    opacity: 0.4;
    z-index: 5;
}
.modal-window__messenger-content {
    padding: 0 20px 24px 24px;
    height: 100%;
    display: flex;
    align-items: end;
    min-height: 415px;
}
.modal-window__messenger-message-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: auto;
    max-height: 350px;
    padding: 0 15px 0px 0;
}
.modal-window__messenger-message-wrapper::-webkit-scrollbar {
    width: 3px;
    background: transparent;
    height: 0;
}
.modal-window__messenger-message-wrapper::-webkit-scrollbar-thumb {
    background-color: #1755b3;
}
.modal-window__messenger-message {
    background: #EAEAEA;
    border-radius: 14px;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #001637;
    padding: 13px 20px;
    max-width: 70%;
    margin-bottom: 20px;
}
.modal-window__messenger-message.has_manager {
    background: #1d5ab6;
    color: #fff;
    margin-left: auto;
}
.modal-window__messenger-footer {
    background: #FEFEFE;
    border-top: 1px solid #ECECEC;
    position: absolute;
    bottom: 0;
    width: 100%;
    border-radius: 0 0 12px 12px;
    display: flex;
    justify-content: space-between;
    height: 119px;
    padding: 16px 18px;
}
.modal-window__messenger-field {
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 21px;
    color: #B0B0B0;
    width: 72%;
    outline: none;
    overflow: auto;
}
.modal-window__messenger-field::-webkit-scrollbar {
    width: 3px;
}
.modal-window__messenger-field::-webkit-scrollbar-track {
    background: #B0B0B0;
    cursor: pointer;
    border-radius: 2px;
}
.modal-window__messenger-field::-webkit-scrollbar-thumb {
    background: #1d5ab6;
    border-radius: 2px;
}
.modal-window__messenger-field::-webkit-scrollbar-thumb:hover {
    background: #123a7a;
}
.modal-window__messenger-btn-send {
    cursor: pointer;
}
.modal-window__messenger-footer-buttons {
    display: flex;
}
.modal-window__messenger-btn-file {
    margin-right: 30px;
    padding-top: 3px;
}
.reviews-btn {
    bottom: 13%;
}
.reviews-btn .fa-comment:before {
    content: "\f075";
}



.wrapper-modal-window {
    position: fixed;
    overflow: auto;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 999;
    display: none;
}

.wrapper-modal-window.active {
    display: block;
}

.modal-window {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.modal-window .modal-window__close {
    position: absolute;
    right: 10px;
    top: 10px;
    opacity: 0.8;
    transition: 0.5s;
    cursor: pointer;
}

.modal-window .modal-window__popup {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
    background: #F5F4F4;
    border-radius: 12px;
    padding: 30px 50px 30px;
    width: 885px;
    z-index: 111111;
}

.modal-window modal-window__content {
    width: 70%;
    margin-top: 24px;
}

.modal-window .modal-window__close img {
    width: 17px;
    height: 17px;
}

.modal-window .modal-window__title {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 25px;
    line-height: 30px;
    text-align: center;
    color: #000000;
    margin-bottom: 9px;
}

.modal-window .modal-window__subtitle {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 21px;
    color: #646262;
    max-width: 340px;
    margin: 0 auto 9px;
}

.modal-window .btn {
    background: #1D5AB6;
    border-radius: 5px;
    padding: 10px 45px;
    margin: 0 auto;
}

.modal-window .modal-window__textarea {
    height: 176px;
    width: 500px;
    border: 0;
    max-width: 100%;
    max-height: 250px;
    min-height: 150px;
    padding: 15px;
}

.modal-window .field-reviews-desc {
    margin-top: 19px;
    margin-bottom: 15px;
}

.modal-window .field-reviews-rate,
.modal-window .rating-md {
    width: max-content;
    margin: 0 auto;
}

.wrapper_blur {
    position: fixed;
    overflow: auto;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 999;
}

.tour-popup__hide {
    display: none;
}

.tour-popup .popup {
    background: #F5F4F4;
    border-radius: 12px;
    padding: 30px;
    position: relative;
    width: 1000px;
    z-index: 111111;
}

.basket-tour-popup {
    margin-top: -120px;
}

.tour-popup .popup .popup__description,
.tour-popup .popup .popup__description p,
.tour-popup .popup .popup__description span,
.tour-popup .popup .popup__description a {
    font-family: 'HelveticaRegular' !important;
}

.tour-popup .popup__close {
    position: absolute;
    right: 10px;
    top: 10px;
    opacity: 0.8;
    transition: 0.5s;
    cursor: pointer;
}

.tour-popup .popup__close:hover {
    opacity: 1;
}

.tour-popup .popup__name {
    font-weight: 700;
    font-size: 27px;
    line-height: 32px;
    color: #000000;
    margin-bottom: 7px;
}

.tour-popup .popup__name span {
    color: #28a745;
}


.tour-popup .popup__name img {
    margin-right: 5px;
    width: 21px;
    height: 21px;
}

.tour-popup .popup__box {
    display: flex;
    justify-content: space-between;
}

.tour-popup .popup__content {
    width: 70%;
    margin-top: 24px;
}

@media (max-width: 1100px) {
    .tour-popup .popup {
        width: 700px;
    }
}

@media (max-width: 780px) {
    .tour-popup .popup__content {
        width: 60%;
        margin-top: 24px;
    }

    .tour-popup .popup {
        width: 90%;
    }

    .modal-window .modal-window__textarea {
        width: 300px;
    }
}


.nearest__back .nearest .close {
    left: auto;
    transform: translate(0%);
    right: 18px;
    top: 12px;
}

.close i {
    transition: 0.5s;
    color: #ef4050!important;
}

.modal-window__reviews .modal-window__close {
    right: 23px;
    top: 18px;
}