.header {
  background: #FFFFFF;
  box-shadow: 0px 14px 40px rgba(33, 43, 54, 0.1);
}

.header .header-body {
  display: flex;
  height: 100px;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 992px) {
  .header .header-body {
    height: 64px;
    position: relative;
  }
}

.header .header-body .btn-open-account {
  display: none;
}

@media screen and (max-width: 992px) {
    .header .header-body .btn-open-account {
        display: block;
        position: absolute;
        /*right: 70px;*/
        right: 40px;
    }
}

@media screen and (max-width: 320px) {
  .header .header-body .logo img {
    width: 105px;
  }
}

.header .header-body .mid-menu {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 992px) {
  .header .header-body .mid-menu {
    position: absolute;
    /*right: 0;*/
    left: 0;
  }
}

.header .header-body .mid-menu .menu-icon {
  display: none;
}

@media screen and (max-width: 992px) {
  .header .header-body .mid-menu .menu-icon {
    display: block;
  }
}

.header .header-body .mid-menu ul.mid-menu-box {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 600;
  color: #212B36;
}

@media screen and (max-width: 992px) {
    .header .header-body .mid-menu ul.mid-menu-box {
        display: none;
        position: absolute;
        top: 100%;
        /*right: -5px;*/
        left: -9px;
        border: 1px solid #D3D8DE;
        box-sizing: border-box;
        box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.03);
        border-radius: 4px;
        background: white;
        min-width: 180px;
        z-index: 99999;
    }
}

.header .header-body .mid-menu ul.mid-menu-box .mid-menu-item {
  height: 40px;
  padding: 0 10px;
  position: relative;
}

@media screen and (max-width: 992px) {
  .header .header-body .mid-menu ul.mid-menu-box .mid-menu-item {
    height: auto;
    min-height: 40px;
    display: flex;
    align-items: center;
  }
}

.header .header-body .mid-menu ul.mid-menu-box .mid-menu-item a {
  text-decoration: none;
  color: #212B36;
  line-height: 40px;
  font-size: 18px;
}

.header .header-body .mid-menu ul.mid-menu-box .mid-menu-item:hover .primary-menu-nav-item {
    transition: 0.5s ease;
    border-bottom: 4px solid #ffc20e;
    padding: 6px 0;
    font-size: 22px;
    font-weight: 700;
}

@media screen and (max-width: 992px) {
    .header .header-body .mid-menu ul.mid-menu-box .mid-menu-item:hover .primary-menu-nav-item {
        font-size: 16px;
        font-weight: 700;
    }
}

@media screen and (max-width: 992px) {
  .header .header-body .mid-menu ul.mid-menu-box .mid-menu-item a {
    font-size: 14px;
    line-height: 24px;
  }
}

.header .header-body .mid-menu ul.mid-menu-box .mid-menu-item .sub-menu {
  position: absolute;
  top: 70px;
  z-index: 10;
  background: white;
  box-shadow: 0px 14px 40px rgba(33, 43, 54, 0.1);
  /*border-radius: 8px;*/
  display: none;
  min-width: 250px;
}

.header .header-body .mid-menu ul.mid-menu-box .mid-menu-item .sub-menu .li-sub-menu {
  padding: 10px;
}

.header .header-body .mid-menu ul.mid-menu-box .mid-menu-item .sub-menu .li-sub-menu a {
  font-size: 16px;
  line-height: 24px;
}

.header .header-body .mid-menu ul.mid-menu-box .mid-menu-item .sub-menu .li-sub-menu:hover {
  background: #FFC20E;
  /*border-radius: 8px;*/
}

.header .header-body .mid-menu ul.mid-menu-box .mid-menu-item .sub-menu .li-sub-menu.active {
  background: #FFC20E;
  border-radius: 8px;
}

.header .header-body .mid-menu ul.mid-menu-box .mid-menu-item .sub-menu::before {
  content: "";
  display: block;
  width: 100%;
  height: 30px;
  background: transparent;
  position: absolute;
  top: -30px;
}

.header .header-body .mid-menu ul.mid-menu-box .mid-menu-item.active {
  background: #FFC20E;
  border-radius: 4px;
}

.header .header-body .mid-menu ul.mid-menu-box .mid-menu-item.active a {
  color: #FFFFFF;
}

.header .header-body .mid-menu ul.mid-menu-box .mid-menu-item:hover .sub-menu {
  display: block;
}

