* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.center {
    text-align: center;
}

a,
a:visited {
    color: #060590;
    text-decoration: none;
}

a:focus,
a:hover {
    color: #0099ff;
    text-decoration: underline;
}

a:focus {
    outline: thin dotted;
    outline-offset: -2px;
}

body {
    padding: 0;
    margin: 0;
    font-family: "Roboto", sans-serif;
    color: #444444;
    background-color: #fff;
    scroll-behavior: smooth;
}

.red {
    color: red;
}

.page {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    max-width: 1467px;
    padding: 0;
    margin: 0 auto;
}

.page__nav {
    position: relative;
    top: 0;
    z-index: 2;
    max-width: 100%;
}

.page__body {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
}

@media screen and (min-width: 1024px) {
    .page__body {
        padding: 0 16px;
    }
}

@media screen and (min-width: 1467px) {
    .page__body {
        padding: 0;
    }
}

.page__content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 280px;
}

.page__sidebar {
    display: none;
    -webkit-box-flex: 0;
    -ms-flex: 0 340px;
    flex: 0 340px;
    min-width: 340px;
    margin-left: 16px;
}

@media screen and (min-width: 1024px) {
    .page__sidebar {
        display: block;
    }
}

.top_nav {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    max-width: 100%;
    margin: 0 auto;
    background-color: white;
    border-top: 2px solid #bf134d;
    border-bottom: 2px solid black;
}

.top_nav__logo {
    display: inline-block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    text-decoration: none;
}

.top_nav__list {
    display: inline-block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    padding: 0;
    margin: 0;
    margin-right: 8px;
    overflow-x: auto;
    list-style: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.top_nav__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 5px;
    margin-top: -2px;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    border-top: 2px solid transparent;
}

@media screen and (max-width: 525px) {
    .top_nav__item {
        /*display: none;*/
    }
    .top_nav__logo {
        width: 24px;
    }
}

.top_nav__item::after {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 3;
    display: block;
    height: 2px;
    pointer-events: none;
    content: "";
    background-color: transparent;
    -webkit-transition: background-color 0.3s ease 0s;
    transition: background-color 0.3s ease 0s;
}

.top_nav__item:hover {
    color: #fff;
}

.top_nav__item:nth-child(7n + 1) {
    border-top-color: #ffd400;
}

.top_nav__item:nth-child(7n + 1):hover,
.top_nav__item:nth-child(7n + 1):hover::after {
    background-color: #ffd400;
}

.top_nav__item:nth-child(7n + 2) {
    border-top-color: #30b3bf;
}

.top_nav__item:nth-child(7n + 2):hover,
.top_nav__item:nth-child(7n + 2):hover::after {
    background-color: #30b3bf;
}

.top_nav__item:nth-child(7n + 3) {
    border-top-color: #3640b3;
}

.top_nav__item:nth-child(7n + 3):hover,
.top_nav__item:nth-child(7n + 3):hover::after {
    background-color: #3640b3;
}

.top_nav__item:nth-child(7n + 4) {
    border-top-color: #cca266;
}

.top_nav__item:nth-child(7n + 4):hover,
.top_nav__item:nth-child(7n + 4):hover::after {
    background-color: #cca266;
}

.top_nav__item:nth-child(7n + 5) {
    border-top-color: #73cc33;
}

.top_nav__item:nth-child(7n + 5):hover,
.top_nav__item:nth-child(7n + 5):hover::after {
    background-color: #73cc33;
}

.top_nav__item:nth-child(7n + 6) {
    border-top-color: #ba39e6;
}

.top_nav__item:nth-child(7n + 6):hover,
.top_nav__item:nth-child(7n + 6):hover::after {
    background-color: #ba39e6;
}

.top_nav__item:nth-child(7n + 7) {
    border-top-color: #bf2219;
}

.top_nav__item:nth-child(7n + 7):hover,
.top_nav__item:nth-child(7n + 7):hover::after {
    background-color: #bf2219;
}

