:root {
    --main-color: #0f2747;
    --main-color-hover: #ec3237;
    --font-family: 'helveticaneue';
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

a:hover {
    text-decoration: none;
    color: var(--main-color);
}

body {
    font-family: var(--font-family);
    font-size: 14px;
    background-color: #ffff;
    position: relative;
    font-weight: 500;
}

@font-face {
    font-family: 'DollyDots';
    src: url(../fonts/dollydots.ttf);
}

.clear {
    clear: both;
}

.container {
    width: 100% !important;
    max-width: 1200px;
}

.container-fluid {
    position: relative;
    max-width: 1350px;
}


/*  */

header {
    background: #fff;
    position: relative;
    z-index: 15;
}

.header-toolbar {
    color: #656565;
    font-size: 93%;
    background: #f9f9f9;
    padding: 10px 0px;
    display: none;
}


@media(max-width: 767px) {
    .header {
        margin-bottom: 0px;
    }

    .header-toolbar {
        padding: 6px 0px;
    }
}

.header-toolbar a {
    color: #656565;
}

.header-toolbar a:hover {
    color: var(--main-color);
}

.header-toolbar .wrap-icon {
    text-align: center;
    float: right;
    position: relative;
}

.header-toolbar .login-menu a {
    margin-left: 5px;
    border-left: 1px solid;
    padding-left: 10px;
    line-height: 10px;
    display: inline-block;
}

.header-toolbar .login-menu a:first-child {
    border-left: none;
    padding-left: 0px;
    margin-left: 0px;
}

.header-toolbar .support {
    float: left;
}

@media(max-width: 767px) {
    .header-toolbar .support {
        display: none;
    }
}

.header-toolbar .support span {
    margin-left: 10px;
    padding-left: 13px;
    border-left: 1px solid;
    line-height: 10px;
    display: inline-block;
}

.header-toolbar .support span:hover {
    color: var(--main-color);
}

.header-toolbar .support span i {
    margin-right: 5px;
}

.header-toolbar .support span:first-child {
    margin-left: 0px;
    border-left: none;
    padding-left: 0px;
}

.relative {
    position: relative;
}


/**/

.header-main {
    position: relative;
    background: #fff;
    padding: 10px 0px;
}

.height_navbar_top {
    height: 83px;
    display: none;
}

.header-main.fixed-top+.height_navbar_top {
    display: block;
}

.header-main .row {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media(max-width: 991px) {
    .header-main .row {
        display: block;
    }
}

.logo {
    display: block;
    position: relative;
    z-index: 1;
    text-align: left;
    line-height: 68px;
}

.logo img {
    display: inline-block;
    max-height: 65px;
    width: auto;
}

.wrap-menu-top {
    position: static;
    text-align: center;
}

.icon-cate-mobi {
    display: none;
    position: absolute;
    top: 6px;
    left: 8px;
    padding: 10px;
    cursor: pointer;
    z-index: 99;
}


@media(min-width: 992px) {
    .header-main .menu-top {
        display: block !important;
        padding-left: 80px;
    }
}

@media(max-width: 991px) {
    .wrap-menu-top {
        width: 100%;
    }

    .header-main {
        padding: 5px 0px;
    }

    .header-main .menu-top {
        display: none;
        margin: 4px -8px 0px;
    }

    .logo {
        line-height: 50px;
        text-align: left;
        width: 100%;
        /* padding-left: 100px; */
    }

    .logo img {
        padding: 0;
    }

    .icon-cate-mobi {
        display: none;
    }
}

@media(max-width: 767px) {
    .logo img {
        max-height: 54px;
        margin-bottom: 2px;
    }
}

@media(max-width: 1024px) {
    .header-main .row {
        display: block;
    }
}

.header-main .menu-top ul {
    padding: 0px;
    margin: 0px;
    text-align: center;
    margin-left: -150px;
}

.header-main .menu-top ul:after {
    content: '';
    display: block;
    clear: both;
}

.header-main .menu-top ul>li {
    list-style-type: none;
    display: inline-block;
    position: relative;
}

.app {
    position: absolute;
    top: 28px;
    right: 100px;
    display: none;
}

.app>a {
    /* border-top: 7px solid; */
    border-radius: 30px;
    padding: 10px 20px;
    border-color: var(--main-color);
    background: var(--main-color);
    color: #fff;
    font-weight: 600;
    font-size: 114%;
}

.app>a:hover {
    background: var(--main-color-hover);
    border-top: 0px;
    color: #fff;
}

.header-main .menu-top ul>li>a {
    padding: 7px 28px;
    display: block;
    position: relative;
    color: var(--main-color);
    /* text-align: center; */
    font-weight: 600;
    font-size: 104%;
    background: #f0f0f0;
    margin-right: 11px;
    border-radius: 30px;
}

.header-main .menu-top ul>li>.sub {
    position: absolute;
    width: 280px;
    top: 100%;
    background: #fff;
    left: 0px;
    z-index: 999;
    border-top: none;
    opacity: 0;
    visibility: hidden;
    padding: 0px 0px 0px;
    box-shadow: 0px 0px 10px #ddd;
    -webkit-transform: perspective(600px) rotateX(-90deg);
    -moz-transform: perspective(600px) rotateX(-90deg);
    -ms-transform: perspective(600px) rotateX(-90deg);
    -o-transform: perspective(600px) rotateX(-90deg);
    transform: perspective(600px) rotateX(-90deg);
    -webkit-transition: -webkit-transform 0.5s ease, opacity 0.6s ease, max-height 0.6s step-end, max-width 0.6s step-end, padding 0.6s step-end;
    -o-transition: -o-transform 0.5s ease, opacity 0.6s ease, max-height 0.6s step-end, max-width 0.6s step-end, padding 0.6s step-end;
    transition: transform 0.5s ease, opacity 0.6s ease, max-height 0.6s step-end, max-width 0.6s step-end, padding 0.6s step-end;
    box-shadow: 0px 3px 25px 0px rgb(31 38 67 / 10%);
    -o-box-shadow: 0px 3px 25px 0px rgba(31, 38, 67, 0.1);
    -moz-box-shadow: 0px 3px 25px 0px rgba(31, 38, 67, 0.1);
    -webkit-box-shadow: 0px 3px 25px 0px rgb(31 38 67 / 10%);
    -webkit-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
}

@media(max-width: 1200px) {
    .header-main .menu-top ul>li {
        margin-bottom: 10px;
    }
}

@media(max-width: 991px) {
    .header-main .menu-top ul {
        margin: 0px;
        text-align: left;
    }

    .header-main .menu-top ul>li {
        display: block;
        border-top: 1px solid #f1f1f1;
    }

    .header-main .menu-top ul>li>a {
        padding: 12px 18px;
        text-align: left !important;
        font-size: 100%;
    }

    .header-main .menu-top ul>li>.sub {
        width: 100%;
        position: relative;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        -webkit-transform: perspective(600px) rotateX(0deg);
        -moz-transform: perspective(600px) rotateX(0deg);
        -ms-transform: perspective(600px) rotateX(0deg);
        -o-transform: perspective(600px) rotateX(0deg);
        transform: perspective(600px) rotateX(0deg);
        -webkit-transition: -webkit-transform 0.5s ease, opacity 0.2s ease, max-height 0s step-end, max-width 0s step-end, padding 0s step-end;
        -o-transition: -o-transform 0.5s ease, opacity 0.2s ease, max-height 0s step-end, max-width 0s step-end, padding 0s step-end;
        transition: transform 0.5s ease, opacity 0.2s ease, max-height 0s step-end, max-width 0s step-end, padding 0s step-end;
    }

    .menu-top ul li ul.sub {
        display: none;
    }

    .menu-top ul li.open>ul.sub {
        display: block;
    }

    .header-main .menu-top ul>li.app {
        width: 150px;
        /* position: absolute; */
        /* top: 6px; */
        /* right: 0; */
        /* display: block; */
        display: none;
    }

    .app {
        top: 20px;
    }
}

.header-main .menu-top ul>li:hover>.sub {
    opacity: 1;
    visibility: visible;
    -webkit-transform: perspective(600px) rotateX(0deg);
    -moz-transform: perspective(600px) rotateX(0deg);
    -ms-transform: perspective(600px) rotateX(0deg);
    -o-transform: perspective(600px) rotateX(0deg);
    transform: perspective(600px) rotateX(0deg);
    -webkit-transition: -webkit-transform 0.5s ease, opacity 0.2s ease, max-height 0s step-end, max-width 0s step-end, padding 0s step-end;
    -o-transition: -o-transform 0.5s ease, opacity 0.2s ease, max-height 0s step-end, max-width 0s step-end, padding 0s step-end;
    transition: transform 0.5s ease, opacity 0.2s ease, max-height 0s step-end, max-width 0s step-end, padding 0s step-end;
}

.header-main .menu-top ul>li>.sub>li {
    display: block;
    border-top: 1px solid #f1f1f1;
}

.header-main .menu-top ul>li>.sub>li:first-child {
    border-top: none !important;
}

.header-main .menu-top ul>li>.sub>li>a {
    text-align: left;
    padding: 10px 20px;
    font-weight: 400;
    font-size: 100%;
    color: #444;
    background: none;
    border: none;
}

.header-main .menu-top ul>li>.sub>li:hover>a {
    color: var(--main-color);
}

.header-main .menu-top ul>li>.sub>li.li-sub {}

.header-main .menu-top ul>li>.sub>li.li-sub>a {}

.header-main .menu-top ul>li>.sub>li.li-sub a>i {
    position: absolute;
    top: 10px;
    right: 010px;
}

.header-main .menu-top ul>li>.sub>li>.sub {
    position: absolute;
    display: none;
    padding: 0;
    left: 100%;
    top: 0;
}

.header-main .menu-top ul>li>.sub>li:hover>.sub {
    display: block;
}

.header-main .menu-top ul>li>.sub>li>.sub>li>a {
    font-weight: 400;
    padding: 10px 20px;
    font-size: 100%;
}

@media(max-width: 991px) {
    .header-main .menu-top ul>li>.sub>li>.sub>li>a {
        font-size: 93%;
    }

    .header-main .menu-top ul>li {
        display: block;
        border-top: 1px solid #f1f1f1;
    }

    .header-main .menu-top ul>li>a {
        text-align: left;
        padding: 10px 10px 0px;
        font-size: 100%;
        font-weight: 500;
        background: #fff;
    }
}

.header-main .menu-top ul>li:hover>a,
.header-main .menu-top ul>li.active>a {
    color: var(--main-color-hover);
}

.header-main .menu-top ul>li>a b {
    display: block;
    text-transform: uppercase;
}

@media(max-width: 991px) {
    .header-main .menu-top ul>li>a b {
        font-weight: 500;
    }

    .app {
        display: none;
    }
}

.header-main .menu-top ul>li .wrap-sub {
    position: absolute;
    width: 280px;
    top: 59px;
    background: #fff;
    box-shadow: 0 0px 8px -4px #adadad;
    left: 0px;
    z-index: 999;
    border-top: none;
    display: none;
    /* opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    transition: all 0.2s linear; */
    padding: 10px 0px;
}

.menu-top ul>li:hover .wrap-sub {
    display: block;
    /* opacity: 1;
    visibility: visible; */
}

@media(max-width: 767px) {
    .header-main .menu-top ul>li .wrap-sub {
        opacity: 1;
        visibility: visible;
        padding: 0px 12px 0px 22px;
        box-shadow: none;
        position: relative;
        top: 0px;
        border: none;
        display: none;
    }

    .menu-top ul>li:hover .wrap-sub {
        display: block;
    }
}

.header-main .menu-top ul>li .wrap-sub .item .sub li {
    display: block;
    border-bottom: 1px solid #f1f1f1;
}

.header-main .menu-top ul>li .wrap-sub .item .sub li .sub {
    margin-top: -6px;
    margin-bottom: 8px;
}

@media(max-width: 767px) {
    .header-main .menu-top ul>li .wrap-sub .item .sub li {
        width: 100%;
        margin-top: 5px;
        margin-bottom: 5px;
    }
}

.header-main .menu-top ul>li .wrap-sub .item .sub li a {
    text-align: left;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 114%;
}

.header-main .menu-top ul>li .wrap-sub .item .sub li .sub li {
    width: 100%;
    margin: 0px;
    display: block;
    border-bottom: none;
}

.header-main .menu-top ul>li .wrap-sub .item .sub li:nth-child(4n+1) {
    clear: both;
}

.header-main .menu-top ul>li .wrap-sub .item .sub li .sub li a {
    font-weight: 400;
    padding: 4px 30px;
    font-size: 100%;
}


/**/

.form-search {
    margin: 0px;
    position: absolute;
    right: 0px;
    width: 400px;
    display: none;
    top: 100%;
    z-index: 100;
}

.form-search .search {
    border: 1px solid var(--g2);
    position: relative;
    height: 45px;
    border-radius: 4px;
    overflow: hidden;
}

.form-search .search select {
    position: absolute;
    top: 0;
    left: 4px;
    z-index: 1;
    height: 100%;
    border: none;
    padding: 0px 6px;
    margin: 0;
    background: #fff;
}

.icon-cart {
    position: absolute !important;
    top: 29px;
    right: 15px;
    z-index: 9;
    line-height: normal;
    color: #444;
    cursor: pointer;
}

.icon-cart:hover {
    color: var(--main-color);
}

.icon-cart img {
    height: 36px;
}

.icon-cart i {
    font-size: 143%;
}

.icon-cart span {
    position: absolute;
    top: -8px;
    right: -9px;
    background: var(--main-color);
    border-radius: 50px;
    min-width: 16px;
    height: 16px;
    text-align: center;
    font-size: 71%;
    line-height: 16px;
    color: #fff;
}

.cart-detail-item {
    position: absolute;
    z-index: 1;
    width: 320px;
    right: 100%;
    background: #fff;
    box-shadow: 0px 0px 10px #ddd;
    border-radius: 4px;
    top: 100%;
    margin-top: 15px;
    margin-right: -35px;
    display: none;
}

.cart-detail:hover .cart-detail-item {
    display: block;
}

.cart-detail-item:after {
    bottom: 100%;
    right: 16px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(136, 183, 213, 0);
    border-bottom-color: #fff;
    border-width: 7px;
    margin-right: 0px;
}

.cart-detail-item:before {
    content: '';
    display: block;
    position: absolute;
    height: 22px;
    width: 100%;
    left: 0;
    top: -22px;
}

.cart-detail-item ul {
    padding: 0;
    margin: 0;
}

.cart-detail-item ul li {
    list-style: none;
    text-align: left;
    padding: 10px 12px;
    border-top: 1px solid #f1f1f1;
}

.cart-detail-item ul li:first-child {
    border-top: none;
}

.cart-detail-item ul li::after {
    content: '';
    clear: both;
    display: block;
}

.cart-detail-item ul li .img {
    width: 56px;
    height: 56px;
    position: relative;
    float: left;
    margin-right: 5px;
    border: 1px solid #ddd;
    border-radius: 2px;
    overflow: hidden;
}

.cart-detail-item ul li .img img {
    height: auto;
    width: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.cart-detail-item ul li .name {
    margin: 0;
    font-size: 12px;
    font-weight: 400;
    max-height: 32px;
    overflow: hidden;
}

.cart-detail-item ul li .name a {
    color: #444;
}

.cart-detail-item ul li .name a:hover {
    color: var(--main-color);
}

.cart-detail-item ul li .price {
    color: var(--main-color);
    font-weight: 600;
    font-size: 12px;
    display: inline-block;
    margin: 0px 0 4px 0px;
}

.cart-detail-item ul li .price i {
    font-style: normal;
    font-size: inherit;
    margin-left: 0;
}

.cart-detail-item ul li .price.price_root_100 i {
    text-decoration: line-through;
}

.cart-detail-item ul li .price span {
    color: #777;
    font-weight: 400;
    font-size: 10px;
    position: relative;
    background: none;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    line-height: normal;
}

.cart-detail-item ul li .price.price_root_100 span {
    text-decoration: none;
}

.cart-detail-item ul li .price .price_sale {
    margin: 3px 0px;
    line-height: 10px;
    display: block;
    color: red;
    font-weight: 400;
    font-size: 11px;
}

.cart-detail-item ul li .price .price_sale span {
    text-decoration: line-through;
    font-size: 11px;
    color: #999;
    position: relative;
    background: none;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    line-height: normal;
}

.cart-detail-item .btn {
    padding: 4px 10px;
}

.cart-detail-item .no {
    color: #666;
}

.icon-search {
    position: absolute;
    font-size: 115%;
    cursor: pointer;
    padding: 0px 10px;
    z-index: 2;
    display: flex;
    align-items: center;
    /* display: none; */
    right: 0;
    top: 7px;
    border: 1.5px solid var(--g2);
    border-radius: 4px;
    height: 35px;
    width: 50px;
    line-height: 35px;
    text-align: center;
    justify-content: center;
    background: var(--red);
    color: #fff;
}

@media(max-width: 1025px) {

    .form-search {
        margin: 8px 0px;
        width: 100%;
    }

    .form-search .search {
        width: 100%;
        max-width: inherit;
        height: 38px;
    }

    .icon-cart img {
        height: 30px;
    }
}

@media(max-width: 991px) {
    .icon-search {}

    .icon-cart {
        right: 61px;
        top: 22px;
    }
}

.form-search .search img {
    width: 18px;
    filter: brightness(0.5);
}

.form-search .search input {
    position: absolute;
    width: 100%;
    height: 100%;
    border: none;
    box-shadow: none;
    border-radius: 0px;
    padding: 2px 52px 2px 110px;
}

.form-search .search .btn {
    background: var(--g2);
    position: absolute;
    border-radius: 0px;
    right: 0px;
    top: 0px;
    height: 100%;
    color: #fff;
    text-transform: uppercase;
    border: none;
    padding: 7px 19px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.form-search .search .btn:hover {
    background: var(--main-color-hover);
}

@media(max-width: 767px) {
    .form-search .search img {
        width: 16px;
        top: 9px;
        left: 10px;
    }

    .form-search .search input {
        padding: 3px 44px 3px 105px;
    }

    .form-search .search .btn {
        padding: 0px 13px;
        line-height: 32px;
        font-size: 100%;
    }

    .form-search .search .btn span {
        display: none;
    }
}


/*  */
.banner_slide {
    background: #fff;
}

.no_flexslider {
    position: relative;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
}

.no_flexslider::after {
    content: '';
    display: block;
    clear: both;
}

@media(max-width: 767px) {
    .no_flexslider {
        border-radius: 0px;
        /* margin-left: -8px; */
        /* margin-right: -8px; */
    }

    .header-slider .wrap-item .info {
        font-size: 138%;
    }
}

.no_flexslider .slides {
    padding: 0px;
    margin: 0px;
    float: left;
    width: 100%;
}

.no_flexslider .slides .btt {
    margin-top: 50px;
    display: block;
}

.no_flexslider .slides .btt>a {
    padding: 15px 30px;
    margin-right: 20px;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    font-weight: 600;
    font-size: 16px;
    border-radius: 30px;
    background: #ffff;
    display: inline-block;
    text-transform: capitalize;
    font-family: 'Arial Bold';
    transition: all 0.3s;
}

.no_flexslider .slides .btt>a:hover {
    color: #fff;
    background: var(--main-color);
}

.no_flexslider .slides::after {
    content: '';
    display: block;
    clear: both;
}

.no_flexslider .slides li {
    list-style-type: none;
    float: left;
    width: 100%;
    position: relative;
}

.no_flexslider .slides li a {
    /* display: block; */
}

.no_flexslider .slides li img {
    width: 100%;
    position: relative;
    z-index: 1;
}

.flexslider .flex-direction-nav {
    padding: 0px;
    margin: 0px;
}

.flexslider.no-slider .flex-direction-nav {
    display: none;
}

.flexslider .flex-direction-nav>li {
    list-style-type: none;
    position: absolute;
    top: 50%;
    right: 10px;
    font-size: 243%;
    margin-top: -24px;
    width: 40px;
    text-align: center;
    z-index: 2;
}

.flexslider .flex-direction-nav>li a {
    color: #fff;
}

.flexslider .flex-direction-nav>li.flex-next {
    left: 10px;
    right: auto;
}

@media(max-width: 991px) {
    .top_banner .slides li {
        height: 100%;
        padding-bottom: inherit;
    }

    /* .no_flexslider .slides li img {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    } */
    .top_banner .slides li img {
        position: relative;
    }

    .no_flexslider .slides .btt>a {
        margin-right: 0px;
        padding: 10px 14px;
    }

    .no_flexslider .slides .btt {
        margin-top: 20px;
    }

    .no_flexslider .slides li a.button-86 {
        margin-top: 10px;
    }
}

@media(max-width: 767px) {

    /* .no_flexslider .slides li {
        height: 0;
        padding-bottom: 115%;
        overflow: hidden;
    } */
    .no_flexslider .slides .btt {
        margin: 20px auto;
        text-align: center;
    }

    .no_flexslider .slides .btt>a {
        margin-bottom: 20px;
    }

    .no_flexslider .slides .action {
        justify-content: center;
    }
}

.header-slider .wrap-item {
    position: absolute;
    left: 30px;
    top: 100px;
    transform: translate(0%, 0%);
    z-index: 2;
    text-align: left;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-slider .wrap-item .info {
    max-width: 650px;
    text-align: center;
    font-size: 159%;
    margin: auto;
}

.header-slider .block-title .title {
    font-size: 36px;
    text-transform: uppercase;
    /* max-width: 600px; */
    color: #000;
    text-align: center;
}

@media(max-width: 1025px) {
    .header-slider .wrap-item {
        top: 35px;
    }

    .header-slider .block-title .title {
        font-size: 26px;
    }

    .header-slider .wrap-item .info {
        font-size: 128%;
    }
}

@media(max-width: 991px) {
    .header-slider .block-title .title {
        font-size: 20px;
    }

    .header-slider .wrap-item {
        top: 0;
        left: 20px;
    }

    .header-slider .wrap-item .info {
        font-size: 110%;
    }
}

@media(max-width: 767px) {
    .header-slider .wrap-item {
        width: 100%;
        left: 0;
        transform: translate(0, 0%);
        position: relative;
        top: 0;
        margin: auto;
        padding: 20px 20px 0px;
    }

    .header-slider .block-title .title {
        font-size: 20px;
    }

    .header-slider .button-86 {
        margin: 0;
    }

    .header-slider .wrap-item .info {
        font-size: 18px;
    }
}

.action {
    display: flex;
    align-items: center;
    gap: 20px;
}

.action.top10 .hotline {
    font-size: 158%;
    font-weight: 900;
    margin-top: -20px;
}

.button-86 {
    all: unset;
    /* width: 100px; */
    height: 30px;
    font-size: 16px;
    background: transparent;
    border: none;
    position: relative;
    color: #f0f0f0;
    cursor: pointer;
    z-index: 1;
    padding: 10px 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    gap: 10px;
    font-weight: 600;
}

.button-86:hover {
    color: #fff;
}

.button-86::after,
.button-86::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -99999;
    transition: all .4s;
}

.button-86::before {
    transform: translate(0%, 0%);
    width: 100%;
    height: 100%;
    background: var(--main-color);
    border-radius: 10px;
}

.button-86::after {
    transform: translate(10px, 10px);
    width: 35px;
    height: 35px;
    background: #ffffff15;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 50px;
}

.button-86:hover::before {
    transform: translate(5%, 20%);
    width: 110%;
    height: 110%;
}

.button-86:hover::after {
    border-radius: 10px;
    transform: translate(0, 0);
    width: 100%;
    height: 100%;
}

.button-86:active::after {
    transition: 0s;
    transform: translate(0, 5%);
}


/*  */

.block-title {
    margin: 20px 0px;
}

.block-title .title {
    font-size: 184%;
    padding: 0;
    margin-top: 20px;
    margin-bottom: .2em;
    line-height: 1.6;
    color: var(--main-color-hover);
    font-weight: 600;
    font-family: var(--font-family);
}

@media(max-width: 767px) {
    .block-title {
        margin: 20px 0px 14px;
    }

    .block-title .title {
        font-size: 192%;
    }
}

.block-title .title span {
    color: var(--main-color);
}

.block-title .sub-title {
    text-align: center;
    padding: 0px;
    margin: 25px 0px 0px 0px;
    margin-left: 10px;
    margin-bottom: 40px;
}

@media(max-width: 767px) {
    .block-title .sub-title {
        white-space: nowrap;
        overflow-x: auto;
        margin: 0px;
    }
}

.block-title .sub-title li {
    list-style-type: none;
    display: inline-block;
    margin: 0px 1px;
}

.block-title .sub-title li a {
    padding-left: 10px;
    display: inline-block;
    font-size: 18px;
    background: var(--main-color);
    padding: 8px 30px;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    margin-right: 20px;
}

.block-title .sub-title li:first-child a {}


/* block-product */
.block-product .row {
    display: flex;
    /* align-items: center; */
    flex-wrap: wrap;
    margin: 0px;
}

.block-product .block-content .row {
    margin-top: 30px;
    margin: 0px;
}

.itab-title {}

.itab-desc {}

.pc {
    margin-bottom: 10px;
}

.pc-link {}

.pc-name {}

.pc-spec {}

.price {
    display: none;
}

.block-product .row .item {
    padding: 0px;
    display: flex;
    flex-direction: column;
}

.block-product .row .item>a {
    display: flex;
    flex: 1;
}

@media(max-width:991px) {
    .block-product .row .item {

        padding: 0px 0px;

    }
}

/* block-new */

.block-new {
    /* padding: 0px 0px 50px; */
    /* background-color: #f9f9f9; */
}

section.block-new.news.job .breadcrumb li a,
section.block-new.news.job .breadcrumb li span {
    color: rgba(255, 255, 255, .3);
}

section.block-new.news.job .hero {
    padding: 90px 0px;
}

section.block-new.news.job .block-title {
    margin: 0px;
}

section.block-new.news.job .hero-crumbs {
    font-size: 13px;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 40px;
}

section.block-new.news.job .hero-crumbs a {
    color: rgba(255, 255, 255, .3);
    margin-bottom: 40px;
}

section.block-new.news.job .hero-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 12px;
}

section.block-new.news.job .hero-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, .45);
    max-width: 520px;
    margin-top: 12px;
}

section.block-new.news.job .hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

section.block-new.news.job .hs-num {
    font-size: 28px;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
}

section.block-new.news.job .hs-label {
    font-size: 11px;
    color: rgba(255, 255, 255, .3);
    margin-top: 4px;
}

.featured-news {
    padding: 90px 0px;
    /* background: var(--g0); */
}

.featured-news .sh {
    margin-bottom: 30px;
}

.featured-news .ey {
    color: var(--red);
}

/*  */
section.block-new.news.job .filters {
    background: #fff;
    padding: 48px 0 0;
    position: sticky;
    top: 62px;
    z-index: 50;
    border-bottom: 1px solid var(--border);
}

.news-section {
    padding: 0px 0px 90px;
}

.filter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding-bottom: 20px;
    position: relative;
    padding-right: 80px;
}