@media screen and (max-width: 992px) {
    .header .header-body .mid-menu ul.mid-menu-box .mid-menu-item:hover .sub-menu {
        /*left: -96%;*/
        left: calc(100% + 1px);
        width: 95%;
        top: 0;
        min-width: unset;
    }
}

@media screen and (max-width: 992px) {
  .header .header-body .mid-menu:hover .mid-menu-box {
    display: block;
  }
}

.header .header-body .right-menu-box {
  display: flex;
  height: 100px;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 992px) {
    .header .header-body .right-menu-box {
        /*margin-right: 24px;*/
        margin-right: 0;
    }
}

.header .header-body .right-menu-box .language {
  height: 36px;
  line-height: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
  position: relative;
  cursor: pointer;
}

.header .header-body .right-menu-box .language .flag {
  width: 24px;
}

.header .header-body .right-menu-box .language ul.list-languages {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  list-style: none;
  min-width: 100px;
  background: white;
  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.03);
  border-radius: 4px;
  padding: 0;
  margin: 2px 0 0;
  border: 1px solid #D3D8DE;
  z-index: 1;
}

.header .header-body .right-menu-box .language ul.list-languages .item-language {
  padding: 0 10px 0;
  cursor: pointer;
}

.header .header-body .right-menu-box .language ul.list-languages .item-language:hover {
  background: #FFF9E5;
  border-radius: 4px;
}

.header .header-body .right-menu-box .language ul.list-languages::before {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  right: 0;
  width: 100%;
  height: 2px;
}

.header .header-body .right-menu-box .language:hover .list-languages {
  display: block;
}

.banner {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
}

.banner .title1 {
  font-style: italic;
  font-weight: bold;
  font-size: 45px;
  line-height: 62px;
  color: #FFFFFF;
  width: 70%;
  margin-bottom: 20px !important;
}

@media screen and (max-width: 1280px) {
  .banner .title1 {
    font-size: 33px;
    line-height: 44px;
    margin-bottom: 10px !important;
  }
}

@media screen and (max-width: 992px) {
  .banner .title1 {
    font-size: 30px;
    margin-bottom: 20px !important;
  }
}

@media screen and (max-width: 768px) {
  .banner .title1 {
    font-size: 24px;
    line-height: 32px;
  }
}

@media screen and (max-width: 568px) {
  .banner .title1 {
    font-size: 20px;
    line-height: 30px;
    width: 100%;
    margin-bottom: 10px !important;
    color: #464646;
    font-weight: 800;
  }
}

.banner .button-box {
  display: flex;
  margin-bottom: 30px !important;
}

@media screen and (max-width: 1280px) {
  .banner .button-box {
    margin-bottom: 20px !important;
  }
}

@media screen and (max-width: 992px) {
  .banner .button-box {
    display: none;
  }
}

.banner .button-box .btn-action-banner {
  font-weight: 800;
  font-size: 20px;
  line-height: 28px;
  width: auto;
  height: auto;
  padding: 10px 24px;
  box-shadow: 0px 14px 40px #212b36;
  color: white;
}

.banner .imgSlide {
  position: relative;
  width: 100%;
}

.banner .imgSlide img {
  width: 100%;
}

.banner .imgSlide .container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.banner .bx-wrapper .bx-pager {
    width: auto;
    margin-left: calc(50% - 30px);
}

@media screen and (max-width: 992px) {
  .banner .bx-wrapper .bx-pager {
    padding-top: 0;
    top: 0;
    height: 20px;
  }
}

.banner .img-banner {
  height: 640px;
  width: 100vw;
}

@media screen and (min-width: 1400px) and (max-width: 1599px) {
    .banner .img-banner {
        height: 460px;
    }
}

@media screen and (max-width: 1280px) {
  .banner .img-banner {
    height: 450px;
  }
}

@media screen and (max-width: 992px) {
  .banner .img-banner {
    height: 350px;
  }
}

@media screen and (max-width: 768px) {
  .banner .img-banner {
    height: 250px;
  }
}

@media screen and (max-width: 568px) {
  .banner .img-banner {
    height: 480px;
  }
}

@media screen and (max-width: 400px) {
  .banner .img-banner {
    height: 450px;
  }
}

.banner .img-banner1 {
  background: url(../images/Banner/Banner_web_eCMB_Web_1.png);
  background-size: cover;
}