.top_nav__item:nth-child(9),
.top_nav__item:nth-child(9)::after {
    z-index: 2;
    color: #fff;
    cursor: auto;
    background-color: #bf2219;
}

@media screen and (max-width: 1110px) {
    .top_nav__item:nth-child(n + 7),
    .top_nav__item:nth-child(n + 7)::after {
        display: none;
    }
    .top_nav__item:nth-child(9),
    .top_nav__item:nth-child(9)::after {
        display: flex;
    }
}

.top_nav__lang-switcher {
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.lang-switcher {
    display: inline-block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 16px;
    margin: 0;
    font-size: 15px;
    list-style: none;
}

.lang-switcher::before {
    position: relative;
    left: -16px;
    width: 1px;
    height: 90%;
    content: "";
    background-color: #666666;
}

.lang-switcher__item {
    display: inline;
    color: #666666;
    text-decoration: none;
}

.lang-switcher__item a {
    color: #666666;
    text-decoration: none !important;
}

.lang-switcher__item+.lang-switcher__item {
    margin-left: 8px;
}

.lang-switcher__item--is_active {
    text-shadow: 1px 0 0 #000;
}

.lang-switcher__item>abbr {
    text-decoration: none;
}

.side_bar {
    position: relative;
    padding: 0;
    font-family: "Ubuntu", sans-serif;
    background: whitesmoke none repeat scroll 0% 0%;
}

.side_bar__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    margin: 0;
    list-style: outside none none;
    border-bottom: 1px solid transparent;
}

.side_bar__tab {
    display: block;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 12px 9px 11px;
    font-size: 10px;
    font-weight: 700;
    color: #666666;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    background: #e2e2e2 none repeat scroll 0% 0%;
    border-right: 1px solid whitesmoke;
    border-left: 1px solid whitesmoke;
}

.side_bar__tab+.side_bar__tab {
    border-left-color: whitesmoke;
}

.side_bar__tab:hover,
.side_bar__tab:focus {
    background: rgba(226, 226, 226, 0.5) none repeat scroll 0% 0%;
    border-right-color: rgba(226, 226, 226, 0.5);
}

.side_bar__tab:first-child,
.side_bar__tab:first-child:hover,
.side_bar__tab:first-child:focus {
    color: #666666;
    cursor: default;
    background-color: transparent;
    border: 1px solid transparent;
}

.side_bar__tab_body {
    padding: 0 16px;
}

.side_bar__item {
    position: relative;
    padding: 15px 0;
    margin-top: 0;
    border-bottom: 1px solid gainsboro;
}

.side_bar a {
    color: #000;
}

.side_bar__item:last-child {
    border-bottom: none;
}

.side_bar__link_text {
    margin: 0;
    font-family: "Ubuntu", sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #333333;
    cursor: pointer;
}

.side_bar__link_text:hover,
.side_bar__link_text:focus {
    text-decoration: underline;
}

.side_bar__category,
.side_bar__date {
    font-size: 10px;
    color: #a0a0a0;
}

.side_bar__image_wrapper {
    position: relative;
    padding-top: 57.143%;
    overflow: hidden;
}

.side_bar__image {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    max-width: 100%;
    height: auto;
    -webkit-transition: -webkit-transform 3s ease 0s;
    transition: -webkit-transform 3s ease 0s;
    transition: transform 3s ease 0s;
    transition: transform 3s ease 0s, -webkit-transform 3s ease 0s;
}

