.chat-box {
  position: fixed;
  right: 30px;
  bottom: 200px;
  z-index: 99999;
  cursor: pointer;
}

@media screen and (max-width: 568px) {
  .chat-box {
    bottom: 70px;
    right: 20px;
  }
}

.chat-box .vungsang {
  box-shadow: 0 0 0 0 #ffde7a;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  margin: 0 0 5px;
  position: relative;
  background-position: 50% 50%;
  background-size: cover;
  /* overflow: hidden; */
  display: flex;
  align-items: center;
  justify-content: center;
  animation-name: devvn_zoom;
  -webkit-animation-name: devvn_zoom;
  animation-delay: 0s;
  -webkit-animation-delay: 0s;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  cursor: pointer;
}

.chat-box .icon-chat {
  animation: shake 0.75s infinite;
  position: absolute;
}

.chat-box .hover-title {
  position: absolute;
  top: 50%;
  right: calc(100% + 10px);
  margin-top: -12.5px;
  font-size: 14px;
  height: 25px;
  line-height: 25px;
  padding: 0px 10px;
  border-radius: 5px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  color: #464646;
  font-weight: 700;
  background-color: #ffd046;
}

.chat-box .hover-title::before {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(136, 183, 213, 0);
  border-width: 5px;
  margin-top: -5px;
  border-left-color: #ffd046;
}

.chat-box .chat-container {
  position: absolute;
  width: 300px;
  right: calc(100% + 10px);
  bottom: 0;
  background: #FFFFFF;
  box-shadow: 0px 14px 40px rgba(33, 43, 54, 0.1);
  border-radius: 8px;
  padding: 15px;
  display: none;
}

@media screen and (max-width: 568px) {
  .chat-box .chat-container {
    right: 0;
    bottom: calc(100% + 10px);
  }
}

.chat-box .chat-container .chat-header {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  padding-bottom: 20px;
}

.chat-box .chat-container .chat-header .close {
  cursor: pointer;
}

.chat-box .chat-container .chat-body {
  display: flex;
  align-items: flex-start;
}

.chat-box .chat-container .chat-body .avatar {
  margin-right: 10px;
  margin-top: 30px;
}

.chat-box .chat-container .chat-body .chat-content {
  width: 100%;
}

.chat-box .chat-container .chat-body .chat-content .chat-bot {
  color: #B6BEC8;
  margin-bottom: 5px;
}

.chat-box .chat-container .chat-body .chat-content .comment {
  background: #FFF9E5;
  border-radius: 8px 8px 8px 0px;
  height: 40px;
  line-height: 40px;
  padding: 0 10px;
  width: fit-content;
  margin-bottom: 5px;
}

.chat-box .chat-container .chat-body .chat-content .form {
  padding: 15px;
  background: #FFF9E5;
  border-radius: 0px 8px 8px 8px;
}

.chat-box .chat-container .chat-body .chat-content .form .formC {
  margin: 10px 0;
}

.chat-box .chat-container .chat-footer {
  margin-top: 20px;
}

.chat-box .chat-container .chat-footer .btn {
  color: #454F5B;
  font-weight: 600;
}

.chat-box .chat-container .chat-footer .btn-close-chat {
  background: #EAEEF2;
}

.chat-box .chat-container .chat-footer .btn-chat {
  background: #FFC20E;
}

@keyframes shake {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }
  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}

@keyframes devvn_zoom {
  0% {
    transform: scale(0.9);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 30px transparent;
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 transparent;
  }
}

.banner-product {
  height: 640px;
  background: url(../images/Banner/Banner_web_eCMB_Web_1.png);
  background-size: cover;
}

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

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

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

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

@media screen and (max-width: 568px) {
    .banner-product {
        height: 480px;
        /*background: url(../images/Banner/Banner_web_eCMB_Mobi_1_v1.jpg) !important;
        background-size: cover !important;*/
    }
}

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

.banner-product .container {
  height: 100%;
}

.banner-product .container .info-box {
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.banner-product .container .info-box .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-product .container .info-box .title1 {
    font-size: 33px;
    line-height: 44px;
    margin-bottom: 10px !important;
  }
}

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

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

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

.content-product-box {
    background: #ffffff;
    padding: 30px 0;
}

/*.content-product-box a {
  text-decoration: none;
  color: black;
}*/

.content-product-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

@media screen and (max-width: 568px) {
  .content-product-box {
    padding: 0;
  }
}

@media screen and (max-width: 568px) {
  .content-product-box .container {
    padding: 0;
  }
}

.content-product-box .content-product-container .introduction-box {
  background: #FFFFFF;
  box-shadow: 0px 2px 16px rgba(33, 43, 54, 0.05);
  border-radius: 20px;
  padding: 24px;
  margin: 20px 0;
}