@media screen and (max-width: 568px) {
  .banner .img-banner1 {
    background: url(../images/Banner/Banner_web_eCMB_Mobi_1_v1.jpg);
    background-size: cover;
  }
}

.banner .img-banner2 {
  background: url(../images/Banner/Banner_web_eCMB_Web_2.png);
  background-size: cover;
}

@media screen and (max-width: 568px) {
  .banner .img-banner2 {
    background: url(../images/Banner/Banner_web_eCMB_Mobi_2_v1.jpg);
    background-size: cover;
  }
}

.banner .img-banner3 {
  background: url(../images/Banner/Banner_web_eCMB_Web_3.png);
  background-size: cover;
}

@media screen and (max-width: 568px) {
  .banner .img-banner3 {
    background: url(../images/Banner/Banner_web_eCMB_Mobi_3_v1.jpg);
    background-size: cover;
  }
}

.slide-list-products {
  background: #F7A30A;
  box-shadow: 0px 2px 16px rgba(33, 43, 54, 0.05);
  padding-top: 5px;
  padding-bottom: 5px;
  margin-top: -1px;
}

.slide-list-products .MultiCarousel {
  height: 110px;
}

.slide-list-products .MultiCarousel .MultiCarousel-inner {
  height: 100%;
}

.slide-list-products .MultiCarousel .MultiCarousel-inner .item:first-child {
  padding-left: 20px;
}

.slide-list-products .bx-wrapper .bx-pager {
  display: none;
}

.slide-list-products .bx-wrapper .bx-prev {
  background: url(../images/footer/slide-02.png);
  background-size: cover;
  left: 0;
}

.slide-list-products .bx-wrapper .bx-next {
  background: url(../images/footer/slide-01.png);
  background-size: cover;
  right: 0;
}

.slide-list-products .product-img-box {
  width: 40%;
  margin: auto;
  border-radius: 24px;
  opacity: 0.8;
  margin-bottom: 5px;
  padding-top: 10px;
  transition: transform ease 0.5s;
}

.slide-list-products .product-img-box img {
  margin: auto;
}

.slide-list-products .product-name {
  font-size: 20px;
  color: #464646;
  font-weight: 800;
  margin-bottom: 0;
}

@media screen and (max-width: 568px) {
  .slide-list-products .product-name {
    font-size: 18px;
  }
}

.slide-list-products .slide {
  transition: transform ease 0.5s;
  padding-bottom: 10px;
}

.slide-list-products .slide:hover {
  transform: scale(1.4);
}

@media screen and (max-width: 568px) {
  .product-box .product-container {
    margin-top: 0 !important;
    margin-bottom: 20px;
    position: relative;
  }
}

.product-box .product-container .show-more-products {
    width: 40px;
    height: 40px;
    background: url(../images/footer/slide-red2.png);
    background-size: 100%;
    display: none;
    position: absolute;
    bottom: -20px;
    left: calc(50% - 20px);
    z-index: 1;
}

@media screen and (max-width: 568px) {
  .product-box .product-container .show-more-products {
    display: block;
  }
}

.product-box .product-container .hide-more-products {
    width: 40px;
    height: 40px;
    background: url(../images/footer/slide-red2.png);
    background-size: 100%;
    transform: rotate(180deg);
    display: none;
    position: absolute;
    bottom: -20px;
    left: calc(50% - 20px);
    z-index: 1;
}

.product-box .list-products {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  grid-gap: 15px;
}

@media screen and (max-width: 992px) {
  .product-box .list-products {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  }
}