.side_bar__item:hover .side_bar__image,
.side_bar__item:focus .side_bar__image {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.side_bar__image_text {
    margin-top: 16px;
    font-family: "Ubuntu", sans-serif;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.33333;
    cursor: pointer;
}

.side_bar__image_text:hover,
.side_bar__image_textfocus {
    text-decoration: underline;
}

.content {
    position: relative;
    padding: 0;
}

.content__body {
    max-width: 100%;
    padding: 0 8px;
    margin-right: 0;
    margin-left: auto;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.4;
}

@media screen and (min-width: 1024px) {
    .content__body {
        padding: 0;
    }
}

@media screen and (min-width: 1170px) {
    .content__body {
        max-width: 800px;
    }
}

@media screen and (min-width: 1400px) {
    .content__body {
        max-width: 940px;
    }
}

.content__lead_text {
    padding: 16px 0;
    font-family: "Roboto", sans-serif;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.25;
    color: #cc0000;
    border-bottom: 2px solid;
}

.content__img_figure {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: 16px;
    text-align: center;
}

.content__image {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

.content__img_capition {
    width: 100%;
    max-width: 478px;
    padding: 8px;
    font-size: 17px;
    background-color: #eee;
    margin: 0 auto;
}

.content__special_text {
    font-size: 30px;
    font-weight: bold;
    line-height: 1.25;
    color: #cc0000;
}

.content__accent {
    font-weight: bold;
    color: #cc0000;
}

.content__accent_text {
    color: red;
}

.content__bottom_btns {
    text-align: center;
}

.content__btn,
.content__btn:visited,
.content__btn:hover,
.content .content__btn {
    display: inline-block;
    padding: 20px;
    margin: 20px auto;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    background-color: #0299ff;
    background-repeat: no-repeat;
    background-position: 1.35em 0.94em;
    background-size: 1em;
    border: none;
    border-radius: 5px;
    -webkit-box-shadow: 0 4px 15px 0 rgba(129, 150, 160, 0.45);
    box-shadow: 0 4px 15px 0 rgba(129, 150, 160, 0.45);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}

.header {
    position: relative;
}

.header__image_wrapper {
    position: relative;
    background-image: url("../img/main_picture_01.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 20px;
    text-align: center;
}

.header__image_wrapper::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: -1px;
    left: 0;
    content: "";
    background: transparent -webkit-gradient( linear, to bottom, color-stop(30%, transparent), color-stop(65%, rgba(0, 0, 0, 0.15)), to(rgba(0, 0, 0, 0.85))) repeat scroll 0 0;
    background: transparent linear-gradient( to bottom, transparent 30%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.85) 100%) repeat scroll 0 0;
}

.header__image {
    width: 100%;
}

.header__flight-block {
    display: inline-block;
    position: relative;
    text-align: center;
    margin: 40px auto 55px;
}

.header__main-title {
    position: relative;
    font-size: 36px;
    line-height: 1.1;
    font-weight: 900;
    color: #ffffff;
    z-index: 1;
    text-align: left;
}

.header__flight-pic-wrapper,
.header__flight-text {
    display: inline-block;
    vertical-align: middle;
    height: 222px;
    box-shadow: -10px 5px 15px 0px rgba(0, 0, 0, 0.5);
}

.header__flight-pic-wrapper {
    margin-right: 25px;
}

.header__flight-pic {
    display: block;
    height: 100%;
}

.header__flight-text {
    display: inline-block;
    max-width: 260px;
    padding: 20px;
    text-align: center;
    background-color: #f02e26;
    color: #ffffff;
    font-size: 46px;
}

.header__info_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 16px;
    font-size: 14px;
    color: #aaaaaa;
    background: black none repeat scroll 0% 0%;
}

.header__info_text {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 8px;
    margin-right: 8px;
    color: #f65757;
    border-right: 1px solid grey;
}