@media screen and (max-width: 992px) {
  .content-product-box .content-product-container .introduction-box {
    margin: 20px 0;
  }
}

@media screen and (max-width: 568px) {
  .content-product-box .content-product-container .introduction-box {
    margin: 0;
    background: transparent;
    box-shadow: unset;
    padding: 0;
    position: relative;
  }
}

.content-product-box .content-product-container .introduction-box .left-box {
  background: url(../images/eAccount.jpg);
  background-size: cover;
  height: 300px;
  border-radius:8px;
}

.content-product-box .content-product-container .introduction-box .right-box {
  padding-left: 24px;
}

@media screen and (max-width: 568px) {
  .content-product-box .content-product-container .introduction-box .right-box {
    position: absolute;
    color: white;
    bottom: 0;
    padding: 0 10px;
    max-height: 60%;
  }
}

.content-product-box .content-product-container .introduction-box .right-box .right-box-background {
  display: none;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background: black;
  opacity: 0.2;
}

@media screen and (max-width: 568px) {
  .content-product-box .content-product-container .introduction-box .right-box .right-box-background {
    display: block;
    height: calc(100% + 125px);
  }
}

@media screen and (max-width: 568px) {
  .content-product-box .content-product-container .introduction-box .right-box .info-box {
    height: 125px;
    position: absolute;
    bottom: 55px;
  }
}

.content-product-box .content-product-container .introduction-box .right-box .title {
  font-weight: bold;
  font-size: 32px;
  line-height: 48px;
}

@media screen and (max-width: 568px) {
  .content-product-box .content-product-container .introduction-box .right-box .title {
    font-size: 24px;
  }
}

.content-product-box .content-product-container .introduction-box .right-box .description {
  margin-top: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  font-size: 24px;
}

@media screen and (max-width: 568px) {
  .content-product-box .content-product-container .introduction-box .right-box .description {
    font-size: 16px;
    -webkit-line-clamp: 3;
    margin-top: 5px;
  }
}

@media screen and (max-width: 568px) {
    .content-product-box .content-product-container .introduction-box .right-box .btn-box {
        margin-top: 10px !important;
        text-align: right;
        margin-bottom: 10px;
        display: flex;
        justify-content: flex-end;
    }
}

