:root {
    --color_main: #cfdbe0;
    --color1: #313744;
    --color2: #8995ae;
    --color3: #00aeef;
    --color_active: #ba7909;
    --oranger: #de9255;
    --bg-icon: #e5eff3;
    --gray500: #707685;
    --gray200: #d2d7e1;
    --gray100: #e3e7ef;
    --gray50: #f1f5f7;
    --gray10: #fbfbfb;
    --font1: "Roboto";
}
.flex {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.flex-wrap {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.thumb_img {
    display: block;
    height: 0;
    position: relative;
    overflow: hidden;
}
.thumb_img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}
.thumb_5x3 {
    padding-bottom: 60%;
}
.thumb_5x4 {
    padding-bottom: 80%;
}
.thumb_5x5 {
    padding-bottom: 100%;
}
.thumb_16x9 {
    padding-bottom: 56.25%;
}
.btn:focus,
.btn:hover {
    box-shadow: none;
}
.btn:focus svg,
.btn:hover svg {
    color: #fff;
}
@media (min-width: 1200px) {
    .visible-lg {
        display: block !important;
    }
}
@media (max-width: 1199px) {
    .visible-lg {
        display: none !important;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md {
        display: block !important;
    }
}
@media (max-width: 991px) and (min-width: 1200px) {
    .visible-md {
        display: none !important;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm {
        display: block !important;
    }
}
@media (max-width: 767px) and (min-width: 992px) {
    .visible-sm {
        display: none !important;
    }
}
@media (max-width: 767px) {
    .visible-xs {
        display: block !important;
    }
}
@media (min-width: 768px) {
    .visible-xs {
        display: none !important;
    }
}
@media (min-width: 1200px) {
    .hidden-lg {
        display: none !important;
    }
}
@media (max-width: 1199px) {
    .hidden-lg {
        display: block !important;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .hidden-md {
        display: none !important;
    }
}
@media (max-width: 991px) and (min-width: 1200px) {
    .hidden-md {
        display: block !important;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .hidden-sm {
        display: none !important;
    }
}
@media (max-width: 767px) and (min-width: 992px) {
    .hidden-sm {
        display: block !important;
    }
}
@media (max-width: 767px) {
    .hidden-xs {
        display: none !important;
    }
}
@media (min-width: 768px) {
    .hidden-xs {
        display: block !important;
    }
}
body,
html {
    text-rendering: optimizeSpeed;
    height: 100%;
}
html {
    overflow-y: scroll;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    text-rendering: geometricPrecision;
}
body {
    font-size: 0.875rem;
    line-height: 1.4;
    background: #f1f1f2;
}
a:focus {
    outline: 1 !important;
}
a {
    color: #161616;
    text-decoration: none;
    outline: 1;
}
a:hover {
    color: var(--color2);
    text-decoration: none;
}
.hover-a:hover {
    text-decoration: underline;
}
img {
    border: 0;
    font-size: 0;
    line-height: 0;
    max-width: 100%;
    vertical-align: middle;
}
li,
ul {
    list-style-type: none;
}
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="text"],
select,
textarea {
    color: #161616;
    border: 1px solid #e2e0e0;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}
input[type="email"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="text"]::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #8e8e8e;
}
input[type="datetime"]::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #000;
    font-weight: 400;
}
.form-control {
    font-size: 0.93em;
    padding-right: 1px;
    height: 40px;
}
.form-control:focus {
    box-shadow: none;
}
.clearfix:after,
.clearfix:before {
    content: "";
    display: block;
    height: 0;
    overflow: hidden;
}
.clearfix:after {
    clear: both;
}
.left {
    float: left;
}
.right {
    float: right;
}
.relative {
    position: relative;
}
.width_common {
    width: 100%;
    float: left;
}
.sticky {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
}
.container {
    max-width: 590px;
    position: relative;
    clear: both;
}
.min-container {
    max-width: 1000px !important;
}
html {
    -webkit-text-size-adjust: none;
}
.row {
    margin: 0 -5px;
}
.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
    padding: 0 5px;
}
#main-nav-date {
    display: none;
}
#to_top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 97;
    display: none;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 28px;
    background: #27bece;
    color: #fff;
}
#to_top::before {
    content: "";
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    width: 11px;
    height: 11px;
    position: absolute;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 13px;
    left: 10px;
}
.table-responsive {
    overflow: hidden;
}
.icon-svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    vertical-align: middle;
}
.center {
    text-align: center;
}
.align-left {
    text-align: left;
}
.align-right {
    text-align: right;
}
.hover-a:active {
    color: #004d78;
    text-decoration: underline;
}
.btn-default {
    text-align: center;
    background: #F11B53;
    color: #fff;
    font-size: 16px;
    height: 40px;
    line-height: 38px;
    border-radius: 10px;
    display: inline-block;
    padding: 0 20px;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
    box-shadow: none;
}
.btn-default.pendding {
    background: #3f5151;
}
.btn-default:focus,
.btn-default:hover {
    background-color: #104eda;
    color: #fff;
}
.btn-default.cancel,
.btn-default.done {
    background: #c2c8c8;
}
.btn-default.full {
    border-radius: 50px;
    font-weight: 500;
    width: 100%;
    height: 48px;
}
.btn-default svg {
    margin-right: 4px;
}
.btn-default.error {
    background: var(--red);
}
.btn-default.opacity {
    background: rgba(26, 174, 191, 0.1);
    color: var(--color_main);
}
.btn-default:hover {
    color: #fff;
}
.btn-default:active {
    color: #fff;
}
.btn-2,
.btn-3,
.btn-4 {
    background: #fff;
    border: 1px solid #eaeaea;
    color: #505d5c;
    border-radius: 20px;
    padding: 0 20px;
    height: 35px;
    line-height: 35px;
    font-size: 15px;
}
.btn-2.active,
.btn-3.active,
.btn-4.active {
    border: 1px solid #F11B53;
    color: #F11B53;
}
.btn-2.bg-main,
.btn-3.bg-main,
.btn-4.bg-main {
    border: 1px solid var(--color3);
    color: #fff;
}
.btn-2.search,
.btn-3.search,
.btn-4.search {
    padding: 0 30px;
}
.btn-3,
.btn-4 {
    height: 25px;
    line-height: 23px;
}
.btn-4 {
    border-radius: 8px;
    background: var(--color3);
    color: #fff;
}
.no_wrap {
    white-space: nowrap;
}
.mb0 {
    margin-bottom: 0 !important;
}
.mb5 {
    margin-bottom: 5px;
}
.mb10 {
    margin-bottom: 10px !important;
}
.mb12 {
    margin-bottom: 12px;
}
.mb15 {
    margin-bottom: 15px !important;
}
.mb20 {
    margin-bottom: 20px !important;
}
.mb25 {
    margin-bottom: 25px;
}
.mb30 {
    margin-bottom: 30px !important;
}
.mb40 {
    margin-bottom: 40px;
}
.mb50 {
    margin-bottom: 50px;
}
.mb60 {
    margin-bottom: 60px;
}
.mb150 {
    margin-bottom: 120px;
}
.mb180 {
    margin-bottom: 180px;
}
.mt5 {
    margin-top: 5px;
}
.mt10 {
    margin-top: 10px;
}
.mt12 {
    margin-top: 12px;
}
.mt15 {
    margin-top: 15px;
}
.mt20 {
    margin-top: 20px;
}
.mt25 {
    margin-top: 25px;
}
.mt30 {
    margin-top: 30px;
}
.mt40 {
    margin-top: 40px;
}
.mt50 {
    margin-top: 50px;
}
.mt-50 {
    margin-top: -50px;
}
.pl10 {
    padding-left: 10%;
}
.pr10 {
    padding-right: 10%;
}
.pt60 {
    padding-top: 60px;
}
.txt_666 {
    color: #666;
}
.txt_10 {
    font-size: 0.625rem;
}
.txt_11 {
    font-size: 0.6875rem;
}
.txt_12 {
    font-size: 0.75rem;
}
.txt_13 {
    font-size: 0.86em !important;
}
.txt_14 {
    font-size: 0.875rem;
}
.txt_15 {
    font-size: 0.9375rem;
}
.txt_16 {
    font-size: 1rem;
}
.txt_17 {
    font-size: 1.0625rem;
}
.txt_18 {
    font-size: 1.125rem;
}
.txt_20 {
    font-size: 1.25rem;
}
.txt_24 {
    font-size: 1.5rem;
}
.txt_25 {
    font-size: 1.5625rem;
}
.txt_26 {
    font-size: 1.625rem;
}
.txt_28 {
    font-size: 1.75rem;
}
.txt_30 {
    font-size: 1.875rem;
}
.txt_36 {
    font-size: 2.25rem;
}
.txt_36.bold {
    font-weight: 800;
}
.txt_48 {
    font-size: 2.8125rem;
}
.txt_70 {
    font-size: 4.0625rem;
}
.bold {
    font-weight: 700;
}
.medium {
    font-weight: 500;
}
.mb10 {
    margin-bottom: 10px !important;
}
.box_category {
    margin-bottom: 25px;
}
.red-only {
    background: #f9fafb;
    box-shadow: inset 0 1px 2px rgba(102, 113, 123, 0.21);
    border-radius: 3px;
}
.line-bottom {
    border-bottom: 1px solid #e2e0e0;
    padding-bottom: 12px;
    margin-bottom: 12px;
}
hr {
    border-top: 1px solid #e2e0e0;
}
.btn_control_menu *,
.hover-a,
.popup-info,
.transition_ease {
    transition: 0.5s ease;
    -webkit-transition: 0.5s ease;
}
.flex {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
}
.d-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}
.flex-end {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.flex-start {
    -webkit-box-pack: start;
    -webkit-justify-content: start;
    -ms-flex-pack: start;
    justify-content: start;
}
.align-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.justify-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.space-between {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.red {
    color: red;
}
.oranger {
    color: var(--oranger);
}
.bg-oranger {
    background: var(--oranger);
}
.bg-white {
    background: #fff;
}
.bg-main {
    background: var(--color3);
    color: #fff;
}
.bg-radius {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    color: #313744;
    font-size: 16px;
}
.no-radius {
    border-radius: 0;
}
.padding_15 {
    padding: 15px;
}
.padding_10 {
    padding: 10px 15px;
}
.art_item {
    width: 100%;
    float: left;
    position: relative;
    margin-bottom: 20px;
}
.art_item .title_news {
    font-size: 0.875rem;
    line-height: 1.5;
}
.art_item .title_news.effect_line::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 0;
    height: 1px;
    background: var(--color1);
    z-index: 1;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}
.art_item .content {
    overflow: hidden;
    margin-top: 20px;
}
.art_item .date {
    font-size: 13px;
    color: #999;
}
.art_item .description {
    font: 400 16px var(--font1);
    line-height: 1.6;
    margin-top: 10px;
}
.art_item.thumb_big .thumb_art {
    float: none;
    width: 100%;
    margin: 0 0 10px 0;
}
.art_item.thumb_big .content {
    overflow: visible;
}
.art_item.onload {
    opacity: 0.3;
}
.art_item:hover .effect_line::after {
    width: 100%;
}
.art_featured {
    width: 100%;
    float: left;
}
.thumb_art {
    position: relative;
    float: left;
    width: 250px;
    margin-right: 20px;
}
.thumb_art.thumb_full {
    width: 100%;
    margin: 0 0 10px 0;
    float: none;
    position: relative;
}
.thumb_art.thumb_medium {
    width: 240px;
    margin: 0 15px 0 0;
}
.thumb_art.thumb_small {
    width: 130px;
    margin: 0 10px 0 0;
}
.thumb_art.thumb_small + .content .title_news {
    font: 500 15px/23px var(--font1);
}
.thumb_img {
    display: block;
    overflow: hidden;
    height: 1px;
    position: relative;
    width: 100%;
    background: #f4f4f4;
}
.thumb_img img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.thumb_img.thumb_5x2 {
    padding-bottom: 42%;
}
.thumb_img.thumb_5x3 {
    padding-bottom: 60%;
}
.thumb_img.thumb_1x1 {
    padding-bottom: 100%;
}
.thumb_img.thumb_2x3 {
    padding-bottom: 150%;
}
.thumb_img.thumb_16x9 {
    padding-bottom: 56.2%;
}
.thumb_img.thumb_video {
    padding-bottom: 56.25%;
}
.thumb_img.thumb_video iframe {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.embed-container {
    padding-bottom: 56.2%;
    position: relative;
    display: block;
}
.embed-container iframe {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.scroll-wrapper {
    overflow: hidden !important;
    padding: 0 !important;
    position: relative;
    -ms-overflow-style: none;
}
.scroll-wrapper > .scroll-content {
    border: none !important;
    box-sizing: content-box !important;
    height: auto;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none !important;
    overflow: scroll !important;
    padding: 0;
    position: relative !important;
    top: 0;
    width: auto !important;
}
.scroll-wrapper > .scroll-content::-webkit-scrollbar {
    height: 0;
    width: 0;
}
.scroll-element {
    display: none;
}
.scroll-element,
.scroll-element div {
    box-sizing: content-box;
}
.scroll-element.scroll-x.scroll-scrollx_visible,
.scroll-element.scroll-y.scroll-scrolly_visible {
    display: block;
}
.scroll-element .scroll-arrow,
.scroll-element .scroll-bar {
    cursor: default;
}
.scroll-textarea {
    border: 1px solid #ccc;
    border-top-color: #999;
}
.scroll-textarea > .scroll-content {
    overflow: hidden !important;
}
.scroll-textarea > .scroll-content > textarea {
    border: none !important;
    box-sizing: border-box;
    height: 100% !important;
    margin: 0;
    max-height: none !important;
    max-width: none !important;
    overflow: scroll !important;
    outline: 0;
    padding: 2px;
    position: relative !important;
    top: 0;
    width: 100% !important;
}
.scroll-textarea > .scroll-content > textarea::-webkit-scrollbar {
    height: 0;
    width: 0;
}
.scrollbar-inner > .scroll-element,
.scrollbar-inner > .scroll-element div {
    border: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 10;
}
.scrollbar-inner > .scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
}
.scrollbar-inner > .scroll-element.scroll-x {
    bottom: 2px;
    height: 6px;
    left: 0;
    width: 100%;
}
.scrollbar-inner > .scroll-element.scroll-y {
    height: 100%;
    right: 2px;
    top: 0;
    width: 6px;
}
.scrollbar-inner > .scroll-element .scroll-element_outer {
    overflow: hidden;
}
.scrollbar-inner > .scroll-element .scroll-bar,
.scrollbar-inner > .scroll-element .scroll-element_outer,
.scrollbar-inner > .scroll-element .scroll-element_track {
    border-radius: 8px;
}
.scrollbar-inner > .scroll-element .scroll-bar,
.scrollbar-inner > .scroll-element .scroll-element_track {
    opacity: 0.4;
}
.scrollbar-inner > .scroll-element .scroll-element_track {
    background-color: none;
}
.scrollbar-inner > .scroll-element .scroll-bar {
    background-color: #919191;
    width: 5px;
}
.scrollbar-inner > .scroll-element:hover .scroll-bar {
    background-color: #919191;
}
.scrollbar-inner > .scroll-element.scroll-draggable .scroll-bar {
    background-color: #919191;
}
.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
    left: -12px;
}
.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
    top: -12px;
}
.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
    left: -12px;
}
.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
    top: -12px;
}
.form_box .title_box_category {
    margin: 0;
}
.form_element {
    font: 400 1rem arial;
}
.form_element li {
    margin: 0 0 15px 0;
    position: relative;
}
.form_element li:last-child {
    margin: 0;
}
.label_form {
    width: 100%;
    float: left;
    padding: 0 0 5px 0;
}
.input_form {
    width: 100%;
    float: left;
    border: 1px solid #eee;
    color: #999;
    font: 400 1rem arial;
    height: 40px;
    padding: 2px 10px;
    background: #fff;
    outline: 0;
}
.input_form:focus {
    color: #333;
}
.input_area {
    height: 100px;
}
input.input_form,
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.txt_error {
    font: 400 14px arial;
    color: red;
    padding-top: 5px;
}
.txt_note_form {
    text-align: right;
    font-size: 16px;
    color: #666;
    padding-top: 5px;
}
.label_form .txt_error {
    padding-left: 5px;
    padding-top: 0;
}
.input_70 {
    width: 69%;
}
.input_30 {
    width: 29%;
}
.input_50 {
    width: 49%;
}
.capcha {
    float: left;
    margin: 0 10px;
    height: 40px;
    line-height: 40px;
}
.capcha img {
    display: inline-block;
    vertical-align: middle;
    height: 38px !important;
}
.btn_refrest {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    display: inline-block;
}
.txt_clear_all {
    background: 0 0;
    padding: 5px 8px;
    text-decoration: underline;
    color: #333 !important;
}
.trumbowyg-box,
.trumbowyg-editor {
    float: left;
    margin: 0 auto !important;
}
.login_title {
    font-size: 0.875rem;
    font-weight: 700;
}
.p_social {
    text-align: center;
}
.p_social a {
    display: inline-block;
    margin: 0 5px;
    width: 120px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #fff;
}
.p_social a .ic {
    float: left;
    margin: 7px 0 0 8px;
    line-height: 30px;
    position: relative;
}
.p_social a .ic:after {
    content: "";
    width: 1px;
    height: 30px;
    position: absolute;
    top: -7px;
    left: 18px;
    background: rgba(255, 255, 255, 0.27);
}
.p_social a.facebook {
    background: #3b589c;
}
.p_social a.google {
    background: #da4835;
}
.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #000;
    opacity: 0.8;
}
.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    position: fixed;
    outline: 0 !important;
    -webkit-backface-visibility: hidden;
}
.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0;
    box-sizing: border-box;
}
.mfp-container:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}
.mfp-align-top .mfp-container:before {
    display: none;
}
.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
}
.mfp-ajax-holder .mfp-content,
.mfp-inline-holder .mfp-content {
    width: 100%;
    cursor: auto;
}
.mfp-ajax-cur {
    cursor: progress;
}
.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}
.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
}
.mfp-auto-cursor .mfp-content {
    cursor: auto;
}
.mfp-arrow,
.mfp-close,
.mfp-counter,
.mfp-preloader {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.mfp-loading.mfp-figure {
    display: none;
}
.mfp-hide {
    display: none !important;
}
.mfp-preloader {
    color: #ccc;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
}
.mfp-preloader a {
    color: #ccc;
}
.mfp-preloader a:hover {
    color: #fff;
}
.mfp-s-ready .mfp-preloader {
    display: none;
}
.mfp-s-error .mfp-content {
    display: none;
}
button.mfp-close {
    overflow: visible;
    cursor: pointer;
    background: 0 0;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: 0;
    z-index: 1046;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}
button::-moz-focus-inner {
    padding: 0;
    border: 0;
}
.mfp-close {
    width: 40px;
    height: 40px;
    line-height: 40px;
    position: absolute;
    right: 18px;
    top: -7px;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    color: #fff;
    font-style: normal;
    font-size: 40px;
    font-family: -webkit-body;
}
.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
}
.mfp-iframe-holder .mfp-close {
    font-size: 42px;
    top: 0;
}
.mfp-iframe-scaler {
    width: 100%;
    min-height: 100vh;
}
.mfp-iframe-holder {
    padding: 0;
}
.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: none;
    background: #fff;
}
.white-popup {
    position: relative;
    padding: 35px 20px;
    max-width: 500px;
    margin: 0 auto;
    overflow: hidden;
}
.white-popup .content_lightbox {
    background: #fff;
    border-radius: 10px;
    padding: 10px;
}
.white-popup p.center {
    text-align: center;
}
.mfp-with-zoom.mfp-ready .white-popup {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.mfp-with-zoom .white-popup {
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
}
.mfp-with-zoom.mfp-removing .white-popup {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0;
}
.mfp-with-zoom.mfp-bg {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.8;
}
.mfp-with-zoom.mfp-removing.mfp-bg {
    opacity: 0;
}
.title_popup {
    font: 700 1rem arial;
    color: #000;
    padding: 11px 15px;
    background: #fff;
}
.content_poup {
    padding: 15px;
    background: #f4f4f4;
    font: 400 1rem arial;
}
.content_poup.popup_padding10 {
    padding: 10px;
}
.no_title {
    background: #fff;
}
.no_title .content_poup {
    background: #fff;
}
.no_title .mfp-close {
    display: none;
}
.text_box_lb {
    padding: 15px;
    background: #fff;
    font: 700 1.125rem arial;
    line-height: 1.5;
}
.text_box_lb p {
    margin: 5px 0;
}
.close_pop {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #e7e7e7;
    margin-bottom: 15px;
}
.close_pop .mfp-close {
    display: inline-block;
    position: static;
    width: auto;
    height: auto;
    opacity: 1;
    padding-left: 50px;
    padding-right: 50px;
}
.form_element #thumbnails li {
    width: 30%;
    float: left;
    height: 90px;
    margin: 5px 5px 10px 0;
    overflow: hidden;
}
.form_element #thumbnails li .wrap {
    height: 70px;
    overflow: hidden;
}
.form_element #thumbnails li .del_action {
    line-height: 18px;
    float: right;
}
.page-main {
    position: relative;
    padding: 0 !important;
    margin: 0 auto;
    max-width: 590px;
    height: 100%;
}
.header-airline {
    padding: 5px !important;
    margin-bottom: 0;
    background: linear-gradient(to right, #F11B53 , #EE0033);
        justify-content: center;
/*        background: #ed1e23 url(../../images/frontend/header-tet.jpg) no-repeat 0px center;*/
}
.header-airline .logo img {
    width: auto;
    height: 55px;
}
.header-airline .airlines {
    width: 20px;
}
.btn_control_menu {
    position: absolute;
    left: 0;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn_control_menu a {
    color: #fff;
    padding: 20px;
}

.btn_control_menu a i {
    font-size: 20px;
}
.btn_control_menu span {
    width: 20px;
    height: 2px;
    background: var(--color_main);
    position: absolute;
    top: 15px;
    left: 5px;
}
.btn_control_menu span::before {
    content: "";
    background: var(--color_main);
    width: 20px;
    height: 2px;
    position: absolute;
    left: 0;
    top: 6px;
}
.btn_control_menu.active span {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.btn_control_menu.active span::before {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    left: 0;
    top: 0;
}
.home-flying .form-label-group {
    background: #f3f5f6;
    position: relative;
    padding: 10px 15px;
    border-radius: 10px;
    margin-bottom: 10px;
}
.home-flying .form-label-group .group {
    width: 100%;
}
.home-flying .form-label-group .form-control {
    background: 0 0;
    border: 0;
    color: var(--color1);
    font-size: 16px;
    padding: 0;
    height: 35px;
    border-radius: 0;
}
.home-flying .form-label-group .form-control::-webkit-input-placeholder {
    color: #8995ae;
    font-style: italic;
}
.home-flying .form-label-group .form-control:-moz-placeholder {
    color: #8995ae;
    font-style: italic;
}
.home-flying .form-label-group .form-control::-moz-placeholder {
    color: #8995ae;
    font-style: italic;
}
.home-flying .form-label-group .form-control:-ms-input-placeholder {
    color: #8995ae;
    font-style: italic;
}
.home-flying .form-label-group .address-final .icon {
    width: 15px;
    left: -27px;
}
.home-flying .form-label-group .nation {
    color: var(--color3);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    position: absolute;
    right: 10px;
}
.home-flying .form-label-group .icon-left {
    position: absolute;
    right: 10px;
    top: 8px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: var(--bg-icon);
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
}
.home-flying .form-label-group .icon-left img {
    width: 18px;
}
.home-flying .p-left {
    padding-left: 45px;
    position: relative;
}
.home-flying .p-left .form-control {
    padding-left: 0;
}
.home-flying .p-left .lbl {
    color: var(--color2);
    margin-bottom: 0;
}
.home-flying .p-left .icon {
    position: absolute;
    left: -25px;
    width: 12px;
    top: 20px;
}
.form-default .form-label-group {
    position: relative;
    margin-bottom: 15px;
}
.form-default .form-label-group .form-control {
    background: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    color: var(--color1);
    font-size: 16px;
    border: 1px solid #fff;
    height: 50px;
    -webkit-transition: 0.6s ease;
    transition: 0.6s ease;
    box-shadow: none;
}
.form-default .form-label-group .form-control::-webkit-input-placeholder {
    color: #8995ae;
    font-style: italic;
}
.form-default .form-label-group .form-control:-moz-placeholder {
    color: #8995ae;
    font-style: italic;
}
.form-default .form-label-group .form-control::-moz-placeholder {
    color: #8995ae;
    font-style: italic;
}
.form-default .form-label-group .form-control:-ms-input-placeholder {
    color: #8995ae;
    font-style: italic;
}
.form-default .form-label-group .form-control:active,
.form-default .form-label-group .form-control:focus {
    border: 1px solid var(--color_active);
}
.form-default .form-label-group select.form-control {
    height: 50px;
    padding: 10px 5px 10px 8px;
}
.form-default .form-label-group textarea.form-control {
    height: 100px;
    resize: none;
}
.form-default .form-label-group .fa {
    position: absolute;
    right: 15px;
    top: 12px;
    font-size: 22px;
    color: #ebecee;
    cursor: pointer;
}
.form-default .form-label-group .error {
    margin-top: 10px;
    display: inline-block;
}
.form-default .form-label-group.fail .form-control {
    border: 1px solid red;
}
.form-default .select-btn .btn {
    min-width: 80px;
    margin-right: 8px;
}
.form-default .select-btn .btn.active {
    border: 1px solid var(--color3);
    background: var(--color3);
    color: #fff;
}
.bg-radius .form-label-group .form-control {
    background: #f3f5f6;
}
.check-payment .form-control {
    color: #313744 !important;
}
.check-payment label {
    margin: 0;
}
.check-payment label img {
    margin-right: 10px;
}
.check-payment label.checked::before {
    content: "";
    position: absolute;
    right: 20px;
    top: 15px;
    width: 7px;
    height: 15px;
    border: solid #dd8d4d;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.bg-form {
    border-radius: 10px;
    margin: 0 5px;
    padding: 6px !important;
    position: relative;
    top: 5px;
}
.home-flying .title_h1 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--color_main);
}
.flex-center {
    display: flex;
    width: 100%;
    align-items: center;
}
.home-flying .title_h1 strong {
    font-weight: 700;
    font-style: italic;
}
.home-flying .changer {
    position: relative;
}
.home-flying .changer hr {
    margin: 5px 0 10px 0;
}
.home-flying .changer-btn {
    position: absolute;
    right: 0;
    top: -18px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: var(--bg-icon);
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
}
.home-flying .changer-btn img {
    width: 18px;
}
.choose-address .form-default .form-label-group {
    background: #fff;
}
.choose-address .form-default .form-label-group .form-control {
    border-bottom: 1px solid #eaeaea;
    padding: 0;
    height: 35px;
    border-radius: 0;
}
.choose-address .form-default .form-label-group .form-control:active,
.choose-address .form-default .form-label-group .form-control:focus {
    border: 1px solid #fff;
    border-bottom: 1px solid var(--color_active);
}
.choose-address .form-default .form-label-group .address-final .icon-left {
    width: 35px;
    height: 35px;
    line-height: 35px;
    left: -43px;
    top: 13px;
}
.choose-address .form-default .form-label-group .address-final .icon-left img {
    width: 12px;
}
.choose-address .form-default .form-label-group .address-final .group {
    margin-top: 20px;
    font-size: 16px;
    color: var(--color2);
}
.choose-address .form-default .form-label-group .address-final .group strong {
    color: var(--color1);
    font-weight: 400;
}
.choose-address .form-default .p-left .icon {
    left: -33px;
}
.list-article h3 {
    color: var(--color1);
    font-size: 18px;
    font-weight: 400;
    margin: 10px 0;
}
.list-article .sub-title {
    margin-bottom: 15px;
    margin-top: 20px;
    border-bottom: 2px solid var(--color3);
    color: var(--color3);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 3px;
}
.list-article .article_item {
    margin-bottom: 15px;
    position: relative;
}
.list-article .sub-title h2 {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-top: 0;
    margin-bottom: 0;
    max-width: 75%;
    line-height: 1;
}
.list-article .sub-title h2.w100 {
    width: 100%;
}
.list-article .sub-title a {
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    font-size: 13px;
    text-decoration: none;
    color: var(--color3);
}
.list-article .article_item .content {
    background: #fff;
    padding: 10px;
    border: 1px solid #eaeaea;
    border-top: 0;
    border-radius: 0 0 8px 8px;
}
.list-article .article_item .ava {
    display: block;
    border: 1px solid #eaeaea;
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}
.list-article .article_item .tag-date {
    color: #b18038;
    font-weight: 500;
    margin-bottom: 5px;
    margin-top: 5px;
}
.list-article .article_item .tag-date a {
    color: #b18038;
}
.list-article .article_item .tag-date .tag {
    position: relative;
    padding-right: 12px;
}
.list-article .article_item .tag-date .tag::before {
    content: "";
    background: #b18038;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    position: absolute;
    right: 3px;
    top: 7px;
}
.list-article .article_item .title_new {
    font-size: 16px;
    margin-bottom: 0;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.swiper-slide .article_small .title_new {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.4;
    color: #4e566c;
}
.list-article .article_item .title_new a:hover {
    color: #161616;
}
.list-article .article_small .thumb_5x3 {
    padding-bottom: 52%;
}
.list-article .article_small .description {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 22px;
    color: #4e566c;
}
.list-article .article_small .content {
    padding: 6px 0 0 0;
    background: 0 0;
    border: 0;
}
.list-article .article_small .tag-date {
    font-size: 12px;
}
.list-article .article_small .tag-date .tag {
    padding-right: 0;
}
.list-article .article_small .tag-date .tag::before {
    display: none;
}
.list-article .article_small .tag-date .date {
    color: rgba(78, 86, 108, 0.6);
}
.list-article .article_small .title_new {
    font-size: 14px;
}
.list-article .swiper-container {
    margin-right: -15px;
    padding-right: 40px;
}
.list-article .swiper-container .article_small {
    width: 100%;
}
.list-article .list {
    margin: 0 -6px;
}
.list-article .list .item {
    padding: 0 6px;
    margin-bottom: 10px;
}
.list-article .list .item .radius {
    display: block;
    position: relative;
}
.list-article .list .item .radius .thumb_img {
    border-radius: 10px;
    padding-bottom: 67%;
}
.list-article .list .item .radius h4 {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    bottom: 10px;
    left: 10px;
    margin: 0;
}
.list-article .list .pd0 {
    padding: 0;
}
.list-article .list .col-8 .thumb_img {
    padding-bottom: 67.6%;
}
.list-article .view-more {
    display: block;
    text-align: center;
    color: #999;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
}
.list-article .article_item .content-hz {
    background: #fff;
    padding: 10px;
    display: flex;
    align-items: center;
    width: 100%;
    padding-left: 92px;
    min-height: 87px;
    border-radius: 4px;
}
.list-article .article_item .ava-hz {
    display: block;
    position: absolute;
    top: 6px;
    left: 6px;
    height: 75px;
    width: 75px;
    background-position: 50% 50%;
    background-size: cover;
    border-radius: 4px;
}
.page-folder {
    background: #f1f1f2;
}
.page-folder .header-airline {
    margin-bottom: 0;
    padding: 20px 15px 10px 15px;
    text-align: center;
    background: linear-gradient(to right, #F11B53 , #EE0033);
}
.page-folder .header-airline .title-page {
    font-size: 18px;
    color: rgba(206, 237, 246, 0.5);
    margin: 0;
}
.step-airlines {
    width: 100%;
}
.step-airlines .step {
    position: relative;
}
.step-airlines .step::before {
    background: rgba(255, 255, 255, 0.4);
    height: 1px;
    width: 90px;
    position: absolute;
    top: 18px;
    left: 41px;
    z-index: 1;
}
.search-result-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.search-result-head .info {
    width: 90%;
}
.search-result-head .info p {
    margin-bottom: 10px;
}
.search-result-head .info p span.badge {
    vertical-align: baseline;
    word-break: break-all;
    font-size: 13px;
}
.search-result-head .info p span:first-child {
    font-weight: 600;
}
.search-result-head .fa-search {
    font-size: 22px;
}
.alert .close {
    position: absolute;
    right: 5px;
    top: 0;
}
.groups-card .card .card-body {
    padding: 15px;
}
.groups-card .card .card-header {
    padding: 8px 15px;
}
.groups-card .card:first-child {
    margin-top: 10px;
}
.groups-card .card:last-child {
    margin-bottom: 15px;
}
.badge {
    padding: 5px 10px;
}
.btn-full {
    width: 100% !important;
}
#payment_transfer .custom-control-label {
    font-size: 13px;
}
#info-customer .card-body .card-text label:first-child {
    display: inline-block;
    width: 50px;
}
#info-customer .card-body .card-text label:last-child {
    float: right;
}
#info-peyment-flight .card-body .card-text label:first-child {
    display: inline-block;
    width: 100px;
}
#info-peyment-flight .card-body .card-text span {
    float: right;
}
#info-peyment-flight p {
    margin-bottom: 5px;
}
@media (min-width: 420px) {
    .step-airlines .step::before {
        width: 120px;
    }
}
@media (min-width: 590px) {
    .step-airlines .step::before {
        width: 160px;
    }
}
.step-airlines .step .fa {
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: inline-block;
    height: 35px;
    width: 35px;
    line-height: 35px;
    overflow: hidden;
    font-size: 18px;
    background: inherit;
    z-index: 2;
    position: relative;
}
.step-airlines .step a {
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    display: inline-block;
}
.step-airlines .step span {
    display: block;
    margin-top: 5px;
    font-size: 1em;
}
.step-airlines .step:last-child:before {
    display: none;
}
.step-airlines .step.active a {
    color: #fff;
}
.step-airlines .step.active .fa {
    border: 1px solid #fff;
}
.step-airlines .step.sucssec::before {
    background: #fff;
}
.popup-info {
    position: absolute;
    overflow: hidden;
    opacity: 0;
    z-index: -1;
    background: #fff;
    border-radius: 10px;
    left: -5px;
    right: -5px;
    top: -200px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
}
.popup-info .title-head {
    font-size: 18px;
    border-bottom: 1px solid #eaeaea;
    color: var(--color1);
    text-align: center;
    padding: 15px 10px;
}
.popup-info .close-popup {
    position: absolute;
    left: 10px;
    top: 4px;
    font-size: 35px;
    font-family: -webkit-body;
    color: var(--color2);
    cursor: pointer;
}
.popup-info .wrap {
    padding: 10px 0;
}
.popup-info .item {
    width: 33.33%;
    padding: 0 15px;
    font-size: 14px;
    text-align: center;
}
.popup-info .item h3 {
    font-size: 17px;
    font-weight: 400;
    color: var(--color1);
    margin-bottom: 0;
}
.popup-info .item .icon {
    height: 70px;
    position: relative;
    margin-bottom: 5px;
}
.popup-info .item .icon img {
    max-height: 90%;
    max-width: 90%;
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.popup-info .item .number {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 15px;
}
.popup-info .item .number a {
    font-size: 26px;
    color: var(--color1);
    font-weight: 300;
}
.popup-info .item .number input {
    border: 0;
    width: 30px;
    text-align: center;
    color: var(--color2);
    font-size: 22px;
}
.popup-info .item.active input {
    color: #da631a;
}
.popup-info .button-bottom {
    padding: 15px;
    margin-top: 20px;
}
.popup-info .button-bottom .btn-default {
    padding: 0 30px;
}
.popup-info .button-bottom .cancel {
    background: 0 0;
    color: var(--color3);
    padding: 0;
}
.popup-info p {
    margin-bottom: 6px;
}
.popup-info .hang_bay {
    margin: 0 -6px 5px -6px;
}
.popup-info .hang_bay li {
    margin-bottom: 10px;
    padding: 0 6px;
}
.popup-info .hang_bay li span {
    border: 1px solid #ccc;
    position: relative;
    height: 35px;
    display: block;
    border-radius: 20px;
    line-height: 35px;
    text-align: center;
}
.popup-info .hang_bay li span img {
    max-height: 70%;
    max-width: 80%;
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.popup-info .hang_bay li.active span {
    background: #fff2e8;
    color: #e37a26;
    border: 1px solid #e37a26;
}
.popup-click.active + .popup-info {
    overflow: visible;
    opacity: 1;
    z-index: 99;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.popup-info__fillter .scrollbar-inner {
    max-height: 70vh;
    padding: 15px 15px 0 15px;
}
.open-fillter .popup-info__fillter {
    overflow: visible;
    opacity: 1;
    z-index: 99;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
}
.shadow-bottom {
    box-shadow: 0 0 10px -2px #ccc;
}
.title_cate {
    font-size: 1.3em;
    font-weight: 400;
    margin-bottom: 15px;
}
.form_vebay .form-label-group {
    margin-bottom: 15px;
}
.form_vebay .form-label-group .warp {
    background: #f1f1f2;
    padding: 10px;
    border-radius: 10px;
}
.form_vebay .form-label-group .warp .form-control {
    background: 0 0;
    border: 0;
    color: var(--color1);
    font-size: 16px;
    padding: 0;
    height: 25px;
    border-radius: 0;
    font-weight: 500;
}
.form_vebay .form-label-group .warp .lbl {
    color: var(--color2);
    margin-bottom: 0;
}
.form_vebay .form-label-group .warp .icon-chuyenbay {
    width: 20%;
    margin-top: 10px;
}
.form_vebay .form-label-group .warp .group {
    width: 75%;
}
.form_vebay .form-label-group .warp .group_right {
    text-align: right;
}
.form_vebay .form-label-group .warp .group_right .form-control {
    text-align: right;
}
.form_vebay .form-label-group .warp .group_user {
    width: 25%;
    border-left: 1px solid #ccc;
}
.form_vebay .form-label-group.p-left .warp {
    padding-left: 35px;
    position: relative;
}
.form_vebay .form-label-group.p-left .warp .group {
    width: 40%;
}
.form_vebay .form-label-group.p-left .warp .group_user {
    width: 20%;
}
.form_vebay .form-label-group.p-left .icon {
    position: absolute;
    left: 13px;
    width: 13px;
    top: 20px;
}
.bg-white .list_ve_bay .item {
    border: 1px solid #eaeaea;
}
.list_ve_bay.shown {
    display: block !important;
}
.list_ve_bay .gallery-thumbs {
    margin: 0 0 20px 0;
    text-align: center;
    padding: 0 18px;
}
.list_ve_bay .gallery-thumbs .swiper-slide-thumb-active {
    color: #428fa4;
}
.list_ve_bay .swiper-button-next,
.list_ve_bay .swiper-button-prev {
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    outline: 0;
}
.list_ve_bay .swiper-button-prev::before {
    content: "\f104";
    font: normal normal normal 25px/1 FontAwesome;
    color: #ccc;
}
.list_ve_bay .swiper-button-next::before {
    content: "\f105";
    font: normal normal normal 25px/1 FontAwesome;
    color: #ccc;
}
.list_ve_bay .item {
    background: #fff;
    border-radius: 10px;
    padding: 5px 10px;
    color: #505d5c;
    margin-bottom: 15px;
}
.list_ve_bay .item.ve_qt {
    margin-bottom: 30px;
}
.list_ve_bay .item .icon {
    color: #568989;
    font-size: 13px;
    text-align: center;
    width: 48px;
}
.list_ve_bay .item .icon img {
    width: 45px;
}
.list_ve_bay .item .icon span {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    font-weight: 600;
}
.list_ve_bay .item .time {
    width: 60px;
}
.list_ve_bay .item .time .txt_12 {
    font-size: 10px;
    color: #8995ae;
}
.list_ve_bay .item .time strong {
    display: block;
    font-size: 16px;
    color: #354848;
    font-weight: 600;
}
.list_ve_bay .item .time_in {
    padding-left: 10px;
    position: relative;
}
.list_ve_bay .item .time_in::before {
    content: "";
    background: #eaeaea;
    height: 30px;
    top: 6px;
    width: 1px;
    position: absolute;
    left: 1px;
}
.list_ve_bay .item .time_out {
    text-align: right;
    padding-right: 10px;
}
.list_ve_bay .item .flight_time {
    width: 70px;
    font-size: 0.86em;
    text-align: center;
}
.list_ve_bay .item .flight_time .fa-angle-double-down {
    color: var(--color3);
    font-size: 14px;
    position: relative;
    top: 2px;
    font-weight: 600;
}
@media (max-width: 365px) {
    .list_ve_bay .item .flight_time {
        width: 60px;
    }
}
.list_ve_bay .item .flight_time span {
    display: block;
    text-align: center;
}
.list_ve_bay .item .flight_time span.stop {
    color: #b00b26;
    font-size: 9px;
    font-weight: 600;
}
.list_ve_bay .item .price {
    width: calc(100% - 240px);
    text-align: right;
}
.list_ve_bay .item .price_header {
    text-align: right;
    margin-bottom: 5px;
}
.list_ve_bay .item .icon-flight-select {
    width: calc(100% - 240px);
    text-align: right;
}
.list_ve_bay .item .price_header .btn {
    height: 28px;
    line-height: 28px;
    color: #fff;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
    padding: 0 6px;
    white-space: initial;
}
.list_ve_bay .item .icon-flight-select .btn {
    height: 24px;
    width: 24px;
    color: #fff;
    border-radius: 100%;
    font-size: 14px;
    text-align: center;
    padding: 0 6px;
    white-space: initial;
    background: #fff;
    border: 2px solid var(--color3);
}
.list_ve_bay .item_child_qt {
    border-bottom: 1px solid #d6dbdd;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.list_ve_bay .endIntenationalAll .item_child_qt:last-child,
.list_ve_bay .item_child_qt.selected,
.list_ve_bay .item_child_qt:last-child,
.list_ve_bay .startIntenationalAll .item_child_qt:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}
.list_ve_bay .item .icon-flight-select .btn.active {
    background: var(--color3);
}
@media (max-width: 365px) {
    .list_ve_bay .item .price {
        width: calc(100% - 230px);
    }
    .list_ve_bay .item .price a i {
        display: none;
    }
}
.list_ve_bay .item .price .value {
    color: #F11B53;
    font-size: 20px;
    font-weight: bold;
    position: relative;
    top: 5px;
}
.list_ve_bay .item .price .btn {
    height: 25px;
    line-height: 23px;
    color: #F11B53;
    font-size: 12px;
    text-align: center;
    padding: 0 16px;
    white-space: initial;
    font-weight: bold;
    position: relative;
    top: 2px;
}
.list_ve_bay .item .price.oranger .btn {
    background: #df9355;
}
.list_ve_bay .item hr {
    border-top: 1px solid #eaeaea;
    margin: 10px 0;
}
.list_ve_bay .item .flex {
    align-items: center;
}
.list_ve_bay .item .item-ft {
    align-items: center;
    display: flex;
    margin-top: 3px;
}

.list_ve_bay .item .item-ft .detail-flight {
    top: 1px;
    margin-left: 20px;
}
.list_ve_bay .item .note {
    background: #fbde18;
    color: #675b20;
    font-weight: 600;
    font-style: italic;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 0.86em;
    font-weight: 600;
}
.list_ve_bay .item .note.oranger {
    background: #df9355;
    color: #fff;
    font-style: initial;
    padding: 2px 8px;
}

.list_ve_bay .item .note.red {
    background: #dc3545;
    color: #fff;
    font-style: initial;
    padding: 2px 8px;
    position: relative;
}

.list_ve_bay .item .note.red.int {
    top: 2px;
}

.flex-start {
    justify-content: flex-start !important;
}

.ticket-not-hold {
    color: #dc3545;
    font-size: 12px;
    font-weight: 500;
    font-family: 'Oswald';
    position: relative;
    top: -6px;
}

.ticket-not-hold.int {
    top: 0;
    margin-left: 0;
}

.list_ve_bay .item .km {
    color: #df9355;
    font-weight: 600;
    font-style: italic;
}
.list_ve_bay .item:last-child {
    margin-bottom: 0;
}
@media (max-width: 365px) {
    .list_ve_bay .item {
        padding: 8px 5px;
    }
    .list_ve_bay .item .price .value {
        top: -2px;
    }
}
@media (max-width: 460px) {
    .list_ve_bay .item .price .value {
        top: -2px;
    }
}
.list_ve_bay .item.ve_qt .price_all {
    position: relative;
}
.list_ve_bay .item.ve_qt hr:last-of-type {
    display: none;
}
.list_ve_bay .item.ve_qt .price_all a {
    position: absolute;
    right: 0;
    top: 38px;
}
.info_flight {
    font-size: 14px;
}
.info_flight .wrap-bg {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background: #f1f1f2;
    padding: 10px;
    border-radius: 10px;
}
.info_flight .time {
    width: calc((100% - 100px) / 2) !important;
}
.info_flight .time strong {
    font-size: 14px !important;
    color: #416b6c !important;
    font-weight: 400;
}
.info_flight .time_in::before {
    display: none !important;
}
.info_flight table {
    margin-bottom: 0;
}
.info_flight table thead th {
    font-weight: 400;
    border-bottom: 0;
    border-top: 0;
    padding: 5px;
    text-align: center;
}
.info_flight table thead th:first-child {
    text-align: left;
    padding-left: 0;
}
.info_flight table tr td {
    padding: 5px;
    text-align: center;
}
.info_flight table tr td:first-child {
    text-align: left;
    padding-left: 0;
}
.info_flight table tr .gray {
    color: #ccc;
}
.fillter-bottom {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 8px #ccc;
    padding: 10px 0;
    position: fixed;
    bottom: 10px;
    left: 15px;
    right: 15px;
    z-index: 99;
}
.fillter-bottom .item {
    text-align: center;
    padding: 0 5px;
    position: relative;
}
.fillter-bottom .item:first-child {
    width: 12%;
}
.fillter-bottom .item:nth-child(2) {
    width: 44%;
}
.fillter-bottom .item:nth-child(3) {
    width: 44%;
}
.fillter-bottom .item select.form-control {
    padding: 8px 8px;
}
.fillter-bottom .item::before {
    content: "";
    height: 30px;
    width: 1px;
    position: absolute;
    right: 0;
    background: #eaeaea;
    top: 4px;
}
.fillter-bottom .item:last-of-type::before {
    display: none;
}
.fillter-bottom .item .icon {
    background: #c1cbcb;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    margin: 4px auto 0 auto;
}
.fillter-bottom .item.active .icon {
    background: #df9355;
}
@media (max-width: 365px) {
    .fillter-bottom .item {
        padding: 0 2px;
        font-size: 13px;
    }
    .fillter-bottom .item .icon {
        margin-bottom: 5px;
    }
}
.code_voucher .form-label-group .btn {
    position: absolute;
    top: 0;
    right: 0;
    height: 50px;
    border-radius: 0 10px 10px 0;
}
.code_voucher p {
    margin-bottom: 5px;
    font-style: italic;
}
.price_scroll .lbl {
    text-align: left;
}
.price_scroll .item {
    width: 100%;
    position: relative;
    padding: 0;
    margin-bottom: 30px;
}
.price_scroll .item .controler {
    width: 25px;
    position: absolute;
    bottom: -10px;
    left: 0;
}
.price_scroll .item .price {
    margin-bottom: 5px;
    display: block;
}
.fixed-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
}
.fixed-bottom.padding {
    background: #f1f1f2;
    position: static;
}
.fixed-bottom.padding .btn {
    margin-bottom: 10px;
    border-radius: 10px;
}
.fixed-bottom .price {
    width: 40%;
    padding: 0 15px;
}
.fixed-bottom .price span {
    color: #ccc;
}
.fixed-bottom .price strong {
    display: block;
    font-size: 18px;
    color: #216276;
}
.fixed-bottom .btn {
    border-radius: 0;
    width: 60%;
    height: 55px;
    line-height: 55px;
}
.fixed-bottom .full {
    width: 100%;
}
.list-bank ul {
    margin: 0 -5px 20px -5px;
}
.list-bank ul li {
    width: 25%;
    padding: 0 5px;
    margin-bottom: 10px;
}
.list-bank ul li a {
    display: block;
    background: #fff;
    color: var(--gray500);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
}
.list-bank ul li a .icon {
    width: 70%;
    padding-bottom: 70%;
    height: 0;
    display: block;
    position: relative;
    margin: 0 auto;
}
.list-bank ul li a .icon img {
    max-height: 90%;
    max-width: 90%;
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.list-bank ul li a .icon img.active {
    display: none;
}
.list-bank ul li a p {
    margin: 3px 0 0 0;
}
.list-bank ul.list-bank__head {
    margin-bottom: 10px;
}
.list-bank ul.list-bank__head li a {
    padding: 0;
    background: 0 0;
}
.list-bank ul.list-bank__head li.active a {
    color: var(--color_active);
}
.list-bank ul.list-bank__head li.active a img {
    display: none;
}
.list-bank ul.list-bank__head li.active a img.active {
    display: block;
}
.list-bank ul.list-bank__main li.active a,
.list-bank ul.list-bank__main li:hover a {
    border: 1px solid #ccc;
}
.list-bank .gird_2 li {
    width: 50%;
}
.list-bank .gird_2 li a p {
    font-weight: 500;
    color: #313744;
    font-size: 16px;
}
.contact_wrap {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    color: #313744;
    font-size: 16px;
}
.contact_wrap .head {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.contact_wrap .head img {
    width: 65px;
    float: left;
    margin-right: 12px;
    margin-top: 5px;
}
.contact_wrap .head h3 {
    overflow: hidden;
    font-size: 18px;
    margin-bottom: 0;
}
.contact_wrap .head h3 span {
    display: block;
    color: var(--gray500);
    font-size: 14px;
    font-weight: 400;
    margin-top: 3px;
}
.contact_wrap .address {
    border-top: 1px solid var(--gray100);
    padding-top: 15px;
    margin-top: 15px;
}
.contact_wrap .address h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}
.contact_wrap .address h3 span {
    color: var(--gray500);
    display: block;
    font-weight: 400;
}
.contact_wrap .address h4 {
    font-size: 14px;
}
.contact_wrap .address ul {
    margin-bottom: 0;
}
.contact_wrap .address ul li {
    clear: both;
}
.contact_wrap .address ul li label {
    float: left;
    width: 70px;
    color: var(--gray500);
}
.contact_wrap .address ul li h4 {
    overflow: hidden;
    line-height: 1.4;
    margin-bottom: 0;
}
.contact_wrap .address ul li .map {
    display: inline-block;
    background: #f1f8fa;
    color: var(--color3);
    font-size: 14px;
    font-weight: 400;
    padding: 5px 40px;
    border-radius: 30px;
    border: 1px solid var(--color3);
    margin-top: 10px;
}
.contact_wrap_2 .address {
    color: var(--gray500);
}
.contact_wrap_2 .address h3 {
    margin-bottom: 4px;
    color: #313744;
}
.contact_wrap_2 .address:first-child {
    border-top: 0;
    padding-top: 0;
    margin-top: 0;
}
.on-show {
    display: none;
}
.onclick-up {
    position: relative;
}
.onclick-up::before {
    content: "";
    border-top: 1px solid #999;
    border-left: 1px solid #999;
    width: 15px;
    height: 15px;
    display: inline-block;
    bottom: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    margin: 8px 8px 0 5px;
}
.show-detail-journeys {
    position: absolute;
    top: 49px;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 3;
    box-shadow: 0 0 10px -2px #ccc;
}
.show-detail-journeys .item {
    border: 0 !important;
}
.user-info .ava {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 15px;
    border: 1px solid #ccc;
    padding: 1px;
}
.user-info .conten h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #2a4b4c;
}
.user-info .conten .changer-pass {
    border: 1px solid var(--color3);
    color: var(--color3);
    border-radius: 20px;
    font-size: 13px;
    padding: 3px 8px;
}
.user-info .control {
    -webkit-box-flex: 3;
    -webkit-flex-grow: 3;
    -ms-flex-positive: 3;
    flex-grow: 3;
    text-align: right;
}
.footer-airlines {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    color: var(--color_main);
}
.footer-airlines h3 {
    font-size: 20px;
    font-weight: 400;
}
.footer-airlines .icon-left {
    width: 100px;
}
.footer-airlines .bullet {
    margin: 0 -5px;
}
.footer-airlines .bullet span {
    width: 20%;
    padding: 0 5px;
    position: relative;
}
.footer-airlines .bullet span::before {
    content: "";
    background: var(--color_main);
    height: 1.5px;
    width: 100%;
    display: block;
}
.footer-airlines .bullet span.active::before {
    background: var(--white);
}
@media (max-height: 649px) {
    .footer-airlines {
        position: relative;
        padding: 100px 15px 20px 15px;
    }
}
.main--menu {
    width: 280px;
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    position: fixed;
    top: 50px;
    left: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    will-change: transform;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-transform: translate(-120%);
    -ms-transform: translate(-120%);
    transform: translate(-120%);
}
.main--menu a {
    color: var(--color1);
    font-size: 16px;
    width: 100%;
    display: block;
}
.main--menu .user {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 10px;
}
.main--menu .user .ava {
    display: inline-block;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-right: 15px;
    border: 1px solid #ccc;
    padding: 1px;
}
.main--menu ul {
    margin-bottom: 0;
}
.main--menu ul > li {
    border-top: 1px solid var(--gray100);
    padding: 10px 0;
}
.show_main_menu .main--menu {
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
}
.popup-calendar {
    padding: 15px;
    text-align: center;
    position: fixed;
    top: 0;
    border-radius: 0;
}
.popup-calendar label {
    font-size: 16px;
    color: var(--color1);
    font-weight: 500;
    margin-bottom: 10px;
}
.popup-calendar .dp_header {
    color: var(--color1);
    font-size: 16px;
    padding: 10px;
    margin-bottom: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.popup-calendar .dp_header .prev-date {
    border-top: 1px solid var(--gray500);
    border-left: 1px solid var(--gray500);
    width: 12px;
    height: 12px;
    margin-right: 12px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.popup-calendar .dp_header .next-date {
    border-top: 1px solid var(--gray500);
    border-right: 1px solid var(--gray500);
    width: 12px;
    height: 12px;
    margin-left: 12px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.popup-calendar .dp_daypicker {
    width: 100%;
    font-size: 16px;
}
.popup-calendar .dp_daypicker tr th {
    padding-bottom: 10px;
}
.popup-calendar .dp_daypicker tr td {
    padding: 6px 5px 16px 5px;
    position: relative;
    color: var(--color1);
    font-weight: 600;
}
.popup-calendar .dp_daypicker tr td span {
    display: block;
    font-size: 14px;
    color: var(--gray200);
    font-weight: 400;
}
.popup-calendar .dp_daypicker tr .dp_frist,
.popup-calendar .dp_daypicker tr .dp_last {
    color: #fff;
}
.popup-calendar .dp_daypicker tr .dp_frist::before,
.popup-calendar .dp_daypicker tr .dp_last::before {
    content: "";
    background: var(--color3);
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 10px;
    z-index: -1;
}
.popup-calendar .dp_daypicker tr .dp_in::before {
    content: "";
    background: var(--gray50);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 10px;
    z-index: -1;
}
.popup-calendar .button-bottom {
    padding: 0 !important;
}
.page-main__login {
    background: #f1f1f2;
}
.page-main__login .header-airline {
    margin-bottom: 0;
    background: var(--color3);
    padding: 20px 15px;
}
.page-main__login .header-airline .back {
    border-top: 2px solid var(--color_main);
    border-left: 2px solid var(--color_main);
    width: 12px;
    height: 12px;
    margin-right: 12px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.page-main__login .header-airline .title-page {
    font-size: 18px;
    color: rgba(206, 237, 246, 0.5);
    margin: 0;
}
.page-main__login .header-airline .btn_control_menu {
    margin-top: -10px;
}
.page-main__login .header-airline .notifi {
    width: 100%;
    font-size: 14px;
    color: rgba(170, 229, 248, 0.5);
    margin: 20px 0 40px;
}
.page-main__login .header-airline .notifi h2 {
    font-size: 25px;
    font-weight: 400;
    color: #fff;
}
.title-cate {
    color: #313744;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
}
.login-form {
    padding: 20px 15px;
}
.login-form .btn-login {
    background: var(--oranger);
    color: #fff;
}
.btn-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}
.btn-fixed .btn {
    border-radius: 0;
}
@media (max-height: 590px) {
    .btn-fixed {
        position: relative;
        margin-top: 20px;
    }
    .btn-fixed .btn {
        border-radius: 10px;
    }
}
.swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
    float: left;
}
.swiper-container-vertical > .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}
.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    margin: 0 auto;
}
.swiper-slide {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
}
.swiper-slide-invisible-blank {
    visibility: hidden;
}
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
    height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-transition-property: height, -webkit-transform;
    transition-property: height, -webkit-transform;
    transition-property: transform, height;
    transition-property: transform, height, -webkit-transform;
}
.swiper-container-3d {
    -webkit-perspective: 1200px;
    perspective: 1200px;
}
.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-wrapper {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}
.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
    -ms-touch-action: pan-x;
    touch-action: pan-x;
}
.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 40%;
    width: 25px;
    height: 25px;
    z-index: 2;
    cursor: pointer;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    left: 0;
    right: auto;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    right: 0;
    left: auto;
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-lock {
    display: none;
}
.swiper-pagination {
    position: absolute;
    text-align: center;
    -webkit-transition: 0.3s opacity;
    transition: 0.3s opacity;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
    opacity: 0;
}
.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%;
}
.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33);
    position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    -webkit-transform: scale(0.66);
    -ms-transform: scale(0.66);
    transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    -webkit-transform: scale(0.66);
    -ms-transform: scale(0.66);
    transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33);
}
.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #000;
    opacity: 0.2;
}
button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: #007aff;
}
.swiper-container-vertical > .swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 6px 0;
    display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    -webkit-transition: 0.2s top, 0.2s -webkit-transform;
    transition: 0.2s top, 0.2s -webkit-transform;
    transition: 0.2s transform, 0.2s top;
    transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: 0.2s left, 0.2s -webkit-transform;
    transition: 0.2s left, 0.2s -webkit-transform;
    transition: 0.2s transform, 0.2s left;
    transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: 0.2s right, 0.2s -webkit-transform;
    transition: 0.2s right, 0.2s -webkit-transform;
    transition: 0.2s transform, 0.2s right;
    transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}