.header__date {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.header__social_icons {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.social_icons {
    padding: 0;
    margin: 0;
    list-style: outside none none;
}

.social_icons__item {
    display: inline-block;
}

.social_icons__item+.social_icons__item {
    margin-left: 8px;
}

.social_icons__icon {
    width: 15px;
    height: 15px;
    vertical-align: middle;
    -webkit-transition: fill 0.3s ease 0s;
    transition: fill 0.3s ease 0s;
    fill: #fff;
}

.social_icons__counter {
    vertical-align: middle;
}

.social_icons__item:focus .social_icons__icon--tw,
.social_icons__item:hover .social_icons__icon--tw {
    fill: #03a9f4;
}

.social_icons__item:focus .social_icons__icon--msgr,
.social_icons__item:hover .social_icons__icon--msgr {
    fill: #0084ff;
}

.social_icons__item:focus .social_icons__icon--wtsp,
.social_icons__item:hover .social_icons__icon--wtsp {
    fill: #25d366;
}

.social_icons__item:focus .social_icons__icon--fb,
.social_icons__item:hover .social_icons__icon--fb {
    fill: #49629a;
}

.comments__header {
    padding: 5px 10px;
    margin-top: 50px;
    font-size: 24px;
    font-weight: normal;
    color: #000;
    text-align: center;
    border-bottom: 2px #000 solid;
}

.comment {
    margin-bottom: 28px;
    font-size: 0;
}

.comment__image {
    width: 75px;
    height: 75px;
    margin-right: 8px;
    border-radius: 50px;
}

.comment__image,
.comment__content {
    display: inline-block;
    font-size: 20px;
    vertical-align: top;
}

.comment__content {
    width: calc(100% - 84px);
}

.comment__content img {
    width: 100%;
    max-width: 400px;
}

.comment__user_name {
    margin-bottom: 4px;
    font-weight: bold;
}

.comment__photo {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 12px auto 0;
}

.quote {
    padding: 30px 0;
    border-top: 1px solid #dadada;
    border-bottom: 1px solid #dadada;
    font-size: 0;
}

.quote__pic-box,
.quote__text-box {
    display: inline-block;
    vertical-align: top;
}

.quote__pic-box {
    width: 25%;
}

.quote__pic {
    display: block;
    width: 90%;
    margin: 0 auto;
}

.quote__text-box {
    width: 75%;
    font-size: 22px;
    color: #444444;
}

.quote__text {
    display: block;
    position: relative;
    padding: 40px 40px 30px;
    margin: 0;
    font-style: italic;
}

.quote__text p {
    text-indent: 0.7em;
    margin: 0;
}

.quote__text p+p {
    margin-top: 10px;
}

.quote__text::before {
    content: '"';
    top: -20px;
    left: 0;
}

.quote__text::after {
    content: '"';
    bottom: -10px;
    right: 0;
}

.quote__text::before,
.quote__text::after {
    display: block;
    height: 65px;
    position: absolute;
    font-style: normal;
    font-size: 150px;
    line-height: 1;
    font-weight: 700;
    color: rgba(182, 0, 7, 0.2);
}

.quote__text-authore {
    font-weight: 700;
    padding: 0 40px;
    display: inline-block;
    font-style: italic;
    max-width: 440px;
}

@media all and (max-width: 1279px) {
    .header__main-title {
        font-size: 26px;
    }
    .header__flight-block {
        margin-top: 25px;
        margin-bottom: 20px;
    }
    .header__flight-pic-wrapper,
    .header__flight-text {
        height: 120px;
    }
    .header__flight-text {
        font-size: 32px;
    }
}

@media all and (max-width: 767px) {
    .header__main-title {
        font-size: 18px;
    }
    .quote__pic-box {
        display: block;
        margin: 0 auto 15px;
        width: 100%;
        max-width: 250px;
    }
    .quote__text-box {
        display: block;
        width: 100%;
    }
    .quote__text {
        padding: 20px;
    }
    .quote__text::before,
    .quote__text::after {
        height: 45px;
        font-size: 100px;
    }
}

@media all and (max-width: 459px) {
    .header__flight-pic-wrapper,
    .header__flight-text {
        height: 80px;
    }
    .header__flight-text {
        display: none;
    }
    .header__flight-pic-wrapper {
        margin-right: 0;
        height: 120px;
    }
}

.mob-burger {
    display: none;
}

.mob-burger span {
    display: block;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 3px;
    background-color: #000;
}

.mob-burger span::before,
.mob-burger span::after {
    content: "";
    display: block;
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: #000;
    transform: translateY(-8px);
}

.mob-burger span::after {
    transform: translateY(8px);
}

@media all and (max-width: 765px) {
    .mob-burger {
        display: block;
        flex-grow: 1;
        position: relative;
    }
    .top_nav__list {
        display: none;
    }
    .header__info_text {
        margin-bottom: 10px;
        border: none;
    }
}

.countdown-block {
    text-align: center;
    background: #fff500;
    color: #fff;
    padding: 10px 0;
    margin-left: -10px;
    margin-right: -10px
}

.countdown-block>h3 {
    font-weight: 800;
    font-size: 36px;
    padding-top: 5px;
    margin: 0
}

.countdown-container {
    max-width: 320px;
    text-align: center;
    margin: 0 auto;
}

.countdown-container .redd {
    color: red;
    font-weight: 800;
    font-size: 30px;
    margin: 0px auto;
}

.countdown-container h3 {
    color: #000;
    margin: 0 auto;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
    font-family: Roboto;
}

.countdown-container h6 {
    font-size: 14px;
    color: #0079f2;
    font-family: inherit;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 300;
    font-size: 39px;
    line-height: 1
}

.countdown-item {
    color: red;
    width: 5rem;
    font-weight: 800
}

.countdown-divider {
    color: #000;
    width: 1rem
}

.countdown-text {
    margin: 0 auto;
    margin-bottom: -8px;
    width: 90%;
    color: #000;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-family: Roboto;
}

.countdown-text span {
    width: 4rem;
    margin-right: 2rem
}

.countdown-text span:last-child {
    margin-right: 0
}

.best-form {
    font: 16px/1.2 "Arial";
    padding: 16px;
    color: #fff;
    background-image: linear-gradient(to top, #d1f0ff, #e9f8ff);
    margin-left: -10px;
    margin-right: -10px
}

.best-form>.wrap {
    max-width: 310px;
    margin: 0 auto
}

.product {
    display: flex;
    margin-bottom: 15px;
}

.product .left {
    width: 50%;
}

.product .right {
    width: 50%;
    text-align: center;
    font-family: Roboto;
}

.product .discount {
    background-image: linear-gradient(to right, #ff0, #ffeb3b);
    color: red;
    border-radius: 10px;
    transform: skew(-15deg);
    font-size: 3.5rem;
    font-weight: 700;
    font-style: italic;
    text-align: center;
    width: 85%;
    height: 5rem;
    line-height: 5rem;
    letter-spacing: -3px;
    margin-top: -.3rem
}

.product .discount div {
    transform: skew(15deg)
}

.product .price {
    color: #ed1b24;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1
}

.product .discount-text {
    margin-top: 1rem;
    color: #000;
    font-size: 18px
}

.product .price span {
    font-weight: 300;
    font-size: 50%;
    display: inline-block;
}

.product .price-old {
    line-height: 1
}

.product .price-old span {
    display: inline-block;
    padding: 0 1rem;
    font-size: 25px;
    color: #000;
    position: relative;
    font-weight: bold;
}

.product .price-old span:before {
    position: absolute;
    content: "";
    left: 0;
    top: 45%;
    right: 0;
    border-top: 5px solid #ed1b24;
    transform: rotate(-10deg)
}

.country-input,
.name-input,
.phone-input,
form select {
    position: relative;
    color: #000;
    width: 100%;
    box-sizing: border-box;
    font-size: 20px;
    margin-bottom: 10px;
}

.name-input input,
.phone-input input,
form select {
    border: 0;
    font-size: 20px;
    color: #4e4e4e !important;
    box-sizing: border-box;
    min-width: 0;
    padding: 10px 15px;
    border-radius: 6px;
    width: 100%;
    transition: all .15s ease-in-out;
}

form select {
    color: black;
}

select {
    -webkit-appearance: none;
    /* Webkit */
    -moz-appearance: none;
    /* FF */
    -ms-appearance: none;
    /* Edge */
    appearance: none;
    /* Future */
    background-repeat: no-repeat;
    background-position: right 5px center;
    background-size: 1em;
    background-image: url("../img/arrow-down.png");
}


/* IE11 */

select::-ms-expand {
    display: none;
}

.button-submit:focus,
input:focus-within {
    outline: 0;
    box-shadow: 0 0 0 4px #bdab3c
}

.name-input:focus-within input,
.phone-input:focus-within input {
    outline: 0
}

.name-input .country {
    border-radius: 3px;
    vertical-align: -2px
}

.name-input label,
.phone-input label {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.button-submit {
    text-align: center;
    display: flex;
    box-sizing: border-box !important;
    width: 100%;
    margin: 15px auto;
    text-decoration: none;
    text-transform: uppercase;
    color: #544c4c;
    box-shadow: 0 0 10px rgba(0, 0, 0, .4);
    border-radius: 6px;
    border: 0;
    padding: 14px 0;
    background-image: linear-gradient(to top, #d8b81b, #fff080);
    cursor: pointer;
    font: 24px/1.4 "Open Sans", sans-serif;
    font-weight: 400;
    text-decoration: none;
    color: inherit;
    line-height: 1;
}

.button-submit:hover {
    transform: scale(1.1);
    text-decoration: none;
    color: inherit;
    line-height: 1;
}

.button-submit-text {
    color: #544c4c;
    flex: 1 1 auto;
    font: inherit;
    font-weight: bold;
    line-height: 1;
}

.button-submit-arrow {
    width: 0;
    height: 0;
    border-top: .6rem solid transparent;
    border-bottom: .6rem solid transparent;
    border-left: 1rem solid #fff;
    margin-right: 1rem
}

.ord_button {
    background-color: rgb(93, 157, 82);
    color: rgb(255, 255, 255) ! important;
    display: inline-block;
    padding: 10px 30px;
    font-size: 25px ! important;
    box-shadow: 2px 3px 8px rgb(153, 153, 153);
    text-decoration: none ! important;
    border-radius: 8px;
    border: 3px solid rgb(255, 255, 255);
    margin: 20px 0px 30px;
    line-height: 27px;
    text-transform: uppercase;
    transition: all 0.3s ease-in 0s;
}

.ord_button:hover {
    background-color: rgb(93, 157, 82);
    box-shadow: 2px 3px 3px rgb(153, 153, 153);
    text-decoration: none ! important;
    transform: scale(1.1);
}

.prod-price {
    display: flex;
    max-width: 300px;
    margin: 20px auto -10px;
    line-height: 1
}

.pop-old-price {
    font-size: 24px;
    color: gray;
    text-decoration: line-through
}

.pop-new-price {
    font-size: 32px;
    color: #544c4c;
    font-weight: bold;
    text-shadow: 0 0 4px #e3c72e
}

.price-bottom {
    position: absolute;
    width: 100%
}

.pop-prod,
.pop-price {
    position: relative;
    flex: 1 50%;
    text-align: center;
    margin: auto;
    margin-top: 0px;
}

.pop-prod .prod {
    width: 100%;
}

@media(max-width: 991px) {
    .wap {
        display: block;
    }
}



a:hover,
a:focus {
    cursor: pointer;
    text-decoration: underline;
    opacity: 0.8;
    transition: all 0.4s;
}

a:active {
    opacity: 0.4;
}

@media(max-width: 513px) {
    .header__flight-text {
        max-width: 183px;
        font-size: 28px;
    }
}

.link {
    font-weight: bold;
    color: #0299ff;
    text-decoration: underline;
}
.link:hover {
    text-decoration: none;
}