.content-product-box .content-product-container .introduction-box .right-box .btn-box .btn-introduction {
  color: white;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
      border: 1px solid #ffffff;
    border-radius: 20px;
        background: linear-gradient(90deg, #DA2128 0%, #FFDD00 100%);
	
}

@media screen and (max-width: 568px) {
    .content-product-box .content-product-container .introduction-box .right-box .btn-box .btn-introduction {
        font-size: 14px;
        padding: 5px 7px;
        margin-left: 5px !important;
        max-width: 46vw;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        display: -webkit-box;
        line-height: 24px;
    }
}

.content-product-box .content-product-container .tinhnang-box {
  margin: 30px 0;
}

@media screen and (max-width: 992px) {
  .content-product-box .content-product-container .tinhnang-box {
    margin: 30px 0 20px;
  }
}

@media screen and (max-width: 568px) {
  .content-product-box .content-product-container .tinhnang-box {
    margin: 20px 0 0;
  }
}

.content-product-box .content-product-container .tinhnang-box .title {
  font-weight: 800;
  font-size: 32px;
  line-height: 48px;
  color: #212B36;
  margin: 16px 0px;
}

@media screen and (max-width: 568px) {
  .content-product-box .content-product-container .tinhnang-box .title {
    font-size: 24px;
    text-align: center !important;
    background: white;
    margin: 0;
  }
}

@media screen and (max-width: 568px) {
  .content-product-box .content-product-container .tinhnang-box .list-tinhnang {
    margin: 0;
  }
}

.content-product-box .content-product-container .tinhnang-box .list-tinhnang .item-tinhnang-box {
  text-align: center;
  padding: 24px;
}

@media screen and (max-width: 568px) {
  .content-product-box .content-product-container .tinhnang-box .list-tinhnang .item-tinhnang-box {
    padding: 24px 16px;
  }
}

.content-product-box .content-product-container .tinhnang-box .list-tinhnang .item-tinhnang-box .icon {
  width: 44px;
}

.content-product-box .content-product-container .tinhnang-box .list-tinhnang .item-tinhnang-box .name {
  font-weight: 800;
  font-size: 28px;
  line-height: 28px;
  color: #BE1128;
  margin: 8px 0px;
}

.content-product-box .content-product-container .tinhnang-box .list-tinhnang .item-tinhnang-box .list {
  text-align: left;
}

.content-product-box .content-product-container .tinhnang-box .list-tinhnang .item-tinhnang-box .list .item {
  margin: 0 0 10px;
  position: relative;
}

.content-product-box .content-product-container .tinhnang-box .list-tinhnang .item-tinhnang-box .list .item .dot-list {
  width: 12px;
  height: 12px;
  background: #FFC20E;
  border-radius: 50%;
  position: absolute;
  top: 10.5px;
}

    .content-product-box .content-product-container .tinhnang-box .list-tinhnang .item-tinhnang-box .list .item .content {
        font-weight: 600;
        font-size: 24px;
        line-height: 34px;
        display: block;
        margin: 0px 0 0 24px;
        overflow-wrap: break-word;
    }

@media screen and (max-width: 568px) {
    .content-product-box .content-product-container .tinhnang-box .list-tinhnang .item-tinhnang-box .list .item .content {
        font-size: 20px;
    }
}

.content-product-box .content-product-container .trainghiemngay-box {
  margin-top: 30px;
}

@media screen and (max-width: 992px) {
  .content-product-box .content-product-container .trainghiemngay-box .row-bottom {
    display: flex;
    flex-direction: column-reverse;
  }
}

.content-product-box .content-product-container .trainghiemngay-box .row-bottom .left-box .title {
  font-weight: 800;
  font-size: 32px;
  line-height: 48px;
  color: #212B36;
}

@media screen and (max-width: 992px) {
  .content-product-box .content-product-container .trainghiemngay-box .row-bottom .left-box .title {
    text-align: center;
    margin-top: 16px;
  }
}

.content-product-box .content-product-container .trainghiemngay-box .row-bottom .btn-trainghiemngay {
  background: #FFC20E;
  color: #454F5B;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
}

@media screen and (max-width: 568px) {
  .content-product-box .content-product-container .trainghiemngay-box .row-bottom .form-dangky {
    margin-top: 20px;
  }
}

.content-product-box .content-product-container .trainghiemngay-box .row-bottom .form-dangky .form-dangky-right {
  border-radius: 4px;
}

.content-product-box .content-product-container .trainghiemngay-box .row-bottom .form-dangky .form-dangky-right .form-content {
  padding: 24px;
}

.content-product-box .form-dangky .form-container {
  margin: 0;
}

.content-uudai-box {
  background: #fff9e5;
  padding: 30px 0;
}

.content-uudai-box .content-uudai-container .introduction-box {
  background: #FFFFFF;
  box-shadow: 0px 2px 16px rgba(33, 43, 54, 0.05);
  border-radius: 8px;
  padding: 24px;
  margin: 20px 0;
}

@media screen and (max-width: 992px) {
  .content-uudai-box .content-uudai-container .introduction-box {
    margin: 20px 0;
  }
}

@media screen and (max-width: 568px) {
  .content-uudai-box .content-uudai-container .introduction-box {
    margin: 0;
    background: transparent;
    box-shadow: unset;
    padding: 0;
    position: relative;
  }
}

.content-uudai-box .content-uudai-container .introduction-box .left-box {
  background: url(../images/eAccount.jpg);
  background-size: cover;
  height: 300px;
}

.content-uudai-box .content-uudai-container .introduction-box .right-box {
  padding-left: 24px;
}

@media screen and (max-width: 568px) {
  .content-uudai-box .content-uudai-container .introduction-box .right-box {
    position: absolute;
    color: white;
    bottom: 0;
    padding: 0 10px;
    max-height: 60%;
  }
}

.content-uudai-box .content-uudai-container .introduction-box .right-box .right-box-background {
  display: none;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background: black;
  opacity: 0.2;
}

@media screen and (max-width: 568px) {
  .content-uudai-box .content-uudai-container .introduction-box .right-box .right-box-background {
    display: block;
    height: calc(100% + 125px);
  }
}

@media screen and (max-width: 568px) {
  .content-uudai-box .content-uudai-container .introduction-box .right-box .info-box {
    height: 125px;
    position: absolute;
    bottom: 55px;
  }
}

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

@media screen and (max-width: 568px) {
  .content-uudai-box .content-uudai-container .introduction-box .right-box .title {
    font-size: 24px;
  }
}

.content-uudai-box .content-uudai-container .introduction-box .right-box .description {
  margin-top: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  font-size: 22px;
}

@media screen and (max-width: 568px) {
  .content-uudai-box .content-uudai-container .introduction-box .right-box .description {
    font-size: 16px;
    -webkit-line-clamp: 4;
    margin-top: 5px;
  }
}

@media screen and (max-width: 568px) {
  .content-uudai-box .content-uudai-container .introduction-box .right-box .btn-box {
    margin-top: 10px !important;
    text-align: right;
    margin-bottom: 10px;
  }
}

.content-uudai-box .content-uudai-container .introduction-box .right-box .btn-box .btn-introduction {
  color: white;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
}

@media screen and (max-width: 568px) {
  .content-uudai-box .content-uudai-container .introduction-box .right-box .btn-box .btn-introduction {
    font-size: 14px;
  }
}


.content-uudai-box .content-uudai-container .motachitiet-box {
    background: #FFFFFF;
    box-shadow: 0px 2px 16px rgba(33, 43, 54, 0.05);
    border-radius: 8px;
    padding: 24px;
    overflow: auto;
}

@media screen and (max-width: 992px) {
  .content-uudai-box .content-uudai-container .motachitiet-box {
    margin: 20px 0;
  }
}

@media screen and (max-width: 568px) {
  .content-uudai-box .content-uudai-container .motachitiet-box {
    margin: 0;
  }
}

.banner-tintuc {
  height: 640px;
  background: url(../images/Banner/Banner_web_eCMB_Web_1.png);
  background-size: cover;
}

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

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

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

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

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

.content-tintuc-box {
  background: #fff9e5;
}

.content-tintuc-box .content-tintuc-container {
  background: #FFFFFF;
  box-shadow: 0px 2px 16px rgba(33, 43, 54, 0.05);
  border-radius: 8px;
  padding: 24px;
  margin: 30px 0;
}

    .content-tintuc-box .content-tintuc-container .introduction-box {
        border-bottom: 1px solid #D3D8DE;
    }

.content-tintuc-box .content-tintuc-container .introduction-box .category-name {
  font-weight: bold;
  font-size: 16px;
}

.content-tintuc-box .content-tintuc-container .introduction-box .title {
  font-size: 28px;
  font-weight: 700;
  line-height: 40px;
}

.content-tintuc-box .content-tintuc-container .introduction-box .time {
  font-style: italic;
  line-height: 30px;
}

.content-tintuc-box .content-tintuc-container .noidungtintuc-box img {
  width: 100% !important;
  height: auto !important;
}

@media screen and (max-width: 568px) {
  .content-tintuc-box {
    padding-top: 20px !important;
  }
}

.slide-list-products a {
  text-decoration: none;
  color: black;
}

.slide-list-products ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.banner a {
    text-decoration: none;
    color: black;
}

.banner ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.media-box .poster-video-box {
    background: url(../images/Banner/Banner1.png);
    background-size: cover;
    height: 400px;
    position: relative;
}

    .media-box .poster-video-box .btn-control-video {
        width: 70px;
        height: 70px;
        border-radius: 35px;
        background: white;
        background-image: url(../images/ic-play.svg);
        background-repeat: no-repeat;
        background-position: center right 18px;
        z-index: 10;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        cursor: pointer;
        -webkit-animation: ripple 0.7s linear infinite;
        animation: ripple 0.7s linear infinite;
    }

    .media-box .poster-video-box::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(74, 74, 74, 0.8);
        opacity: 0.8;
        z-index: 1;
    }

