:root {
    --main-color: #007dd1;
    --main-color-hover: #0274c1;
    --font-family-key: 'Arial', sans-serif;
}

body {
    font-family: var(--font-family-key);
    font-size: 14px;
    font-weight: 400;
    color: #222;
    top: 0px !important;
    position: relative;
    /* background: #f2f2f2; */
    background: #fff;
}

.clear {
    clear: both;
}

.container {
    width: 100% !important;
    max-width: 1200px;
}

.container-fluid {
    position: relative;
    max-width: 1350px;
}

a {
    text-decoration: none;
    color: #222;
}

a:hover,
a:focus {
    color: var(--main-color);
    text-decoration: none;
}

button,
button:focus,
select,
select:focus {
    outline: none;
}

.relative {
    position: relative;
}

.relative-2 {
    position: relative;
    top: -2px;
}

.relative-3 {
    position: relative;
    top: -3px;
}

.relative-4 {
    position: relative;
    top: -4px;
}

.relative-5 {
    position: relative;
    top: -5px;
}

img {
    max-width: 100%;
    display: inline-block;
}

.top0 {
    margin-top: 0px !important;
}

.top3 {
    margin-top: 3px !important;
}

.top4 {
    margin-top: 4px !important;
}

.top5 {
    margin-top: 5px !important;
}

.top6 {
    margin-top: 6px !important;
}

.top8 {
    margin-top: 8px !important;
}

.top10 {
    margin-top: 10px !important;
}

.top12 {
    margin-top: 12px !important;
}

.top14 {
    margin-top: 14px !important;
}

.top15 {
    margin-top: 15px !important;
}

.top-3 {
    margin-top: -3px !important;
}

.top-4 {
    margin-top: -4px !important;
}

.top-5 {
    margin-top: -5px !important;
}

.top-6 {
    margin-top: -6px !important;
}

.top-8 {
    margin-top: -8px !important;
}

.top-10 {
    margin-top: -10px !important;
}

.top-12 {
    margin-top: -12px !important;
}

.top-14 {
    margin-top: -14px !important;
}

.top-15 {
    margin-top: -15px !important;
}

.mobile {
    display: none;
}

.noborder {
    border: none !important;
}

@media(max-width: 767px) {
    .container {
        padding: 0px 8px;
    }

    .container .row {
        margin: 0px -8px;
    }

    .container .row>div {
        padding: 0px 8px;
    }

    .mobile {
        display: block;
    }

    .destop {
        display: none !important;
    }
}

.scroll-top {
    cursor: pointer;
    position: fixed;
    bottom: 90px;
    right: 4px;
    display: none;
    z-index: 99;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    text-align: center;
    font-size: 13px;
    background: var(--main-color);
    color: #fff !important;
    line-height: 32px;
    -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;
}

.white-box {
    background: #fff;
    border-radius: 4px;
    padding: 20px;
}

@media(max-width: 767px) {
    .white-box {
        padding: 10px;
    }
}

.btn-add-cart {
    background: #fff;
    border: 1px solid var(--main-color);
    color: var(--main-color) !important;
    outline: none !important;
}

.btn-add-cart:hover {
    background: var(--main-color);
    border: 1px solid var(--main-color);
    color: #fff !important;
}

.btn-add-cart i {
    font-size: 14px;
}

.btn-add-cart span {
    display: inline-block;
    margin-left: 5px;
}

@media(max-width: 767px) {
    .btn-add-cart span {
        display: block;
        font-size: 10px;
        margin-left: 0px;
        margin-top: -2px;
    }

    .btn-add-cart {
        background: #56ba47;
        border: 1px solid #56ba47;
        color: #fff !important;
    }
}

.nopadding-l {
    padding-left: 0px;
}

.nopadding-r {
    padding-right: 0px;
}


/**/

.header {
    /* background: var(--main-color); */
    position: relative;
    z-index: 5;
    /* padding-bottom: 12px; */
}

.header-toolbar {
    height: 32px;
    line-height: 32px;
    color: #fff;
    font-size: 13px;
    background: var(--main-color-hover);
    display: none;
}

@media(max-width: 767px) {
    .header {
        margin-bottom: 0px;
    }

    .header-toolbar {
        /* border-bottom: 1px solid #eaeaea; */
    }
}

.header-toolbar a {
    color: #fff;
}

.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-right: 10px;
    border-right: 1px solid;
    padding-right: 13px;
    line-height: 10px;
    display: inline-block;
}

.header-toolbar .login-menu a:last-child {
    border-right: none;
    padding-right: 0px;
    margin-right: 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;
}


/**/

.header-main {
    position: relative;
}

.header-main .row {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media(max-width: 767px) {
    .header-main .row {
        display: block;
    }
}

.header-main .logo {
    display: block;
    position: relative;
    z-index: 1;
    text-align: left;
    line-height: 68px;
    margin: 15px 0px;
}

.header-main .logo img {
    display: inline-block;
    max-height: 90px;
}

.wrap-menu-top {
    position: static;
    background: var(--main-color);
}

.icon-cate-mobi {
    display: none;
    position: absolute;
    top: 6px;
    left: 8px;
    padding: 10px;
    cursor: pointer;
    z-index: 99;
}

.icon-cate-mobi span,
.icon-menu-mobi span {
    display: block;
    width: 26px;
    height: 3px;
    border-radius: 1px;
    background: var(--main-color);
    margin: 4px 0px;
}

.icon-menu-mobi {
    display: none;
    position: absolute;
    top: 29px;
    left: 0px;
    padding: 6px 10px 7px;
    cursor: pointer;
    z-index: 99;
    font-size: 13px;
}

@media(min-width: 768px) {
    .header-main .menu-top {
        display: block !important;
        padding-right: 80px;
    }
}

@media(max-width: 767px) {
    .header-main {
        padding-top: 0px;
    }

    .header-main .menu-top {
        display: none;
        margin: 0px -8px;
    }

    .header-main .logo {
        line-height: 50px;
        text-align: center;
        margin: 10px 0px 6px;
    }

    .header-main .logo img {
        max-height: 65px;
    }

    .icon-cate-mobi {
        display: none;
    }

    .icon-menu-mobi {
        display: block;
    }
}

.header-main .menu-top ul {
    padding: 0px;
    margin: 0px;
}

.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;
    padding: 7px 0px;
}

.header-main .menu-top ul>li>a {
    padding: 10px 15px;
    display: block;
    position: relative;
    color: #fff;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
}

.header-main .menu-top ul>li>.sub {
    position: absolute;
    width: 280px;
    top: 100%;
    background: #fff;
    left: 0px;
    z-index: 999;
    border-top: none;
    display: none;
    padding: 0px 0px 0px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

@media(max-width: 767px) {
    .header-main .menu-top ul>li>.sub {
        width: 100%;
        position: relative;
        display: block;
        box-shadow: none;
    }

    .wrap-menu-top {
        background-color: unset;
    }

    .header-main .menu-top ul>li>a {
        color: #444;
    }
}

.header-main .menu-top ul>li:hover>.sub {
    display: block;
}

.header-main .menu-top ul>li>.sub>li {
    display: block;
    border-top: 1px solid #f1f1f1;
    margin: 0;
    padding: 0;
}

.header-main .menu-top ul>li>.sub>li:first-child {
    border-top: none;
}

.header-main .menu-top ul>li>.sub>li>a {
    text-align: left;
    padding: 10px 20px;
    font-weight: 400;
    font-size: 14px;
    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 {
    position: relative;
}

.header-main .menu-top ul>li>.sub>li.li-sub>a i {
    position: absolute;
    right: 10px;
    top: 12px;
}

@media(max-width: 767px) {
    .header-main .menu-top ul>li>.sub>li.li-sub>a {
        font-size: 13px;
    }
}

.header-main .menu-top ul>li>.sub>li.li-sub:hover>.sub {
    display: block;
}

.header-main .menu-top ul>li>.sub>li>.sub {
    /* position: relative; */
    /* display: block; */
    /* box-shadow: none;
    padding: 0; */
    left: 100%;
    top: 0%;
}

.header-main .menu-top ul>li>.sub>li>.sub>li {
    border-top: 1px solid #f1f1f1;
}

.header-main .menu-top ul>li>.sub>li>.sub>li>a {}

@media(max-width: 767px) {
    .header-main .menu-top ul>li>.sub>li>.sub>li>a {
        font-size: 13px;
    }

    .header-main .menu-top {}

    .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;
        font-size: 14px;
        font-weight: 400;
    }

    .header-main .menu-top ul>li>.sub>li>.sub {
        top: 100%;
        left: unset;
        padding: 0px 15px;
    }
}

.header-main .menu-top ul>li:hover>a,
.header-main .menu-top ul>li.active>a {
    background: var(--main-color-hover);
    color: #fff;
    /* background: var(--main-color); */
}

.header-main .menu-top ul>li>a b {
    display: block;
    text-transform: uppercase;
}

@media(max-width: 767px) {
    .header-main .menu-top ul>li>a b {
        font-weight: 500;
    }
}

.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: 16px;
}

.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: 14px;
}


/**/

@media (min-width:767px) {
    .wrap-search {
        display: flex;
        align-items: center;
    }
}

.form-search {
    margin: 0px;
    width: 56%;
    margin-right: 10px;
}

.form-search .search {
    border: 1px solid var(--main-color);
    position: relative;
    border-radius: 5px;
    height: 40px;
    overflow: hidden;
}

.form-search .search select {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    height: 100%;
    border: none;
    padding: 0px 6px;
    margin: 0;
    background: #fff;
}

@media(max-width: 767px) {
    .form-search .search select {
        font-size: 13px;
    }
}

.icon-cart {
    z-index: 9;
    line-height: normal;
    color: #fff !important;
    position: relative;
    float: right;
    background: var(--main-color);
    padding: 9px 11px 9px 11px;
    border-radius: 4px;
}

.icon-cart img {
    height: 36px;
}

.icon-cart i {
    font-size: 20px;
    margin-right: 6px;
    position: relative;
    top: 2px;
}

.icon-cart p {
    margin: 0;
    display: inline-block;
    position: relative;
    top: -2px;
}

@media (max-width:767px) {
    .icon-cart p {
        display: none;
    }
}

.icon-cart span {
    position: absolute;
    top: 4px;
    left: 26px;
    color: var(--main-color);
    border-radius: 50px;
    min-width: 14px;
    height: 14px;
    text-align: center;
    font-size: 10px;
    line-height: 15px;
    background: #fff;
}

.icon-search {
    position: absolute;
    top: 0;
    right: 50px;
    height: 100%;
    font-size: 14px;
    cursor: pointer;
    padding: 0px 10px;
    z-index: 2;
    display: flex;
    align-items: center;
    display: none;
}

.account {
    color: #fff !important;
    position: relative;
    float: right;
    background: var(--main-color);
    padding: 9px 11px 9px 11px;
    border-radius: 4px;
    margin-left: 12px;
    cursor: pointer;
}

.account .login-menu {
    display: none;
    position: absolute;
    top: 100%;
    z-index: 99;
}

.account .login-menu a {
    display: block;
    margin: 6px 0px;
    white-space: nowrap;
}

.account:hover .login-menu {
    display: block;
    background: #fff;
    width: auto;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0px 0px 7px #ddd;
    left: 0px;
    min-width: 140px;
}