.swiper-pagination-progressbar {
    background: rgba(0, 0, 0, 0.25);
    position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #007aff;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0;
}
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-container-vertical > .swiper-pagination-progressbar {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
    background: #fff;
}
.swiper-pagination-progressbar.swiper-pagination-white {
    background: rgba(255, 255, 255, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
    background: #fff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
    background: #000;
}
.swiper-pagination-progressbar.swiper-pagination-black {
    background: rgba(0, 0, 0, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
    background: #000;
}
.swiper-pagination-lock {
    display: none;
}
.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%;
}
.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    left: 0;
    top: 0;
}
.swiper-scrollbar-cursor-drag {
    cursor: move;
}
.swiper-scrollbar-lock {
    display: none;
}
.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}
.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.swiper-slide-zoomed {
    cursor: move;
}
.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    -webkit-transform-origin: 50%;
    -ms-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
    animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-position: 50%;
    background-size: 100%;
    background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
    pointer-events: none;
    -webkit-transition-property: opacity;
    transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}
.swiper-container-cube {
    overflow: visible;
}
.swiper-container-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
    pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-next + .swiper-slide,
.swiper-container-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-cube .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
    -webkit-filter: blur(50px);
    filter: blur(50px);
    z-index: 0;
}
.swiper-container-flip {
    overflow: visible;
}
.swiper-container-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
    pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.swiper-container-coverflow .swiper-wrapper {
    -ms-perspective: 1200px;
}
.detail_tin {
    position: relative;
    color: #222;
    font-size: 16px;
    margin-bottom: 40px;
}
.detail_tin .thumb-detail {
    margin: 0 -15px 10px -15px;
}
.detail_tin .thumb-detail img {
    max-height: 200px;
    width: 100%;
    object-fit: cover;
}
.detail_tin .description img {
    max-height: 400px !important;
    width: 100% !important;
    object-fit: cover !important;
}
.detail_tin .title_detail,
.detail_tin h1 {
    font-size: 18px;
    line-height: 1.2;
}
.detail_tin .tag-date {
    color: #b18038;
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 13px;
}
.detail_tin .tag-date a {
    color: #b18038;
}
.detail_tin .tag-date .tag {
    position: relative;
    padding-right: 12px;
}
.detail_tin .tag-date .tag::before {
    content: "";
    background: #b18038;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    position: absolute;
    right: 3px;
    top: 7px;
}
.detail_tin .min-width {
    max-width: 656px;
    margin: 0 auto;
}
.detail_tin .author {
    text-align: center;
    margin-bottom: 40px;
    font-size: 14px;
}
.detail_tin .author .ava {
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
}
.detail_tin .author span {
    display: block;
}
.detail_tin .topDetail {
    margin-bottom: 15px;
    border-bottom: 1px solid #ccc;
    position: relative;
    padding-right: 165px;
}
.detail_tin .topDetail .btn {
    background: #f48121;
    color: #fff;
    text-transform: uppercase;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 0;
    font-size: 13px;
    padding: 10px 20px;
}
.detail_tin p.lead {
    font-weight: 700;
}
.detail_tin p.lead .slogan {
    background: #303030;
    color: #fff;
    padding: 2px 5px;
}
.detail_tin ul {
    padding-left: 20px;
}
.detail_tin ul li {
    margin-bottom: 5px;
    list-style-type: disc;
}
.detail_tin ol {
    padding-left: 20px;
}
.detail_tin ol li {
    margin-bottom: 5px;
    list-style-type: inherit;
}
.detail_tin .embed_video {
    text-align: center;
    margin-bottom: 30px;
}
.detail_tin .embed_video iframe {
    max-width: 100%;
}
.detail_tin h2,
.detail_tin h3 {
    font: bold 20px var(--font2);
    margin: 0 0 30px 0;
    line-height: 1.2;
}
.detail_tin p {
    line-height: 1.5;
    margin-bottom: 20px;
}
.detail_tin p a {
    color: var(--color_main);
    text-decoration: underline;
    text-underline-position: under;
}
.detail_tin p img {
    max-width: 100% !important;
    margin: 0 auto !important;
    display: block !important;
}
.detail_tin .note_center {
    max-width: 540px;
    font: bold 20px/1.4 var(--font2);
    text-align: center;
    color: #414956;
    margin: 0 auto 24px;
}
.detail_tin .note_line {
    font-style: italic;
    padding-left: 16px;
    border-left: 3px solid var(--color_main);
    margin-bottom: 30px;
}
.detail_tin .Images {
    text-align: center;
    margin-bottom: 40px;
}
.detail_tin .Images img {
    width: 100%;
    margin: 0 auto;
    display: block;
}
.detail_tin .Images span {
    display: block;
    margin: 10px 0;
    font-style: italic;
    font-size: 16px;
}
.detail_tin .social {
    text-align: center;
}
.detail_tin .social p {
    text-transform: uppercase;
}
.detail_tin .social a {
    display: inline-block;
    margin: 0 10px;
    color: #34608c;
    width: 30px;
    font-size: 15px;
    height: 30px;
    border: 1px solid #34608c;
    line-height: 25px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    transition: 0.5s ease;
    -webkit-transition: 0.5s ease;
}
.detail_tin .social_pin {
    position: absolute;
    left: 60px;
    top: 300px;
}
.detail_tin .social_pin a {
    display: block;
    margin-bottom: 20px;
}
.related_post {
    background: #101010;
    padding: 60px 50px;
    font-size: 0;
}
.related_post .txt_title {
    font-size: 30px;
    color: #fff;
    text-align: center;
    margin: 0 0 60px 0;
    text-transform: uppercase;
    line-height: 1.2;
    font-weight: 700;
}
.related_post article .content {
    margin-top: 30px;
}
.related_post article .content h3 {
    font-size: 30px;
    line-height: 1.2;
    margin: 0 0 20px 0;
}
.related_post article .content h3 a {
    color: #fff;
}
.related_post article .content span {
    color: #ccc;
}
span.spanDateTime {
    color: #999 !important;
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
}
span.spanDateTime i {
    margin-right: 4px;
}
.block_share a.btn_facebook {
    color: #44619d;
}
.block_share a.btn_twitter {
    color: #55acee;
}
.block_share a.btn_google {
    color: #dd4b39;
}
.block_share a.btn_print {
    color: #a6001c;
}
.block_share a {
    float: left;
    margin: 0 0 0 15px;
    font-size: 20px;
}
.art_other .list_article {
    font-size: 0;
    margin-left: -20px;
}
.art_other .list_article article {
    display: inline-block;
    width: 25%;
    vertical-align: top;
    margin-bottom: 20px;
    padding-left: 20px;
    font-size: 16px;
    border-bottom: 0;
    padding-bottom: 0;
    float: none;
}
.art_other .list_article article .thumb_art {
    width: 100%;
    float: none;
    margin-bottom: 10px;
}
.art_other .list_article article .content {
    overflow: visible;
}
.art_other .list_article article .content .title_news {
    font-size: 16px;
}
.block_tag {
    margin-bottom: 32px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.block_tag .txt_tag {
    margin: 5px 16px 0 0;
    font-weight: 500;
    font-size: 18px;
}
.block_tag .tag_item {
    background: var(--gray50);
    font-size: 14px;
    padding: 0 24px;
    height: 40px;
    line-height: 40px;
    font-weight: 500;
    display: inline-block;
    text-align: center;
    margin: 0 8px 8px 0;
}
.block_tag .tag_item:hover {
    background: var(--gray200);
}
.block_tag .tag_item:hover a {
    color: #fff;
}
.share-detail {
    margin-bottom: 32px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.share-detail .txt_tag {
    margin: 5px 20px 0 0;
    font-weight: 500;
    font-size: 18px;
}
.share-detail .face {
    background: #1d53b7;
    border-radius: 56px;
    height: 36px;
    line-height: 36px;
    color: #fff;
    font-size: 14px;
    padding: 0 15px;
}
.share-detail .face svg {
    margin-right: 6px;
}
.block_old_article ul li {
    display: block;
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}
.block_old_article ul li:before {
    content: "";
    background: #ccc;
    position: absolute;
    width: 4px;
    height: 4px;
    left: 0;
    top: 5px;
}
.block_old_article ul li a {
    font-weight: 700;
    font-size: 14px;
}
.block_old_article .view_all {
    font-weight: 700;
    text-transform: uppercase;
    text-align: right;
    display: block;
}
.journey {
    display: flex;
    justify-content: left;
    align-items: center;
    margin-top: 8px;
}
.journey .label-bottom-flight label {
    margin-bottom: 0;
    color: #000;
    font-weight: 600;
    font-size: 15px;
}
.journey .label-bottom-flight input {
    font-size: 30px;
    position: relative;
    top: 1px;
}
#btn-search-flight {
    border-radius: 50px;
    margin-top: 10px;
}
.div-number ul li {
    width: calc(100% / 3);
    float: left;
    list-style: none;
    padding-left: 10px;
    padding-right: 10px;
}
.div-number ul li:first-child {
    padding-left: 0;
}
.div-number ul li:last-child {
    padding-right: 0;
}
.div-number ul li:nth-child(2) {
    padding-left: 5px;
    padding-right: 5px;
}
.div-number .action-num {
    text-align: center;
    padding: 5px 0;
    border: 1px solid #F11B53;
    border-radius: 20px;
    margin: 5px 0;
}
.div-number .label-num {
    color: gray;
    margin-left: 6px;
    font-size: 0.86em;
}
.div-number .label-num.last {
    font-size: 11px;
}
.btn.btn-math {
    background-color: transparent;
    color: #000;
    padding: 0;
    width: 26px;
    height: 24px;
    line-height: 24px;
}
.div-number .action-num > span {
    width: 15px;
    text-align: center;
    display: inline-block;
    font-size: 1em;
    font-weight: 600;
    position: relative;
    top: 2px;
    color: #000;
}
.div-number ul {
    margin-bottom: 0;
    min-height: 85px;
}
.main--menu ul > li:first-child {
    border-top: none;
}
.article-form {
    margin-top: 20px;
    padding-bottom: 20px;
}
.passengers-info table thead {
    display: none;
}
.passengers-info table tbody tr {
    display: block;
    margin-bottom: 15px;
    background-color: rgba(0, 0, 0, 0.05);
}
.passengers-info table tbody tr:last-child {
    margin-bottom: 0;
}
.passengers-info table .stt-num {
    position: absolute;
    float: right;
    right: 25px;
}
.passengers-info table tbody td {
    width: 100%;
    display: grid;
    grid-template-columns: 35% auto;
    grid-column-gap: 10px;
    word-break: break-word;
    border: none;
    padding: 4px 15px 4px 8px;
    align-items: center;
    font-weight: 600;
}
.passengers-info table {
    margin-bottom: 0;
}
.passengers-info table tbody td:first-child {
    padding-top: 10px;
}
.passengers-info table tbody td:last-child {
    padding-bottom: 10px;
}
.passengers-info table tbody td:before {
    content: attr(data-label);
    display: inline-block;
    text-align: right;
    font-size: 12px;
    font-weight: 700;
    color: #7d7d7d;
    margin-top: 2px;
}
.pin_selected_flight {
    margin: 0 -15px 15px -15px;
}
#pin_depart_flight,
#pin_return_flight {
    display: none;
}
.txc {
    text-align: center;
}
.required {
    color: red;
}
.custom-control-label::after,
.custom-control-label::before {
    top: 0;
}
.media.home-transfer,
.payment-content .home-transfer.media {
    display: block;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    align-items: center;
    border-top: 1px solid #7f8c8d;
    padding-top: 10px;
    padding-bottom: 10px;
}
.media.home-transfer img {
    max-width: 120px !important;
    max-height: 120px !important;
}
.img-bank {
    float: none;
    min-width: 160px;
    text-align: center;
    margin-bottom: 20px;
}
.media-left,
.media-right,
.media.home-transfer .media-body,
.payment-content .media-body {
    display: table-cell;
    vertical-align: top;
    margin-left: 22px;
    font-family: arial, tahoma !important;
}
.media.home-transfer h5,
.payment-content .media-body h5 {
    margin-bottom: 5px;
    color: #666;
    font-weight: 600;
    margin-top: 0;
    font-size: 14px;
}
.media.home-transfer p,
.payment-content .home-transfer.media p {
    margin-bottom: 5px;
}
.collapse.in {
    display: block !important;
}
.cursor-pointer {
    cursor: pointer;
}
.detail-flight-book {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 1;
    border-bottom: 1px solid var(--color3);
}
.detail-flight-book.relative {
    position: relative;
}
.collapseOut {
    float: right;
    margin-top: 10px;
    padding: 0 6px;
    font-size: 12px;
    background-color: #F11B53;
    border-color: #104eda;
}
.note-input-promo {
    font-size: 0.86em;
    color: red;
    margin-top: 10px;
    font-weight: 600;
}
.alert-finish .alert {
    margin-top: 20px;
}
.card.m0 {
    margin: 0;
}