.filter-tabs {
    display: flex;
    gap: 6px;
    flex-wrap: nowrap;
    /* padding-right: 60px; */
    white-space: nowrap;
    overflow-x: auto;
    padding-top: 6px;
}

.filter-tab {
    padding: 8px 20px;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: 1.5px solid var(--g2);
    background: #fff;
    color: var(--g9);
    font-family: inherit;
    transition: all .2s;
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
}

/*  */
section.block-new.news .row {
    /* display: flex; */
    /* flex-wrap: wrap; */
}

.block-new .row_home>div {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.block-new .row_home {
    display: flex;
    flex-wrap: wrap;
    /* align-items: start; */
}

.news .content {
    padding-top: 30px;
}

.news .row_home {}

.block-new .item {
    position: relative;
    color: #121f49;
    border-radius: 2px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex: 1;
    border: 1px solid var(--g2);
    transition: all .28s var(--ease);
}

.block-new .item:hover {
    box-shadow: 0 12px 36px rgba(15, 39, 71, 0.11);
    transform: translateY(-4px);
    border-color: rgba(15, 39, 71, 0.2);
}

.block-new .item:hover a {
    color: var(--red);
}

.block-new .button-86,
.block-product .button-86 {
    display: inline-block;
}

.block-new .item .img {
    background: var(--g0);
    position: relative;
    height: 0px;
    padding-bottom: 70%;
    overflow: hidden;
}

.block-new .item .img img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
}

