<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900&display=swap&subset=cyrillic"
      rel="stylesheet">
<style type='text/css'>
    * {
        outline: none;
    }

    body {
        min-width: 1440px;
        font-family: 'Roboto' !important;
        background: #f5f7fa !important;
    }

    @media (max-width: 1440px) {
        body {
            min-width: 100%;
        }
    }

    .TPWL-front-content {
        margin: auto !important;
        max-width: 1278px;
        width: 100% !important;
    }

    .TPWL-container {
        width: 1220px;
        margin: 0 auto !important;
    }

    @media (max-width: 1220px) {
        .TPWL-container {
            width: 100%;
        }
    }

    /* website header */
    .header__block {
        width: 100%;
        background: #fff;
        position: relative;
    }

    .head__bottom {
        margin-top: 68px;
        display: none;
        padding: 33px 23px;
        background: #333647;
        height: 100%;
    }

    /* the bottom adaptive menu */
    .head__bottom ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .head__bottom ul li {
        margin-bottom: 8px;
    }

    .head__bottom ul li a {
        font-size: 14px;
        line-height: 21px;
        color: #FFFFFF;
        text-decoration: none;
    }

    /* styles for header mobile version */
    @media (max-width: 991px) {
        .head__bottom {
            display: block;
        }

        .header__block {
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-sizing: border-box;
            z-index: 22;
            position: fixed;
            padding: 0 13px;
            height: 60px;
            box-shadow: 0px 1px 0px #E2E5EC;
			z-index: 99999;
        }
    }

    .head__wrapp {
        width: 100%;
        max-width: 1180px;
        margin: 0 auto;
        padding: 20px 0;
        position: relative;
        display: flex;
        justify-content: space-between;
        box-sizing: border-box;
    }

    @media (max-width: 1199px) {
        .head__wrapp {
            max-width: 1210px;
            margin: 0 auto;
            padding-left: 15px;
            padding-right: 30px;
        }
    }

    @media (max-width: 991px) {
        .head__wrapp {
            transform: translateX(100%);
            position: absolute;
            width: 320px;
            right: 0;
            z-index: 20;
            transition: 0.4s;
            top: 60px;
            flex-direction: column;
            padding: 30px 0 0;
            height: calc(100vh - 60px);
            overflow: auto;
            background: #fff;
        }

        .head__wrapp.show {
            transform: none;
        }
    }

    /* website menu */
    .hw__left_menu, .hw__right_menu {
        position: relative;
        z-index: 3;
    }

    .hw__left_menu a,
    .hw__right_menu a {
        font-size: 14px;
        line-height: 21px;
        color: #262626;
        text-decoration: none;
        margin-right: 30px;
        font-weight: 500;
        font-family: 'Roboto';
    }

    .hw__left_menu a:hover {
        opacity: .8;
    }

    /* styles to customize the site menu */
    @media (max-width: 991px) {
        .hw__left_menu,
        .hw__right_menu {
            width: 50%;
            padding: 0 23px;
        }

        .hw__left_menu a,
        .hw__right_menu a {
            display: block;
            margin-bottom: 14px;
            font-weight: 400;
            text-transform: uppercase;
        }

        .hw__left_menu a {
            margin-right: 0;
            margin-left: 0;
        }
    }

    /* mobile menu */
    .header-burger {
        display: none;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        cursor: pointer;
        position: relative;
        z-index: 6;
        width: 22px;
        height: 15.6px;
    }

    .header-burger span {
        display: block;
        width: 100%;
        background-color: #000;
        height: 3px;
        -webkit-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s;
    }

    .header-burger.active {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .header-burger.active span:nth-child(2) {
        display: none;
    }

	.header-burger.active span:nth-child(1) {
       -webkit-transform: rotate(45deg) translateY(2px);
       -ms-transform: rotate(45deg) translateY(2px);
       transform: rotate(45deg) translateY(2px);
    }

    .header-burger.active span:nth-child(3) {
       -webkit-transform: rotate(-45deg) translateY(-2px);
       -ms-transform: rotate(-45deg) translateY(-2px);
       transform: rotate(-45deg) translateY(-2px);
    }

    /* styles to customize the mobile site menu */
    @media only screen and (max-width: 991px) {
        .header-burger {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
        }

        .header-burger span {
            height: 2.6px;
            background-color: #333647;
            border-radius: 0.5px;
        }

        .head__bottom {
            display: block;
        }
    }

    /* logo */
    .hw__center_logo {
        position: absolute;
        top: 9px;
        width: 100%;
        text-align: center;
        z-index: 2;
    }

    .hw__center_logo_bg {
        width: 250px;
        margin: 0 auto;
    }

    .hw__center_logo a {
        width: 250px;
        background: #fff;
        border-radius: 100%;
        height: 80px;
        display: block;
    }

    .hw__center_logo a img {
        position: relative;
        top: 13px;
    }

    @media (max-width: 991px) {
        .hw__center_logo {
            position: static;
            text-align: left;
        }

        .hw__center_logo_bg {
            margin: 0;
            width: auto;
        }

        .hw__center_logo a {
            display: inline;
        }

        .hw__center_logo a img {
            top: 0;
            max-width: 143px;
        }
    }

    /* additional header menu */
    .dropdown__popup {
        display: none;
        position: absolute;
        z-index: 2;
    }

    .dropdown_opened .dropdown__popup {
        display: block;
    }

    .dropdown_type_main-navigation-more .dropdown__popup {
        top: 100%;
        right: -39px;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
        padding: 16px 0;
        box-shadow: 0 0 16px 0 rgba(51, 51, 51, .2);
        background-color: #fff;
        width: 200px;
    }

    .dropdown {
        position: relative;
        display: inline-block;
    }

    .dropdown a.more:before {
        content: "";
        position: absolute;
        right: -17px;
        top: 7px;
        width: 8px;
        height: 6px;
        background: url('https://cdn.travelpayouts.com/marketing/kit_travel/arrow-btn.svg') no-repeat;
    }

    .dropdown.dropdown_opened a.more:before {
        -webkit-transform: translateY(-50%) rotate(180deg);
        transform: translateY(-50%) rotate(180deg);
        top: 7px;
    }

    .menu.main-navigation__section {
        list-style-type: none;
        padding: 0;
    }

    .menu.main-navigation__section, .navigation__title {
        margin: 0;
    }

    @media (max-width: 991px) {

        .dropdown_type_main-navigation-more .dropdown__popup {
            position: static;
            width: auto;
            transform: none;
            padding: 0;
            box-shadow: none;
            background-color: transparent;
        }
    }


    /* slyder */
    .slider__block {
        width: 1440px;
        height: 402px;
        background: #fff;
        overflow: hidden;
        margin: 0 auto;
    }

    /* the first slide */
    .slider__block .slide_1 {
        width: 100%;
        background: url('https://www.morin-tour.ru/wp-content/uploads/whitelabel/lastochka_1440x402.jpg') no-repeat;
        height: 402px;
        background-position: center;
        position: relative;
    }

    /* the second slide */
    .slider__block .slide_2 {
        width: 100%;
        background: url('https://www.morin-tour.ru/wp-content/uploads/whitelabel/sl_1440x402.jpg') no-repeat;
        height: 402px;
        background-position: center;
        position: relative;
    }

    .slider__block .slick-prev {
        left: 134px;
        z-index: 1;
        width: 56px;
        height: 56px;
    }

    .slider__block .slick-prev:before {
        background: url('https://cdn.travelpayouts.com/marketing/kit_travel/arrow-slide-left.png') no-repeat;
        height: 56px;
        width: 56px;
        background-position: center;
        opacity: 1;
        content: "";
        display: block;
    }

    .slider__block .slick-prev, .slider__block .slick-next {
        top: calc(50% - 29px);
    }

    .slider__block .slick-next {
        right: 134px;
        z-index: 1;
        width: 56px;
        height: 56px;
    }

    .slider__block .slick-next:before {
        background: url('https://cdn.travelpayouts.com/marketing/kit_travel/arrow-slide-right.png') no-repeat;
        height: 56px;
        width: 56px;
        background-position: center;
        opacity: 1;
        content: "";
        display: block;
    }

    .text__wrap_slider1 {
        position: absolute;
        top: 63px;
        left: 285px;
    }

    .text__wrap_slider1 .title {
        color: #fff;
        font-size: 38px;
        line-height: 45px;
        font-family: 'Roboto';
        font-style: normal;
        font-weight: 900;
    }

    .text__wrap_slider1 .btn__slider_one {
        font-size: 17px;
        line-height: 23px;
        font-family: Open Sans;
        color: #fff;
        border-radius: 8px;
        border: 1px solid #fff;
        padding: 11px 0;
        text-decoration: none;
        display: block;
        width: 195px;
        text-align: center;
        margin-top: 36px;
    }

    .text__wrap_slider1 .btn__slider_one:hover {
        opacity: .8;
    }

    .text__wrap_slider2 {
        width: 100%;
        text-align: center;
        margin-top: 70px;
    }

    .text__wrap_slider2 span.img {
        width: 100%;
        text-align: center;
        display: block;
    }

    .text__wrap_slider2 span.img img {
        display: inline;
    }

    .text__wrap_slider2 span.title {
        color: #fff;
        font-size: 38px;
        line-height: 45px;
        font-family: 'Roboto';
        font-style: normal;
        font-weight: 900;
        margin-bottom: 45px;
        width: 100%;
        display: block;
        margin-top: 12px;
    }

    .btn__slider_two {
        font-size: 17px;
        line-height: 23px;
        font-family: Open Sans;
        color: #262626;
        border-radius: 8px;
        border: 1px solid #FFE600;
        padding: 11px 25px;
        text-decoration: none;
        text-align: center;
        margin-top: 36px;
        background: #FFE600;
    }

    .text__wrap_slider2 .btn__slider_two:hover {
        opacity: .8;
    }

    /* styles to adapt the slider */
    @media (max-width: 1440px) {
        .slider__block {
            width: 100%;
        }
    }

    @media (max-width: 1199px) {
        .slider__block,
        .slider__block .slide_1 {
            height: 330px;
            background-size: auto 100%;
        }

        .slider__block .slide_2 {
            height: 330px;
        }

        .text__wrap_slider1 .title,
        .text__wrap_slider2 span.title {
            font-size: 32px;
            line-height: 38px;
        }

        .slider__block .slick-prev {
            left: 15px;
        }

        .slider__block .slick-next {
            right: 15px;
        }
    }

    @media (max-width: 991px) {
        .slider__block {
            margin-top: 60px;
        }

        .slider__block,
        .slider__block .slide_1 {
            height: 280px;
            background-size: auto 100%;
        }

        .slider__block .slide_1 {
            background-position-x: 70%;
        }

        .slider__block .slide_2 {
            height: 280px;
        }

        .text__wrap_slider2 {
            margin-top: 45px;
        }

        .text__wrap_slider1 {
            left: 90px;
        }

        .slider__block .slick-prev, .slider__block .slick-next {
            top: 50%;
        }
    }

    @media (max-width: 767px) {

        .slider__block .slick-prev:before, .slider__block .slick-next:before,
        .slick-next:before {
            height: 30px;
            width: 30px;
            background-size: 100% 100%;
        }

        .slider__block .slick-prev,
        .slider__block .slick-next {
            height: 30px;
            width: 30px;
        }

        .slider__block .slide_1,
        .slider__block .slide_2 {
            padding: 0 50px;
            display: flex !important;
            align-items: center;
            justify-content: center;
        }

        .slider__block .slide_1 {
            background-position-x: 0;
            background-size: 300% 150%;
        }

        .text__wrap_slider1 .title,
        .text__wrap_slider2 span.title {
            font-size: 26px;
            line-height: 30px;
        }

        .text__wrap_slider1 {
            /*margin-top: 40px;*/
            position: static;
            text-align: center;
        }

        .text__wrap_slider2 {
            margin-top: 0;
        }

        .text__wrap_slider1 .btn__slider_one {
            margin: 20px auto 0;
        }

        .text__wrap_slider2 span.title {
            margin-bottom: 35px;
        }
    }

    @media (max-width: 576px) {
        .text__wrap_slider1 .title,
        .text__wrap_slider2 span.title {
            font-size: 21px;
            line-height: 24px;
        }

        .slider__block {
            height: 253px;
            margin-bottom: 0 !important;
        }

        .slider__block .slide_1,
        .slider__block .slide_2 {
            display: block !important;
            padding: 40px 28px 0;
        }

        .slider__block .slide_2 {
            padding-top: 20px;
        }

        .text__wrap_slider2 span.title {
            margin-bottom: 25px;
        }

        .text__wrap_slider1 .btn__slider_one,
        .btn__slider_two {
            margin: 24px auto 0;
            padding: 12px 0;
            width: 100%;
        }


        .btn__slider_two {
            margin-top: 10px;
            display: block;
        }

        .text__wrap_slider2 span.title {
            margin-bottom: 0px;
        }

        .slider__block .slick-prev,
        .slider__block .slick-next {
            display: none !important;
        }

        .text__wrap_slider1 .title br {
            display: none;
        }

        .text__wrap_slider1 .title span {
            display: block;
            text-transform: uppercase;
        }

        .text__wrap_slider1 .title, .text__wrap_slider2 span.title {
            line-height: 26px;
            font-weight: 700;
        }

        .text__wrap_slider2 span.title {
            margin-top: 3px;
        }

        .header__slider .slick-dots {
            bottom: 20px;
            display: flex;
            justify-content: center;
        }

        .header__slider .slick-dots li button {
            display: none;
        }

        .header__slider .slick-dots li {
            margin: 0 8px;
            background: #333647;
            border: 1px solid #333647;
            border-radius: 42px;
            width: 8px;
            height: 8px;
            transition: 0.4s;
        }

        .header__slider .slick-dots li.slick-active {
            background: transparent;
        }
    }

    /* flight search tab */
    body .TPWL-template-header {
        background: none !important;
    }

    .TPWL-widget .TPWL_widget--xl .TPWL-template-header-content {
        max-width: 1278px !important;
        border-radius: 0px 0px 10px 10px !important;
    }

    .TPWL-widget--front_page .TPWL-template-header {
    padding-bottom: 40px;
    
    }

    .TPWL-widget .TPWL-template-header {
        padding-top: 0 !important;
        margin-top: -58px !important;
    }

    .mewtwo-widget--whitelabel_ru .mewtwo-flights {
        background: #fff !important;
        border-radius: 0px 0px 10px 10px !important;
    }

    .mewtwo-flights.mewtwo-flights--virgin.mewtwo-tabs-container {
        border-radius: 0px 0px 10px 10px !important;
    }

    .tp_powered_by {
        display: none !important;
    }

    .TPWL-widget #tpwl-main-form .mewtwo-placeholder-label, .TPWL-widget #tpwl-preroll-form .mewtwo-placeholder-label, .TPWL-widget #tpwl-side-form .mewtwo-placeholder-label {
        color: #222 !important;
    }

    /* styles to adapt the flight search tab */
    @media only screen and (max-width: 1199px) {
        .TPWL-widget {
            margin-top: 75px;
        }

        .mewtwo-widget .mewtwo-tabs-tabs_list__item {
            display: block !important;
        }

        html body .TPWL-widget #tpwl-main-form .mewtwo-tabs_list {
            padding-right: 105px !important;
            height: auto !important;
        }
    }


    @media (max-width: 991px) {
        .TPWL_widget--xs .TPWL-widget.user-settings {
            display: block;
            z-index: 20;
        }

        html body .TPWL-widget #tpwl-main-form .mewtwo-tabs-tabs_list__item, .TPWL-widget #tpwl-preroll-form .mewtwo-tabs-tabs_list__item, .TPWL-widget #tpwl-side-form .mewtwo-tabs-tabs_list__item,
        html body .TPWL-widget #tpwl-main-form .mewtwo-tabs-tabs_list__item:last-child, .TPWL-widget #tpwl-preroll-form .mewtwo-tabs-tabs_list__item:last-child, .TPWL-widget #tpwl-side-form .mewtwo-tabs-tabs_list__item:last-child,
        html body .TPWL-widget #tpwl-main-form .mewtwo-tabs-tabs_list__item:first-child, .TPWL-widget #tpwl-preroll-form .mewtwo-tabs-tabs_list__item:first-child, .TPWL-widget #tpwl-side-form .mewtwo-tabs-tabs_list__item:first-child,
        html body .TPWL-widget #tpwl-main-form .mewtwo-tabs_list .mewtwo-tabs-tabs_list__item--active, .TPWL-widget #tpwl-preroll-form .mewtwo-tabs_list .mewtwo-tabs-tabs_list__item--active, .TPWL-widget #tpwl-side-form .mewtwo-tabs_list .mewtwo-tabs-tabs_list__item--active {
            border-radius: 0 !important;
            padding: 15px 5px 10px !important;
        }
    }

    @media only screen and (max-width: 767px) {
        html body .widget-block-tr iframe {
            min-height: 320px !important;
            height: auto !important;
        }
    }

    @media (max-width: 627px) {
        html body .ps-nights.tt {
            top: 5px !important;
            left: 0 !important;
        }

        html body .TPWL-widget .sob__tur.sob__all {
            padding: 0 10px !important;
        }
    }

    @media (max-width: 576px) {
        .TPWL_widget--xs .TPWL-widget.user-settings {
            top: 55px
        }

        html body .sob__all {
            width: 100% !important;
        }

        .sob__all {
            width: 100% !important;
        }

        html body .TPWL-widget #tpwl-main-form .mewtwo-tabs_list {
            padding-right: 0 !important;
            display: inline-flex !important;
            align-items: center !important;
        }

        html body .TPWL-widget,
        html body .TPWL-widget .TPWL-template-header {
            margin-top: 0 !important;
        }


        html body .TPWL-widget .mewtwo-widget .mewtwo-tabs {
            overflow-x: auto !important;
            overflow-y: hidden !important;
            border-radius: 0 !important;
        }

        html body .TPWL-widget .TPWL_widget--xs #tpwl-main-form .mewtwo-tabs_list {
            padding: 33px 13px 0 !important;
            margin-bottom: 60px !important;
        }

        html body .TPWL-widget #tpwl-main-form .mewtwo-tabs--wide .mewtwo-tabs-tabs_list__item {
            margin-right: 22px !important;
            padding: 0 !important;
            border-bottom: 2px solid transparent !important;
            height: 17px !important;
            transition: 0.4s;
        }

        html body .TPWL-widget #tpwl-main-form .mewtwo-tabs--wide .mewtwo-tabs-tabs_list__item,
        html body .TPWL-widget #tpwl-main-form .mewtwo-tabs--wide .mewtwo-tabs-tabs_list__item span,
        html body .TPWL-widget #tpwl-main-form .mewtwo-tabs--wide .mewtwo-tabs-tabs_list__item a {
            letter-spacing: 0.02em !important;
            text-transform: uppercase !important;
            font-weight: 300 !important;
            font-size: 13px !important;
            line-height: 13px !important;
            color: #AFB6C0 !important;
            white-space: nowrap !important;
            transition: 0.4s;
        }

        html body .TPWL-widget #tpwl-main-form .mewtwo-tabs--wide .mewtwo-tabs-tabs_list__item--active {
            padding: 0 !important;
            border-color: #fff !important;
        }

        html body .TPWL-widget #tpwl-main-form .mewtwo-tabs--wide .mewtwo-tabs-tabs_list__item--active,
        html body .TPWL-widget #tpwl-main-form .mewtwo-tabs--wide .mewtwo-tabs-tabs_list__item--active span,
        html body .TPWL-widget #tpwl-main-form .mewtwo-tabs--wide .mewtwo-tabs-tabs_list__item--active a {
            font-weight: 700 !important;
            line-height: 13px !important;
            color: #fff !important;
            background: transparent !important;
            white-space: nowrap !important;
        }

        html body .TPWL-widget #tpwl-main-form .mewtwo-tabs--wide .mewtwo-tabs-tabs_list__item span {
            padding: 0 !important;
        }

        html body .TPWL-widget .mewtwo-widget .mewtwo-flights-container,
        html body .TPWL-widget .mewtwo-widget .mewtwo-flights-multi,
        html body .TPWL-widget .mewtwo-widget .mewtwo-hotels-container {
            background: #333647 !important;
        }

        html body .TPWL-widget .mewtwo-widget .mewtwo-flights-container, html body .TPWL-widget .mewtwo-widget .mewtwo-flights-multi, html body .TPWL-widget .mewtwo-widget .mewtwo-hotels-container {
            padding: 15px 13px 30px !important;
        }

        html body .TPWL-widget #tpwl-main-form .mewtwo-placeholder-label, html body .TPWL-widget #tpwl-preroll-form .mewtwo-placeholder-label, .TPWL-widget #tpwl-side-form .mewtwo-placeholder-label {
            font-size: 12px !important;
            line-height: 16px !important;
            font-weight: 400 !important;
            color: #FFFFFF !important;
        }

        html body .TPWL-widget #tpwl-main-form .mewtwo-flights-multi-add_segment, html body .TPWL-widget #tpwl-main-form .mewtwo-flights-multi-trip_class-wrapper, html body .TPWL-widget #tpwl-main-form .mewtwo-flights-trip_class-wrapper, html body .TPWL-widget #tpwl-main-form .mewtwo-hotels-guests__text,
        html body .TPWL-widget #tpwl-main-form input[type=text], html body .TPWL-widget #tpwl-preroll-form .mewtwo-flights-multi-add_segment, html body .TPWL-widget #tpwl-preroll-form .mewtwo-flights-multi-trip_class-wrapper, html body .TPWL-widget #tpwl-preroll-form .mewtwo-flights-trip_class-wrapper, html body .TPWL-widget #tpwl-preroll-form .mewtwo-hotels-guests__text, html body .TPWL-widget #tpwl-preroll-form input[type=text],
        html body .TPWL-widget #tpwl-side-form .mewtwo-flights-multi-add_segment, html body .TPWL-widget #tpwl-side-form .mewtwo-flights-multi-trip_class-wrapper, html body .TPWL-widget #tpwl-side-form .mewtwo-flights-trip_class-wrapper,
        html body .TPWL-widget #tpwl-side-form .mewtwo-hotels-guests__text, html body .TPWL-widget #tpwl-side-form input[type=text] {
            height: 48px !important;
            font-size: 15px !important;
            line-height: 20px !important;
            color: #222222 !important;
        }

        .TPWL-widget .TPWL--touch #tpwl-main-form .mewtwo-flights-multi-add_segment, .TPWL-widget .TPWL--touch #tpwl-main-form .mewtwo-flights-multi-trip_class-wrapper, .TPWL-widget .TPWL--touch #tpwl-main-form .mewtwo-flights-trip_class-wrapper, .TPWL-widget .TPWL--touch #tpwl-main-form .mewtwo-hotels-guests__text, .TPWL-widget .TPWL--touch #tpwl-main-form input[type=text], .TPWL-widget .TPWL--touch #tpwl-preroll-form .mewtwo-flights-multi-add_segment, .TPWL-widget .TPWL--touch #tpwl-preroll-form .mewtwo-flights-multi-trip_class-wrapper, .TPWL-widget .TPWL--touch #tpwl-preroll-form .mewtwo-flights-trip_class-wrapper, .TPWL-widget .TPWL--touch #tpwl-preroll-form .mewtwo-hotels-guests__text, .TPWL-widget .TPWL--touch #tpwl-preroll-form input[type=text], .TPWL-widget .TPWL--touch #tpwl-side-form .mewtwo-flights-multi-add_segment, .TPWL-widget .TPWL--touch #tpwl-side-form .mewtwo-flights-multi-trip_class-wrapper, .TPWL-widget .TPWL--touch #tpwl-side-form .mewtwo-flights-trip_class-wrapper, .TPWL-widget .TPWL--touch #tpwl-side-form .mewtwo-hotels-guests__text, .TPWL-widget .TPWL--touch #tpwl-side-form input[type=text] {
            font-size: 15px !important;
        }

        html body .TPWL-widget #tpwl-main-form .mewtwo-flights-container--new .mewtwo-flights-destination, .TPWL-widget #tpwl-main-form .mewtwo-flights-container--new .mewtwo-flights-origin, .TPWL-widget #tpwl-main-form .mewtwo-flights-container--new .mewtwo-flights-trip_class, .TPWL-widget #tpwl-main-form .mewtwo-hotels-city--new, .TPWL-widget #tpwl-main-form .mewtwo-hotels-dates--new, .TPWL-widget #tpwl-main-form .mewtwo-hotels-guests--new, .TPWL-widget #tpwl-preroll-form .mewtwo-flights-container--new .mewtwo-flights-destination, .TPWL-widget #tpwl-preroll-form .mewtwo-flights-container--new .mewtwo-flights-origin, .TPWL-widget #tpwl-preroll-form .mewtwo-flights-container--new .mewtwo-flights-trip_class, .TPWL-widget #tpwl-preroll-form .mewtwo-hotels-city--new, .TPWL-widget #tpwl-preroll-form .mewtwo-hotels-dates--new, .TPWL-widget #tpwl-preroll-form .mewtwo-hotels-guests--new, .TPWL-widget #tpwl-side-form .mewtwo-flights-container--new .mewtwo-flights-destination, .TPWL-widget #tpwl-side-form .mewtwo-flights-container--new .mewtwo-flights-origin, .TPWL-widget #tpwl-side-form .mewtwo-flights-container--new .mewtwo-flights-trip_class, .TPWL-widget #tpwl-side-form .mewtwo-hotels-city--new, .TPWL-widget #tpwl-side-form .mewtwo-hotels-dates--new, .TPWL-widget #tpwl-side-form .mewtwo-hotels-guests--new {
            margin-bottom: 18px !important;
        }

        html body .TPWL-widget #tpwl-main-form .mewtwo-flights-container--new .mewtwo-flights-trip_class {
            margin-top: 20px !important;
        }

        html body .TPWL-widget #tpwl-main-form .mewtwo-flights-destination-country--new, .TPWL-widget #tpwl-main-form .mewtwo-flights-origin-country--new, .TPWL-widget #tpwl-preroll-form .mewtwo-flights-destination-country--new, .TPWL-widget #tpwl-preroll-form .mewtwo-flights-origin-country--new, .TPWL-widget #tpwl-side-form .mewtwo-flights-destination-country--new, .TPWL-widget #tpwl-side-form .mewtwo-flights-origin-country--new {
            top: 16px !important;
        }

        html body .mewtwo-widget .mewtwo-tabs-tabs_list__item.mewtwo-tabs-tabs_list__item--active:after {
            display: none !important;
        }

        html body .mewtwo-widget--touch .mewtwo-widget .mewtwo-flights-origin-country {
            font-size: 15px !important;
            line-height: 15px !important;
        }

        html body .mewtwo-widget .mewtwo-flights-origin__iata {
            top: 0px !important;
            font-size: 12px !important;
            right: 16px !important;
            padding-right: 0 !important;
        }

        .TPWL-widget #tpwl-main-form .mewtwo-flights-container--new .mewtwo-flights-destination input, .TPWL-widget #tpwl-main-form .mewtwo-flights-container--new .mewtwo-flights-origin input, .TPWL-widget #tpwl-main-form .mewtwo-flights-container--new .mewtwo-flights-trip_class input, .TPWL-widget #tpwl-main-form .mewtwo-flights-dates--new input, .TPWL-widget #tpwl-main-form .mewtwo-hotels-container .mewtwo-hotels-city--new input, .TPWL-widget #tpwl-main-form .mewtwo-hotels-container .mewtwo-hotels-dates--new input, .TPWL-widget #tpwl-main-form .mewtwo-hotels-container .mewtwo-hotels-guests--new input, .TPWL-widget #tpwl-preroll-form .mewtwo-flights-container--new .mewtwo-flights-destination input, .TPWL-widget #tpwl-preroll-form .mewtwo-flights-container--new .mewtwo-flights-origin input, .TPWL-widget #tpwl-preroll-form .mewtwo-flights-container--new .mewtwo-flights-trip_class input, .TPWL-widget #tpwl-preroll-form .mewtwo-flights-dates--new input, .TPWL-widget #tpwl-preroll-form .mewtwo-hotels-container .mewtwo-hotels-city--new input, .TPWL-widget #tpwl-preroll-form .mewtwo-hotels-container .mewtwo-hotels-dates--new input, .TPWL-widget #tpwl-preroll-form .mewtwo-hotels-container .mewtwo-hotels-guests--new input, .TPWL-widget #tpwl-side-form .mewtwo-flights-container--new .mewtwo-flights-destination input, .TPWL-widget #tpwl-side-form .mewtwo-flights-container--new .mewtwo-flights-origin input, .TPWL-widget #tpwl-side-form .mewtwo-flights-container--new .mewtwo-flights-trip_class input, .TPWL-widget #tpwl-side-form .mewtwo-flights-dates--new input, .TPWL-widget #tpwl-side-form .mewtwo-hotels-container .mewtwo-hotels-city--new input, .TPWL-widget #tpwl-side-form .mewtwo-hotels-container .mewtwo-hotels-dates--new input, .TPWL-widget #tpwl-side-form .mewtwo-hotels-container .mewtwo-hotels-guests--new input {
            border-radius: 2px !important;
        }

        html body .mewtwo-widget--whitelabel_ru .mewtwo-flights-trip_class-wrapper:after {
            background-image: url('https://www.morin-tour.ru/wp-content/uploads/whitelabel/arrow-down-sign-to-navigate.svg') !important;
        }

        html body .TPWL-widget #tpwl-main-form .mewtwo-flights-dates.mewtwo-flights-dates--new, .TPWL-widget #tpwl-preroll-form .mewtwo-flights-dates.mewtwo-flights-dates--new, .TPWL-widget #tpwl-side-form .mewtwo-flights-dates.mewtwo-flights-dates--new {
            display: flex !important;
            justify-content: space-between;
        }

        html body .mewtwo-widget .mewtwo-flights-dates-depart,
        html body .mewtwo-widget .mewtwo-flights-dates-return {
            width: calc(50% - 2px) !important;
        }

        .TPWL-widget #tpwl-main-form .mewtwo-flights--m .mewtwo-flights-multi-submit_button button, .TPWL-widget #tpwl-main-form .mewtwo-flights--m .mewtwo-flights-submit_button button, .TPWL-widget #tpwl-main-form .mewtwo-flights--s .mewtwo-flights-multi-submit_button button, .TPWL-widget #tpwl-main-form .mewtwo-flights--s .mewtwo-flights-submit_button button, .TPWL-widget #tpwl-main-form .mewtwo-flights--xs .mewtwo-flights-multi-submit_button button, .TPWL-widget #tpwl-main-form .mewtwo-flights--xs .mewtwo-flights-submit_button button, .TPWL-widget #tpwl-main-form .mewtwo-hotels--m .mewtwo-hotels-submit_button button, .TPWL-widget #tpwl-main-form .mewtwo-hotels--s .mewtwo-hotels-submit_button button, .TPWL-widget #tpwl-main-form .mewtwo-hotels--xs .mewtwo-hotels-submit_button button, .TPWL-widget #tpwl-preroll-form .mewtwo-flights--m .mewtwo-flights-multi-submit_button button, .TPWL-widget #tpwl-preroll-form .mewtwo-flights--m .mewtwo-flights-submit_button button, .TPWL-widget #tpwl-preroll-form .mewtwo-flights--s .mewtwo-flights-multi-submit_button button, .TPWL-widget #tpwl-preroll-form .mewtwo-flights--s .mewtwo-flights-submit_button button, .TPWL-widget #tpwl-preroll-form .mewtwo-flights--xs .mewtwo-flights-multi-submit_button button, .TPWL-widget #tpwl-preroll-form .mewtwo-flights--xs .mewtwo-flights-submit_button button, .TPWL-widget #tpwl-preroll-form .mewtwo-hotels--m .mewtwo-hotels-submit_button button, .TPWL-widget #tpwl-preroll-form .mewtwo-hotels--s .mewtwo-hotels-submit_button button, .TPWL-widget #tpwl-preroll-form .mewtwo-hotels--xs .mewtwo-hotels-submit_button button, .TPWL-widget #tpwl-side-form .mewtwo-flights--m .mewtwo-flights-multi-submit_button button, .TPWL-widget #tpwl-side-form .mewtwo-flights--m .mewtwo-flights-submit_button button, .TPWL-widget #tpwl-side-form .mewtwo-flights--s .mewtwo-flights-multi-submit_button button, .TPWL-widget #tpwl-side-form .mewtwo-flights--s .mewtwo-flights-submit_button button, .TPWL-widget #tpwl-side-form .mewtwo-flights--xs .mewtwo-flights-multi-submit_button button, .TPWL-widget #tpwl-side-form .mewtwo-flights--xs .mewtwo-flights-submit_button button, .TPWL-widget #tpwl-side-form .mewtwo-hotels--m .mewtwo-hotels-submit_button button, .TPWL-widget #tpwl-side-form .mewtwo-hotels--s .mewtwo-hotels-submit_button button, .TPWL-widget #tpwl-side-form .mewtwo-hotels--xs .mewtwo-hotels-submit_button button {
            width: 100% !important;
        }

        .TPWL-widget #tpwl-main-form .mewtwo-flights-multi-submit_button, .TPWL-widget #tpwl-main-form .mewtwo-flights-submit_button, .TPWL-widget #tpwl-main-form .mewtwo-hotels-submit_button, .TPWL-widget #tpwl-preroll-form .mewtwo-flights-multi-submit_button, .TPWL-widget #tpwl-preroll-form .mewtwo-flights-submit_button, .TPWL-widget #tpwl-preroll-form .mewtwo-hotels-submit_button, .TPWL-widget #tpwl-side-form .mewtwo-flights-multi-submit_button, .TPWL-widget #tpwl-side-form .mewtwo-flights-submit_button, .TPWL-widget #tpwl-side-form .mewtwo-hotels-submit_button {
            margin-top: 12px !important;
        }

        .TPWL-widget #tpwl-main-form .mewtwo-flights-link_to_multi, .TPWL-widget #tpwl-preroll-form .mewtwo-flights-link_to_multi, .TPWL-widget #tpwl-side-form .mewtwo-flights-link_to_multi {
            margin-top: 30px !important;
            margin-left: auto !important;
        }

        .ps-countries .ps-countries_visible_item > label {
            font-size: 11px !important;
        }

        .ps-countries .more_item:not(.active):before {
            left: 0 !important;
            right: 0 !important;
            bottom: 4px !important;
            top: initial !important;
            margin: auto !important;
        }
    }

    /* special offers section */
    .special_offers_bg {
        background: #fff !important;
        padding: 40px 0 !important;
        border-radius: 10px;
        -webkit-box-shadow: 0 3px 0 0 rgba(0, 0, 0, .03) !important;
        box-shadow: 0 3px 0 0 rgba(0, 0, 0, .03) !important;
    }

    .TPWL-widget div.TPWL-front-content h2 {
        font-size: 38px !important;
        line-height: 1.29 !important;
        font-weight: 900 !important;
        margin: 25px 0 25px !important;
        text-align: center;
        font-family: 'Roboto';
    }

    /* styles to adapt special offers section */
    @media (max-width: 1199px) {
        .ducklett-widget {
            display: flex;
            justify-content: center;

        }

        .TPWL-front-content-special_offers {
            width: 100vw;
        }

        .ducklett-widget .ducklett-widget-type_slider {
            width: 100% !important;
        }
    }

    @media (max-width: 576px) {
        .ducklett-widget .ducklett-widget-type_slider {
            margin: 0px 45px !important;
        }

        .special_offers_bg {
            padding: 0 !important;
            background: none !important;
        }

        html body .TPWL-front-content-special_offers {
            overflow: hidden !important;
            background: #F5F7FA !important;
        }

        /*.ducklett-widget .ducklett-slider-wrapper {*/
        /*    overflow: visible !important;*/
        /*}*/
        html body .ducklett-widget .ducklett-widget-type_slider {
            margin: 0 !important;
        }

        html body .ducklett-widget .ducklett-widget-wrapper--slider {
            margin: 0 auto !important;
            width: 100% !important;
            max-width: 263px !important;
            transform: none !important;
        }

        html body .ducklett-widget .ducklett-widget-wrapper--slider .slick-list {
            overflow: visible;
            margin: 0 -7.5px !important;
        }

        .ducklett-widget .ducklett-widget-wrapper--slider .slick-dots {
            margin-top: 23px !important;
            display: flex !important;
            justify-content: center;
        }

        .ducklett-widget .ducklett-widget-wrapper--slider .slick-dots li {
            margin: 0 8px !important;
            padding: 0 !important;
            width: 8px !important;
            height: 8px !important;
            background: #AFB6C0 !important;
            border-radius: 42px !important;
        }

        .ducklett-widget .ducklett-widget-wrapper--slider .slick-dots li.slick-active {
            background: #333647 !important;
        }

        .ducklett-widget .ducklett-widget-wrapper--slider .slick-dots li button {
            display: none !important;
        }

        html body .ducklett-widget .ducklett-slide_arrow--left,
        html body .ducklett-widget .ducklett-slide_arrow--right {
            display: none !important;
        }


        html body .ducklett-widget .ducklett-widget-wrapper--slider .ducklett-widget-wrapper-item {
            margin: 0 7.5px !important;
            min-width: auto !important;
        }

        html body .ducklett-widget .ducklett-special_offer-title-wrapper {
            padding: 0 16px !important;
            opacity: 1 !important;
        }


        html body .ducklett-widget .ducklett-special_offer {
            height: auto !important;
        }

        html body .ducklett-widget .ducklett-special_offer__title {
            font-size: 12px !important;
            line-height: 14px !important;
            height: 46px !important;
            font-weight: 500 !important;
        }

        html body .ducklett-widget .ducklett-special_offer-body {
            padding: 10px 15px !important;
            height: 155px !important;
        }

        html body .ducklett-widget .ducklett-special_offer-body-price {
            height: 40px !important;
            background-size: auto 30px !important;
        }

        html body .ducklett-widget .ducklett-special_offer-body-price-after-discount {
            font-size: 16px !important;
            font-weight: 600 !important;
        }

        html body .ducklett-widget .ducklett-special_offer-body-price-sale_end {
            padding-left: 13px !important;
            color: #aaa !important;
            font-size: 10px !important;
            background-size: 10px 10px !important;
        }

        html body .ducklett-widget .ducklett-special_offer-body__description {
            bottom: 48px !important;
            padding-right: 10px !important;
            font-size: 10px !important;
            line-height: 15px !important;
        }

        html body .ducklett-widget .ducklett-special_offer-body--button-wrapper {
            bottom: 11px !important;
        }

        html body .ducklett-widget .ducklett-special_offer-body__button {
            height: 31px !important;
            font-size: 8px !important;
        }


        html body .ducklett-widget .ducklett-special_offer-body {
            border: none !important;
        }

        html body .special_offers_bg {
            box-shadow: none !important;
        }
    }


    /* articles preview */
    .feedEkList {
        width: 900px;
    }

    .feedEkList li {
        width: 290px;
        background: #fff;
        display: inline-block;
        border-radius: 10px;
        -webkit-box-shadow: 0 3px 0 0 rgba(0, 0, 0, .03) !important;
        box-shadow: 0 3px 0 0 rgba(0, 0, 0, .03) !important;
        margin-right: 39px;
        height: 300px;
        vertical-align: top;
    }

    .img-block-blog {
        width: 290px;
        -webkit-border-top-left-radius: 10px;
        -webkit-border-top-right-radius: 10px;
        -moz-border-radius-topleft: 10px;
        -moz-border-radius-topright: 10px;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

    .img-block-blog img {
        width: 100%;
        -webkit-border-top-left-radius: 10px;
        -webkit-border-top-right-radius: 10px;
        -moz-border-radius-topleft: 10px;
        -moz-border-radius-topright: 10px;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

    .itemTitle {
        padding: 20px 25px !important;
    }

    .itemTitle a {
        font-weight: 600;
        font-size: 15px;
        line-height: 20px;
        color: #000 !important;
    }

    .itemDate {
        padding: 0 25px !important;
        color: #AAAAAA;
    }

    .itemContent {
        display: none !important;
    }

    .feedEkList {
        width: 100%;
    }


    /* partners section */
    .partners p {
        text-align: center;
        font-family: Open Sans;
        font-style: normal;
        font-weight: normal;
        font-size: 15px;
        color: #222222;
    }

    .TPWL-widget div.TPWL-front-content h2.partners__title {
        margin: 100px 0 5px !important;
    }

    /* list of partners */
    .partners ul {
        width: 100%;
        display: block;
        margin: 30px 0 30px 0;
        text-align: center;
    }

    .partners ul li {
        list-style-type: none;
        padding: 23px 28px;
        display: inline-block;
    }

    .partners ul li a:hover {
        opacity: .8;
    }

    /* partner section adaptation styles */
    @media (max-width: 1366px) {
        .partners {
            max-width: 100vw;
        }

        .partners ul {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

        .partners ul li {
            width: 20%;
        }

        .partners ul li img {
            width: 100% !important;
            height: auto !important;
        }
    }

    @media (max-width: 991px) {
        .partners ul li {
            width: 33.333333% !important;
        }
    }

    @media (max-width: 576px) {
        .partners ul li {
            padding: 20px 12px;
            width: 50% !important;
        }
    }


    /* site footer */
    .wl__footer {
        padding: 15px 0 2px 0;
        border-top: 1px solid #CDD5E0;
        display: block;
        width: 100%;
        margin-top: 50px;
    }

    .wlf__wrapp {
        margin: 0 auto;
        width: 1180px;
        position: relative;
        display: flex;
        justify-content: space-between;
        box-sizing: border-box;
    }

    .wlf__copyright {
        font-size: 14px;
        font-family: 'Roboto';
        color: #AAA;
    }

    .wlf__links ul {
        list-style-type: none;
        margin: 0;
    }

    .wlf__links li {
        list-style-type: none;
        padding: 0;
        display: inline-block;
        margin-left: 30px;
    }

    .wlf__links li a {
        color: #262626;
        font-size: 14px;
        text-decoration: none;
        font-weight: 500;
    }

    .wlf__links li a:hover {
        opacity: .8;
    }

    /* the footer adapt styles */
    @media (max-width: 1199px) {
        .wlf__wrapp {
            width: 100%;
            padding: 0 15px;
        }
    }


    @media (max-width: 991px) {
        .wl__footer {
            border: none;
            padding: 20px 0;
            transform: translateY(20px);
            background: #333647;
        }

        .wlf__copyright {
            color: #AFB6C0;
        }

        .wlf__links li a {
            color: #fff;
            font-weight: 400;
        }

        html body .sob__tr .sob__all {
            width: 100% !important;
        }
    }

    @media (max-width: 576px) {
        .wl__footer {
            padding: 0;
        }

        .wlf__wrapp {
            display: flex;
            flex-direction: column-reverse;
            align-items: center;
            padding: 0;
        }

        .wlf__links ul {
            margin: 0;
            padding: 31px 0;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .wlf__links li {
            margin: 4px 0;
        }

        .wlf__copyright {
            border-top: 1px solid #AFB6C0;
            width: 100%;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
    }


    @media (max-width: 1199px) {
        #powered_by_1498 {
            overflow: auto;
        }
    }

    #powered_by_1497 {
        display: none !important;
    }

    /* section header customization styles */
    @media (max-width: 576px) {
        .TPWL-widget div.TPWL-front-content h2 {
            margin: 30px 0 23px !important;
            font-weight: 900 !important;;
            font-size: 28px !important;;
            line-height: 33px !important;;
            color: #333647 !important;;
        }
    }
    .TPWL-widget div.TPWL-front-content h2.TPWL-front-content-special_offers-title.block-margin-off.m25{
       margin-top: -125px !important;
    }
    
    /*Display full-width insurance widget */
    @media (max-width: 900px) {
       .sob__str.sob__all iframe{
           width: 100% !important;
       }
   }
</style>