.img-logo-loading {
    margin: 0 auto;
    display: block;
    width: auto;
    height: 55px;
    margin-bottom: 20px;
}
.modal-open .modal {
    padding: 0 !important;
}
.tcn-bottom {
    text-align: center;
    position: relative;
    margin-top: 20px;
    padding-bottom: 20px;
    width: 100%;
    display: block;
    left: 0;
    right: 0;
}
.tcn-bottom p {
    margin-bottom: 3px;
}
.tcn-bottom a {
    color: #EE0033;
    font-weight: 500;
    font-size: 18px;
}
.btn-tim-ve {
    text-transform: uppercase;
    font-weight: 600 !important;
    font-size: 16px !important;
}
.history-link {
    font-size: 16px;
    font-weight: 600;
    color: #EE0033;
    display: block;
    text-align: right;
    margin-bottom: 20px;
    position: relative;
}

.history-link span {
    position: absolute;
    display: block;
    border-top: 1px solid red;
    width: 150px;
    right: -4px;
}

.history-booking-search {
    display: block;
    text-align: center;
}

.history-booking-search a {
    color: #EE0033;
    font-size: 18px;
}

.history-link i {
    margin-left: 10px;
    color: #F11B53;
    font-size: 22px;
}
#cancel_voucher {
    font-size: 18px;
    color: red;
    position: relative;
    top: 3px;
    cursor: pointer;
    padding: 0 5px;
}
.vn_bl_txt {
    width: 100%;
    font-size: 0.8em !important;
    color: red;
    font-weight: 500 !important;
    margin-top: 4px !important;
    margin-bottom: 0;
    padding-top: 2px;
    border-top: 1px solid #d3d3d3;
}
.vn_bl_txt img {
    max-width: 60px;
    position: relative;
    top: 0;
}