@media(max-width: 767px) {
    .icon-search {
        right: 40px;
        height: 50px;
    }

    .form-search {
        margin: 10px 0px;
        width: 100%;
    }

    .form-search .search {
        width: 100%;
        max-width: inherit;
        height: 38px;
    }

    .icon-cart {
        right: 6px;
        color: var(--main-color-hover) !important;
        background: unset;
        position: absolute;
        top: -48px;
        padding: 0;
    }

    .icon-cart img {
        height: 30px;
    }

    .account>span {
        display: none;
    }

    .icon-cart span {
        background: var(--main-color);
        color: #fff;
        top: -4px;
        left: 14px;
    }

    .account {
        position: absolute;
        top: -50px;
        right: 45px;
        padding: 0;
        background: unset;
        color: var(--main-color-hover) !important;
        font-size: 20px;
        z-index: 20;
    }

    .account:hover .login-menu {
        left: unset;
        right: 0;
        font-size: 14px;
        padding: 4px 10px;
    }
}

.form-search .search img {
    width: 18px;
}

.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-image: -webkit-gradient(linear, left top, right top, from(#ff7e3e), to(#ff4000));
    background-image: -webkit-linear-gradient(left, #ff7e3e, #ff4000);
    background-image: -o-linear-gradient(left, #ff7e3e 0, #ff4000 100%);
    background-image: linear-gradient( 90deg, #ff7e3e, #ff4000); */
    position: absolute;
    border-radius: 0px;
    right: 0px;
    top: 0px;
    height: 100%;
    color: var(--main-color);
    text-transform: uppercase;
    border: none;
    padding: 7px 14px;
    background: none;
    -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 {}

@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: 14px;
    }

    .form-search .search .btn span {
        display: none;
    }
}


/**/

.support-online {
    position: fixed;
    z-index: 999;
    left: 15px;
    bottom: 38px;
    top: auto !important
}

.support-online a {
    position: relative;
    margin: 20px 10px;
    text-align: left;
    width: 40px;
    height: 40px
}

.support-online i {
    width: 40px;
    height: 40px;
    background: var(--main-color);
    color: #fff;
    border-radius: 100%;
    font-size: 14px;
    text-align: center;
    line-height: 40px;
    position: relative;
    z-index: 999;
    box-shadow: 0px 0px 3px #fff;
    border: 1px solid #fff;
}

.support-online a {
    display: block
}

.support-online a span {
    border-radius: 2px;
    text-align: center;
    background: var(--main-color);
    padding: 9px;
    display: none;
    width: 210px;
    margin-left: 10px;
    position: absolute;
    color: #ffffff;
    z-index: 999;
    top: 0px;
    box-shadow: 0px 0px 3px #fff;
    left: 40px;
    transition: all 0.2s ease-in-out 0s;
    -moz-animation: headerAnimation 0.7s 1;
    -webkit-animation: headerAnimation 0.7s 1;
    -o-animation: headerAnimation 0.7s 1;
    animation: headerAnimation 0.7s 1
}

.support-online a:hover span {
    display: block
}

.support-online a span::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 10px 0;
    border-color: transparent var(--main-color) transparent transparent;
    position: absolute;
    left: -10px;
    top: 10px
}

.kenit-alo-circle-fill {
    width: 60px;
    height: 60px;
    top: -10px;
    position: absolute;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    -webkit-transition: all .1s;
    -moz-transition: all .1s;
    -o-transition: all .1s;
    transition: all .1s;
    background-color: var(--main-color);
    opacity: .5;
    right: -10px;
    box-shadow: 0px 0px 3px #fff;
}

.kenit-alo-circle {
    width: 50px;
    height: 50px;
    top: -5px;
    right: -5px;
    position: absolute;
    background-color: transparent;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid rgba(30, 30, 30, 0.4);
    opacity: .1;
    border-color: var(--main-color);
    opacity: .5;
    box-shadow: 0px 0px 3px #fff;
}

.support-online .btn-support {
    cursor: pointer
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }

    50% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8)
    }

    100% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1)
    }

    50% {
        -webkit-transform: scale(0.8);
        -ms-transform: scale(0.8);
        transform: scale(0.8)
    }

    100% {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1)
    }
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both
}

.animated.infinite {
    animation-iteration-count: infinite
}

.animated.hinge {
    animation-duration: 2s
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
    animation-duration: .75s
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3)
    }

    50% {
        opacity: 1
    }
}

.zoomIn {
    animation-name: zoomIn
}

@keyframes pulse {
    from {
        transform: scale3d(1, 1, 1)
    }

    50% {
        transform: scale3d(1.05, 1.05, 1.05)
    }

    to {
        transform: scale3d(1, 1, 1)
    }
}

.pulse {
    animation-name: pulse
}

@keyframes rubberBand {
    from {
        transform: scale3d(1, 1, 1)
    }

    30% {
        transform: scale3d(1.25, 0.75, 1)
    }

    40% {
        transform: scale3d(0.75, 1.25, 1)
    }

    50% {
        transform: scale3d(1.15, 0.85, 1)
    }

    65% {
        transform: scale3d(0.95, 1.05, 1)
    }

    75% {
        transform: scale3d(1.05, 0.95, 1)
    }

    to {
        transform: scale3d(1, 1, 1)
    }
}


/**/

.header-slider {
    position: relative;
    /* margin-top: 15px; */
}

@media(max-width: 767px) {
    .header-slider {
        margin-top: 0px;
    }
}

.header-slider .left {
    width: 22%;
}

@media(max-width: 767px) {
    .header-slider .left {
        position: absolute;
        z-index: 1;
        width: 240px;
        top: -58px;
        left: -250px;
        padding: 0px !important;
        border-radius: 0px;
        border: 1px solid #f1f1f1;
    }

    .header-slider .left.active {
        left: 0px;
    }
}

.header-slider .left .iframe {
    background: #fff;
    border-radius: 4px;
}

.category-product .title {
    padding: 20px 20px 8px 20px;
    position: relative;
    white-space: nowrap;
    font-weight: 600;
}

@media(max-width: 767px) {
    .header-slider .left .iframe {
        border-radius: 0px
    }

    .category-product .title {
        display: none;
    }
}

.category-product .title>span {
    display: inline-block;
    margin-right: 8px;
}

.category-product .title>span>i {
    height: 2px;
    width: 20px;
    background: #444;
    display: block;
    margin: 3px 0px;
    border-radius: 2px;
}

.category-product .title>p {
    display: inline-block;
    margin: 0px 0px 0px 0px;
    position: relative;
    top: -3px;
    text-transform: uppercase;
}

.category-product>ul {
    padding: 0px 0px 8px;
    margin: 0px;
}

.category-product>ul>li {
    list-style-type: none;
    position: relative;
    font-size: 14px;
    -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;
}

.category-product>ul>li:hover {
    background: var(--main-color-20);
}

.category-product>ul>li .sub {
    display: none;
    position: absolute;
    left: 100%;
    background: #fff;
    width: 240px;
    padding: 0px;
    margin: 0px;
    top: 0px;
}

.category-product>ul>li .sub>li {
    list-style-type: none;
}

.category-product>ul>li .sub>li>a {
    padding: 9px 10px 9px 12px;
    display: block;
}

.category-product>ul>li .sub>li>a>i {
    position: absolute;
    right: 10px;
    top: 9px;
    font-size: 16px;
}

.category-product>ul>li .sub>li:hover>a {
    background: var(--main-color-20);
    color: var(--main-color);
}

.category-product>ul li:hover>.sub {
    display: block;
}

.category-product>ul>li>a {
    display: block;
    padding: 9px 8px 9px 48px;
}

.category-product>ul>li>a>span {
    display: block;
    position: relative;
    top: 0px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.category-product>ul>li>a>.icon {
    position: absolute;
    left: 18px;
    top: 9px;
}

.category-product>ul>li>a>.icon img {
    height: 20px;
    display: block;
}

.category-product>ul>li>a>.icon img.h {
    display: none;
}

.category-product>ul>li:hover>a>.icon img {
    display: none;
}

.category-product>ul>li:hover>a>.icon img.h {
    display: block;
}


/**/

.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; */
    }
}

.no_flexslider .slides {
    padding: 0px;
    margin: 0px;
    float: left;
    width: 100%;
}

.no_flexslider .slides::after {
    content: '';
    display: block;
    clear: both;
}

.no_flexslider .slides li {
    list-style-type: none;
    float: left;
    width: 100%;
}

.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: 34px;
    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;
}


/**/

.brand {
    padding: 21px 16px;
    background: #fff;
    border-radius: 4px;
    margin-top: 15px;
}

.brand .owl-controls {
    display: none !important;
}

@media(max-width: 767px) {
    .brand {
        border-radius: 0px;
        margin-bottom: 8px;
        padding: 12px 10px;
    }
}

.brand .item {
    text-align: center;
    padding: 0px 10px;
}

.brand .item img {
    height: 50px;
}

.brand .item .item a {
    display: block;
}

.brand .row .item a {
    display: block;
    margin: 10px 0px;
}

.brand .item span {
    display: block;
    font-size: 13px;
    margin-top: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 40px;
    padding: 0px 30px;
    margin-top: 7px;
}

@media(max-width: 767px) {
    .brand .item span {
        padding: 0px 0px;
    }
}

.brand .owl-buttons {
    padding: 0px;
    margin: 0px;
}

.brand .owl-buttons>div {
    list-style-type: none;
    position: absolute;
    top: 50%;
    left: 12px;
    font-size: 24px;
    margin-top: -18px;
    color: #222;
}

.brand .owl-buttons>div.owl-next {
    left: auto;
    right: 12px;
}


/**/

.brand-big {
    overflow: hidden;
    margin-top: 15px;
}

.brand-big .row {
    margin: 0px -8px;
}

.brand-big .item {
    padding: 0px 8px;
}

.brand-big .m8 .item {
    margin: 8px 0px;
}

@media(max-width: 767px) {
    .brand-big .row {
        margin: 0px -4px;
    }

    .brand-big .row>div {
        padding: 0px;
    }

    .brand-big .item {
        padding: 0px 4px;
    }
}

.brand-big .item>a {
    display: block;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
}

.brand-big .item>a .img {
    display: block;
    position: relative;
    height: 0px;
    padding-bottom: 90%;
}

.brand-big .item>a .img img {
    height: 100%;
    width: 100%;
    position: absolute;
    object-fit: cover;
}

.brand-big .item>a span {
    font-size: 15px;
    text-align: center;
    margin: 20px 10px 17px;
    display: block;
    overflow: hidden;
    height: 44px;
}

.brand-big .item>a .img:before {
    content: '';
    background: url(../images/view.png) no-repeat center center;
    background-size: 35px;
    display: block;
    position: absolute;
    z-index: 2;
    width: 50px;
    height: 50px;
    top: 40%;
    margin-top: -25px;
    left: 50%;
    opacity: 0;
    margin-left: -25px;
    transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.brand-big .item>a .img:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: 1;
    opacity: 0;
    border-radius: 5px 5px 0px 0px;
    background: rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.brand-big .item>a .img:hover:after {
    opacity: 1;
}

.brand-big .item>a .img:hover:before {
    top: 50%;
    opacity: 1;
}


/**/

.banner {
    margin-top: 15px;
}

.banner .row {
    margin: 0px -8px;
}

.banner .item {
    padding: 0px 8px;
}

.banner .item a {
    display: block;
    margin: 0px 0px 10px;
}

.banner .item a img {
    width: 100%;
}

.banner .owl2 .item a img {
    border-radius: 8px;
}

@media(max-width: 767px) {
    .banner .item a {
        margin-bottom: 8px;
    }
}


/**/

.content-product {
    /* margin-top: 15px; */
}

.content-product .content {
    padding: 5px 12px;
    background: #fff;
    border-radius: 4px;
    margin-top: 0px;
}

@media(max-width: 767px) {
    .content-product .content {
        padding: 0px;
        background: none;
        margin-top: 4px;
    }
}

.block-title {
    margin: 35px 0px;
}

.block-title .title {
    margin: 0px 0px;
    text-align: center;
    font-size: 24px;
    text-transform: uppercase;
    line-height: 1.3;
    font-weight: 600;
}

@media(max-width: 767px) {
    .block-title {
        margin: 20px 0px 14px;
    }

    .block-title .title {
        float: none;
        margin-bottom: 18px;
        font-size: 20px;
    }
}

.block-title .title a,
.block-title .title span {
    color: var(--main-color);
    color: #222;
}

.block-title .sub-title {
    text-align: center;
    padding: 0px;
    margin: 14px 0px 0px 0px;
    margin-left: 10px;
}

@media(max-width: 767px) {
    .block-title .sub-title {
        margin: -8px 0px 0px 0px;
        float: none;
        white-space: nowrap;
        overflow-x: auto;
    }
}

.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: block;
    font-size: 14px;
    background: #f9f9fe;
    padding: 8px 20px;
    border-radius: 4px;
}