@media screen and (max-width: 568px) {
  .product-box .list-products {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

@media screen and (max-width: 568px) {
  .product-box .list-products .item-product.more-item-product {
    display: none;
  }
}

.product-box .list-products .item-product {
    background: #fce7b2;
    border-radius: 4px;
    cursor: auto !important;
}

.product-box .list-products .item-product:hover {
    transition: transform ease 0.5s;
    cursor: pointer;
    transform: scale(1.05);
}

@media screen and (max-width: 568px) {
  .product-box .list-products .item-product {
    border-radius: 0;
  }
}

.product-box .list-products .item-product .img-box {
  height: 230px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

@media screen and (max-width: 568px) {
  .product-box .list-products .item-product .img-box {
    border-radius: 0;
  }
}

.product-box .list-products .item-product .info-box {
    padding: 20px;
    height: calc(100% - 230px);
    position: relative;
}

.product-box .list-products .item-product .info-box .title {
  font-size: 36px;
  font-weight: 800;
}

    .product-box .list-products .item-product .info-box .description {
        white-space: pre-wrap;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        display: -webkit-box;
        margin-bottom: 45px;
        font-size: 18px;
    }

    .product-box .list-products .item-product .info-box a.btn-action {
        bottom: 20px;
        position: absolute;
    }

    .product-box .list-products .item-product .info-box a:hover {
        color: unset;
    }

.product-box .list-products .item-product .info-box a.btn-action:hover {
  color: white;
}

@media screen and (max-width: 568px) {
  .uudai-box {
    height: 265px;
  }
}

.uudai-box .uudai-container {
  padding: 40px 0 30px;
  margin: 0;
}

@media screen and (max-width: 568px) {
  .uudai-box .uudai-container {
    position: relative;
    padding: 0;
    margin: 20px 0;
  }
}

.uudai-box .uudai-container .uudai-left {
  height: 500px;
  background: url(../images/uu-dai1.jpg);
  background-size: cover;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

@media screen and (min-width: 1400px) and (max-width: 1599px) {
    .uudai-box .uudai-container .uudai-left {
        height: 423px;
    }
}

@media screen and (max-width: 568px) {
  .uudai-box .uudai-container .uudai-left {
    height: 225px;
    border-radius: 0;
  }
}

.uudai-box .uudai-container .uudai-right {
  background: url(../images/bg-uu-dai.jpg);
  background-size: cover;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  color: #FFFFFF;
  padding: 30px;
}

@media screen and (max-width: 568px) {
  .uudai-box .uudai-container .uudai-right {
    position: absolute;
    background: none;
    display: flex;
    justify-content: space-between;
    padding: 0;
    width: 100%;
    height: 225px;
  }
}

.uudai-box .uudai-container .uudai-right .title {
  font-weight: bold;
  font-size: 30px;
  line-height: 48px;
}

@media screen and (min-width: 1400px) and (max-width: 1599px) {
    .uudai-box .uudai-container .uudai-right .title {
        font-size: 26px;
    }
}

@media screen and (max-width: 568px) {
  .uudai-box .uudai-container .uudai-right .title {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: block;
    font-size: 20px;
    line-height: 24px;
    margin: 0 !important;
    max-width: 230px;
  }
}

.uudai-box .uudai-container .uudai-right .title .title2 {
  display: block;
}

@media screen and (max-width: 992px) {
  .uudai-box .uudai-container .uudai-right .title .title2 {
    display: inline;
  }
}

@media screen and (max-width: 568px) {
  .uudai-box .uudai-container .uudai-right .description {
    display: none;
  }
}

@media screen and (max-width: 568px) {
  .uudai-box .uudai-container .uudai-right .readmore-box {
    position: absolute;
    right: 10px;
    bottom: 10px;
  }
}

@media screen and (max-width: 568px) {
  .uudai-box .bx-wrapper .bx-pager {
    position: absolute;
    top: 0;
  }
}

@media screen and (min-width: 568px) and (max-width: 768px) {
  .news-box .container {
    padding-top: 0;
  }
}

.news-box .news-container {
  padding: 10px 0 30px;
}

@media screen and (max-width: 768px) {
  .news-box .news-container {
    padding-top: 0;
  }
}

.news-box .news-container .news-title-box {
  display: none;
}

@media screen and (max-width: 768px) {
  .news-box .news-container .news-title-box {
    height: 40px;
    line-height: 40px;
    margin-bottom: 5px;
    background: #ffad27;
    font-size: 16px;
    font-weight: bold;
    display: block;
  }
}

.news-box .news-container .box-title {
  font-size: 40px;
  line-height: 56px;
  font-weight: 600;
}

.news-box .news-container .news-left {
  height: 600px;
  background: url(../images/new1.jpg);
  background-size: cover;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  padding: 30px;
}

@media screen and (max-width: 768px) {
  .news-box .news-container .news-left {
    padding: 0;
    margin: 10px;
    width: calc(50%);
    height: 150px;
    position: relative;
    border-radius: 0;
  }
}

.news-box .news-container .news-left .title {
  font-weight: bold;
  font-size: 30px;
  line-height: 48px;
}

@media screen and (max-width: 768px) {
  .news-box .news-container .news-left .title {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 10px !important;
    width: 100%;
    white-space: pre-wrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
}

@media screen and (max-width: 768px) {
  .news-box .news-container .news-left .description {
    width: 100%;
    white-space: pre-wrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
}

.news-box .news-container .news-left .news-left-link {
  /*pointer-events: none;*/
  color: black;
}

@media screen and (max-width: 768px) {
  .news-box .news-container .news-left .news-left-link {
    pointer-events: auto;
    position: absolute;
    left: calc(100% + 10px);
    width: calc(100% - 30px);
    display: block;
    font-size: 12px;
  }
}

@media screen and (max-width: 768px) {
  .news-box .news-container .news-left .btn-action {
    display: none;
  }
}

.news-box .news-container .news-right {
  color: #FFFFFF;
}

.news-box .news-container .news-right .item-news {
  height: 300px;
  background: url(../images/new2.jpg);
  background-size: cover;
  position: relative;
}

@media screen and (max-width: 768px) {
  .news-box .news-container .news-right .item-news {
    background: url(images/new2.jpg);
    background-size: cover;
    padding: 0;
    margin: 5px 10px 10px;
    width: calc(50%);
    height: 150px;
    position: relative;
    border-radius: 0;
  }
}

.news-box .news-container .news-right .item-news .container-title {
  position: absolute;
  width: 100%;
  height: 0;
  margin-left: -10.5px;
  background: rgba(0, 0, 0, 0.5);
  padding: 0;
  overflow: hidden;
  top: 0;
  right: 0;
  text-align: left;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  height: 100%;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

@media screen and (max-width: 768px) {
  .news-box .news-container .news-right .item-news .container-title {
    opacity: 1;
    background: none;
    position: absolute;
    left: calc(100% + 10px);
    width: calc(100% - 10.5px);
  }
}

.news-box .news-container .news-right .item-news .container-title span {
  display: block;
}

.news-box .news-container .news-right .item-news .container-title a {
  color: white;
}

@media screen and (max-width: 768px) {
  .news-box .news-container .news-right .item-news .container-title a {
    color: black;
  }
}

.news-box .news-container .news-right .item-news .container-title .description {
  padding: 0 20px 20px;
  font-size: 14px;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  text-shadow: 0 0 1px white, 0 1px 2px rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

@media screen and (max-width: 768px) {
  .news-box .news-container .news-right .item-news .container-title .description {
    transform: translateY(0);
    padding: 0 10px;
    text-shadow: none;
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 10px !important;
    width: 100%;
    white-space: pre-wrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
}

.news-box .news-container .news-right .item-news .container-title .title {
  width: 100%;
  /* height: 100%; */
  padding: 20px;
  font-size: 18px;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  text-shadow: 0 0 1px white, 0 1px 2px rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

@media screen and (max-width: 768px) {
  .news-box .news-container .news-right .item-news .container-title .title {
    transform: translateY(0);
    padding: 0 10px;
    text-shadow: none;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 10px !important;
    width: 100%;
    white-space: pre-wrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    font-weight: bold;
  }
}

.news-box .news-container .news-right .item-news:hover .container-title {
  opacity: 1;
}

.news-box .news-container .news-right .item-news:hover .description {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.news-box .news-container .news-right .item-news:hover .title {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.other-products-box .title {
  color: #886e4a;
  font-size: 28px;
  font-weight: bold;
}

.other-products-box a:hover {
  color: white;
}

.other-products-box .item-other-product {
  background: #ff8701;
  border-radius: 14px;
  overflow: hidden;
  padding-bottom: 15px;
}

@media screen and (max-width: 568px) {
  .other-products-box .item-other-product {
    width: 85%;
    margin: auto;
  }
}

.other-products-box .item-other-product .avatar-product {
  border-radius: 8px;
  transition: transform ease 1s;
}

.other-products-box .item-other-product .product-name {
    margin: 15px 15px 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    min-height: 42px;
}

.other-products-box .item-other-product .product-description {
  margin-left: 15px;
  /*white-space: pre-wrap;*/
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  height: 42px;
  margin-right: 15px;
}

.other-products-box .item-other-product:hover .avatar-product {
  transform: scale(1.1);
}

@media screen and (min-width: 1280px) {
    .other-products-box .item-other-product .avatar-product {
        height: 170px;
    }
}

@media screen and (min-width: 1400px) {
    .other-products-box .item-other-product .avatar-product {
        height: 214px;
    }
}

.other-products-box .bx-wrapper .bx-pager {
  display: none;
}

.other-products-box .bx-wrapper .bx-prev {
  background: url(../images/footer/slide-02.png);
  background-size: cover;
  left: -45px;
}

@media screen and (max-width: 568px) {
  .other-products-box .bx-wrapper .bx-prev {
    left: 11px;
    background: url(../images/footer/slide-red1.png);
    background-size: cover;
  }
}

.other-products-box .bx-wrapper .bx-next {
  background: url(../images/footer/slide-01.png);
  background-size: cover;
  right: -45px;
}

@media screen and (max-width: 568px) {
  .other-products-box .bx-wrapper .bx-next {
    right: 11px;
    background: url(../images/footer/slide-red.png);
    background-size: cover;
  }
}

.form-dangky .form-container {
  position: relative;
}

@media screen and (max-width: 568px) {
  .form-dangky .form-container {
    padding-top: 0 !important;
  }
}

.form-dangky .form-container .form-dangky-left {
  background: url(../images/dang-ky.jpg);
  background-size: cover;
}

@media screen and (max-width: 568px) {
  .form-dangky .form-container .form-dangky-left {
    display: none;
  }
}

.form-dangky .form-container .form-dangky-right {
  background: #fede95;
}

.form-dangky .form-container .form-dangky-right .form-content {
  padding: 24px 114px;
}

@media screen and (max-width: 568px) {
  .form-dangky .form-container .form-dangky-right .form-content {
    padding: 24px;
  }
}

.form-dangky .form-container .form-dangky-right .form-content .title {
  font-weight: 900;
  font-size: 32px;
  line-height: 48px;
}

.form-dangky .form-container .form-dangky-right .form-content .description {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
}

.form-dangky .form-container .form-dangky-right .form-content .formC {
  margin-bottom: 15px;
}

.form-dangky .form-container .form-dangky-right .form-content .formC .form-control {
  height: 36px;
}

.form-dangky .form-container .form-dangky-right .form-content .formC .form-select {
  height: 36px;
}

.form-dangky .form-container .form-dangky-right .form-content .signup-box {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding-bottom: 3px;
}

@media screen and (max-width: 768px) {
  .form-dangky .form-container .form-dangky-right .form-content .signup-box {
    justify-content: center;
  }
}

.form-dangky .form-container .form-dangky-right .form-content .btn-signup {
  width: 200px;
  font-size: 16px;
  height: 50px;
  font-weight: 800;
}

@media screen and (max-width: 568px) {
  .form-dangky .form-container .form-dangky-right .form-content .btn-signup {
    height: 40px;
    width: 150px;
  }
}

.footer {
  color: white;
}

.footer .footer1 {
  background: #f3b64b;
  padding: 30px 0;
}

@media screen and (max-width: 568px) {
  .footer .footer1 {
    padding: 0;
  }
}

.footer .footer1 .box_f .list-img li.item-img {
  display: inline-block;
  margin-right: 10px;
  border-radius: 4px;
}

.footer .footer1 .box_f .row-doitac .list-img li.item-img {
  background: white;
  padding: 10px;
}

.footer .footer1 .box_f .row-category .list-category {
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  padding: 20px;
  list-style: none;
  grid-gap: 20px;
}

@media screen and (max-width: 992px) {
  .footer .footer1 .box_f .row-category .list-category {
    grid-template-columns: auto auto auto !important;
  }
}

@media screen and (max-width: 568px) {
  .footer .footer1 .box_f .row-category .list-category {
    grid-template-columns: auto auto !important;
  }
}

.footer .footer1 .box_f .row-category .list-category .category-item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.footer .footer1 .box_f .row-category .list-category .category-item .list-link {
  list-style: none;
}

.footer .footer1 .box_f .row-category .list-category .category-item .list-link li.link-item {
  padding-top: 15px;
}

.footer .footer1 .box_f .row-category .list-category .category-item .list-link li.link-item.link-item-title {
  padding-top: 0;
}

.footer .footer1 .box_f .row-category .list-category .category-item .list-link .link-item a {
  text-decoration: none;
  font-weight: 600;
  color: #464646;
}

.footer .footer1 .box_f .row-category .list-category .category-item .list-link .link-item-title a {
  color: #464646;
  font-weight: 800;
  font-size: 16px;
}

.footer .footer2 {
  background: #FF993B;
}

.footer .footer2 .box1 {
  background: #BE1128;
  padding: 20px 0;
  display: flex;
  justify-content: center;
}

.footer .footer2 .box2 {
  background: #fb7600;
  padding: 20px 0;
  display: flex;
  justify-content: center;
}

.footer .footer2 .box3 {
  background: #ff8800;
  padding: 20px 0;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 568px) {
    .footer .footer2 .box1 a, .footer .footer2 .box2 a, .footer .footer2 .box3 a {
        width: 80%;
    }
}

.footer .footer2 .box-centent {
  display: flex;
  align-items: flex-start;
}

.footer .footer2 .box-centent img.icon {
  margin-top: 2px;
  margin-right: 10px;
}

.footer .footer2 .box-centent .info-box {
  text-align: left;
}

.footer .footer2 .box-centent .info-box .title {
  font-size: 18px;
  font-weight: bold;
}

.footer .footer2 .box-centent .info-box p {
  line-height: 30px;
  margin-bottom: 0;
}

.footer .footer2-line {
  background-color: #f3b64b;
  height: 10px;
}

.footer .footer3 {
  background: #BE1128;
}

@media screen and (max-width: 992px) {
  .footer .footer3 .box_f {
    width: calc(100% - 1px);
  }
}

.footer .footer3 .box_f .row-media .list-img {
  text-align: left !important;
  padding-left: 20%;
  /*padding-top: 16px;*/
}

@media screen and (max-width: 992px) {
  .footer .footer3 .box_f .row-media .list-img {
    padding-left: 10.5px;
  }
}

.footer .footer3 .box_f .row-media .list-img .item-img {
  display: inline;
  margin-right: 15px;
}

.footer .footer3 .box_f .copyright {
  padding-left: 20%;
  margin-top: 22px;
}

@media screen and (max-width: 992px) {
  .footer .footer3 .box_f .copyright {
    padding-left: 0;
  }
}

.footer .footer3 .footer-left-info {
  list-style: none;
  padding-left: 0;
}

.footer .footer3 .footer-left-info li {
  line-height: 30px;
}

.footer .footer3 .footer-right-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
}

@media screen and (max-width: 568px) {
  .footer .footer3 .footer-right-info {
    float: left !important;
    padding-left: 0;
  }
}

.footer .footer3 .footer-right-info .icon-media {
  text-align: right;
  margin-bottom: 25px;
}

@media screen and (max-width: 568px) {
  .footer .footer3 .footer-right-info .icon-media {
    text-align: left;
    margin-bottom: 15px;
  }
}

.footer .footer3 .footer-right-info .icon-media .icon-media img {
  margin-left: 12px;
}

.footer .footer3 .footer-right-info li {
  line-height: 30px;
}

@media screen and (max-width: 568px) {
  .footer .footer3 .footer-right-info li {
    margin-left: 0 !important;
  }
}

.footer .footer3 ul.footer-right-info li {
  list-style: none;
}

.footer .footer4 {
  background: #BE1128;
  height: 30px;
}

.footer .footer_bot {
  background: url(../images/line_footer.png);
  background-repeat: no-repeat;
  height: 30px;
  background-size: cover;
  position: relative;
}

.footer .ft_right {
  background: url(../images/flower_footer.png);
  background-repeat: no-repeat;
  height: 216px;
  background-size: contain;
  background-position: bottom;
  width: 280px;
  position: absolute;
  bottom: 0;
  right: 0px;
}

@media screen and (max-width: 568px) {
  .footer .ft_right {
    width: 200px;
  }
}

.popup {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: rgba(57, 63, 63, 0.5);
}

.popup .popup-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: white;
  min-width: 375px;
  height: fit-content;
  margin: auto;
  padding: 20px;
  box-shadow: 0px 14px 40px rgba(33, 43, 54, 0.1);
  border-radius: 8px;
}

@media screen and (max-width: 568px) {
  .popup .popup-container {
    width: 90%;
    min-width: auto !important;
  }
}

.popup .popup-container .modal-content {
  border: none;
}

.popup .popup-container .popup-header {
  display: flex;
  justify-content: space-between;
}

.popup .popup-container .popup-header span.popup-title {
  font-weight: bold;
}

.popup .popup-container .popup-body {
  margin: 20px 0;
}

.popup .popup-container .popup-body .row {
  margin-left: 0;
  margin-right: 0;
}

.popup .popup-container .popup-body .row label {
  padding-left: 0;
  padding-right: 0;
  font-weight: 600;
}

.popup .popup-container .popup-footer .btn-cancel {
  background: #EAEEF2;
  margin-right: 10px;
}

.popup .popup-container .popup-footer .btn-truyvan {
  background: #F7B512;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    outline: none;
}

.select2-container--default .select2-selection--single {
    border: 1px solid #ced4da !important;
    height: 36px !important;
}

.select2-selection__rendered {
    line-height: 36px !important;
}

.content-uudai-box .form-dangky {
    margin-bottom: 0 !important;
}

.support-online {
    position: fixed;
    bottom: 120px;
    right: 1%;
    z-index: 3;
    outline: none !important;
}

    .support-online .support-online-animatiion {
        position: relative;
    }

    .support-online .scale-shadow {
        position: absolute;
        color: #fff;
        width: 70px;
        height: 70px;
        top: 50%;
        z-index: -1;
        left: 50%;
        transform: translate(-50%, -56%);
        border-radius: 50%;
    }

        .support-online .scale-shadow:before {
            position: absolute;
            content: "";
            width: 100%;
            height: 100%;
            border-radius: 50%;
            z-index: -1;
            transform: scale(1.2);
        }

        .support-online .scale-shadow:after {
            position: absolute;
            content: "";
            width: 100%;
            height: 100%;
            border-radius: 50%;
            z-index: -1;
            transform: scale(1.3);
        }

    .support-online #shadow-2:before {
        background: radial-gradient( circle, rgba(255, 193, 37, 0.3), rgba(255, 193, 37, 0.1) );
        animation: animationShadow1 3s infinite linear;
    }

    .support-online #shadow-2:after {
        border: 0.5px solid #fcc602;
        animation: animationShadow2 1.5s infinite;
    }

    .support-online .support-online:focus {
        outline: none !important;
    }

@media screen and (max-width: 768px) {
    .support-online {
        bottom: 40px;
        right: 0px;
    }
}

.support-online #modal-open-box-chat {
    background: none !important;
    border: none !important;
    outline: none !important;
}

#modal-open-box-chat:focus,
#modal-open-box-chat.bnt:focus {
    outline: none !important;
    box-shadow: none;
}

@keyframes animationChatBox {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(15deg);
    }

    20% {
        transform: rotate(-15deg);
    }

    30% {
        transform: rotate(15deg);
    }

    40% {
        transform: rotate(-15deg);
    }

    50% {
        transform: rotate(15deg);
    }

    60% {
        transform: rotate(-15deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@keyframes animationShadow1 {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }

    25% {
        opacity: 1;
        transform: scale(1.3);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }

    75% {
        opacity: 1;
        transform: scale(1.3);
    }

    100% {
        opacity: 0;
        transform: scale(1.1);
    }
}

@keyframes animationShadow2 {
    0% {
        opacity: 0;
        transform: scale(1.2);
    }

    25% {
        opacity: 1;
        transform: scale(1.4);
    }

    50% {
        opacity: 1;
        transform: scale(1.4);
    }

    100% {
        opacity: 0;
        transform: scale(1.6);
    }
}

#bodyChat input[type="checkbox"] {
    position: unset;
    opacity: 1;
}

/*23-11-2021*/
.product-box .list-products .item-product.more-item-product-web {
    display: none;
}

.product-box .btn-show-hide-products-web {
    border-radius: 20px;
    background: white;
    font-weight: 700;
    font-size: 20px;
    border: 1px solid #ab8e47;
    color: #ab8e47;
}

@media screen and (max-width: 568px) {
    .product-box .btn-show-hide-products-web {
        display: none;
    }
}

.product-box .btn-show-more-products-web:hover {
    background: #b9fcff;
}

.product-box .btn-hide-products-web {
    display: none;
}

/*01/01/2022*/
@media screen and (max-width: 992px) {
    .header .header-body .logo {
        margin-left: 32px;
    }

    .header .header-body .right-menu-box .language {
        padding-right: 0;
    }
}

@media screen and (min-width: 568.1px) and (max-width: 1024px) {
    .other-products-box .bx-wrapper .bx-prev {
        left: 0;
    }

    .other-products-box .bx-wrapper .bx-next {
        right: 0;
    }
}