.message-error {
    padding: 20px 0;
    color: red;
    text-align: center;
}

.p5 {
    padding: 5px !important;
}
.flight-info-detail{margin: 0 0 10px 0; text-align: right; color: #F11B53; font-weight: 600;}

.close-input {
    position: absolute;
    right: 6px;
    bottom: 12px;
    padding: 5px;
    background: transparent;
    border-radius: 50px;
    width: 25px;
    height: 25px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: normal;
    cursor: pointer;
    color: #999;
}

.totalPriceChoice {
    position: absolute;
    bottom: 55px;
    padding: 10px;
    margin-bottom: 0;
    display: none;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: #fff;
    box-shadow: 0 0 10px -2px #ccc;
}

.totalPriceChoice span:first-child {
    font-size: 18px;
    font-weight: 600;
    color: #240da3;
}

.totalPriceChoice span:last-child {
    font-size: 26px;
    font-weight: 700;
    color: red;
}

/* TOGGLE STYLING */
.journey_custom {
  margin-bottom: 5px;
  box-sizing: border-box;
  font-size: 0;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
}
.journey_custom input {
  width: 0;
  height: 0;
  position: absolute;
  left: -9999px;
}
.journey_custom input + label {
    width: 100%;
  margin: 0;
  padding: 8px 5px;
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  /*border: solid 1px #DDD;*/
  background-color: #FFF;
  font-size: 1rem;
  line-height: 140%;
  font-weight: 600;
  text-align: center;
  /*box-shadow: 0 0 0 rgba(255, 255, 255, 0);*/
  transition: border-color 0.15s ease-out, color 0.25s ease-out, background-color 0.15s ease-out;
  /* ADD THESE PROPERTIES TO SWITCH FROM AUTO WIDTH TO FULL WIDTH */
  /*flex: 0 0 50%; display: flex; justify-content: center; align-items: center;*/
  /* ----- */
}
.journey_custom input + label:first-of-type {
  border-radius: 50px 0 0 50px;
  border-right: none;
}
.journey_custom input + label:last-of-type {
  border-radius: 0 50px 50px 0;
  border-left: none;
}
.journey_custom input:hover + label {
  /*border-color: #213140;*/
}
.journey_custom input:checked + label {
  background-color: #F11B53;
  color: #FFF;
  /*box-shadow: 0 0 10px rgba(102, 179, 251, 0.5);*/
  /*border-color: #F11B53;*/
  z-index: 1;
}

/*@media (min-height: 800px) {
    .journey {
        display: block;
        margin-top: 30px;
    }

    .journey-block-1 {
        margin-top: 18px;
    }
}*/

/*@media (max-height: 840px) {
    .banner-bottom-app {
        display: none;
    }
}
*/

.banner-bottom-app {
    display: block;
    padding-top: 20px;
}

.banner-bottom-app img {
    width: 100%;
    height: auto;
    max-height: 120px;
}

@media (max-width: 365px) {
    .bg-form {
        font-size: 12px;
        margin: 0 5px;
    }

    .history-booking-search, .tcn-bottom {
        font-size: 12px;
    }

    .tcn-bottom {
        bottom: 10px;
    }
}

.baggages-info {
  background: aliceblue;
  padding: 3px 8px;
  font-size: 12px;
  border-radius: 4px;
}

.baggages-info p {
  margin-bottom: 2px;
  font-weight: 600;
}