.block-title .sub-title li:first-child a {}

.block-title-info {
    color: #777;
    margin: -10px 0 20px;
}


/**/

.content-product .content .block-content {}

.content-product .content .block-content .row {
    margin: 0px -6px;
}

@media(min-width: 992px) {
    .content-product .content .block-content .row .item.col-md-2 {
        width: 20%;
    }
}

.content-product .content .block-content .row .item {
    padding: 6px;
}

.view-all {
    text-align: center;
    margin: 20px 0px;
}

.view-all a {
    color: #fff;
    font-size: 14px;
    display: inline-block;
    background: var(--main-color);
    padding: 6px 20px;
    border-radius: 3px;
}

.view-all a:hover {
    background: var(--main-color-hover);
}

.view-all i {
    margin-left: 5px;
}

@media(max-width: 767px) {
    .content-product .content .block-content .row {
        margin: 0px -4px !important;
    }

    .content-product .content .block-content .row .row_home {
        padding: 0px;
    }

    .content-product .content .block-content .row .item {
        padding: 4px !important;
    }
}

.content-product .content .block-content .row .item .iframe {
    border: 1px solid #eee;
    border-radius: 6px;
    overflow: hidden;
}

.content-product.content-product-combo .content .block-content .row .item .iframe {
    margin-right: 20px;
}

.content-product.content-product-combo .content .block-content .owl-item:last-child .item span.plus-combo {
    display: none;
}

.content-product.content-product-combo .content .block-content .row .item span.plus-combo {
    position: absolute;
    font-size: 16px;
    color: var(--main-color);
    height: 16px;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 4px;
}

.content-product.content-product-combo .content .block-content .row .item .iframe .info h3 {
    font-size: 12px;
    height: 34px;
    margin-bottom: 2px;
}

.content-product.content-product-combo .content .block-content .row .item .iframe .info .price {
    font-size: 14px !important;
}

@media(max-width: 767px) {
    .content-product .content .block-content .row .item .iframe {
        background: #fff;
        padding: 5px;
        border-radius: 4px;
    }
}

.content-product .content .block-content .row .item .iframe:hover {
    border-color: var(--main-color);
}

.content-product .content .block-content .row .item .iframe:hover h3,
.content-product .content .block-content .row .item .iframe:hover a {
    color: var(--main-color);
}

.content-product .content .block-content .row .item .iframe .img {
    position: relative;
    height: 0px;
    width: 100%;
    padding-bottom: 100%;
}

.content-product .content .block-content .row .item .iframe .img .hh_vnd {
    position: absolute;
    background: #56ba47;
    color: #fff;
    font-size: 11px;
    border-radius: 0px 5px;
    padding: 1px 8px;
    top: 2px;
    right: 2px;
    font-weight: 500;
    display: none;
}

.content-product .content .block-content .row .item .iframe .img img {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
}

@media(max-width: 767px) {
    .content-product .content .block-content .row .item .iframe .img img {
        border-radius: 4px;
    }
}

.content-product .content .block-content .row .item .iframe .info {
    padding: 14px 14px 6px;
    height: 130px;
    /* height: 70px; */
}

.user-no .content-product .content .block-content .row .item .iframe .info {
    height: 106px;
    /* height: 70px; */
}

.content-product.content-product-combo .content .block-content .row .item .iframe .info {
    height: 68px;
    padding: 12px 8px 0px;
}

.user-no .content-product.content-product-combo .content .block-content .row .item .iframe .info {
    height: 68px;
}

.content-product .content .block-content .row .item .iframe .info.info_td p.sub {
    font-size: 12px;
    color: #666;
    font-weight: 400;
    display: none;
}

.content-product .content .block-content .row .item .iframe .info.info_td p.sub b {
    font-size: 12px;
    font-weight: 400;
}

.price .discount,
.price-detail .discount {
    position: relative;
    background: #ED1C24;
    border-radius: 3px;
    display: inline-block;
    color: #fff;
    font-size: 11px;
    padding: 2px 5px;
    text-align: center;
    top: -2px;
    font-weight: 400;
    margin-left: 8px;
}

.price-detail .discount {
    top: -6px;
}

.price .discount::before,
.price-detail .discount::before {
    right: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(136, 183, 213, 0);
    border-right-color: #ED1C24;
    border-width: 4px;
    margin-top: -4px;
}

.content-product .content .block-content .row .item .iframe .info .price_sale {
    text-decoration: line-through;
    color: #999;
    font-size: 12px;
    height: 20px;
    margin: 0px;
    font-weight: 400;
    /* display: none; */
}

@media(max-width: 767px) {
    .content-product .content .block-content .row .item .iframe .info {
        padding: 8px 6px 6px 6px;
        height: 120px;
    }

    .user-no .content-product .content .block-content .row .item .iframe .info {
        height: 100px;
    }
}

.content-product .content .block-content .row .item .iframe .info h3 {
    margin: 0px 0px 8px;
    font-size: 14px;
    line-height: 1.4;
    height: 38px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.content-product .content .block-content .row .item .iframe .info h3 a {}

.content-product .content .block-content .row .item .iframe .info .price {
    color: var(--main-color);
    font-size: 16px;
    margin: 0px;
    font-weight: 600;
    /* display: none; */
}

.pagination>li>a,
.pagination>li>span {
    border: 1px solid #f1f1f1f1;
    font-size: 14px;
    color: #222;
    margin: 0px -1px;
    border-radius: 0px;
    border-right: 1px solid #f2f2f2;
}

.content-product .content .block-content .pagination>li>a i,
.content-product .content .block-content .pagination>li>span i {
    position: relative;
    top: -1px;
}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
    background: var(--main-color);
    border-color: var(--main-color);
}

.pagination>li {
    display: inline-block;
}

@media(max-width: 767px) {
    .pagination {
        white-space: nowrap;
        overflow-x: auto;
        width: 100%;
    }
}


/*menu-bottom*/

.menu-top-bottom {
    background: var(--main-color-hover);
    padding: 2px 15px 0px;
    text-align: center;
    position: relative;
    margin-top: 5px;
}

@media(max-width: 991px) {
    .menu-top-bottom {
        white-space: nowrap;
        overflow-y: auto;
        margin-top: 8px;
    }
}

.menu-top-bottom ul {
    margin: 0px;
    padding: 0px;
}

.menu-top-bottom li {
    display: inline-block;
    min-height: 46px;
    line-height: 46px;
    list-style: none;
}

@media(max-width: 767px) {
    .menu-top-bottom li {
        min-height: 38px;
        line-height: 38px;
    }
}

.menu-top-bottom li:first-child a {
    border: none;
}

.menu-top-bottom li a {
    border-left: 1px solid #fff;
    white-space: nowrap;
    padding: 0px 15px;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 400;
}

.menu-top-bottom li.active a,
.menu-top-bottom li:hover a {
    /* color: #000; */
}


/**/

.menu-bottom {
    padding: 20px 0;
}

@media(max-width: 767px) {
    .menu-bottom {
        padding: 5px 0;
    }
}

.menu-bottom .title {
    margin-bottom: 6px;
    font-weight: normal;
    margin-top: 10px;
}

.menu-bottom .title a {
    position: relative;
    display: block;
    margin-bottom: 0px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
}

.menu-bottom .title a:hover {
    /* color: var(--main-color); */
}

.menu-bottom ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
    margin-bottom: 10px;
}

@media(max-width:767px) {
    .menu-bottom ul li a {
        word-break: break-word;
    }
}

.menu-bottom ul li a {
    color: #fff;
    font-size: 14px;
}

.menu-bottom ul li a:hover {
    /* color: var(--main-color); */
    text-decoration: underline;
}

.menu-bottom ul li {
    padding: 6px 0px;
}

footer {
    background: #fff;
    position: relative;
    background: var(--main-color);
    padding: 30px 0 0;
}

.footer {
    padding: 20px 0px 20px;
    color: #fff;
}

.footer a {
    color: #fff;
}

@media(max-width: 767px) {
    .footer {
        padding: 15px 0px 0px;
    }
}

.footer p {
    margin-bottom: 6px;
}

.copyright {
    padding: 12px 0px;
    background: var(--main-color-hover);
    /* border-top: 1px solid #f1f1f1; */
    color: #fff;
    text-align: center;
}

.copyright a {
    color: #fff;
}


/**/

.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;
}


/*detail-product*/

.content-product-detail {}

@media(max-width: 767px) {
    .content-product-detail {
        padding-top: 0px;
    }
}

.content-product-detail .detail-product {
    background: #fff;
}

.content-product-detail .detail-product .images-product-detail {
    position: relative;
}

@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: 4px 1px 4px 4px;
}

.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: 0px 2px;
}

.content-product-detail .detail-product .images-product-detail .thumbs>div .item {
    margin: 0px 4px 0px 0px;
    border: 1px solid #ddd;
    padding: 2px;
    cursor: pointer;
    list-style-type: none;
    display: inline-block;
    padding-bottom: calc(100% - 7px);
    height: 0px;
    position: relative;
    width: 100%;
}

.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;
}

.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: 0px;
    top: 50%;
    background: rgb(0 0 0 / 50%);
    color: #fff;
    width: 16px;
    text-align: center;
    line-height: 19px;
    height: 20px;
    margin-top: -8px;
    font-size: 14px;
}

.content-product-detail .detail-product .images-product-detail .thumbs .owl-buttons>div.owl-next {
    left: auto;
    right: 2px;
    padding-left: 2px;
}

.content-product-detail .detail-product .targetarea {
    position: relative;
    background: #fff;
    padding-bottom: 100%;
    height: 0px;
    width: 100%;
}

.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;
}

.content-product-detail .detail-product .infomation-product-detail {
    padding: 0px 8px;
}

.content-product-detail .detail-product .infomation-product-detail .wrap-scroll-detail {
    padding: 12px 8px;
}

@media(max-width: 767px) {
    .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 10px;
    }

    .content-product-detail .detail-product .infomation-product-detail .wrap-scroll-detail .action {
        position: fixed;
        bottom: 0px;
        left: 0px;
        width: 100%;
        z-index: 99;
    }

    .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 .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;
}

.content-product-detail .detail-product .infomation-product-detail .info {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 10px;
    color: #888;
}

.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: var(--main-color);
    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;
}


/**/

.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;
}


/**/

.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;
    }
}

.content-product-detail .nav li.active a,
.content-product-detail .nav li:hover a {
    list-style: none;
    background: var(--main-color);
}

.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;
}


/**/

.traning-lever {
    margin-bottom: 15px;
}

.traning-lever ul {
    padding: 0px;
    margin: 0px;
}