.block-new .item .info {
    padding: 24px;
    position: relative;
    background: #fff;
    margin-bottom: 3px;
}

.block-new .item .info .information {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--g7);
    line-height: 1.5;
}

.nc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--g2);
}

.nc-footer .nc-author {
    background: var(--bg);
    color: var(--red);
    display: inline-flex;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.feat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.feat-grid .feat-left .item .img {
    padding-bottom: 55%;
}

.feat-grid .feat-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feat-grid .feat-right .item>a {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 16px;
    padding: 15px;
    border-radius: 2px;
    background: #ffff;
    /* border: 1px solid var(--g2); */
    transition: all .3s;
    cursor: pointer;
    align-items: start;
}

.feat-grid .feat-right .item>a .info {
    padding: 0px;
}

.feat-grid .feat-right .item>a .info h4 {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    transition: color .2s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.feat-grid .feat-right .item .img {
    width: 120px;
    height: 88px;
    border-radius: 2px;
    overflow: hidden;
}

.block-new .item .info h4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
    font-size: 17px;
    padding: 0;
    line-height: 1.6;
    font-weight: 600;
    margin: 0px;
    margin-bottom: 10px;
}

.nc-read {
    font-size: 12px;
    font-weight: 600;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.feat-read {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
}

.block-new .item .info h4 a {
    color: #121f49;
    display: block;
}

.block-new .item .info h4 a:hover {
    color: var(--main-color);
}

.block-new .item .info .short-info {
    font-size: 114%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 3;
    margin-bottom: 20px;
}

.block-new .block-title .title {}

h2.title.title-small {
    font-size: 142%;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
}

.job-apply .block-title .title a {}

.time {
    font-size: 110%;
    color: #aaa;
    /* padding: 0px 0px 12px; */
    line-height: 1.6;
}

.time span {
    /* margin-bottom: 10px; */
    display: inline-block;
    font-size: 11px;
}

.time span:first-child {
    /* margin-right: 10px; */
}

.time span:first-child i {
    margin-right: 6px;
    padding-left: 1px;
    top: 0px;
}

.time span i {
    margin-right: 2px;
    position: relative;
    top: -1px;
    font-size: 100%;
}

.time span:last-child {
    /* float: right; */
}

@media(max-width: 991px) {
    .block-new .item .img {
        padding-bottom: 70%;
    }

    .block-new .item .info h4 {}
}

@media (max-width: 1024px) {

    section.block-new.news.job .hero,
    .featured-news {
        padding: 30px 0px;
    }

    .feat-grid {
        grid-template-columns: 1fr;
    }

    .feat-grid .feat-right {
        flex-direction: row;
        gap: 12px;
        padding-bottom: 8px;
        /* white-space: nowrap; */
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .feat-grid .feat-right .item {
        min-width: 300px;
    }

    section.block-new.news.job .filters {
        top: 55px;
    }

    .nl-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 767px) {
    .block-new .item .info h4 {
        font-size: 16px;
    }

    .block-new .item .info .short-info {
        font-size: 100%;
    }

    .block-new .item .info {
        padding: 15px;
    }

    .feat-grid .feat-right {
        flex-direction: column;
    }

    .nl-form {
        flex-direction: column;
    }

    .newsletter {
        padding: 30px 0px;
    }

    .nl-form .iframe {
        display: block;
    }

    .nl-grid {
        gap: 20px;
    }

    .nl-form .iframe input {
        width: 100%;
        margin-bottom: 10px;
    }
}


.detail-news {
    padding-bottom: 50px;
}

.detail-news .detail-content {
    background: #fffefe;
    border-radius: 4px;
    padding: 25px;
    margin-bottom: 15px;
}

.detail-news .detail-content ul,
.detail-news .detail-content ol {
    padding-left: 35px;
    line-height: 25px;
}

.detail-news .detail-content .detail .col-left {
    padding-left: 0;
}

@media(max-width: 767px) {
    .detail-news .detail-content .detail .col-left {
        padding: 0;
    }

    .detail-news .detail-content ul,
    .detail-news .detail-content ol {
        padding-left: 35px;
        line-height: 22px;
    }
}

.detail-news .detail-content li {
    padding-bottom: 10px;
}

.detail-news .right {
    padding-left: 0px;
}

.detail-news .detail-content .title {
    color: #272727;
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 600;
    margin-top: 0px;
    text-align: left;
}

.job-apply .block-title .title {
    font-size: 150%;
    text-align: left;
}

.job-apply .content {
    padding: 0px;
}

.detail-news .detail-content .info {
    color: #858585;
    font-weight: 400;
    margin-bottom: 20px;
    font-size: 12px;
    text-align: left;
}

.detail-news .detail-content .content * {
    max-width: 100%;
    font-size: 15px;
}

.detail-news .detail-content .detail img {
    height: auto !important;
    width: 100%;
}

@media(max-width: 767px) {
    .detail-news .detail-content {
        padding: 0px 10px;
    }

    .detail-news .detail-content .title {
        font-size: 175%;
        margin-top: 20px;
    }
}


/*  */

.btn-booking {
    padding: 10px;
    font-size: 114%;
    margin-left: 20px;
    border-radius: 3px;
    text-align: center;
    position: relative;
    margin: 0px 20px;
    display: block;
    padding: 6px 20px;
    background: #f16101;
    color: #fff;
    font-weight: 600;
    border: 1px solid #f16101;
}

.btn-booking:hover {
    background: #f16101 !important;
    color: #fff !important;
    border: 1px solid #f16101;
}

.register11 {
    padding: 30px 0px 0px;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    background-color: #fff;
}

.register11 .btn-key {
    margin: auto !important;
    background: transparent;
    border: none;
    background: transparent !important;
}

.register11 .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.register11.register11_acticle {
    padding: 0;
}

.register11.register11_acticle::before {
    display: none !important;
}

.register11 .content {
    position: relative;
    z-index: 2;
}

@media(max-width: 767px) {
    .register11 .content {
        padding: 16px;
    }

    .register11 .row .iframe .row {
        /* max-height: 323px; */
        overflow: hidden;
        overflow: scroll;
    }
}

.register11 .content .content1 {}

@media(max-width: 767px) {
    .register11 .content1 {
        padding: 0;
    }
}

.register11 .row .info .item {
    font-size: 107%;
    line-height: 1.5;
    margin-bottom: 15px;
    position: relative;
    padding-top: 35px;
    /* display: none; */
}

.register11 .row .info .item p {
    margin: 5px 0px;
}

.register11 .form .item {
    text-align: center;
    padding: 0px 15px;
    max-width: 600px;
    margin: 0px auto 30px;
    font-size: 128%;
}

.register11 .row .info .img-form {
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 0%;
    padding-bottom: 70%;
    overflow: hidden;
}

.register11 .row .info .img-form img {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media(max-width: 991px) {
    .register11 .row .info .img-form {
        display: none;
    }
}

.register11 .row .item1 .iframe>h2 {
    margin: 0px 0px 15px;
    text-align: center;
    text-transform: uppercase;
    color: var(--main-color);
    font-size: 157%;
    font-weight: 600;
    line-height: 1.4;
    padding-top: 0px;
}

.register11 .wrap-form>div {
    padding: 0px 8px;
}

.register11 .row .item1 .iframe .form-group label {
    font-weight: 500;
    display: block;
}

.register11 .row .item1 .iframe .short_info {
    text-align: center;
    margin-bottom: 15px;
    margin-top: -10px;
}

.register11 .row .item1 .iframe .form-group .form-control {
    border: 1px solid #ddd;
    box-shadow: none;
    height: 50px;
    width: 100%;
    border-radius: 20px;
    padding-left: 16px;
}

.register11 .row .item1 .iframe .form-group textarea.form-control {
    width: 100% !important;
    min-height: 110px;
}

.register11 .row .item1 .iframe .form-group input {
    border: 1px solid #ddd;
    box-shadow: none;
    height: 40px;
}

@media(max-width: 991px) {
    .register11 .button-86 {
        margin: auto;
    }
}


/*register-popup*/

.register-popup .content {
    padding: 0px 15px;
}

.register-popup .content .title {
    margin: 20px 0 20px;
    text-align: center;
}

.register-popup .content .information {
    text-align: center;
    line-height: 1.5;
}

/*  */

.social-link i {
    font-size: 18px;
    position: relative;
    z-index: 2;
}

.social-link.facebook {
    background: #f8f9fa;
    color: #1877f2;
    border: 1px solid #e3f2fd;
}

.social-link.facebook:hover {
    background: #1877f2;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.social-link.youtube {
    background: #f8f9fa;
    color: #ff0000;
    border: 1px solid #ffebee;
}

.social-link.youtube:hover {
    background: #ff0000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.social-link.zalo {
    background: #f8f9fa;
    color: #0084ff;
    border: 1px solid #e3f2fd;
}

.social-link.zalo:hover {
    background: #0084ff;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 132, 255, 0.3);
}

.social-link.instagram {
    background: #f8f9fa;
    color: #e4405f;
    border: 1px solid #fce4ec;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(225, 48, 108, 0.3);
}

.footer-app p {
    color: #666;
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 500;
}

.app-links {
    display: flex;
    gap: 10px;
}

.app-link img {
    height: 35px;
    width: auto;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.app-link:hover img {
    transform: scale(1.05);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-copyright p {
    color: #666;
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}

.footer-links {
    text-align: right;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    margin: 0 5px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--main-color);
}

.footer-links span {
    color: #ccc;
    margin: 0 5px;
}

@media (max-width: 767px) {
    .footer-main {
        padding: 0px 0px;
    }

    .footer-section {
        margin-bottom: 10px;
        /* text-align: center; */
    }

    .footer-title::after {
        /* left: 50%; */
        /* transform: translateX(-50%); */
    }

    .footer-contact .contact-item {
        justify-content: center;
        text-align: left;
        max-width: 300px;
        margin: 12px auto;
    }

    .footer-social {
        justify-content: center;
    }

    .app-links {
        justify-content: center;
    }

    .footer-links {
        text-align: center;
        margin-top: 15px;
    }

    .footer-copyright {
        text-align: center;
    }
}



.copyright a:hover {
    color: var(--main-color);
}

.owl-carousel .owl-wrapper-outer {
    padding-bottom: 0px;
    margin: auto;
}


/*##### BREADCRUMB #####*/

.wrap-breadcrumb {}

.wrap-breadcrumb .container {}

.breadcrumb {
    white-space: nowrap;
    overflow-x: auto;
    background: transparent;
    border-radius: 0px;
    padding: 0px;
    font-size: 15px;
    font-weight: 500;
    color: #555;
    display: block;
    padding-bottom: 0px;
    border-bottom: none;
    margin: 8px 0px;
    /* border-bottom: 1px solid #333; */
}

.breadcrumb li+li {
    margin-left: 3px;
}

.breadcrumb li a,
.breadcrumb li span {
    color: #414141;
    margin-right: 3px;
}

.breadcrumb li+li a {
    margin-left: 3px;
}

.breadcrumb li+li::before {
    content: "";
    padding: 0px;
}

.breadcrumb li a,
.breadcrumb li span {
    color: #000;
    line-height: 38px;
}


/*##### END BREADCRUMB #####*/

.modalAlert {
    text-align: center;
}

.modalAlert span.close {}

.modalAlert h3 {
    text-align: center;
    font-size: 30px;
    margin: 20px 0px 25px;
    color: var(--main-color);
}

.modalAlert p {
    text-align: center;
    font-size: 18px;
}

.modalAlert .btn {
    position: relative;
    float: none;
    width: 120px;
    opacity: 1;
    text-shadow: none;
    font-weight: 400;
    margin: 20px auto 10px;
    background: var(--main-color);
    border: none;
    border-bottom: 4px solid var(--main-color-hover);
    color: #fff;
    padding: 9px 0px;
    font-size: 15px;
}

.modal-header {
    text-align: center;
    font-weight: 600;
    font-size: 24px;
}

.modal-footer {
    border-top: none;
    padding-top: 0px;
    margin-bottom: 10px;
    text-align: center;
}

.bootstrap-dialog-message {
    font-size: 18px;
    text-align: center;
    margin: 15px 0px;
}

.img_add_cart {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -9999;
    width: 40px;
    height: 40px;
    margin: auto;
    visibility: hidden;
    opacity: 0;
}

.img_add_cart img {
    width: 0px;
}

.box_addcart_success {
    text-align: center;
    background: rgb(0 0 0 / 0.8);
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    position: fixed;
    z-index: 99999;
    left: 0px;
    bottom: 0px;
    right: 0px;
    top: 0px;
    margin: auto;
    width: 220px;
    height: 115px;
    font-size: 16px;
    display: none;
    letter-spacing: 0.6px;
}

.box_addcart_success img {
    display: inline-block;
    width: 50px;
    margin-bottom: 8px;
}

.address-profile {
    padding: 0px;
    margin: 0;
}

.address-profile li {
    list-style-type: none;
}

.address-profile li label {
    font-weight: 500;
    cursor: pointer;
}

.page404 {
    background: #fff;
    text-align: center;
    padding: 80px 0px;
}

.page404 img {
    height: 160px;
}

.page404 .title1 {
    font-size: 40px;
}

.page404 .title2 {
    font-size: 20px;
}

.page404 .btn {
    margin-top: 20px;
}

.alert {
    position: fixed;
    width: 600px;
    margin: 40px auto 0px;
    left: 0px;
    right: 0px;
}


/**/

.galary-album {
    padding: 20px 0px;
    margin: 0px -3px;
}

.galary-album>ul {
    padding: 0px;
    margin: 0px;
}

.galary-album>ul>li {
    list-style: none;
    float: left;
    width: 16.66666667%;
    padding: 3px;
    overflow: hidden;
}

@media(max-width: 767px) {
    .galary-album>ul>li {
        width: 33.33%;
    }
}

.galary-album>ul>li a {
    display: block;
    height: 100%;
    width: 100%;
    cursor: pointer;
}

.galary-album>ul>li img:hover {
    opacity: 0.8;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.iframe-detail {
    width: 100%;
    border: none;
    margin-bottom: 15px;
}

.view_type_product {
    float: right;
}

.view_type_product span {
    display: inline-block;
    padding: 5px;
    font-size: 20px;
    cursor: pointer;
}

.view_type_product span.active {
    color: var(--main-color);
}


/**/

.download-app {
    box-shadow: 0px 0px 10px #ccc;
    color: #000000de;
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    background-color: #fff;
    max-width: 600px;
    padding: 32px;
    margin: 30px auto;
    border-radius: 5px;
    text-align: center;
}

@media(max-width: 767px) {
    .download-app {
        padding: 15px;
    }
}

.download-app>h2 {
    margin: 12px 0px 25px;
    text-align: center;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
}

.download-app>h4 {
    font-size: 18px;
    margin-bottom: 0;
    margin-top: 20px;
    line-height: 1.4;
}

.download-app>a>img {
    max-height: 120px;
    margin-top: 10px;
}

.download-app .row {
    display: flex;
    align-items: center;
}

.down_app {
    text-align: center;
    padding: 0px;
}

.down_app a {
    background: #000;
    padding: 5px 20px;
    display: inline-block;
    border-radius: 5px;
    margin: 8px 0px;
}

.down_app img {
    display: inline-block;
    height: 48px;
}


/**/

.download_app {
    background: #f2f2f2;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    height: 80px;
    position: relative;
    line-height: 15px;
    padding: 8px 0px;
    white-space: nowrap;
    display: none;
}

@media(max-width: 767px) {
    .download_app {
        display: block;
    }
}

.download_app p {
    margin: 0px
}

.download_app>a img {
    width: 62px;
    float: left;
    border-radius: 10px;
    margin: 0px 10px 0px 40px;
    border: 1px solid #e8e8e8;
}

.download_app .name_app a {
    color: #333;
    font-weight: 600;
    font-size: 13px;
}

.download_app .author_app a {
    color: #666;
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    padding-right: 50px;
}

.download_app .start_app {
    display: inline-block;
    height: 9.5px;
    background-image: url(../images/start_app.svg);
    background-size: 10px 19px;
    width: 50px;
    white-space: nowrap;
    background-position: 0 9.5px;
    position: relative;
    top: -1px;
}

.download_app .start_app1 {
    background-position-x: 0;
    background-image: url(../images/start_app.svg);
    width: 45px;
    display: inline-block;
    height: 9.5px;
    background-size: 10px 19px;
    z-index: 1;
    position: absolute;
    top: 0px;
}

.download_app .view_app {
    position: absolute;
    right: 8px;
    top: 0px;
    bottom: 0px;
    margin: auto;
    font-size: 18px;
    height: 26px;
    line-height: 26px;
}

.download_app .view_app a {
    color: var(--main-color);
}

.download_app .close_app {
    position: absolute;
    left: 10px;
    top: 0px;
    bottom: 0px;
    margin: auto;
    width: 24;
    height: 20px;
    text-align: center;
}

.download_app .close_app img {
    width: 15px;
}

.download_app .to_app span {
    display: inline-block;
    width: 18px;
    height: 1px;
    background: #000;
    position: relative;
    top: -4px;
    margin: 0px 3px 0px 2px;
}

.dropdown a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown a:hover {
    background-color: #f1f1f1
}

.dropdown:hover .dropdown-menu {
    display: block;
    font-size: 11px;
}


/*detail-product*/

.detail-product .action button {
    /* margin-top: 20px; */
    margin-right: 20px;
}

.wrap-quantity {
    display: none;
}

.content-product .block-title .title {
    font-size: 200%;
    text-align: left;
    margin-bottom: 30px;
}

.content-product .block-title .title a {
    color: #000;
}

.content-product-detail {
    padding-bottom: 0;
    background: #f9f9f9;
    padding-top: 30px;
    padding-bottom: 30px;
}

.content-product-detail .container {
    /* max-width: 100%; */
    /* padding: 0px 20px; */
}

@media(max-width: 767px) {
    .content-product-detail {
        padding-top: 0px;
    }

    .content-product .block-title .title {
        font-size: 145%;
        text-align: center;
        margin: 10px 0px 0px;
    }
}

.content-product-detail .detail-product {
    background: #fff;
    padding: 0px 10px;
    border-radius: 2px;
}

.detail-product .row {
    margin: 0;
}

.detail-product .owl-buttons {
    position: relative;
}

.content-product-detail .detail-product .images-product-detail {
    padding: 0px;
    /* position: sticky; */
    top: 0;
}

.content-product-detail .detail-product .images-product-detail .zoom-image {
    overflow: hidden;
}

.content-product-detail .detail-product .images-product-detail .zoom-image .owl-item img {
    /* padding: 10px; */
    margin-top: 10px;
    border-radius: 2px;
}

@media(max-width: 767px) {
    .content-product-detail .detail-product .images-product-detail {
        padding: 0px !important;
    }
}

.content-product-detail .detail-product .images-product-detail .thumbs {
    padding: 0;
    display: flex;
    margin: 14px 0px 0px;
}


.content-product-detail .detail-product .images-product-detail .thumbs>div {
    margin-bottom: 0px;
    padding: 0px;
}

.content-product-detail .detail-product .images-product-detail .thumbs .owl-item {
    margin-right: 0px;
}

.content-product-detail .detail-product .images-product-detail .thumbs .owl-item:last-child {
    margin: 0;
}

.content-product-detail .detail-product .images-product-detail .thumbs .item {
    margin: 0px 8px 0px 0px;
}

.content-product-detail .detail-product .images-product-detail .thumbs>div .item {
    border: 1px solid #ddd;
    cursor: pointer;
    list-style-type: none;
    display: inline-block;
    padding-bottom: 55%;
    height: 0px;
    position: relative;
    width: 97%;
    margin: 0;
    border-radius: 2px;
    overflow: hidden;
}

.content-product-detail .detail-product .images-product-detail .thumbs>div {}

.content-product-detail .detail-product .images-product-detail .thumbs>div {
    display: flex;
}

.content-product-detail .detail-product .images-product-detail .thumbs>div>.item {
    width: 25%;
    padding-bottom: 20%;
}

.content-product-detail .detail-product .images-product-detail .thumbs>div .item img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    left: 0;
    top: 0;
    padding: 5px;
    border-radius: 2px;
}

.content-product-detail .detail-product .images-product-detail .thumbs>div .item:hover {
    /* border: 1px solid #56ba47; */
}

.content-product-detail .detail-product .images-product-detail .thumbs .owl-buttons>div {
    position: absolute;
    left: -16px;
    top: -6px;
    background: rgb(0 0 0 / 50%);
    color: #fff;
    width: 30px;
    height: 30px;
    margin-top: -25px;
    font-size: 14px;
    line-height: 30px;
    text-align: center;
    transform: translate(0%, -100%);
    border-radius: 50%;
}

.content-product-detail .detail-product .images-product-detail .thumbs .owl-buttons>div.owl-next {
    left: auto;
    right: -12px;
    padding-left: 2px;
}

/* .content-product-detail .detail-product .targetarea {
    position: relative;
    background: #fff;
    padding-bottom: 70%;
    height: 0px;
    width: 100%;
    margin: 0px -10px;
} */

.content-product-detail .detail-product .targetarea>a {
    position: relative;
    padding-bottom: 53%;
    height: 0px;
    display: block;
    overflow: hidden;
}

/* 
.content-product-detail .detail-product .targetarea img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    bottom: 0px;
    top: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    object-fit: contain;
    width: 100%;
    height: 100%;
    padding: 20px;
    border-radius: 20px;
   
}
 */
.content-product-detail .detail-product .infomation-product-detail {
    padding: 0px 8px;
}

.content-product-detail .detail-product .infomation-product-detail .wrap-scroll-detail {
    padding: 40px 20px 0px 40px;
}

.content-product-detail .detail-product .infomation-product-detail .wrap-scroll-detail .orther-info {
    margin-top: 20px;
    margin-left: 0;
    width: 100%;
    position: relative;
    font-family: var(--font-family);
}

.content-product-detail .detail-product .infomation-product-detail .wrap-scroll-detail .action .btn-booking {
    margin-left: 0px;
}

.content-product-detail .detail-product .infomation-product-detail .wrap-scroll-detail .scroll-detail h1 {
    font-size: 35px;
    margin-top: 0px;
    margin-bottom: 20px;
    color: var(--g9);
    font-family: var(--font-family-key);
}

@media(max-width: 991px) {
    .content-product-detail .detail-product {
        margin-top: 10px;
    }

    .content-product-detail .detail-product .infomation-product-detail {
        padding: 0px;
        background: #fff;
    }

    .content-product-detail .detail-product .infomation-product-detail .wrap-scroll-detail {
        padding: 12px 0;
    }

    .content-product-detail .detail-product .infomation-product-detail .wrap-scroll-detail .action {
        /* position: fixed; */
        bottom: 0px;
        left: 0px;
        width: 100%;
        z-index: 99;
    }

    .action.top10 .btn-key {
        margin: 0;
    }

    .content-product-detail .detail-product .infomation-product-detail .wrap-scroll-detail .action>button {
        width: 50%;
        float: left;
        min-width: inherit;
        border-radius: 0px;
        font-size: 14px;
        border-bottom: none !important;
        padding: 4px 4px;
        text-transform: none;
        min-height: 41px;
    }

    .content-detail {
        margin: 0px 8px 0px;
    }

    .content-product-detail .detail-product .targetarea>a {
        margin-bottom: 10px;
        width: 100%;
        padding-bottom: 80%;
        margin-top: 10px;
    }

    .content-product-detail .detail-product .images-product-detail .thumbs {}

    .content-product-detail .detail-product .images-product-detail .thumbs .owl-buttons>div {
        top: -9px;
        /* border-radius: 10px; */
    }

    .content-product-detail .detail-product .infomation-product-detail .wrap-scroll-detail .scroll-detail h1 {
        font-size: 27px;
    }

    .content-product-detail .detail-product .images-product-detail .thumbs>div .item {
        padding-bottom: 80%;
        width: 96%;
    }

    .content-product-detail .detail-product .targetarea img {
        padding: 0;
        object-fit: cover;
        overflow: hidden;
        border-radius: 18px;
    }

    .content-product-detail .detail-product .images-product-detail .thumbs>div .item img {
        padding: 0px;
    }
}

.content-product-detail .detail-product .infomation-product-detail .title {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 10px;
}

.content-product-detail .detail-product .infomation-product-detail .content-product-combo .title {
    padding: 0;
    border: none;
    font-size: 16px;
    margin-bottom: 6px;
    margin-top: 15px;
}

.content-product-detail .detail-product .infomation-product-detail .ma-sp {
    color: #888;
    font-size: 18px;
    display: block;
    margin-bottom: 6px;
    margin-right: 10px;
    font-weight: 600;
    margin-top: 30px;
}

.content-product-detail .detail-product .infomation-product-detail .info {
    line-height: 24px;
    font-size: 13px;
    margin-bottom: 10px;
    color: #515151;
}

.content-product-detail .detail-product .infomation-product-detail .infor {
    font-size: 17px;
    /* color: var(--text-2); */
    margin-bottom: 24px;
    line-height: 1.5;
    margin-bottom: 0;
}

.content-product-detail .detail-product .infomation-product-detail .info p {
    margin: 0px;
}

.content-product-detail .detail-product .infomation-product-detail .info_cashback {
    font-size: 13px;
    line-height: 20px;
}

.content-product-detail .detail-product .infomation-product-detail .info_cashback {
    font-size: 13px;
    line-height: 20px;
}

.content-product-detail .detail-product .infomation-product-detail .old-price-detail {
    font-size: 16px;
    color: #555;
    font-weight: 600;
    text-decoration: line-through;
}

.content-product-detail .detail-product .infomation-product-detail .price-detail {
    color: #f16101;
    font-size: 30px;
    font-weight: 700;
    margin: 0;
    min-height: 44px;
    display: none;
}

.content-product-detail .detail-product .infomation-product-detail .color {
    margin-bottom: 14px;
}

.content-product-detail .detail-product .infomation-product-detail .color label {
    padding-left: 0px;
    margin-bottom: 0px;
    height: 30px;
    line-height: 28px;
    white-space: nowrap;
}

.content-product-detail .detail-product .infomation-product-detail .wrap-quantity label {
    padding-left: 0px;
    margin-bottom: 0px;
    height: 30px;
    line-height: 28px;
    white-space: nowrap;
}

.content-product-detail .detail-product .infomation-product-detail .color ul {
    margin: 0px;
    padding: 0px;
}

.content-product-detail .detail-product .infomation-product-detail .color ul>li {
    float: left;
    margin-right: 5px;
    border: 2px solid #ddd;
    padding: 2px;
    border-radius: 50%;
    list-style: none;
}

.content-product-detail .detail-product .infomation-product-detail .color ul>li.active,
.content-product-detail .detail-product .infomation-product-detail .color ul>li:hover {
    border: 2px solid #56ba47;
}

.content-product-detail .detail-product .infomation-product-detail .color ul>li span {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
}

.content-product-detail .detail-product .infomation-product-detail .size {}

.content-product-detail .detail-product .infomation-product-detail .size ul {
    padding: 0;
    margin: 0;
}

.content-product-detail .detail-product .infomation-product-detail .size ul li {
    display: inline-block;
    list-style-type: none;
    margin: 6px;
    text-align: center;
    cursor: pointer;
}

.content-product-detail .detail-product .infomation-product-detail .size ul li .img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    margin: 0px auto 7px;
}

.content-product-detail .detail-product .infomation-product-detail .size ul li .img img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

.content-product-detail .detail-product .infomation-product-detail .size ul li p {
    font-size: 13px;
    margin: 0;
}

table.orther-info tr:first-child td {
    padding-top: 0;
    position: relative;
    /* color: var(--red2); */
}

table.orther-info tr td {
    vertical-align: top;
    padding: 6px 0;
    position: relative;
    color: #2d2d2d;
    font-size: 15px;
}

table.orther-info tr td:first-child {
    width: 228px;
    color: var(--red2);
}

table.orther-info tr td:first-child b {
    font-weight: 600;
}

/* 
table.orther-info tr:first-child td:before {
    border-top: 1px solid #d0cdcc;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 12px;
    right: 12px;
}

table.orther-info tr:last-child td:after {
    border-top: 1px solid #d0cdcc;
    content: "";
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
}

table.orther-info tr:last-child td:first-child:after {
    left: 0;
}

table.orther-info tr:last-child td:last-child:after {
    right: 0;
} */

table.orther-info tr:first-child td:first-child:before,
table.orther-info tr:first-child td:last-child:before {
    left: 0;
}

@media (min-width: 1025px) {
    table.orther-info tr:last-child td {
        padding-bottom: 24px;
    }
}

.section-product-detail {
    padding: 20px 0px 0px;
}

.section-product-detail .content-detail {
    padding: 20px;
    background: #ffff;
    border-radius: 2px;
}

.content .img-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.section-product-detail h4 {
    font-size: 23px;
    color: var(--g9);
    font-weight: 700;
    margin-bottom: 30px;
    margin-top: 0px;
    font-family: var(--font-family);
}

.section-product-detail .panel-group .panel-default {
    border: none;
    margin: 0px;
    border-bottom: 1px solid #E8E6E0;
}

.section-product-detail .panel-group .panel-default>.panel-heading+.panel-collapse>.panel-body {
    /* border: none; */
    padding: 30px;
    line-height: 1.6;
    font-size: 16px;
}

.section-product-detail .panel-group .panel-default .panel-heading {
    border: none;
    background: #fff;
    padding: 0px;
}

.section-product-detail .panel-group .panel-default .panel-heading h4 {
    font-size: 116%;
    margin: 0px;
    border: none;
    font-weight: 400;
    padding: 0px 20px;
}

.section-product-detail .panel-group .panel-default .panel-heading h4 a {
    color: var(--red2);
    width: 100%;
    position: relative;
    padding: 20px 0px;
    display: block;
    font-weight: 700;
}

.section-product-detail .panel-group .panel-default .panel-heading h4 a.collapsed {
    color: var(--g9);
    font-weight: 500;
    /* background: var(--g0); */
}

.section-product-detail .panel-group .panel-default .panel-heading h4 a>i {
    position: absolute;
    font-size: 114%;
    top: 23px;
    right: 20px;
    margin: auto;
    text-align: center;
    display: none;
    transition: 0.5s ease;
}

.section-product-detail .panel-group .panel-default .panel-heading h4 a>i.fa-xmark-large {
    display: block;
}

.section-product-detail .panel-group .panel-default .panel-heading h4 a.collapsed>i.fa-xmark-large {
    display: none;
}

.section-product-detail .panel-group .panel-default .panel-heading h4 a>i.fa-plus-large {
    display: none;
}

.section-product-detail .panel-group .panel-default .panel-heading h4 a.collapsed>i.fa-plus-large {
    display: block;
}

.section-product-detail .panel-group .panel-default>.panel-heading+.panel-collapse>.panel-body h2 {
    font-size: 128%;
    margin-bottom: 20px;
    margin-top: 0px;
}

.section-product-detail .panel-group .panel-default>.panel-heading+.panel-collapse>.panel-body ul {
    padding: 0;
    margin: 0;
    margin-left: 30px;
    line-height: 1.6;
}

@media(max-width: 991px) {
    .content .img-info {
        grid-template-columns: repeat(1, 1fr);
    }

    .content-product-detail .detail-product .infomation-product-detail .infor {
        font-size: 14px;
    }

    .section-product-detail .panel-group .panel-default>.panel-heading+.panel-collapse>.panel-body {
        padding: 10px;
        font-size: 14px;
    }

    .section-product-detail .panel-group .panel-default>.panel-heading+.panel-collapse>.panel-body ul {
        margin-left: 20px;
    }
}

@media(max-width: 767px) {
    .section-product-detail .panel-group .panel-default .panel-heading h4 {
        font-size: 87%;
        padding: 0px 10px;
        padding-right: 10px;
    }

    .section-product-detail .panel-group .panel-default .panel-heading h4 a>i {
        top: 21px;
        right: 0;
    }

    .content-detail {
        margin: 0px;
    }
}

/**/

.size_color {
    margin: 0 0 10px 0;
    position: relative;
}

.size_color_0:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.size_color>label {
    display: block;
    margin: 0 0 7px 0;
    font-weight: 600;
}

.size_color>.attr {
    display: inline-block;
}

.size_color>.attr>span {
    border: 1px solid #999;
    display: inline-block;
    padding: 2px 12px;
    border-radius: 4px;
    margin-right: 5px;
    cursor: pointer;
    font-size: 13px;
    color: #999;
    cursor: not-allowed;
}

.size_color_1.size_color>.attr>span,
.size_color.active>.attr>span {
    color: #333;
    border-color: #333;
    cursor: pointer;
}

.size_color>.attr>span.active {
    border-color: var(--main-color);
    background: var(--main-color);
    color: #fff;
    cursor: initial;
}

.cart_checkout .right .table tbody tr td a.name {
    margin-bottom: 10px;
    font-weight: 600;
}

.name_attr {
    margin: 2px 0 0 0;
    font-size: 12px;
    font-weight: 400;
}

.name_attr span {
    color: #222 !important;
    font-size: 12px !important;
}


/**/

.detail-news .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.content-product-detail .nav-tabs {
    border: 1px solid rgba(240, 240, 240, 0.7);
    background: #f6f6f6;
    margin-top: 10px;
}

.detail-news .detail-content .nav-tabs {
    margin-top: 0px;
    margin-bottom: 15px;
}

.content-product-detail .nav-tabs>li>a {
    background: #E5E5E5;
    border: 0px solid #E5E5E5;
    border-top: 0px solid #E5E5E5;
    border-radius: 0px;
    margin-right: 2px;
    padding: 9px 25px;
    text-transform: uppercase;
    font-size: 14px;
    color: #717171;
}

@media(max-width: 767px) {
    .content-product-detail .nav-tabs {
        white-space: nowrap;
        overflow-x: auto;
        padding: 0px 6px;
    }

    .content-product-detail .nav-tabs li {
        float: none;
        margin: 0px;
        display: inline-block;
    }

    table.orther-info tr td:first-child {
        width: 160px;
        font-size: 13px;
    }
}

.content-product-detail .nav li.active a,
.content-product-detail .nav li:hover a {
    list-style: none;
    background: #f16101;
}

.content-product-detail .nav-tabs>li.active>a,
.content-product-detail .nav-tabs>li:hover>a,
.content-product-detail .nav-tabs>li.active>a:focus,
.content-product-detail .nav-tabs>li.active>a:hover {
    border: none;
    color: #fff;
}

.content-product-detail .tab-content {
    background: #fff;
    padding: 15px;
    border: 1px solid rgba(240, 240, 240, 0.7);
    border-top: none;
}

.content-product-detail .content p {
    line-height: 1.5;
    font-size: 15px !important;
    margin-bottom: 5px;
    word-break: break-word;
}

.content-product-detail .content iframe {
    max-width: 100%;
    border: none;
}

.content-product-detail .content img {
    height: auto !important;
    width: 100%;
}

.content-product {
    /* margin-top: 15px; */
    padding-bottom: 30px;
}

.content-product.block-product .container {
    /* max-width: 100%; */
    /* padding: 0px 16px; */
}

.content-product .content {
    padding: 0px;
    /* background: #fff; */
    border-radius: 4px;
    margin-top: 0px;
}

@media(max-width: 767px) {
    .content-product .content {
        padding: 0px;
        background: none;
        margin-top: 4px;
    }

    .content-product.block-product .container {
        padding: 0px 7px;
    }
}


/**/

.item-cate-news {
    /* background: #f9f9f9; */
    /* padding: 10px 0px; */
    /* text-align: left; */
    margin-bottom: 20px;
}

.item-cate-news ul {
    padding: 0;
    margin: 0 -2px;
}

.item-cate-news ul li {
    list-style-type: none;
    list-style-type: none;
    width: auto;
    display: inline-block;
    padding: 0;
    float: none;
}

.item-cate-news ul li h2 {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    min-height: 30px;
    border: 1px solid #ededed;
    border-radius: 30px;
    padding: 7px 20px;
    margin: 2px;
    background: #fff;
}

.item-cate-news ul li h2 a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    padding: 2px 0;
}

.item-cate-news ul li h2 a i {
    font-size: 10px;
    margin-right: 4px;
    position: relative;
    top: -1px;
}


/*Video*/

.block-video {}

.block-video .block-content {}

.block-video .block-content .row {
    margin: 0px -10px;
}

.block-video .block-content .row .wrap-item {
    padding: 0px 10px;
}

@media(max-width: 767px) {
    .block-video .block-content .row .row_home {
        padding: 0;
    }
}

.block-video .block-content .wrap-item {}

.block-video .block-content .wrap-item .item {
    margin: 10px 0px;
    border-radius: 4px;
    overflow: hidden;
}

@media(max-width: 767px) {
    .block-video .block-content .wrap-item .item {
        margin: 4px 0px;
    }
}

.block-video .block-content .wrap-item .item>a {
    display: block;
    height: 0;
    padding-bottom: 60%;
    position: relative;
}

.block-video .block-content .wrap-item .item>a img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    align-items: center;
}

.block-video .block-content .wrap-item .item>a i {
    color: #ed1c24;
    position: absolute;
    font-size: 38px;
    width: 30px;
    height: 17px;
    top: 50%;
    left: 0px;
    right: 0px;
    margin: auto;
    margin-top: -8px;
    background: #fff;
    line-height: 18px;
    border-radius: 18px;
}

.block-video .block-content .wrap-item .item h3 {
    margin: 0;
    font-size: 15px;
    text-align: center;
    padding: 18px;
    background: #fff;
    line-height: 1.4;
}

.block-video .block-content .wrap-item .item h3 a {
    display: block;
    height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.left-anvancde-search {
    display: none;
}


/*Album*/

.block-album {}

.block-album .block-content {}

.block-album .block-content .row {
    margin: 0px -10px;
}

.block-album .block-content .row .wrap-item {
    padding: 0px 10px;
}

@media(max-width: 767px) {
    .block-album .block-content .row {
        margin: 0px -8px;
    }

    .block-album .block-content .row .row_home {
        padding: 0;
    }

    .block-album .block-content .row .wrap-item {
        padding: 0px 8px;
    }
}

.block-album .block-content .wrap-item {}

.block-album .block-content .wrap-item .item {
    margin: 10px 0px;
    border-radius: 4px;
    overflow: hidden;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0 1px 2px rgb(0 0 0 / 15%);
    box-shadow: 0 2px 2px rgb(0 0 0 / 15%);
}

@media(max-width: 767px) {
    .block-album .block-content .wrap-item .item {
        margin: 4px 0px;
    }
}

.block-album .block-content .wrap-item .item>a {
    display: block;
    height: 0;
    padding-bottom: 90%;
    position: relative;
    background: #fff;
}

.block-album .block-content .wrap-item .item>a img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    align-items: center;
}

.block-album .block-content .wrap-item .item h3 {
    padding: 25px 15px 18px;
    text-align: center;
    position: relative;
    margin: 0px;
    background: #fff;
}

.block-album .block-content .wrap-item .item h3 i {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: -21px;
    width: 36px;
    height: 36px;
    background: var(--main-color);
    margin-left: -18px;
    line-height: 24px;
    text-align: center;
    color: #fff;
    font-size: 13px;
    padding: 5px 0 0;
    border: 2px solid #fff;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.block-album .block-content .wrap-item .item h3 a {
    display: block;
    font-size: 14px;
    color: #444;
    text-decoration: none;
    line-height: 20px;
    height: 40px;
    overflow: hidden;
}


/**/

.sidebar-block-right {
    margin-bottom: 15px;
}

.sidebar-block-right>a {
    display: block;
    margin-bottom: 15px;
}

.sidebar-block-right>h3 {
    margin: 0 0 12px;
    font-size: 18px;
    border-left: 3px solid var(--main-color);
    color: var(--main-color);
    padding-left: 8px;
    text-transform: uppercase;
}

.sidebar-block-right .sidebar-content {
    margin: 0px;
    padding: 0px;
}

.sidebar-block-right .sidebar-content ul {}

.sidebar-block-right .sidebar-content li {
    list-style-type: none;
    background: #fff;
    margin: 0px 0px 8px;
    border-radius: 4px;
    padding: 6px;
}

.sidebar-block-right .sidebar-content li:after {
    content: '';
    display: block;
    clear: both;
}

.sidebar-block-right .sidebar-content li .img {
    float: left;
    width: 90px;
    margin-right: 10px;
    height: 65px;
    position: relative;
}

.sidebar-block-right .sidebar-content li .img>.fa.fa-youtube-play {
    position: absolute;
    color: #f41111;
    font-size: 24px;
    width: 24px;
    height: 23px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.sidebar-block-right .sidebar-content li .img>.fa.fa-youtube-play:before,
.sidebar-block-right .sidebar-content li .img>.fa.fa-picture-o:before {
    position: relative;
    z-index: 1;
}

.sidebar-block-right .sidebar-content li .img>.fa.fa-youtube-play:after {
    content: '';
    position: absolute;
    width: 14px;
    height: 12px;
    top: 0;
    left: 0;
    right: 0;
    border: 0;
    margin: auto;
    background: #fff;
    z-index: 0;
    margin-top: 6px;
}

.sidebar-block-right .sidebar-content li .img>.fa.fa-picture-o {
    position: absolute;
    color: var(--main-color);
    font-size: 20px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 22px;
    height: 20px;
}

.sidebar-block-right .sidebar-content li .img>.fa.fa-picture-o:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
    z-index: 0;
    width: 20px;
    height: 16px;
}

.sidebar-block-right.sidebar-block-product .sidebar-content li .img {
    height: 90px;
    border: 1px solid #f1f1f1;
}

.sidebar-block-right .sidebar-content li .img img {
    position: absolute;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.sidebar-block-right .sidebar-content li h3 {
    margin: 5px 0px 0px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    max-height: 50px;
    overflow: hidden;
    float: left;
    width: calc(100% - 100px);
}

.sidebar-block-right .sidebar-content li h3 a {}


/*  */

.article {
    margin-bottom: 15px;
}

.article .block-content {}

.article .block-content ul {
    padding: 0;
}

.article .block-content ul li {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.article .block-content ul li h3 {
    margin: 10px 0px;
    font-size: 15px;
    font-weight: 400;
}

.article .block-content ul li h3 i {}

.btn-popup {
    display: none;
    position: fixed;
    padding: 0px;
    background: transparent;
    overflow-x: hidden;
    overflow-y: auto;
    /* top: 50%; */
    transform: translate(0, 0%);
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.btn-popup .container1 .content .close {
    cursor: pointer;
    display: block;
    height: 30px;
    position: absolute;
    right: 30px;
    top: 35px;
    width: 30px;
    line-height: 30px;
    opacity: 1;
    background-size: cover;
    color: #000;
    font-size: 163%;
    text-align: center;
    z-index: 10;
}

.btn-popup:before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* background: rgba(255, 255, 255, 0.25); */
    /* backdrop-filter: blur(12px); */
}

.btn-popup .container1 .content {
    width: auto;
    margin: 30px auto;
    z-index: 1000;
    max-width: 500px;
}

.btn-popup .container1 .content .content1 {
    /* background: #f1f1f1; */
    padding: 40px 0px 30px;
    border-radius: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    /* background-position: center; */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.btn-popup .row .item1 .iframe>h2 {
    margin-bottom: 50px;
}

.btn-popup .row .item1 .iframe>h2,
.btn-popup .row .item1 .iframe .form-group label {
    color: var(--main-color);
}

.btn-popup .btn-key {
    margin-top: 10px !important;
}

@media (max-width: 991px) {
    .btn-popup .container1 .content {
        max-width: 550px;
    }

    .btn-popup .container1 .content .content1 {
        padding: 40px 20px;
    }
}

@media (max-width: 767px) {
    .btn-popup .container1 .content {
        max-width: 420px;
    }

    .btn_pop_close {
        top: 30px !important;
        right: 30px;
    }

    .btn-popup.register11 .row .item1 .iframe .form-group .form-control {
        height: 40px;
    }

    .btn-popup .row .item1 .iframe>h2 {
        font-size: 128%;
    }

    .btn-popup .container1 .content .content1 {
        padding: 50px 25px;
    }

    .register11 .row>div {
        padding: 0px;
    }
}


/*register-popup*/

.register-popup {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
    -webkit-transition: opacity .15s linear;
    -o-transition: opacity .15s linear;
    transition: opacity .15s linear;
    visibility: hidden;
    opacity: 0;
}

.register-popup .form-default .form-group .btn-key {
    margin: 30px auto 0px;
    background: var(--main-color-hover);
    border: none;
    border-radius: 20px;
    padding: 15px 35px;
}

.register-popup .form-default .form-group .btn-key:hover {
    background: var(--main-color) !important;
}

.register-popup.active {
    opacity: 1;
    visibility: visible;
}

.register-popup .content {
    max-width: 550px;
    margin: 100px auto 0px;
    background: #fff;
    position: relative;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border-radius: 20px;
    outline: 0;
    -webkit-box-shadow: 0 3px 9px rgb(0 0 0 / 50%);
    box-shadow: 0 3px 9px rgb(0 0 0 / 50%);
    padding: 25px 35px;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

@media(max-width: 767px) {
    .register-popup .content {
        max-width: 350px;
        top: 50%;
        transform: translate(0px, -50%);
    }
}

.register-popup .content .close {}

.register-popup .content .form {}

.register-popup .content .title {
    margin: 20px 0 20px;
    text-align: center;
    color: var(--main-color);
    font-weight: 900;
}

.register-popup .content .information {
    text-align: center;
    line-height: 1.5;
}

.register-popup .content .form-default {}

.register-popup .content .form-group {}

.register-popup .content .form-group input,
.register-popup .content .form-group select,
.register-popup .content .form-group textarea {
    border-radius: 20px;
    background: #fff;
    border: none;
    box-shadow: 0 8px 32px rgb(0 0 0 / 10%);
}

.overlay-form-popup {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 500;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .15s linear;
    -o-transition: opacity .15s linear;
    transition: opacity .15s linear;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
}

.register-popup.active+.overlay-form-popup {
    opacity: 1;
    visibility: visible;
}

.job-apply {
    position: relative;
    overflow: hidden;
}

.job-apply .item {
    margin-bottom: 20px;
    box-shadow: none;
    display: block;
    border-radius: 0px;
}

.job-apply .item h3 {
    text-align: center;
    font-size: 138%;
    font-weight: 600;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
}

.job-apply .item .info {
    text-align: left;
    margin-bottom: 10px;
    color: #686868;
    font-weight: 500;
    padding: 0px;
    display: block;
    border-bottom: 1px dashed;
    border-radius: 0px;
}

.job-apply .item .img {
    display: block;
    position: relative;
    height: 0;
    padding-bottom: 50%;
    overflow: hidden;
}

.job-apply .row {
    display: block;
    /* flex-wrap: wrap; */
    /* margin: 0; */
}

.job-apply .row .row_home>div {
    padding: 0px;
}

.job-apply .item .img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    max-width: 150px;
    max-height: 150px;
    margin: auto;
}

.top10 {
    margin-top: 40px;
    justify-content: left;
}


/*  */

.about {
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.about .white-box {
    padding: 30px 50px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 10px;
    margin-bottom: 70px;
    text-align: justify;
    line-height: 1.7;
}

.about .white-box ul,
.about .white-box ol {
    margin-left: 20px;
}

.about .block-title .title {
    font-size: 242%;
    font-weight: 900;
    margin-bottom: 0px;
    position: relative;
    line-height: 1.6;
    font-weight: 600;
    color: var(--main-color-hover);
    text-align: left;
    padding-left: 70px;
    padding-bottom: 0px;
}

.about .block-title span {
    display: block;
    position: relative;
    width: 76px;
    height: 1.5px;
    background: var(--main-color-hover);
    top: -2px;
}

.about .block-title span:before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 10px;
    height: 10px;
    background: var(--main-color-hover);
    border-radius: 50px;
    right: -7px;
    top: -5px;
}

/* .about .top0 .title:before {
    
} */

.about .block-title .title a {
    color: var(--main-color);
}

.about .top0 .title a {
    color: #ffff;
}

.about .wrap-breadcrumb {
    padding: 130px 0;
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 2;
}

.about .wrap-breadcrumb .breadcrumb,
.about .wrap-breadcrumb .breadcrumb li>a,
.about .wrap-breadcrumb .breadcrumb li>span {
    text-align: center;
    color: #fff;
}

.about .wrap-breadcrumb .breadcrumb li>a,
.about .wrap-breadcrumb .breadcrumb li>span {
    font-size: 114%;
    letter-spacing: 1px;
}

.about .wrap-breadcrumb::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: -1;
}

.about .block-title {
    margin-top: 0px;
    margin-bottom: 50px;
}

.about .block-title.top0 .title {
    font-size: 250%;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-align: center;
    z-index: 2;
}

.about .wrap-menu {
    background: #f1f1f1;
}

.about .wrap-menu ul {
    padding: 0px;
    margin: 0px;
    text-align: center;
}

.about .wrap-menu ul li {
    list-style-type: none;
    display: inline-block;
    position: relative;
}

.about .wrap-menu ul li::before {
    content: '';
    position: absolute;
    top: 15px;
    width: 1px;
    height: 30px;
    background: var(--main-color);
    right: 0px;
}

.about .wrap-menu ul li:last-child::before {
    display: none;
}

.about .wrap-menu ul li a {
    padding: 18px 18px;
    display: block;
    position: relative;
    font-weight: 700;
    letter-spacing: 0.8px;
}


/*  */

.section-about-1 {
    padding: 70px 0px 130px;
    background: #f9f9f9;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
}

.section-about-1 .row>div>.row {
    margin: 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.section-about-1 .row>div>.row .item {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.section-about-1 .row>div>.row .item .stats {
    display: inline-block;
}

.section-about-1 .row>div>.row .item h3.num,
.section-about-1 .row>div>.row .item span {
    font-size: 403%;
    font-weight: 700;
    color: var(--main-color-hover);
    margin: 0px;
    text-align: center;
    /* position: relative; */
    /* display: inline-block; */
    margin-right: 10px;
}

.section-about-1 .row>div>.row .item span {
    vertical-align: super;
    font-size: 272%;
    margin: 0px;
    position: absolute;
    top: -14px;
    display: inline-block;
}

.section-about-1 .row>div>.row .item p {
    font-size: 142%;
    color: var(--main-color);
    font-weight: 600;
    text-align: center;
}

.section-about-1 .row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.about-content {
    font-size: 114%;
    padding: 50px 0px 30px 60px;
    position: relative;
    color: #fff;
    z-index: 1;
    /* background: var(--main-color-hover); */
    margin-bottom: 50px;
}

.about-content:before {
    content: '';
    position: absolute;
    width: 160%;
    height: 100%;
    background: var(--main-color-hover);
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(to right, #e53935 0%, #fce4ec 100%); */
    background: linear-gradient(90deg,
            #ed1c24 0%,
            #f87b7b 40%,
            #f9f9f9 100%);
}

/*  */

.section-about-2 {
    position: relative;
    padding: 70px 0px 130px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.section-about-2 .content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.section-about-2 .item {
    background: #ffffff;
    border-radius: 50%;
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    transform: scale(1.1) !important;
    z-index: 2;
}

.section-about-2 .item:nth-child(2) .iframe {
    background: var(--main-color);
}

.section-about-2 .item:nth-child(2) {
    z-index: 1;
}

.section-about-2 .item .iframe {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: var(--main-color-hover);
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.section-about-2 .item .name {
    font-size: 200%;
    /* max-width: 200px; */
    margin-left: auto;
    margin-right: auto;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.5;
}

.section-about-2 .item .img-icon {
    position: relative;
    height: 100px;
    width: 100px;
    overflow: hidden;
    /* margin: auto; */
}

.section-about-2 .item .img-icon img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .section-about-1 {
        padding: 50px 0px;
        background-size: cover;
        position: relative;
    }

    .section-about-1:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: #f9f9f9;
        opacity: 0.2;
    }

    .section-about-2 .item {
        width: 245px;
        height: 245px;
    }

    .section-about-2 .item .name {
        font-size: 134%;
    }

    .section-about-2 .item .img-icon {
        width: 70px;
        height: 70px;
    }

    .section-about-2 .item .iframe {
        width: 230px;
        height: 230px;
    }
}

/*  */

.section-about-3 {
    position: relative;
    padding-bottom: 70px;
    padding: 70px 0px 70px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.section-about-3 .favicon {
    text-align: center;
    margin-bottom: 30px;
}

.section-about-3:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0.5;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.section-about-3 .item {
    display: flex;
    gap: 20px;
    padding: 20px 30px;
    border: 1px solid var(--main-color-hover);
    border-radius: 30px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.section-about-3 .item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 30px;
    opacity: 0.8;
    z-index: -1;
}

.section-about-3 .item .name {
    font-size: 210%;
    margin-bottom: 20px;
    font-weight: 900;
}

.section-about-3 .item .content p {
    margin-bottom: 20px;
    font-size: 120%;
}

.section-about-3 .img-icon {
    width: 80px;
    height: 80px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.section-about-3 .img-icon img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*  */
.section-about-4 {

    position: relative;
    overflow: hidden;
}

.section-about-4 .wrap {
    padding: 70px 0px;
}

.section-about-4 .wrap .block-title {
    padding-bottom: 48px;
}

.section-about-4 .img {
    position: relative;
    height: 0px;
    padding-bottom: 143%;
    overflow: hidden;
}

.section-about-4 .img img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-about-4 .content {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    padding: 0px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
    position: relative;
}

.section-about-4 .content .item {
    position: absolute;
    width: 250px;
    height: 202px;
    text-align: center;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-about-4 .content .item.iframe1,
.section-about-4 .content .item.iframe2 {
    top: -59px;
    left: -14px;
    height: 205px;
    justify-content: space-between;
    /* width: 250px; */
}

.section-about-4 .content .item.iframe1 p {}

.section-about-4 .content .item.iframe2 {
    right: 0%;
    left: auto;
}

.section-about-4 .content .item.iframe3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;

}

.section-about-4 .content .item.iframe3 .name {
    font-size: 142%;
    margin-bottom: 10px;
}

.section-about-4 .content .item.iframe4 {
    bottom: -70px;
    left: -14px;
    justify-content: space-between;
}

.section-about-4 .content .item.iframe5 {
    bottom: -57px;
    right: 0;
    justify-content: space-between;
}

.section-about-4 .content .item .name {
    /* max-width: 100px; */
    color: var(--main-color-hover);
    margin: 0px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 189%;
}

@media (max-width: 991px) {
    .section-about-4 .wrap {
        margin-bottom: 50px;
    }

    .section-about-4 .content .item.iframe1,
    .section-about-4 .content .item.iframe2 {
        width: 300px;
        top: -37px;
    }

    .section-about-4 .content .item p {
        margin: 0px 20px;
    }

    .section-about-4 .content .item.iframe3 p {
        margin: 0px;
    }

    .section-about-4 .content .item.iframe4 {
        bottom: -70px;
        left: 6px;
        height: 230px;
    }

    .section-about-4 .content .item.iframe5 {
        bottom: -70px;
        height: 230px;
        right: 20px;
    }

    .section-about-4 .img {
        padding-bottom: 70%;
    }
}

@media (max-width: 767px) {
    .section-about-1 {
        background-image: none !important;
    }

    .section-about-2 {
        background-size: cover;
        padding-bottom: 50px;
    }

    .section-about-1 .row>div {
        padding: 0px;
    }

    .section-about-1 .row>div>.row .item h3.num {

        font-size: 350%;
    }

    .about-content {
        padding-left: 15px;
        padding-right: 10px;
    }

    .section-about-3 {
        padding: 50px 0px 0px;
    }

    .section-about-3 .item {
        flex-wrap: wrap;
        padding: 20px;
    }

    .section-about-4 .wrap .block-title {
        padding-bottom: 100px;
    }

    .section-about-4 .row>div {
        padding: 0px 5px;
    }

    .section-about-4 .wrap {
        /* padding: 0px 0px 70px; */
        padding-top: 30px;
    }



    .section-about-3 .item .content p {
        font-size: 100%;
    }
}

@media (max-width: 520px) {

    .section-about-4 .content .item.iframe1,
    .section-about-4 .content .item.iframe2 {
        width: 243px;
        height: 170px;
        top: -84px;
    }

    .section-about-4 .content .item .name {
        font-size: 108%;
    }

    .section-about-4 .content .item.iframe1 {
        left: -17px;
        height: 190px;
        top: -86px;
    }

    .section-about-4 .content .item.iframe2 {
        right: 5px;
        top: -66px;
    }

    .section-about-4 .content .item p {
        margin: 0px 30px 0px 40px;
        font-size: 95%;
        padding: 5px 10px;
    }

    .section-about-4 .content .item.iframe3 {
        width: 150px;
    }

    .section-about-4 .content .item.iframe4 {
        width: 261px;
        height: 191px;
        left: -23px;
        bottom: -90px;
    }

    .section-about-4 .content .item.iframe5 {
        width: 246px;
        height: 180px;
        right: -6px;
        bottom: -73px;
    }

    .section-about-4 .content .item.iframe3 .name {
        font-size: 79%;
        /* max-width: 100px; */
        margin-left: auto;
        margin-right: auto;
        margin-top: 20px;
    }

    .section-about-4 .content .item.iframe2 .name {
        margin-left: 53px;
    }

    .section-about-4 .content .item.iframe3 p {
        margin: 0px 10px;
    }

    .section-about-4 .content {
        transform: scale(1.05);
    }

    .section-about-4 .content .item.iframe1 .name {
        margin-right: 35px;
    }

    .section-about-4 .content .item.iframe2 .name {}

    .section-about-4 .content .item.iframe5 .name {
        margin-left: 51px;
    }

    .section-about-4 .content .item.iframe4 .name {
        margin-right: 45px;
    }

    .section-about-4 .content .item.iframe3 p {
        padding: 0px;
        font-size: 77%;
    }
}

@media (max-width: 425px) {

    .section-about-4 .content .item.iframe1,
    .section-about-4 .content .item.iframe2 {
        width: 243px;
        height: 170px;
        top: -84px;
    }

    .section-about-4 .content .item .name {
        font-size: 108%;
    }

    .section-about-4 .content .item.iframe1 {
        left: -40px;
        height: 190px;
        top: -99px;
    }

    .section-about-4 .content .item.iframe2 {
        right: -21px;
    }

    .section-about-4 .content .item p {
        margin: 0px 30px 0px 40px;
        font-size: 95%;
        padding: 5px 10px;
    }

    .section-about-4 .content .item.iframe3 {
        width: 150px;
    }

    .section-about-4 .content .item.iframe4 {
        width: 260px;
        height: 169px;
        left: -42px;
        bottom: -89px;
    }

    .section-about-4 .content .item.iframe5 {
        width: 246px;
        height: 152px;
        right: -26px;
        bottom: -70px;
    }

    .section-about-4 .content .item.iframe3 .name {
        font-size: 79%;
        /* max-width: 100px; */
        margin-left: auto;
        margin-right: auto;
        margin-top: 20px;
    }

    .section-about-4 .content .item.iframe2 .name {
        margin-left: 53px;
    }

    .section-about-4 .content .item.iframe3 p {
        margin: 0px 10px;
    }

    .section-about-4 .content {
        transform: scale(1.05);
    }

    .section-about-4 .content .item.iframe1 .name {
        margin-right: 35px;
    }

    .section-about-4 .content .item.iframe2 .name {}

    .section-about-4 .content .item.iframe5 .name {
        margin-left: 51px;
    }

    .section-about-4 .content .item.iframe4 .name {
        margin-right: 45px;
    }

    .section-about-4 .content .item.iframe3 p {
        padding: 0px;
        font-size: 77%;
    }
}

/*  */

.bottom-right-banner .title {
    background-color: red;
    color: #ffff;
    position: fixed;
    bottom: 15px;
    right: 15px;
    opacity: .8 !important;
    z-index: 100;
    box-shadow: 2px 2px 3px #999;
    font-size: 100%;
    margin-bottom: 16px;
    padding: 12px 20px;
}

.bottom-right-banner .title span {
    margin-left: 20px;
    text-align: center;
    font-size: 164%;
    color: #fff;
}


/**/

.short_product {
    /* display: flex; */
    margin: -10px 0 10px 0;
    white-space: nowrap;
    overflow-x: auto;
}

.short_product .short_price {
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.short_product .short_price span {
    margin-right: 10px;
    color: rgb(102, 102, 102);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.short_product .short_price select {
    background-position: center right 20px;
    width: auto;
    height: 47px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border: 1px solid #eee;
    border-radius: 10px;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAHCAYAAADebrddAAAAkElEQVQoU2P8kCknyMzGPPPvr7/pAtMfvWdAA5/yFcpBQnwTH3QyfslX6vjP8L+cgeH/2b+//rkiawApZGRg7GBgYHj/99dfZUaQrs8FijMZ/jOkIWtAVsj0n8mVe9Lds2DF6Br+MzCshpkIUwhSA1eMqgGs/z2yQgzFSBpC0RViVQwS/FAopyTQ/+geesgAAPbFT5B3tSy1AAAAAElFTkSuQmCC);
    background-position: center right 10px;
    background-repeat: no-repeat;
    padding: 0 25px 3px 20px;
    width: 100%;
    min-width: 130px;
    max-width: 100%;
    color: #000;
    font-size: 16px;
    background: var(--g0);
}

.short_product .short_price select:focus {
    box-shadow: none;

}

.contact .form-login {
    padding: 20px;
    background: #fff;
    border-radius: 20px;
}

.contact img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.job-list {
    position: relative;
    overflow: hidden;
}

.job-list .wrap-breadcrumb {
    padding: 10px 0px;
    border-top: 1px solid #cccc;
    border-bottom: 1px solid #cccc;
}

.section-job-1 {
    padding: 70px 0px 0px;
    position: relative;
}

.section-job-1 .row .wrap-item {
    padding-top: 50px;
}

.section-job-1 .row .wrap-item .iframe h4 {
    font-size: 142%;
    border-bottom: 1px solid #dddd;
    padding-bottom: 15px;
}

.section-job-1 .row .wrap-item .iframe .info {
    font-size: 114%;
}

.section-job-1 .item .title {
    font-size: 300%;
    color: var(--main-color);
    font-weight: 900;
    margin: 0px;
    max-width: 300px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.section-job-1 .item .content {
    font-size: 150%;
    line-height: 1.6;
    color: var(--main-color-hover);
}


/*  */

.section-job-2 {
    padding-bottom: 70px;
}

.section-job-2 .item .content {
    color: #414241;
}


/*  */

.section-job-3 {}

.section-job-3 .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0px;
}

.section-job-3 .row>div {
    display: flex;
    flex-direction: column;
    padding: 0px;
}

.section-job-3 .item {
    background: #062b3e;
    color: #ffff;
    padding: 50px;
}

.section-job-3 .item .title {
    font-size: 241%;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 40px;
}

.section-job-3 .item .content {
    font-size: 135%;
}

.section-job-3 .img {
    position: relative;
    height: 0;
    padding-bottom: 100px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.section-job-3 .img img {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: auto;
}


/*  */

.section-job-4 {
    padding: 70px 0px 0px;
}

.section-job-4 .row>div .row {
    margin: 0px;
    display: flex;
    flex-wrap: wrap;
}

.section-job-4 .row>div .row>div {
    display: flex;
    flex-direction: column;
}

.section-job-4 .row>div .row>div .item {
    padding-bottom: 40px;
}

.section-job-4 .row>div .row>div .item .info {
    font-size: 114%;
    line-height: 1.7;
}

.section-job-4 .row>div .row>div .item .info ul {
    padding-left: 40px;
    font-size: 100%;
}

.section-job-4 .row>div .row>div .item .info ul li {
    /* font-size: 91%; */
    padding-top: 10px;
}

.section-job-4 .row>div .row>div .item h4 {
    font-size: 142%;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #cccc;
}


/*  */

.section-job-5 {
    padding: 20px 0px 70px;
}

.section-job-5 .item .content {
    /* padding-left: 40px; */
}

.section-job-5 .item .content ul {
    list-style-type: none;
}

.section-job-5 .item .content ul li {
    padding: 20px 0px;
    margin-bottom: 10px;
    border: 1px solid #cccc;
    border-left: 0;
    border-right: 0;
    font-weight: 600;
}

.section-job-5 .item .content ul li a {
    color: #707070;
}

.section-job-5 .item .content ul li a span {
    margin: 0px 20px;
    display: inline-block;
    border: 1px solid;
    border-radius: 50px;
    width: 35px;
    height: 35px;
    line-height: 31px;
    text-align: center;
    color: #cccc;
}

.section-job-5 .item .subtitle {
    color: var(--main-color-hover);
    font-size: 51px;
    margin: 0px 0px 45px;
    font-family: 'DollyDots';
}

@media (max-width: 767px) {
    .section-job-1 {
        padding: 50px 0px 0px;
    }

    .section-job-1 .item .title {
        max-width: 100%;
        font-size: 250%;
    }

    .section-job-1 .row .wrap-item .iframe {
        padding-bottom: 20px;
    }

    .section-job-2 .item .content {
        padding-bottom: 30px;
    }

    .section-job-3 .item {
        padding: 30px;
    }

    .short_product .short_price select {
        height: 39px;
        width: auto;
        padding: 0px 10px;
        text-align: left;
    }

    .short_product {
        gap: 20px;
    }

    .short_product .short_price span {
        font-size: 12px;
    }
}

/* Specs grid */
.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
}

.spec-item {}

.spec-label {
    font-size: 12px;
    font-weight: 900;
    color: var(--red2);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 2px;
}

.spec-value {
    font-size: 14px;
    color: #888;
    font-weight: 500;
}

.spec-item.full {
    grid-column: 1 / -1;
}

/* CTA area */
.cta-area {
    margin-top: 24px;
    padding: 20px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.cta-note {
    font-size: 12px;
    color: var(--text-3);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cta-note svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    opacity: .6;
}

.cta-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 11px 16px;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s;
    border: none;
    text-decoration: none;
    letter-spacing: .01em;
}

.btn svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
    flex-shrink: 0;
}

.btn-primary {
    background: var(--red);
    color: #fff;
}

.btn-primary:hover {
    background: #a93226;
}

.btn-outline {
    background: var(--surface);
    color: var(--navy);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--navy-mid);
    background: #F4F6FA;
}

/* Meta info row */
.meta-info-row {
    display: flex;
    gap: 16px;
    margin-top: 14px;
    font-size: 12px;
    color: var(--text-3);
}

.meta-info-row span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.rx-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #F9ECEA;
    color: var(--red);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .06em;
    padding: 4px 10px 4px 8px;
    border-radius: 4px;
    border: 1px solid #E8C4BF;
    margin-bottom: 14px;
}

.meta-divider {
    height: 1px;
    background: #E8E6E0;
    margin: 20px 0;
}

.section-eyebrow {
    font-size: 11px;
    font-weight: 600;
    color: var(--red);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.panel-group {
    border: 1px solid #E8E6E0;
    border-radius: 10px;
    overflow: hidden;
}

.section-product-detail {
    display: flex;
    align-items: flex-start;
}

.section-product-detail .container {
    padding: 0px;
}

.section-product-detail .info-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    flex-wrap: wrap;
    /* min-height: 100vh; */
}

.section-product-detail .info-left {
    width: 26%;
    position: sticky;
    top: 80px;
    height: fit-content;
}

.info-right {
    width: 70%;
    position: relative;
    overflow: hidden;

}

.section-product-detail .info-title {
    padding: 18px 14px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: 0.3s;
    user-select: none;
    transition: 0.5s ease;
}

.section-product-detail .info-title:hover {
    color: #ffff;
    background: var(--g9);
    border-radius: 10px;
}

.section-product-detail .info-title.active {
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    background: var(--pharma);
    letter-spacing: 0.005em;
    border-radius: 10px;
    color: #ffff;
}

.section-product-detail .info-content {
    display: none;
    animation: fadeUp .35s ease;
    /* margin-bottom: 30px;
    position: sticky;
    top: 0; */
    scroll-margin-top: 0px;
    /* display: none; */

}

.section-product-detail .info-content p {
    padding-left: 20px;
}

.section-product-detail .info-content.active {
    display: block;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.accordion {
    border: 1px solid #E8E6E0;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid #E8E6E0;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #ffff;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    color: #1A2340;
    transition: background .15s;
    gap: 12px;
}

.accordion-trigger:hover {
    background: var(--cream);
}

.accordion-trigger.open {
    background: var(--pharma);
    color: #fff;
    font-weight: 600;
}

.accordion-icon {
    width: 24px;
    height: 24px;
    border: 1px solid #E8E6E0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .2s;
    background: #FAFAF7;
}

.accordion-trigger.open .accordion-icon {
    background: #ffff;
    border-color: #ffff;
    transform: rotate(45deg);
}

.accordion-icon svg {
    width: 12px;
    height: 12px;
}

.accordion-trigger svg path {
    stroke: #4A5568;
}

.accordion-trigger.open svg path {
    /* stroke: #ffff; */
}

.accordion-body {
    display: none;
    padding: 16px 20px 20px;
    background: #ffff;
    border-top: 1px solid #F0EDE8;
}

.accordion-body.open {
    display: block;
}

.accordion-body h2 {
    font-size: 136%;
}

.accordion-body p {
    line-height: 1.75;
    padding: 0 !important;
}

.accordion-body p:last-child {
    margin-bottom: 0;
}

.accordion-body ul {}

.accordion-body li {
    color: #4A5568;
    font-size: 12px;
    padding-left: 10px;
}

.accordion-body li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 5px;
    background: var(--red-mid);
    border-radius: 50%;
}

.synced .item {
    border: 2px solid #ff6600 !important;
}

.targetarea .owl-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
}

.targetarea .owl-prev,
.targetarea .owl-next {
    position: absolute;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
}

.targetarea .owl-prev {
    left: 10px;
}

.targetarea .owl-next {
    right: 10px;
}

@media(max-width: 991px) {
    .rx-badge {
        font-size: 10px;
    }

    table.orther-info tr td {
        font-size: 14px;
    }

    .section-product-detail .info-wrapper {
        display: none;
    }

    .accordion {
        display: block !important;
    }

    .section-product-detail .content-detail {
        padding: 20px 10px;
    }
}