@-webkit-keyframes ripple {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 3em rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 3em rgba(255, 255, 255, 0.2);
    }

    100% {
        -webkit-box-shadow: 0 0 0 3em rgba(255, 255, 255, 0.2), 0 0 0 5em rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 3em rgba(255, 255, 255, 0.2), 0 0 0 5em rgba(255, 255, 255, 0);
    }
}

@keyframes ripple {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 3em rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 3em rgba(255, 255, 255, 0.2);
    }

    100% {
        -webkit-box-shadow: 0 0 0 3em rgba(255, 255, 255, 0.2), 0 0 0 5em rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 3em rgba(255, 255, 255, 0.2), 0 0 0 5em rgba(255, 255, 255, 0);
    }
}

#modal-video {
    cursor: pointer;
}

    #modal-video .popup-container {
        max-width: 56% !important;
        background: transparent;
    }

        #modal-video .popup-container .modal-content {
            background: transparent;
        }

            #modal-video .popup-container .modal-content .popup-header span.popup-close {
                position: fixed;
                right: 1%;
                font-size: 30px;
                top: 8%;
                color: white;
                z-index: 9999;
                font-weight: 300;
                opacity: 1;
                border-radius: 0.75em;
                width: 1.5em;
                height: 1.5em;
                line-height: 0.8em;
                background-image: url(../images/Small/black-close.png);
                background-size: 0.5em 0.5em;
                background-position: center center;
                background-repeat: no-repeat;
                -webkit-transition: 0.3s all ease-in-out;
                transition: 0.3s all ease-in-out;
                border: 0;
                background-color: white;
                padding: 0;
            }

@media screen and (max-width: 568px) {
    #modal-video .popup-container {
        max-width: 100% !important;
        margin: 0;
        padding: 0;
        width: 100%;
        top: 25%;
    }
}

.content-uudai-box .uudai-box a {
    text-decoration: none;
}

.content-uudai-box .content-uudai-container .motachitiet-box * {
    font-family: inherit !important;
}

.content-product-box .content-product-container .introduction-box .noidungtintuc-box * {
    font-family: inherit !important;
}

.content-product-box .content-product-container .introduction-box .noidungtintuc-box {
    overflow: auto;
}