.traning-lever ul li {
    list-style-type: none;
    margin: -1px auto;
    color: #fff;
    text-align: center;
    width: 100%;
    float: none;
    padding: 0 !important;
    border: none !important;
}

.traning-lever ul li .img {
    display: inline-block;
    position: relative;
}

.traning-lever ul li .img>.info {
    position: absolute;
    width: 100%;
    height: calc(100% - 4px);
    display: flex;
    align-items: center;
    top: 0;
}

.traning-lever ul li .img>.info .info1 {
    width: 100%;
    display: block;
}

.traning-lever ul li img {
    max-height: 64px;
    display: inline-block;
}

.traning-lever ul li.lever000 img {
    max-height: 90px;
}

@media (max-width: 767px) {
    .traning-lever ul li img {
        min-height: 50px;
    }

    .traning-lever ul li.lever000 img {
        max-height: 65px;
    }
}

.traning-lever ul li.lever1 img {
    max-height: 71px;
}

.traning-lever ul li.lever2 img {
    max-height: 71px;
}

.traning-lever ul li.lever3 img {
    max-height: 71px;
}

.traning-lever ul li.lever4 img {
    max-height: 76px;
}

.traning-lever ul li.lever5 img {
    max-height: 82px;
}

.traning-lever ul li.lever6 img {
    max-height: 115px;
}

.traning-lever ul li.lever7 img {
    max-height: 190px;
}

@media (max-width: 767px) {
    .traning-lever ul li.lever0 img {
        width: 360px;
        height: 50px;
    }

    .traning-lever ul li.lever1 img {
        width: 326px;
        height: 50px;
    }

    .traning-lever ul li.lever2 img {
        width: 292px;
        height: 48px;
    }

    .traning-lever ul li.lever3 img {
        width: 260px;
        height: 48px;
    }

    .traning-lever ul li.lever4 img {
        width: 226px;
        height: 46px;
    }

    .traning-lever ul li.lever5 img {
        width: 191px;
        height: 46px;
    }

    .traning-lever ul li.lever6 img {
        width: 152px;
        height: 74px;
    }

    .traning-lever ul li.lever7 img {
        width: 96px;
        height: 115px;
    }
}

.traning-lever ul li p {
    display: block;
    color: #fff;
    margin: 0px;
    z-index: 1;
    width: 100%;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.3;
}

.traning-lever ul li.lever000 p {
    font-size: 20px;
}

.traning-lever ul li span {
    width: 100%;
    text-align: center;
    line-height: 1.2;
    display: block;
}

.traning-lever ul li.lever7 p {
    font-size: 20px;
    padding: 30px 20px 0px;
}

@media (max-width: 767px) {
    .traning-lever ul li.lever000 p {
        font-size: 18px;
    }

    .traning-lever ul li span {
        display: none;
    }

    .traning-lever ul li p {
        font-size: 16px;
    }

    .traning-lever ul li.lever3 p {
        padding: 0px 16%;
        font-size: 15px;
    }

    .traning-lever ul li.lever4 p {
        font-size: 14px;
    }

    .traning-lever ul li.lever5 p {
        font-size: 14px;
    }

    .traning-lever ul li.lever7 p {
        padding: 0 20px;
        font-size: 13px;
    }
}

.traning-lever ul li.lever6 span {
    padding: 0px 35px;
}

.traning-lever ul li.lever7 .info {
    top: 44%;
    height: 50%;
}

.traning-lever ul li.lever7 span {
    padding: 0px 31px;
}

.traning-lever ul li p span {
    display: block;
    font-size: 12px;
}

.traning-lever ul li p span:first-child {
    margin-top: 1px;
}


/**/

.traning-lever1 {
    margin-top: 40px;
}

.traning-lever1 .item {}

.traning-lever1 .item .title {
    text-align: center;
    position: relative;
    margin: 30px 0px 0px;
}

.traning-lever1 .item .title>p {
    font-size: 20px;
    text-align: center;
    position: relative;
    color: #aa6e51;
    font-weight: 600;
    margin-top: 10px;
    margin: 10px auto 0px;
    max-width: 600px;
    line-height: 1.3;
    text-transform: uppercase;
}

.traning-lever1 .item.item2 .title>p {
    color: #aa6e51;
}

.traning-lever1 .item.item3 .title>p {
    color: #8fa3b5;
}

.traning-lever1 .item.item4 .title>p {
    color: #8fa3b5;
}

.traning-lever1 .item.item5 .title>p {
    color: #c29644;
}

.traning-lever1 .item.item6 .title>p {
    color: #beaf91;
}

.traning-lever1 .item.item7 .title>p {
    color: #8685b6;
}

.traning-lever1 .item .title img {
    width: 50px;
    display: inline-block;
    background: #fff;
    margin: auto;
}

.traning-lever1 .item .title span {
    position: absolute;
    top: 50px;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    width: 100%;
    text-align: center;
    left: -3px;
    z-index: 1;
}

.traning-lever1 .item ul {
    padding: 0px;
    margin: 0px 0px 20px;
    text-align: center;
}

.traning-lever1 .item ul::after {
    content: "";
    display: block;
    clear: both;
}

.traning-lever1 .item ul li {
    list-style-type: none;
    display: inline-block;
    width: 24%;
    margin: 14px 0px;
    padding: 0px 12px;
}

@media (max-width: 767px) {
    .traning-lever1 .item ul li {
        width: 49%;
    }

    .traning-lever1 .item ul li:nth-child(2n+1) {
        clear: both;
    }

    .traning-lever1 .item .iframe .title1 {
        overflow: hidden;
    }
}

.traning-lever1 .item.item2 ul li:nth-child(4n+1) {
    clear: both;
}

.traning-lever1 .item ul li .img {
    background-image: linear-gradient(135deg, #7100b3, #57048c 26%, #6400a5 0, #6a00ac 39%, #7b1eb5 0, #6700a8 52%, #6e00b0 0, #4d0179 57%, #6a00aa 0, #4f0e77 78%, #6300a4 0, #440c67 90%, #5a019c 0, #7000b2);
    background-image: linear-gradient(135deg, #ffd900, #ffd900 26%, #ffc800 0, #ffc800 39%, #ffd900 0, #ffd900 52%, #ffc800 0, #ffc800 57%, #ffd900 0, #ffd900 78%, #ffc800 0, #ffc800 90%, #ffd900 0, #ffd900);
    background-image: linear-gradient(135deg, #0a8409, #099408 26%, #16a915 0, #1db318 39%, #0da70d 0, #0f970c 52%, #2da92b 0, #0c9e0c 57%, #0da50c 0, #0da70d 78%, #12920e 0, #0da00d 90%, #0da70d 0, #0da70d);
    background-image: linear-gradient(135deg, #af6e55, #b37554 26%, #a6684f 0, #b47556 39%, #b27156 0, #b27156 52%, #b06f54 0, #bf7b5b 57%, #ae6e53 0, #b27554 78%, #bb7b54 0, #b67857 90%, #b06f54 0, #b47357);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    position: relative;
    border: 6px solid #fff;
    margin: 0px auto;
}

.traning-lever1 .item ul li .img:before {
    content: "";
    position: absolute;
    width: 102px;
    height: 102px;
    left: -12px;
    top: -12px;
    border: 6px solid #e5e5e5;
    border-radius: 50%;
}

.traning-lever1 .item ul li.active .img:before {
    border: 6px solid #7212af;
    border: 6px solid #ffc800;
    border: 6px solid #018304;
    border: 6px solid #b37057;
}

.traning-lever1 .item.item3 ul li .img,
.traning-lever1 .item.item4 ul li .img {
    background-image: linear-gradient(135deg, #768991, #8aa0ae 26%, #6f838d 0, #84979f 39%, #788d98 0, #7d939c 52%, #4d6d78 0, #7b909a 57%, #7d909e 0, #687983 78%, #688a9e 0, #545e61 90%, #8ca1af 0, #8ba1af);
}

.traning-lever1 .item.item3 ul li.active .img:before,
.traning-lever1 .item.item4 ul li.active .img:before {
    border: 6px solid #8fa3b5;
}

.traning-lever1 .item.item5 ul li .img {
    background-image: linear-gradient(135deg, #ffd695, #eca409 26%, #f9af10 0, #ffae01 39%, #ffb30e 0, #d29b24 52%, #feae07 0, #e4a110 57%, #eca406 0, #faaf0c 78%, #fdb009 0, #b97e02 90%, #feae07 0, #ffb016);
    background-image: linear-gradient(135deg, #d1b257, #b88c3f 26%, #c89f52 0, #c79a43 39%, #ae8240 0, #caa044 52%, #c9a047 0, #ac7e3f 57%, #c39946 0, #c39846 78%, #b08342 0, #c79c4a 90%, #eac87f 0, #c09547);
}

.traning-lever1 .item.item5 ul li.active .img:before {
    border: 6px solid #ffae01;
    border: 6px solid #c29644;
}

.traning-lever1 .item.item6 ul li .img {
    background-image: linear-gradient(135deg, #ded9b2, #ccc0a5 26%, #dfe0c2 0, #cdc590 39%, #d6d391 0, #e4dec3 52%, #dcca7e 0, #e1dcbb 57%, #f6f3e1 0, #bcae8c 78%, #d3c9ac 0, #b9a789 90%, #b9aa8a 0, #d9d4b2);
}

.traning-lever1 .item.item6 ul li.active .img:before {
    border: 6px solid #beaf91;
}

.traning-lever1 .item.item7 ul li .img {
    background-image: linear-gradient(135deg, #8585b5, #8788b8 26%, #9fa1cc 0, #9595c3 39%, #948abb 0, #9090be 52%, #8782b3 0, #8683b1 57%, #a399cd 0, #8a87b4 78%, #9898c6 0, #827eae 90%, #7872a5 0, #9a9ac7);
}

.traning-lever1 .item.item7 ul li.active .img:before {
    border: 6px solid #8685b6;
}

.traning-lever1 .item ul li .img:after {
    content: "";
    background-image: url(../../../../public/images/traning/stick.svg);
    position: absolute;
    bottom: 0px;
    right: -16px;
    width: 30px;
    display: block;
    height: 24px;
    background-size: cover;
}

.traning-lever1 .item ul li.active .img:after {
    background-image: url(../../../../public/images/traning/stick-acti.png);
}

.traning-lever1 .item ul li .img img {
    position: absolute;
    top: 0px;
    bottom: 0px;
    margin: auto;
    left: 0px;
    right: 0px;
    width: 46px;
}

.traning-lever1 .item ul li h3 {
    margin: 20px 0px 0px;
    font-size: 17px;
    line-height: 1.25;
}

.traning-lever1 .item ul li h3 p {
    margin: 0px;
}

.traning-lever1 .item ul li h3 span {
    display: block;
}

.traning-lever1 .item .iframe {
    max-width: 960px;
    margin: 0px auto;
}

.traning-lever1 .item .iframe .title1 {
    color: #7300b3;
    color: #b37057;
    text-align: center;
    letter-spacing: 1px;
    margin: 0px 0px 16px;
    padding: 10px 0px 0px;
    line-height: 1.2;
    position: relative;
    font-size: 18px;
}

.traning-lever1 .item .iframe .title1 span {
    position: relative;
    background: #fff;
    padding: 0px 15px;
}

.traning-lever1 .item .iframe .title1 span:before {
    content: "";
    width: 80px;
    position: absolute;
    top: 50%;
    left: 100%;
    margin: auto;
    height: 1px;
    background: #ddd;
    background: #aa6e51;
    margin-top: -6px;
}

.traning-lever1 .item .iframe .title1 span::after {
    content: "";
    width: 80px;
    position: absolute;
    top: 50%;
    right: 100%;
    margin: auto;
    height: 1px;
    background: #ddd;
    background: #aa6e51;
    margin-top: -6px;
}

.traning-lever1 .item.item2 .iframe .title1 {
    color: #210057;
    color: #aa6e51;
}

.traning-lever1 .item.item3 .iframe .title1 {
    color: #0052d9;
    color: #8fa3b5;
}

.traning-lever1 .item.item4 .iframe .title1 {
    color: #018304;
    color: #8fa3b5;
}

.traning-lever1 .item.item5 .iframe .title1 {
    color: #ffae01;
    color: #c29644;
}

.traning-lever1 .item.item6 .iframe .title1 {
    color: #ff6c01;
    color: #beaf91;
}

.traning-lever1 .item.item7 .iframe .title1 {
    color: #d91e1f;
    color: #8685b6;
}

.traning-lever1 .item.item2 .title:before {
    border-top: 2px solid #210057;
}

.traning-lever1 .item.item3 .title:before {
    border-top: 2px solid #0052d9;
}

.traning-lever1 .item.item4 .title:before {
    border-top: 2px solid #018304;
}

.traning-lever1 .item.item5 .title:before {
    border-top: 2px solid #ffae01;
}

.traning-lever1 .item.item6 .title:before {
    border-top: 2px solid #ff6c01;
}

.traning-lever1 .item.item7 .title:before {
    border-top: 2px solid #d91e1f;
}

.traning-lever1 .item.item2 .iframe .title1 span:before {
    background: #210057;
    background: #aa6e51;
}

.traning-lever1 .item.item2 .iframe .title1 span::after {
    background: #210057;
    background: #aa6e51;
}

.traning-lever1 .item.item3 .iframe .title1 span:before {
    background: #0052d9;
    background: #8fa3b5;
}

.traning-lever1 .item.item3 .iframe .title1 span::after {
    background: #0052d9;
    background: #8fa3b5;
}

.traning-lever1 .item.item4 .iframe .title1 span:before {
    background: #018304;
    background: #8fa3b5;
}

.traning-lever1 .item.item4 .iframe .title1 span::after {
    background: #018304;
    background: #8fa3b5;
}

.traning-lever1 .item.item5 .iframe .title1 span:before {
    background: #ffae01;
    background: #c29644;
}

.traning-lever1 .item.item5 .iframe .title1 span::after {
    background: #ffae01;
    background: #c29644;
}

.traning-lever1 .item.item6 .iframe .title1 span:before {
    background: #ff6c01;
    background: #beaf91;
}

.traning-lever1 .item.item6 .iframe .title1 span::after {
    background: #ff6c01;
    background: #beaf91;
}

.traning-lever1 .item.item7 .iframe .title1 span:before {
    background: #d91e1f;
    background: #8685b6;
}

.traning-lever1 .item.item7 .iframe .title1 span::after {
    background: #d91e1f;
    background: #8685b6;
}


/**/

.traning-lever0 {
    margin-top: 20px;
    display: none;
}

.traning-lever0 .item {}

.traning-lever ul li.active .traning-lever0 {
    display: block;
}

.traning-lever0 .item .title {
    text-align: center;
    position: relative;
    margin: 30px 0px 0px;
}

.traning-lever0 .item .title>p {
    font-size: 20px;
    text-align: center;
    position: relative;
    color: #b92589;
    font-weight: 600;
    margin-top: 10px;
    margin: 10px auto 0px;
    max-width: 600px;
    line-height: 1.3;
    text-transform: uppercase;
    top: 0;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
}

.traning-lever0 .item.item1 .title>p {
    color: #8f42a3;
}

.traning-lever0 .item.item2 .title>p {
    color: #454098;
}

.traning-lever0 .item.item3 .title>p {
    color: #006caa;
}

.traning-lever0 .item.item4 .title>p {
    color: #148d46;
}

.traning-lever0 .item.item5 .title>p {
    color: #ffae01;
}

.traning-lever0 .item.item6 .title>p {
    color: #ff6c01;
}

.traning-lever0 .item.item7 .title>p {
    color: #b82827;
}

.traning-lever0 .item .title img {
    width: 50px;
    display: inline-block;
    background: #fff;
    margin: auto;
    max-height: inherit;
}

.traning-lever0 .item .title span {
    position: absolute;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    top: 50px;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    width: 100%;
    text-align: center;
    left: -3px;
    z-index: 1;
}

.traning-lever0 .item ul {
    padding: 0px;
    margin: 0px 0px 20px;
    text-align: center;
}

.traning-lever0 .item ul::after {
    content: "";
    display: block;
    clear: both;
}

.traning-lever0 .item ul li {
    list-style-type: none;
    display: inline-table;
    width: 24%;
    margin: 14px 0px;
    padding: 0px 12px;
}

@media (max-width: 767px) {
    .traning-lever0 .item ul li {
        width: 50%;
        float: left;
    }

    .traning-lever0 .item ul li:nth-child(2n+1) {
        clear: both;
    }

    .traning-lever0 .item .iframe .title1 {
        overflow: hidden;
    }
}

.traning-lever0 .item.item2 ul li:nth-child(4n+1) {
    clear: both;
}

.traning-lever0 .item ul li .img {
    background-image: linear-gradient(135deg, #7100b3, #57048c 26%, #6400a5 0, #6a00ac 39%, #7b1eb5 0, #6700a8 52%, #6e00b0 0, #4d0179 57%, #6a00aa 0, #4f0e77 78%, #6300a4 0, #440c67 90%, #5a019c 0, #7000b2);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    position: relative;
    border: 6px solid #fff;
    margin: 0px auto;
    background: none !important;
}

.traning-lever0 .item ul li .img:before {
    content: "";
    position: absolute;
    width: 102px;
    height: 102px;
    left: -12px;
    top: -12px;
    border: 6px solid #e5e5e5;
    border-radius: 50%;
}

.traning-lever0 .item ul li.active .img:before {
    border: 6px solid #b92589;
}

.traning-lever0 .item.item1 ul li.active .img:before {
    border: 6px solid #8f42a3;
}

.traning-lever0 .item.item2 ul li.active .img:before {
    border: 6px solid #454098;
}

.traning-lever0 .item.item3 ul li.active .img:before {
    border: 6px solid #006caa;
}

.traning-lever0 .item.item4 ul li.active .img:before {
    border: 6px solid #148d46;
}

.traning-lever0 .item.item5 ul li.active .img:before {
    border: 6px solid #f4a51e;
}

.traning-lever0 .item.item6 ul li.active .img:before {
    border: 6px solid #ea6923;
}

.traning-lever0 .item.item7 ul li.active .img:before {
    border: 6px solid #b82827;
}

.traning-lever0 .item ul li .img:after {
    content: "";
    background-image: url(../../../../public/images/traning/stick.svg?v=1.0.02);
    position: absolute;
    bottom: 0px;
    right: -12px;
    width: 26px;
    display: block;
    height: 20px;
    background-size: cover;
}

.traning-lever0 .item ul li.active .img:after {
    background-image: url(../../../../public/images/traning/stick-acti.png?v=1.0.03);
}

.traning-lever0 .item.item0 ul li.active .img:after {
    background-image: url(../../../../public/images/traning/stick-acti0.png?v=1.0.03);
}

.traning-lever0 .item.item1 ul li.active .img:after {
    background-image: url(../../../../public/images/traning/stick-acti1.png?v=1.0.03);
}

.traning-lever0 .item.item2 ul li.active .img:after {
    background-image: url(../../../../public/images/traning/stick-acti2.png?v=1.0.03);
}

.traning-lever0 .item.item3 ul li.active .img:after {
    background-image: url(../../../../public/images/traning/stick-acti3.png?v=1.0.03);
}

.traning-lever0 .item.item4 ul li.active .img:after {
    background-image: url(../../../../public/images/traning/stick-acti4.png?v=1.0.03);
}

.traning-lever0 .item.item5 ul li.active .img:after {
    background-image: url(../../../../public/images/traning/stick-acti5.png?v=1.0.03);
}

.traning-lever0 .item.item6 ul li.active .img:after {
    background-image: url(../../../../public/images/traning/stick-acti6.png?v=1.0.03);
}

.traning-lever0 .item.item7 ul li.active .img:after {
    background-image: url(../../../../public/images/traning/stick-acti7.png?v=1.0.03);
}

.traning-lever0 .item ul li .img img {
    position: absolute;
    top: 0px;
    bottom: 0px;
    margin: auto;
    left: 0px;
    right: 0px;
    width: 78px;
    filter: grayscale(100%);
    max-height: inherit;
}

@media(max-width: 767px) {
    .traning-lever0 .item ul li .img img {
        height: 78px;
    }
}

.traning-lever0 .item ul li.active .img img {
    filter: grayscale(0%);
}

.traning-lever0 .item ul li h3 {
    margin: 20px 0px 0px;
    font-size: 16px;
    line-height: 1.25;
    color: #333;
}

.traning-lever0 .item ul li h3 p {
    margin: 0px;
    position: static;
}

@media (max-width: 767px) {
    .traning-lever0 .item ul li h3 {
        margin: 15px 0px 0px;
    }

    .traning-lever0 .item ul li h3 p {
        display: none;
    }
}

.traning-lever0 .item ul li h3 span {
    display: block;
}

.traning-lever0 .item .iframe {
    max-width: 960px;
    margin: 0px auto;
}

.traning-lever0 .item .iframe .title1 {
    color: #b92589;
    text-align: center;
    letter-spacing: 1px;
    margin: 0px 0px 16px;
    padding: 10px 0px 0px;
    line-height: 1.2;
    position: relative;
    font-size: 18px;
}

.traning-lever0 .item .iframe .title1 span {
    position: relative;
    background: #fff;
    padding: 0px 15px;
    display: inline-block;
    width: auto;
    max-width: 660px;
    line-height: 1.4;
}

.traning-lever0 .item .iframe .title1 span:before {
    content: "";
    width: 80px;
    position: absolute;
    top: 50%;
    left: 100%;
    margin: auto;
    height: 1px;
    background: #8f42a3;
    margin-top: 0px;
}

.traning-lever0 .item .iframe .title1 span::after {
    content: "";
    width: 80px;
    position: absolute;
    top: 50%;
    right: 100%;
    margin: auto;
    height: 1px;
    background: #8f42a3;
    margin-top: 0px;
}

.traning-lever0 .item.item1 .iframe .title1 {
    color: #8f42a3;
}

.traning-lever0 .item.item2 .iframe .title1 {
    color: #454098;
}

.traning-lever0 .item.item3 .iframe .title1 {
    color: #006caa;
}

.traning-lever0 .item.item4 .iframe .title1 {
    color: #148d46;
}

.traning-lever0 .item.item5 .iframe .title1 {
    color: #ffae01;
}

.traning-lever0 .item.item6 .iframe .title1 {
    color: #ff6c01;
}

.traning-lever0 .item.item7 .iframe .title1 {
    color: #b82827;
}

.traning-lever0 .item.item1 .title:before {
    border-top: 2px solid #210057;
}

.traning-lever0 .item.item2 .title:before {
    border-top: 2px solid #0052d9;
}

.traning-lever0 .item.item3 .title:before {
    border-top: 2px solid #018304;
}

.traning-lever0 .item.item4 .title:before {
    border-top: 2px solid #ffae01;
}

.traning-lever0 .item.item5 .title:before {
    border-top: 2px solid #ff6c01;
}

.traning-lever0 .item.item6 .title:before {
    border-top: 2px solid #d91e1f;
}

.traning-lever0 .item.item2 .iframe .title1 span:before {
    background: #8f42a3;
}

.traning-lever0 .item.item2 .iframe .title1 span::after {
    background: #8f42a3;
}

.traning-lever0 .item.item3 .iframe .title1 span:before {
    background: #454098;
}

.traning-lever0 .item.item3 .iframe .title1 span::after {
    background: #454098;
}

.traning-lever0 .item.item4 .iframe .title1 span:before {
    background: #006caa;
}

.traning-lever0 .item.item4 .iframe .title1 span::after {
    background: #006caa;
}

.traning-lever0 .item.item5 .iframe .title1 span:before {
    background: #148d46;
}

.traning-lever0 .item.item5 .iframe .title1 span::after {
    background: #148d46;
}

.traning-lever0 .item.item6 .iframe .title1 span:before {
    background: #ffae01;
}

.traning-lever0 .item.item6 .iframe .title1 span::after {
    background: #ffae01;
}

.traning-lever0 .item.item7 .iframe .title1 span:before {
    background: #ff6c01;
}

.traning-lever0 .item.item7 .iframe .title1 span::after {
    background: #ff6c01;
}

.traning-lever0 .item.item8 .iframe .title1 span:before {
    background: #b82827;
}

.traning-lever0 .item.item8 .iframe .title1 span::after {
    background: #b82827;
}


/**/

.about {
    margin-bottom: 15px;
}

.about img {
    height: auto !important;
}

.about .about1 {
    margin: 15px 0px;
}

.about .title-about {
    margin: 0px 0px 20px;
    color: var(--main-color);
    text-transform: uppercase;
    font-size: 22px;
    border-bottom: 1px solid var(--main-color);
}

@media(max-width: 767px) {
    .about .title-about {
        margin-bottom: 15px;
        margin-top: 12px;
    }

    .about {
        margin-top: 8px;
    }

    .about .about1 {
        margin: 0px 0px 0px;
    }
}

.about .title-about span {
    background: #fff;
    display: inline-block;
    position: relative;
    top: 6px;
    padding-right: 6px;
}

.about .about1 p {
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.5;
    text-align: justify;
    margin-top: 10px;
}


/**/

.sidebar-content.news {
    margin: 0px 0px 0px;
    float: left;
    width: 100%;
    background: #fff;
    padding: 8px;
    border-radius: 4px;
}

.sidebar-content.news .item {
    list-style-type: none;
    float: left;
    width: 20%;
    padding: 3px;
}

.sidebar-content.news .item:nth-child(1),
.sidebar-content.news .item:nth-child(8) {
    width: 40%;
}

@media(max-width: 991px) {
    .sidebar-content.news .item {
        width: 50%;
    }

    .sidebar-content.news .item:nth-child(1),
    .sidebar-content.news .item:nth-child(8) {
        width: 100%;
    }
}

.sidebar-content.news .item article {
    position: relative;
}

.sidebar-content.news .item .img {
    display: block;
    height: 0px;
    width: 100%;
    overflow: hidden;
    background-position: center top;
    background-size: cover;
    padding-bottom: 100%;
}

.sidebar-content.news .item:nth-child(1) .img,
.sidebar-content.news .item:nth-child(8) .img {
    padding-bottom: 49.3%;
}

.sidebar-content.news .item .img .star-fa:after {
    top: 100%;
    left: 0;
    width: 0;
    height: 0;
    content: '';
    position: absolute;
    border-top: 7px solid #ffcc33;
    border-right: 7px solid transparent;
}

.sidebar-content.news .item .img .star-fa {
    position: absolute;
    left: 12px;
    top: 20px;
    color: #272727;
    padding: 4px 8px 4px;
    font-size: 12px;
    line-height: 12px;
    background: #ffcc33;
    text-transform: uppercase;
    z-index: 2;
    transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.sidebar-content.news .item article:hover .img .star-fa {
    top: 60px;
}

.sidebar-content.news .item .news-category:after {
    top: 100%;
    left: 0;
    width: 0;
    height: 0;
    content: '';
    position: absolute;
    border-top: 7px solid #bd2891;
    border-right: 7px solid transparent;
}

.sidebar-content.news .item .news-category.bd2891:after {
    border-top-color: #bd2891;
}

.sidebar-content.news .item .news-category.f7941d:after {
    border-top-color: #f7941d;
}

.sidebar-content.news .item .news-category.ffcc33:after {
    border-top-color: #ffcc33;
}

.sidebar-content.news .item .news-category.e02765:after {
    border-top-color: #e02765;
}

.sidebar-content.news .item .news-category.a238ce:after {
    border-top-color: #a238ce;
}

.sidebar-content.news .item .news-category.ff6b00:after {
    border-top-color: #ff6b00;
}

.sidebar-content.news .item .news-category.b33bd7:after {
    border-top-color: #b33bd7;
}

.sidebar-content.news .item .news-category.DF004A:after {
    border-top-color: #DF004A;
}

.sidebar-content.news .item .news-category {
    position: absolute;
    left: 12px;
    top: 60px;
    color: #fff;
    padding: 5px 8px;
    font-size: 12px;
    line-height: 12px;
    background: #bd2891;
    text-transform: uppercase;
    z-index: 2;
    transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

@media(max-width: 767px) {
    .sidebar-content.news .item .news-category {
        text-transform: none;
    }
}

.sidebar-content.news .item article:hover .news-category {
    top: 20px;
}

.sidebar-content.news .item .img>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.sidebar-content.news .item h3 {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    bottom: 0px;
    height: 100%;
    width: 100%;
    left: 0px;
    position: absolute;
    z-index: 1;
    padding: 10px;
    margin: 0px;
    background: -moz-linear-gradient(top, rgba(39, 39, 39, 0) 60%, rgba(39, 39, 39, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(39, 39, 39, 0) 60%, rgba(39, 39, 39, 1) 100%);
    background: linear-gradient(to bottom, rgba(39, 39, 39, 0) 60%, rgba(39, 39, 39, .9) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#00272727', endColorstr='#272727', GradientType=0);
}

.sidebar-content.news .item h3 a {
    color: #fff;
    position: absolute;
    left: 0px;
    bottom: 10px;
    padding: 0px 12px;
}

.sidebar-content.news .item h3 a i {
    margin-right: 8px;
}

.sidebar-content.news .item .info {
    font-size: 12px;
    font-weight: 400;
    color: #5C5C5C;
    height: 47px;
    overflow: hidden;
    display: none;
}


/**/

.block-news .block-content .row {
    margin: 0px -12px;
}

.block-news .block-content .row .wrap-item {
    padding: 0px 12px;
}

@media(max-width: 767px) {
    .block-news .block-content .row {
        margin: 0px -8px;
    }

    .block-news .block-content .row .wrap-item {
        padding: 0px 8px;
    }

    .block-news .block-content .row .row_home {
        padding: 0;
    }
}

.block-news .block-content .item {
    margin-bottom: 24px;
    position: relative;
    background-color: rgba(255, 255, 255, 0.4);
    border: 1px solid #FFF;
    border-radius: 4px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 5px 5px rgba(0, 0, 0, .2);
    padding: 3px;
    background: #fff;
}

.block-news .block-content .item .wrap-info {
    color: #383838;
    margin: 0px 0px 0px 0px;
    padding: 0px 20px 20px;
    background: #fff;
    border-radius: 0px 0px 5px 5px;
    position: relative;
    height: 215px;
}

.block-news.related .block-content .item .wrap-info {
    height: 135px;
}

@media(max-width: 767px) {
    .block-news .block-content .item {
        margin-bottom: 8px;
    }

    .block-news .block-content .item .wrap-info {
        height: auto;
        padding: 0px 15px 15px;
    }
}

.block-news .block-content .item h3 {
    padding: 0px 0px 0px 0px;
    margin: 20px 0px 10px 0px;
    border: none;
    height: 42px;
    display: block;
    font-size: 16px;
    font-weight: 600;
    overflow: hidden;
    line-height: 1.34;
}

.block-news .block-content .item h3 a {
    color: #3e3d3c;
}

.block-news .block-content .item h3 a i {
    margin-right: 7px;
    color: #777;
}

.block-news .block-content .item .wrap-info .info {
    height: 80px;
    overflow: hidden;
    color: #666;
}

@media(max-width: 767px) {
    .block-news .block-content .item .wrap-info .info {
        height: auto;
        max-height: 80px;
    }

    .block-news .block-content .item h3 {
        padding: 0px 0px 0px 0px;
        height: auto;
        max-height: 42px;
    }

    .block-news .block-content .item h3 a {
        height: auto;
    }
}

.block-news .block-content .item .time {
    font-size: 12px;
    color: #aaa;
    padding: 0px 0px 12px;
}

.block-news .block-content .item .time span:first-child {
    margin-right: 10px;
}

.block-news .block-content .item .time span:first-child i {
    margin-right: 6px;
    padding-left: 1px;
    top: 0px;
}

.block-news .block-content .item .time span i {
    margin-right: 2px;
    position: relative;
    top: -1px;
    font-size: 14px;
}

.block-news .block-content .item .time span:last-child {
    float: right;
}

.block-news .block-content .item .img {
    display: block;
    width: 100%;
    height: 0px;
    overflow: hidden;
    position: relative;
    padding-bottom: 60%;
}

.block-news .block-content .item .img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    margin: auto;
}

.block-news .block-content .item .img>i {
    position: absolute;
    z-index: 1;
    bottom: 0px;
    left: 0px;
    color: #fff;
    font-size: 22px;
    top: 0px;
    right: 0px;
    margin: auto;
    width: 44px;
    height: 40px;
    background: rgb(255 107 20 / 60%);
    padding: 8px 10px;
    text-align: center;
    line-height: 24px;
    border-radius: 3px;
}

.block-news .block-content .item .img>i:hover {
    background: rgb(255 107 20 / 100%);
}

.block-news .block-content .item .name_category {
    color: #fff;
    position: absolute;
    top: 20px;
    text-align: center;
    left: 10px;
}

.block-news .block-content .item .name_category a {
    background: #28bd7d;
    color: #fff;
    padding: 0px 10px;
    height: 26px;
    line-height: 26px;
    display: inline-block;
    position: relative;
    z-index: 9;
}

.block-news .block-content .item .name_category a:after {
    top: 100%;
    left: 0;
    width: 0;
    height: 0;
    content: '';
    position: absolute;
    border-top: 7px solid #28bd7d;
    border-right: 7px solid transparent;
}

.block-news .block-content .item .name_category a.bd2891:after {
    border-top-color: #bd2891;
}

.block-news .block-content .item .name_category a.f7941d:after {
    border-top-color: #f7941d;
}

.block-news .block-content .item .name_category a.ffcc33:after {
    border-top-color: #ffcc33;
}

.block-news .block-content .item .name_category a.e02765:after {
    border-top-color: #e02765;
}

.block-news .block-content .item .name_category a.a238ce:after {
    border-top-color: #a238ce;
}

.block-news .block-content .item .name_category a.ff6b00:after {
    border-top-color: #ff6b00;
}

.block-news .block-content .item .name_category a.b33bd7:after {
    border-top-color: #b33bd7;
}

.block-news .block-content .item .name_category a.DF004A:after {
    border-top-color: #DF004A;
}

.detail-news .detail-content {
    background: #fff;
    border-radius: 4px;
    padding: 25px;
    margin-bottom: 15px;
}

.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;
}

.detail-news .detail-content .info {
    color: #858585;
    font-weight: 400;
    margin-bottom: 10px;
    font-size: 12px;
}

.detail-news .detail-content .content * {
    max-width: 100%;
    font-size: 15px;
}

.detail-news .detail-content .detail img {
    height: auto !important;
}


/**/

.block-news-home {}

.block-news-home .wrap-item-1 {}

.block-news-home .wrap-item-1 .item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

@media (max-width:767px) {
    .block-news-home .wrap-item-1 .item {
        margin-bottom: 10px;
    }
}

.block-news-home .wrap-item-1 .item .img {
    display: block;
    height: 0px;
    padding-bottom: 70%;
    position: relative;
}

.block-news-home .wrap-item-1 .item .img::before {
    content: '';
    transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    background: url(../images/view.png);
    width: 34px;
    height: 34px;
    display: block;
    position: absolute;
    z-index: 2;
    background-size: 100%;
    left: 50%;
    margin-left: -17px;
    top: 50%;
    margin-top: -40px;
    opacity: 0;
    visibility: hidden;
}

.block-news-home .wrap-item-1 .item:hover .img::before {
    opacity: 1;
    visibility: visible;
    margin-top: -17px;
}

.block-news-home .wrap-item-1 .item .img::after {
    content: '';
    transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #00000054;
    opacity: 0;
    visibility: hidden;
}

.block-news-home .wrap-item-1 .item:hover .img::after {
    opacity: 1;
    visibility: visible;
}

.block-news-home .wrap-item-1 .item .img img {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
}

.block-news-home .wrap-item-1 .item h3 {
    margin: 0;
    padding: 0;
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    padding: 15px 15px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
}

.block-news-home .wrap-item-1 .item h3 a {
    color: #fff;
    font-size: 16px;
    display: block;
    line-height: 1.4;
}

.block-news-home .wrap-item {
    padding: 0;
}

.block-news-home .wrap-item .item {
    border-radius: 0px;
    margin-bottom: 15px;
}

.block-news-home .wrap-item .item .row {
    margin-right: 0;
}

.block-news-home .wrap-item .item .row>div:last-child {
    padding-left: 0;
}

.block-news-home .wrap-item .item .img {
    border-radius: 5px;
    overflow: hidden;
    padding-bottom: 96%;
}

.block-news-home .wrap-item .item .img::before {
    width: 22px;
    height: 22px;
    margin-left: -11px;
}

.block-news-home .wrap-item .item:hover .img::before {
    margin-top: -11px;
}

.block-news-home .wrap-item .item .wrap-info {}

.block-news-home .wrap-item .item .wrap-info h3 {
    position: static;
    background: none;
    padding: 0;
    margin-bottom: 5px;
}

.block-news-home .wrap-item .item .wrap-info h3 a {
    color: #333;
    line-height: 1.3;
    font-weight: 600;
    max-height: 80px;
    overflow: hidden;
    font-size: 15px;
}

.block-news-home .wrap-item .item .wrap-info .time {
    color: #777;
    font-size: 13px;
}

.block-news-home .wrap-item .item .wrap-info .time i {}


/*Supplier*/

.block-supplier {
    background: #f5f5f5;
    padding-bottom: 30px;
}

.block-supplier .form-search-supplier {
    position: static;
    display: block !important;
    margin-top: -10px !important;
    opacity: 1 !important;
    height: auto !important;
}

.block-supplier .form-search-supplier .search-supplier {
    border-radius: 50px;
    height: 38px;
    position: relative;
}

.block-supplier .form-search-supplier .search-supplier input {
    padding: 2px 52px 2px 15px;
    border-radius: 50px;
    font-size: 13px;
}

.block-supplier .form-search-supplier .search-supplier .btn {
    background: var(--main-color);
    position: absolute;
    right: 0px;
    top: 0px;
    height: 100%;
    color: #fff;
    text-transform: uppercase;
    border: none;
    -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;
    border-radius: 0 20px 20px 0;
    padding: 8px 16px;
}

.block-supplier .form-search-supplier .search-supplier .btn img {
    width: 18px;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
    -moz-filter: brightness(0) invert(1);
    -o-filter: brightness(0) invert(1);
    -ms-filter: brightness(0) invert(1);
}

.block-supplier.detail {
    padding-bottom: 0;
}

@media(max-width: 767px) {
    .block-supplier .form-search-supplier .search-supplier .btn {
        line-height: 20px;
    }

    .block-supplier {
        padding: 30px 0px 10px;
    }
}

.block-supplier .block-content {}

.block-supplier .block-content marquee {
    max-width: 800px;
    margin: 0px auto;
}

.block-supplier .block-content .img1 {
    text-align: center;
    margin-bottom: 30px;
}

.block-supplier .block-content .img1 img {
    height: 44px;
    display: inline-block;
    margin: 0px 4px;
    background: #fff;
    padding: 8px;
    border-radius: 2px;
}

.block-supplier .block-content .row {
    background: #fff;
    box-shadow: 0px 0px 10px #ddd;
    padding: 22px 8px;
    margin: 0px !important;
    border-radius: 8px;
}

.block-supplier.detail .block-content .row {
    background: none;
    padding: 0;
    box-shadow: none;
    margin: 0px -6px !important;
}

.block-supplier.detail .block-content .row>div {
    padding: 0px 6px;
}

.block-supplier .block-content .row .wrap-item {}

.block-supplier .block-content .row .wrap-item:nth-child(2n+1) {
    clear: both;
}

.block-supplier .block-content .row .wrap-item .item {
    border-top: 1px dashed #ddd;
    padding-top: 14px;
    margin-top: 14px;
}

.block-supplier.detail .block-content .row .wrap-item .item {
    background: #fff;
    padding: 13px !important;
    border-radius: 4px;
}

.block-supplier .block-content .row .wrap-item .item:after {
    content: '';
    display: block;
    clear: both;
}

.block-supplier .block-content .row .wrap-item:nth-child(1) .item,
.block-supplier .block-content .row .wrap-item:nth-child(2) .item {
    padding-top: 0px;
    border-top: none;
    margin-top: 0px;
}

@media(max-width: 767px) {
    .block-supplier .block-content .row .wrap-item:nth-child(2) .item {
        border-top: 1px dashed #ddd;
        padding-top: 14px;
        margin-top: 14px;
    }
}

.block-supplier .block-content .row .wrap-item .item .img {
    float: left;
    width: 200px;
    margin-right: 20px;
    height: 0px;
    padding-bottom: 32%;
    position: relative;
    border: 1px solid #f1f1f1;
    border-radius: 4px;
}

@media(max-width: 767px) {
    .block-supplier .block-content .row .wrap-item .item .img {
        width: 100px;
    }
}

.block-supplier .block-content .row .wrap-item .item .img img {
    position: absolute;
    /* height: 100%; */
    /* width: 100%; */
    /* object-fit: cover; */
    top: 0px;
    left: 0px;
    max-width: 100%;
    max-height: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
}

.block-supplier .block-content .row .wrap-item .item h3 {
    margin: 0px 0px 5px;
    line-height: inherit;
    font-size: inherit;
}

.block-supplier .block-content .row .wrap-item .item h3 a {
    color: #444;
    font-weight: 600;
    font-size: 15px;
}

.block-supplier .block-content .row .wrap-item .item:hover h3 a {
    color: #0099be;
}

.block-supplier .block-content .row .wrap-item .item .info {
    font-weight: 300;
    font-size: 13px;
    color: #999;
    max-height: 75px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}

.block-supplier .block-content .row .wrap-item .item .time {
    margin-top: 10px;
    font-size: 13px;
}

.block-supplier .block-content .row .wrap-item .item .time .map {
    color: #666;
    margin-bottom: 2px;
    display: block;
}

.block-supplier .block-content .row .wrap-item .item .time .map>i {
    margin-right: 2px;
    font-size: 15px;
}

.block-supplier .block-content .row .wrap-item .item .time .sum_product {
    color: var(--main-color);
}


/*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;
}


/*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 {}


/*##### BREADCRUMB #####*/

.wrap-breadcrumb {}

.breadcrumb {
    white-space: nowrap;
    overflow-x: auto;
    background: transparent;
    border-radius: 0px;
    padding: 0px;
    font-size: 14px;
    font-weight: 400;
    color: #555;
    display: block;
    padding-bottom: 0px;
    border-bottom: none;
    margin: 8px 0px;
}

.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;
}


/*Banner*/

.top_banner {
    /* margin-top: 15px; */
}

.top_banner .no_flexslider {
    background: none;
    border-radius: 0px;
}

.top_banner .no_flexslider .slides li {
    margin-top: 15px;
}

.bottom_banner {
    padding: 10px 0px 20px;
    background: #fff;
    margin-top: 15px
}

.bottom_banner .row {
    margin: 0px -5px;
}

.bottom_banner .item {
    margin: 0;
    padding: 0px 5px;
}

.bottom_banner .item a {
    display: block;
    background: #fff;
    height: 80px;
    position: relative;
    border: 1px solid #f1f1f1;
    border-radius: 4px;
}

.bottom_banner .item a img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    padding: 10px;
}

.left_banner,
.right_banner {
    position: fixed;
    height: 0px;
    transition: all 0.5s ease-in-out;
    z-index: 9;
}

.left_banner {
    left: 0;
}

.right_banner {
    right: 0;
}

@media(max-width: 1409px) {

    .left_banner,
    .right_banner {
        display: none;
    }
}

.left_banner img,
.right_banner img {
    max-width: 120px;
    border: none;
    display: block;
}

.left_banner a+a img,
.right_banner a+a img {
    margin-top: 5px;
}

.bottom-left-banner,
.bottom-right-banner {
    position: fixed;
    left: 0px;
    bottom: 0px;
    z-index: 100;
    max-width: 12%;
    display: none;
}

@media(max-width: 767px) {

    .bottom-left-banner,
    .bottom-right-banner {
        display: none !important;
    }
}

.bottom-right-banner {
    left: auto;
    right: 0px;
}

.bottom-left-banner img,
.bottom-right-banner img {
    border: none;
    max-width: 100%;
}

.bottom-left-banner .close,
.bottom-right-banner .close {
    position: absolute;
    top: 0px;
    right: 15px;
    color: #414141;
    z-index: 100;
    font-size: 16px;
    cursor: pointer;
    padding: 6px;
    opacity: 1;
    font-weight: 400;
}

.bottom-left-banner .close,
.bottom-right-banner .close {
    right: 0px;
}

.popup-banner {
    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background: rgba(0, 0, 0, 0.6);
    z-index: 100;
    display: none;
}

.popup-banner img {
    max-width: 96%;
    max-height: 100%;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    border: none;
}

.popup-banner .close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 9;
    color: #fff;
    text-shadow: none;
    opacity: 1;
    background: #f00;
    padding: 9px;
    cursor: pointer;
}

.out_top_banner {
    text-align: center;
}

.out_top_banner img {
    width: 100%;
}

.sidebar_banner a+a {
    margin-top: 10px;
    display: block;
}

/*  */
.block-option-0 {
    padding: 50px 0px 0px;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.banner-shapes .sh {
    position: absolute;
    width: 250px;
    height: 200px;
}

.banner-shapes .sh.sh-a1 {
    left: 15%;
    top: 40%;
    transform: scale(0.8);
}

.banner-shapes .sh.sh-a2 {
    left: 45%;
    top: 0%;
    transform: scale(0.6) rotate(60deg);
}

.banner-shapes .sh.sh-a3 {
    left: 20%;
    top: 10%;
    transform: scale(0.2) rotate(120deg);
}

.banner-shapes .sh.sh-a3a {
    left: 55%;
    bottom: -100px;
    transform: scale(5) rotate(120deg);
}

.banner-shapes .sh.sh-a3b {
    left: 55px;
    bottom: 50px;
    transform: scale(2) rotate(168deg);
}

.banner-shapes .sh.sh-a3c {
    left: 57%;
    bottom: -15px;
    transform: scale(0.8);
}


.banner-shapes .sh.sh-a1b {
    right: 15%;
    top: 83px;
    transform: scale(0.8);
}

@media(max-width: 991px) {
    .banner-shapes .sh.sh-a1 {

        top: 45%;

        left: 0;
    }

    .banner-shapes .sh.sh-a1b {
        right: 0;
    }

    .banner-shapes .sh.sh-a2 {
        top: 30%;
        right: 0;
        left: 50%;
    }

    .banner-shapes .sh.sh-a3b {
        left: -40%;
        bottom: 18%;
    }
}

@media(max-width: 767px) {
    .banner-shapes .sh.sh-a1 {
        top: 30%;
        left: 100px;
    }

    .banner-shapes .sh.sh-a1b {
        right: 0;
    }

    .banner-shapes .sh.sh-a2 {
        top: 59%;
    }

    .banner-shapes .sh.sh-a3 {
        top: 15%;
        left: 0;
    }

    .banner-shapes .sh.sh-a3b {
        left: 0;
        bottom: 0;
    }

    .banner-shapes .sh.sh-a3c {
        bottom: 13%;
        left: 95px;
    }
}

.block-option-0 .content {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 20px;
    justify-content: center;
}

.block-option-0 .item {
    width: 100%;
    /* max-width: 48%; */
    padding: 20px;
    border-radius: 20px;
    /* box-shadow: rgba(240, 46, 170, 0.4) 0px 5px, rgba(240, 46, 170, 0.3) 0px 10px, rgba(240, 46, 170, 0.2) 0px 15px, rgba(240, 46, 170, 0.1) 0px 20px, rgba(240, 46, 170, 0.05) 0px 25px; */
    /* box-shadow: rgba(136, 165, 191, 0.48) 6px 2px 16px 0px, rgba(255, 255, 255, 0.8) -6px -2px 16px 0px; */
}

.block-option-0 .item .row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0px 20px;
}

.block-option-0 .item:nth-child(2) .row {
    display: flex;
    /* flex-direction: row-reverse; */
}

.block-option-0 .item:nth-child(3) {
    max-width: 100%;
}

.block-option-0 .item:nth-child(1) .row {
    flex-direction: row-reverse;
}

.block-option-0 .item:nth-child(3) .row {
    flex-direction: row-reverse;
    align-items: center;
}

.block-option-0 .item:nth-child(3) .row .info {
    max-width: 400px;
}

.block-option-0 .item .row>div {
    /* display: flex; */
    /* flex-direction: column; */
    padding: 0;
}

.block-option-0 .item .img {
    text-align: center;
    position: relative;
    height: 150px;
    width: 150px;
    overflow: hidden;
    margin: auto;
}

.block-option-0 .item .img img {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: auto;
}

.block-option-0 .info .iframe h3 {
    font-weight: 600;
    position: relative;
    margin-bottom: 20px;
    width: 100%;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: left;
}

.block-option-0 .info .iframe h3:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    background: var(--main-color);
    opacity: 0.1;
    border-radius: 0 50px 50px 0;
    width: 30%;
    height: 100%;
    z-index: -1;
}

.block-option-0 .info .iframe h3:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 20%;
    border-bottom: 3px solid var(--main-color);
    z-index: -1;
}

.block-option-0 .info .iframe .information {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.block-option-0 .info .iframe .short_info {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 500;
}

/**/

.block-option-1 {
    padding: 10px 0px 0px;
}

.block-option-1 .content .row .item .img {
    display: block;
    position: relative;
    text-align: center;
}

.block-option-1 .content .row .item .img img {
    max-width: 74%;
    display: inline-block;
}

.block-option-1 .content .row .item h3 {
    font-size: 15px;
    text-align: center;
    margin: 16px 0px 0px;
    height: 36px;
    line-height: 1.3;
    padding: 0px 40px;
}

.block-option-1 .content .row .item h3 a {
    color: #111;
}

@media(max-width: 767px) {
    .block-option-1 .content .row .item h3 {
        font-size: 15px;
        margin: 10px 0px 20px;
        height: unset;
        padding: 0px 10px;
    }

    .block-option-1 {
        padding-bottom: 0px;
    }

    .block-option-1 .content .row .item:nth-child(2n+1) {
        clear: both;
    }
}


/**/

.block-option-2 {
    padding: 30px 0 0;
}

.block-option-2 .content {
    background: var(--main-color);
    position: relative;
    margin-top: -3px;
}

.block-option-2 .content .item1 .img {
    width: 300px;
    margin: -36px auto 0px;
    background: var(--main-color);
    position: relative;
    padding: 15px 26px;
    border-radius: 10px;
    text-align: center;
}

.block-option-2 .content .item1 .img img {
    border-radius: 10px;
    /* padding: 5px;
    background: #fff; */
}

.block-option-2 .content .item1 h2 {
    text-align: center;
    color: #fff;
    font-size: 22px;
    margin-top: 10px;
    margin-bottom: 15px;
}

.block-option-2 .content .item1 h3 {
    color: #fff;
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    margin: 0px auto;
    max-width: 900px;
}

.block-option-2 .content .item1 .view {
    text-align: center;
    margin: 20px 0;
}

.block-option-2 .content .item1 .view a {
    display: inline-block;
    background: #fff;
    padding: 10px 40px;
    border-radius: 40px;
    text-transform: uppercase;
}

.block-option-2 .content .item1 .view a:hover {
    background: var(--main-color-hover);
    color: #fff;
}

.block-option-2 .content .item2 {
    margin: 0;
    padding-bottom: 10px;
}

.block-option-2 .content .item2 .img {
    padding: 0px 8px;
}

.block-option-2 .slick-dots li button {
    background: #fff;
    border-color: #fff;
}

.block-option-2 .slick-dots li.slick-active button {
    /* background: var(--main-color-hover); */
    /* border-color: var(--main-color-hover); */
}

@media (max-width:767px) {
    .block-option-2 .content .item1 .img {
        width: 120px;
        margin: -20px auto 0px;
        padding: 10px 10px;
    }

    .block-option-2 .content {
        margin-top: -1px;
    }

    .block-option-2 .content .item1 h2 {
        font-size: 18px;
    }

    .block-option-2 .content .item1 h3 {
        font-size: 15px;
        padding: 0px 10px;
    }

    .block-option-2 .content .item1 .view a {
        padding: 8px 22px;
    }
}


/**/

.block-option-3 {
    padding: 60px 0px;
    background-repeat: no-repeat;
    background-size: 100%;
    background-color: #f9f9fe;
}

.block-option-3 .block-title {
    margin-top: 0px;
    text-align: center;
}

.block-option-3 .block-title h2 {}

.block-option-3 .wrap-block {
    background: #fff;
    padding: 30px 45px;
    border-radius: 12px;
}

.block-option-3 .wrap-block .item {
    margin-bottom: 15px;
}

.block-option-3 .wrap-block .item>a {
    color: #000;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
}

.block-option-3 .wrap-block .item p {
    font-size: 16px;
    line-height: 1.8;
    color: #5f5f5f;
    margin-bottom: 0px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.block-option-3 .wrap-block .more-add a {
    color: var(--main-color);
    display: inline-block;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

@media (max-width:767px) {
    .block-option-3 {
        padding: 40px 0px 0px;
    }

    .block-option-3 .wrap-block {
        padding: 15px 20px;
    }

    .block-option-3 .block-title h2 {
        font-size: 22px;
    }
}


/**/

.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 {}


/**/

.register11 {
    padding: 70px 0px 70px;
    /* background: url(../imgs/about1.jpeg) no-repeat; */
    /* background-size: cover; */
    position: relative;
}

.register11::before {
    content: '';
    position: absolute;
    background: rgb(255 255 255 / 0.7);
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.register11 .content {
    padding: 40px;
    box-shadow: 0px 0px 25px #bfbfbf;
    position: relative;
    z-index: 2;
    background: #f9f9f9;
}

@media(max-width: 767px) {
    .register11 .content {
        padding: 16px;
    }
}

.register11 .content .content1 {
    background: #fff;
    padding: 60px 30px;
}

@media(max-width: 767px) {
    .register11 .content .content1 {
        padding: 15px;
    }
}

.register11 .row .info .item {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
    position: relative;
    padding-top: 35px;
}

.register11 .row .item1 .iframe>h2 {
    margin: 0px 0px 15px;
    text-align: center;
    text-transform: uppercase;
    color: var(--main-color);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    padding-top: 0px;
}

.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;
}

.span-error {
    color: red;
    display: block;
    font-size: 13px;
    margin-top: 5px;
}


/*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.active {
    opacity: 1;
    visibility: visible;
}

.register-popup .content {
    max-width: 550px;
    margin: 20px auto 0px;
    background: #fff;
    position: relative;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 6px;
    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;
}

.register-popup .content .close {}

.register-popup .content .form {}

.register-popup .content .title {
    margin: 20px 0 20px;
    text-align: center;
}

.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 {}

.overlay-form-popup {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 500;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .15s linear;
    -o-transition: opacity .15s linear;
    transition: opacity .15s linear;
}

.register-popup.active+.overlay-form-popup {
    opacity: 0.5;
    visibility: visible;
}


/*register-popup*/


/**/

.modal-form-success {}

.modal-form-success .modal-body {
    padding: 25px;
    text-align: center;
}

@media(max-width: 767px) {
    .modal-form-success .modal-body {
        padding: 20px 12px;
    }
}

.modal-form-success .modal-body button {
    opacity: 1;
    text-shadow: none;
    float: none;
    background: var(--main-color);
    border: 1px solid var(--main-color-hover);
    color: #fff;
    height: 46px;
    width: auto;
    border-radius: 3px;
    font-size: 15px;
    padding: 0px 30px;
    margin-top: 14px;
    text-transform: uppercase;
    box-shadow: 1px 1px 3px #999;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.modal-form-success .modal-body button:hover {
    background: var(--main-color-hover);
}

.modal-form-success .modal-body .in {
    color: var(--main-color);
    border: 1px solid var(--main-color);
    font-size: 60px;
    line-height: 80px;
    text-align: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 15px auto 0px;
}

.modal-form-success .modal-body h3 {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin: 30px 0px 12px;
    line-height: 1.2;
    color: #555;
}

.modal-form-success .modal-body h4 {
    color: #555;
    font-size: 16px;
    margin-bottom: 10px;
}

.modal-form-success .modal-body p {
    text-align: center;
    font-size: 26px;
    font-weight: 300;
}


/**/

.owl-controls .owl-buttons div {
    position: absolute;
    top: 50%;
    left: -12px;
    font-size: 19px;
    margin-top: -21px;
    color: var(--main-color);
    -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;
    background: #ffffffbf;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    filter: drop-shadow(0 4px 7px rgba(0, 0, 0, .15));
    z-index: 10;
}

.owl-controls .owl-buttons div:hover {
    background: var(--main-color);
    color: #fff;
}

.owl-controls .owl-buttons div.owl-next {
    left: auto;
    right: -12px;
}

@media (max-width:768px) {
    .owl-controls .owl-buttons div {
        left: 0;
    }

    .owl-controls .owl-buttons div.owl-next {
        right: 0;
    }

    .advanced-search .advanced-item ul li {
        width: 100%;
    }

    .content-product .left-anvancde-search {
        margin-bottom: 20px;
    }
}

.content-product .left-anvancde-search {
    display: none !important;
}