@charset "UTF-8";
/**
* @author DoanVH
* @since December 2025
**/
@import url("../fonts/stylesheet.css");
body::-webkit-scrollbar-track {
  background-color: #e8eaed;
  /*background*/
}

body::-webkit-scrollbar-thumb {
  background: #d1d1d1;
  /*color*/
}

.scrollbar::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  display: none;
}

.scrollbar::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.scrollbar::-webkit-scrollbar-thumb {
  background: rgba(213, 213, 213, 0.4);
  border-radius: 4px;
}

.scrollbar::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

body {
  font: 400 16px/1.4 "SFProDisplay", sans-serif;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  height: 8px;
  width: 8px;
}

body::-webkit-scrollbar-track {
  background-color: rgba(209, 213, 219, 0);
}

body::-webkit-scrollbar-thumb {
  background: rgb(231, 231, 231);
  border-radius: 12px;
}

body:hover::-webkit-scrollbar-thumb {
  background: rgba(231, 231, 231, 0.6);
  border-radius: 12px;
}

body.disable_scroll {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
b,
strong,
p,
span,
div {
  font-family: "SFProDisplay", sans-serif;
  margin: 0;
  padding: 0;
}

samp {
  font: 400 16px/1.4 "SFProDisplay", sans-serif;
}

a,
a:hover,
a:active,
a:focus {
  text-decoration: none;
}

a,
a:hover,
a:focus,
a:active,
input[type=button],
input[type=text],
input[type=search],
input[type=password],
button {
  outline: none;
  border: none;
  background: none;
}

ul,
ol,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}

/*
|--------------- accor-toggle-default ---------------
dùng chung cho tất cả các section
*/
.accor-toggle-default .tab input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.accor-toggle-default .tab input:checked ~ .tab__content {
  max-height: 800px;
}
.accor-toggle-default .tab__content {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
.accor-toggle-default .tab__content li {
  margin-bottom: 4px;
}
.accor-toggle-default .tab__content a {
  font-size: 15px;
  line-height: 20px;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.accor-toggle-default .tab__content a:hover {
  border-bottom: 1px solid var(--primary);
}
.accor-toggle-default .tab__content p {
  margin: 0;
  padding: 1rem;
}
.accor-toggle-default .tab__label,
.accor-toggle-default .tab__close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--primary);
  cursor: pointer;
  position: relative;
}
.accor-toggle-default .tab__label {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 4px 0;
  font-weight: 700;
}
.accor-toggle-default .tab__label::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 7px;
  line-height: 22px;
  z-index: 2;
  background: url("../images/arrow.svg") center no-repeat;
  width: 30px;
  height: 21px;
  background-size: 8px;
  opacity: 0.8;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
input:checked + .accor-toggle-default .tab__label::after {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}
.accor-toggle-default .tab__close {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

/*
|--------------- end accor-toggle-default ---------------
*/
.scroll-smoth {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  overflow-x: auto;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.scroll-smoth::-webkit-scrollbar {
  display: none;
}

.popup-overlay {
  display: none;
  /* ẩn mặc định */
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1001;
}
.popup-overlay .popup-box {
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.popup-overlay .popup-box .popup-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.popup-overlay .popup-box .popup-content .container-popup {
  position: absolute;
  min-height: 100px;
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  z-index: 10;
  color: #4c4c4c;
  border-radius: 12px;
  background: #fff;
  padding: 24px;
  position: relative;
}
.popup-overlay .popup-box .popup-content .container-popup .popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: rgba(0, 0, 0, 0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 999;
}
.popup-overlay .popup-box .popup-content .container-popup .popup-close::before {
  position: absolute;
  content: "";
  background: #F3F3F3 url("../images/button-close-gray.png") center/36px 36px no-repeat;
  width: 32px;
  height: 32px;
  display: block;
  border-radius: 50%;
}
@media screen and (max-width: 540px) {
  .popup-overlay .popup-box .popup-content .container-popup {
    width: calc(100% - 32px);
  }
}

.default-button-popup {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.default-button-popup .button-popup {
  padding: 0 20px;
  line-height: 44px;
  height: auto;
  background: #4564ED;
  color: #fff;
  border-radius: 8px;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.popup-register-success {
  width: 536px;
  border-radius: 16px;
  text-align: center;
}
@media screen and (max-width: 540px) {
  .popup-register-success {
    width: calc(100% - 32px);
  }
}
.popup-register-success .popup-close {
  right: 16px !important;
  top: 16px !important;
}
.popup-register-success .popup-close::before {
  position: absolute;
  content: "";
  background: #F3F3F3 url("../images/button-close-gray.png") center/36px 36px no-repeat;
  width: 32px;
  height: 32px !important;
  display: block;
  border-radius: 50%;
}
@media screen and (max-width: 540px) {
  .popup-register-success .popup-close {
    right: 16px;
  }
}
.popup-register-success .pop--icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.popup-register-success .pop--icon .icon {
  width: 88px;
  height: 88px;
}
.popup-register-success .pop--title {
  font-size: 28px;
  line-height: 40px;
  font-weight: 700;
  color: #360D3A;
  margin: 4px 0;
}
.popup-register-success .pop--desc {
  margin: 0;
  color: #252525;
  font-size: 12px;
  font-weight: 400;
}
.popup-register-success .default-button-popup .button-popup {
  background: -webkit-gradient(linear, left top, left bottom, from(#FF8F4B), to(#FF5C00));
  background: linear-gradient(180deg, #FF8F4B 0%, #FF5C00 100%);
  border-radius: 12px;
  line-height: 40px;
  font-size: 16px;
  font-weight: 700;
}

.popup-overlay .popup-box .popup-content .container-popup.pop-with-img {
  background: none;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.2509803922);
  border-radius: 22px;
  overflow: hidden;
}
.popup-overlay .popup-box .popup-content .container-popup.pop-with-img img {
  border-radius: 21px;
  display: block;
  margin: 0 auto;
}
.popup-overlay .popup-box .popup-content .container-popup.pop-with-img .popup-close {
  top: 18px;
  right: 18px;
}
@media screen and (max-width: 768px) {
  .popup-overlay .popup-box .popup-content .container-popup.pop-with-img {
    width: calc(100% - 30px);
  }
  .popup-overlay .popup-box .popup-content .container-popup.pop-with-img img {
    max-width: 100%;
  }
}

._js_sw_center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.text-err-red,
.text-error {
  font-size: 14px;
  color: #ff0000;
  padding-top: 2px;
  display: block;
}

:root {
  --primary: #3D3D3D;
  --blue100: #DDE4FC;
  --blue900: #191E67;
  --primaryBlue: #4564ED;
  --loading-grey: #ededed;
  --lightPink: #f8f3f0;
  --lightBrown: #c1b9b9;
  --text888: #888;
  --transition: all 0.2s ease-out 0.05s;
  --transition_shadow: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ----------------- header */
.topbar-widget {
  background: #fff;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.topbar-widget .widget-container {
  margin: 0 auto;
}

.nav-header-epl {
  background: #360D3A;
  -webkit-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.nav-header-epl .container-width {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
  height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
}
.nav-header-epl__logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}
.nav-header-epl__logo img {
  display: block;
  height: 30px;
  width: auto;
}
.nav-header-epl__btn-register {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 40px;
  border-radius: 12px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FF8F4B), to(#FF5C00));
  background: linear-gradient(180deg, #FF8F4B 0%, #FF5C00 100%);
  -webkit-transition: var(--transition_shadow);
  transition: var(--transition_shadow);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 0 25px;
}
.nav-header-epl__btn-register:hover, .nav-header-epl__btn-register:focus {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
          box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  outline: none;
  background: -webkit-gradient(linear, left top, left bottom, from(#FF8F4B), to(#FF5C00));
  background: linear-gradient(180deg, #FF8F4B 0%, #FF5C00 100%);
}
.nav-header-epl__btn-register:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-box-shadow: none;
          box-shadow: none;
  background: -webkit-gradient(linear, left top, left bottom, from(#FF8F4B), to(#FF5C00));
  background: linear-gradient(180deg, #FF8F4B 0%, #FF5C00 100%);
}
@media (max-width: 1440px) {
  .nav-header-epl .container-width {
    width: calc(100% - 30px);
  }
}
@media (max-width: 768px) {
  .nav-header-epl__btn-register {
    line-height: 32px;
    font-weight: 500;
    padding: 0px 16px;
  }
}
@media (max-width: 540px) {
  .nav-header-epl__btn-register {
    padding: 0px 10px;
    font-size: 15px;
  }
}

/* Responsive */
/* -----------------END header */
.js_sticky_topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  -webkit-animation: slideDownFadeIn 0.3s ease forwards;
          animation: slideDownFadeIn 0.3s ease forwards;
}

.js_sticky_nav {
  position: fixed;
  top: 0;
  /* default */
  left: 0;
  width: 100%;
  z-index: 1000;
  -webkit-animation: slideDownFadeIn 0.3s ease forwards;
          animation: slideDownFadeIn 0.3s ease forwards;
}

/* Trạng thái ẩn mượt */
.topbar-widget:not(.js_sticky_topbar) {
  -webkit-animation: slideDownFadeIn 0.3s ease forwards;
          animation: slideDownFadeIn 0.3s ease forwards;
}

.nav-header-epl:not(.js_sticky_nav) {
  -webkit-animation: slideDownFadeIn 0.3s ease forwards;
          animation: slideDownFadeIn 0.3s ease forwards;
}

/* Khi topbar đang sticky thì đẩy nav xuống dưới */
.js_sticky_topbar + .nav-header-epl.js_sticky_nav {
  top: 75px;
}

.nav-header-epl.js_sticky_nav .container-width {
  height: 56px;
}

.topbar-widget.js_sticky_topbar .parents_match {
  height: 75px;
}
.topbar-widget.js_sticky_topbar .parents_match .swiper-button-next, .topbar-widget.js_sticky_topbar .parents_match .swiper-button-prev {
  height: 75px;
  top: calc(50% - 15.5px);
}
.topbar-widget.js_sticky_topbar .match-swiper.swiper .swiper-slide {
  height: 75px;
}

@-webkit-keyframes slideDownFadeIn {
  from {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
    opacity: 0.5;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideDownFadeIn {
  from {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
    opacity: 0.5;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.sec-banner {
  background: #360D3A;
  color: #fff;
}
.sec-banner .banner-bg {
  height: auto;
  max-width: 1920px;
  margin: 0 auto;
}
.sec-banner .banner-bg a {
  width: 100%;
  height: 100%;
  display: block;
}
.sec-banner .banner-bg .img-bn {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.sec-banner .box-container {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.sec-banner .box-container img {
  max-width: 100%;
}
@media screen and (max-width: 1440px) {
  .sec-banner .box-container {
    width: 100%;
  }
}
@media screen and (max-width: 540px) {
  .sec-banner .box-container img {
    margin: 0 auto;
    display: block;
    width: auto;
  }
}

.parents_match {
  position: relative;
  width: 100%;
  max-width: 2560px;
  height: 90px;
}
.parents_match .swiper-button-next,
.parents_match .swiper-button-prev {
  width: 32px;
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1), 0 3px 5px rgba(0, 0, 0, 0.01);
          box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1), 0 3px 5px rgba(0, 0, 0, 0.01);
  background: #FF730A url("../images/icons/icon-arrow-white.svg") no-repeat center center/24px;
  right: 0;
  top: calc(50% - 23.5px);
  -webkit-transition: all 0.2s ease-out 0.05s;
  transition: all 0.2s ease-out 0.05s;
}
.parents_match .swiper-button-next::after,
.parents_match .swiper-button-prev::after {
  display: none;
}
.parents_match .swiper-button-prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  right: unset;
  left: 0;
}
.parents_match .swiper-button-next.swiper-button-disabled,
.parents_match .swiper-button-prev.swiper-button-disabled {
  pointer-events: unset;
  display: none;
}
.parents_match .swiper-button-disabled.swiper-button-lock {
  display: none !important;
}
@media screen and (max-width: 1440px) {
  .parents_match {
    width: 100%;
  }
}

.match-swiper.swiper {
  width: 100%;
  padding: 0;
  /* Tăng kích thước nút */
}
.match-swiper.swiper .swiper-slide {
  background: #fff;
  width: 150px;
  height: 90px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-right: 1px solid #E7E7E7;
}
.match-swiper.swiper .swiper-slide:nth-of-type(1) {
  border-left: 1px solid #E7E7E7;
}
.match-swiper.swiper .swiper-button-next,
.match-swiper.swiper .swiper-button-prev {
  color: #ff6600;
  width: 50px;
  height: 50px;
}
.match-swiper.swiper #match-swiper .swiper-button-next.swiper-button-disabled,
.match-swiper.swiper #match-swiper .swiper-button-prev.swiper-button-disabled {
  display: none;
}

.match-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0px;
  width: 100%;
  padding: 0 16px;
}
.match-item__team {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-size: 14px;
  line-height: 24px;
}
.match-item__logo {
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}
.match-item__name {
  color: #252525;
}
.match-item .final {
  margin-left: auto;
  color: #888;
}
.match-item .final.win {
  color: #3D3D3D;
}
.match-item__time {
  font-size: 12px;
  color: #888;
  margin-top: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.sec-combo-net {
  background: #F7F7F8;
}
.sec-combo-net .combo-net-bg {
  max-width: 1920px;
  margin: 0 auto;
  padding: 80px 0 55px;
}
@media screen and (max-width: 7680px) {
  .sec-combo-net .combo-net-bg {
    padding: 60px 0 45px;
  }
}
@media screen and (max-width: 540px) {
  .sec-combo-net .combo-net-bg {
    padding: 40px 0 25px;
  }
}
.sec-combo-net .box-container {
  margin: 0 auto;
  width: 1440px;
}
@media screen and (max-width: 1440px) {
  .sec-combo-net .box-container {
    width: calc(100% - 30px);
  }
}
.sec-combo-net .box-title {
  width: 1440px;
  margin: 0 auto;
  text-align: center;
}
.sec-combo-net .box-title .label-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 52px;
}
.sec-combo-net .box-title .label-title .text-color {
  color: #FF730A;
  display: block;
}
.sec-combo-net .box-title .label-title .link {
  text-decoration: underline;
}
.sec-combo-net .box-title .label-title .break-link {
  display: block;
}
@media screen and (max-width: 1440px) {
  .sec-combo-net .box-title {
    width: 100%;
  }
}
@media screen and (max-width: 1200px) {
  .sec-combo-net .box-title .label-title {
    font-size: 32px;
    line-height: 44px;
  }
}
@media screen and (max-width: 834px) {
  .sec-combo-net .box-title .label-title {
    font-size: 30px;
    line-height: 34px;
  }
  .sec-combo-net .box-title .label-title .text-color {
    display: inline-block;
  }
}
@media screen and (max-width: 768px) {
  .sec-combo-net .box-title .label-title {
    font-size: 28px;
    line-height: 36px;
  }
  .sec-combo-net .box-title .label-title .text-color,
  .sec-combo-net .box-title .label-title .break-link,
  .sec-combo-net .box-title .label-title .link {
    display: contents;
  }
}
@media screen and (max-width: 360px) {
  .sec-combo-net .box-title .label-title {
    font-size: 24px;
    line-height: 32px;
  }
}

/*
|
|
|---------------------------- slide bảng giá
|
|
*/
.not_label_entertain_combo ._label {
  display: none;
  height: 0 !important;
}
.not_label_entertain_combo ._label::before, .not_label_entertain_combo ._label::after {
  display: none !important;
}
.not_label_entertain_combo .top {
  margin-top: 0 !important;
  border-top: 0 !important;
}
.not_label_entertain_combo .top .span-img::before {
  display: none !important;
}

.parents_entertainment {
  position: relative;
  width: 1440px;
  max-width: 100%;
  margin: 28px auto 0;
}
.parents_entertainment .swiper-button-next,
.parents_entertainment .swiper-button-prev {
  width: 48px !important;
  height: 48px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1), 0 3px 5px rgba(0, 0, 0, 0.01) !important;
          box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1), 0 3px 5px rgba(0, 0, 0, 0.01) !important;
  border-radius: 0 !important;
  background: #fff url("../images/icons/icon-arrow-orange.svg") no-repeat center center/24px !important;
  border: 1px solid #E7E7E7 !important;
  right: -22px;
  -webkit-transition: all 0.2s ease-out 0.05s;
  transition: all 0.2s ease-out 0.05s;
}
.parents_entertainment .swiper-button-next::after,
.parents_entertainment .swiper-button-prev::after {
  display: none;
}
.parents_entertainment .swiper-button-prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  right: unset;
  left: -22px;
}
.parents_entertainment .swiper-button-next.swiper-button-disabled,
.parents_entertainment .swiper-button-prev.swiper-button-disabled {
  pointer-events: unset;
  display: none;
}
.parents_entertainment .swiper-button-disabled.swiper-button-lock {
  display: none !important;
}
.parents_entertainment .swiper-pagination.swiper-pagination-horizontal {
  display: none;
  bottom: -4px;
}
.parents_entertainment .swiper-pagination.swiper-pagination-horizontal .swiper-pagination-bullet {
  background: #D9D9D9;
  opacity: 1;
}
.parents_entertainment .swiper-pagination.swiper-pagination-horizontal .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #FF730A;
  width: 26px;
  height: 8px;
  border-radius: 20px;
}
@media screen and (max-width: 1500px) {
  .parents_entertainment .swiper-button-next {
    right: -10px;
  }
  .parents_entertainment .swiper-button-prev {
    left: -10px;
  }
}
@media screen and (max-width: 1440px) {
  .parents_entertainment {
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .parents_entertainment .swiper-pagination.swiper-pagination-horizontal {
    display: block;
  }
}

.swiper.package-combo-entertainment {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  height: auto;
  min-height: 100px;
  padding: 0 1px;
}
@media screen and (max-width: 540px) {
  .swiper.package-combo-entertainment .swiper-wrapper {
    display: flex !important;
    flex-direction: column;
  }
}

.package-combo-entertainment .swiper-slide {
  font-size: 16px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 100px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: calc(25% - 12px);
  height: auto;
  padding-bottom: 25px;
}
.package-combo-entertainment .swiper-slide .package-content {
  border: 1px solid #E7E7E7;
  border-top: 0;
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-bottom: 100px;
  width: 100%;
  padding-bottom: 32px;
  position: relative;
  background: #fff;
  -webkit-box-shadow: 0px 4px 6px -2px rgba(16, 24, 40, 0.06);
          box-shadow: 0px 4px 6px -2px rgba(16, 24, 40, 0.06);
  -webkit-box-shadow: 0px 7px 9px -4px rgba(16, 24, 40, 0.09);
          box-shadow: 0px 7px 9px -4px rgba(16, 24, 40, 0.09);
}
.package-combo-entertainment .swiper-slide .package-content ._label {
  height: 28px;
  background: #f7f7f8;
  position: absolute;
  width: calc(100% + 4px);
  left: -2px;
  top: 0px;
}
.package-combo-entertainment .swiper-slide .package-content ._label span {
  display: none;
}
.package-combo-entertainment .swiper-slide .package-content .top {
  margin-top: 28px;
  -webkit-border-top-left-radius: 8px;
  -webkit-border-top-right-radius: 8px;
  -moz-border-radius-topleft: 8px;
  -moz-border-radius-topright: 8px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  overflow: hidden;
  background: #E7E7E7;
  height: 1px;
  display: none;
}
.package-combo-entertainment .swiper-slide .package-content .top .span-img {
  position: relative;
  display: block;
}
.package-combo-entertainment .swiper-slide .package-content .top .span-img .swiper-lazy-preloader {
  width: 40px;
  height: 40px;
  border-width: 2px;
  opacity: 0.8;
}
.package-combo-entertainment .swiper-slide .package-content .middle {
  width: calc(100% - 32px);
  max-width: calc(100% - 0px);
  padding: 28px 0px 0px;
  margin: 0 auto;
}
.package-combo-entertainment .swiper-slide .package-content .middle::after {
  width: 17px;
  height: 17px;
  position: absolute;
  content: "";
  background: url("../images/icons/box_top_left.png") no-repeat left top;
  left: -1px;
  top: 28px;
}
.package-combo-entertainment .swiper-slide .package-content .middle::before {
  width: 17px;
  height: 17px;
  position: absolute;
  content: "";
  background: url("../images/icons/box_top_right.png") no-repeat right top;
  right: -1px;
  top: 28px;
}
.package-combo-entertainment .swiper-slide .package-content .middle .head_text {
  border-top: 1px solid #E7E7E7;
  padding-top: 24px;
}
.package-combo-entertainment .swiper-slide .package-content .middle .head_text .package-name {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 4px;
}
.package-combo-entertainment .swiper-slide .package-content .middle .head_text .decs {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  display: block;
  overflow: hidden;
}
.package-combo-entertainment .swiper-slide .package-content .middle .head_text .price {
  font-weight: 700;
  font-size: 32px;
  line-height: 20px;
  margin: 32px 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
}
.package-combo-entertainment .swiper-slide .package-content .middle .head_text .price span {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
.package-combo-entertainment .swiper-slide .package-content .middle .head_text .price .tooltip-container {
  position: relative !important;
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  cursor: pointer !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  margin-left: 6px;
}
.package-combo-entertainment .swiper-slide .package-content .middle .head_text .price .icon-info {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  width: auto !important;
}
.package-combo-entertainment .swiper-slide .package-content .middle .head_text .price .icon-info i {
  background: url("../images/icons/info-circle.svg") no-repeat center center / 16px !important;
  display: inline-block !important;
  width: 20px !important;
  height: 20px !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.package-combo-entertainment .swiper-slide .package-content .middle .head_text .price .tooltip-text {
  visibility: hidden;
  opacity: 0;
  background-color: var(--primary) !important;
  color: #fff !important;
  text-align: left !important;
  padding: 10px 14px !important;
  -webkit-box-shadow: 0px 1px 7px 0 rgba(22, 22, 26, 0.1) !important;
          box-shadow: 0px 1px 7px 0 rgba(22, 22, 26, 0.1) !important;
  position: absolute !important;
  bottom: 28px !important;
  left: 50% !important;
  -webkit-transform: translateX(-50%) !important;
          transform: translateX(-50%) !important;
  width: 240px !important;
  max-width: 280px !important;
  z-index: 9999 !important;
  border-radius: 8px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 18px !important;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease;
          transition: opacity 0.2s ease, visibility 0.2s ease;
  white-space: normal !important;
}
.package-combo-entertainment .swiper-slide .package-content .middle .head_text .price .tooltip-text::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: var(--primary) transparent transparent transparent;
}
@media screen and (max-width: 1024px) {
  .package-combo-entertainment .swiper-slide .package-content .middle .head_text .price .tooltip-text {
    width: 220px !important;
  }
}
@media screen and (max-width: 540px) {
  .package-combo-entertainment .swiper-slide .package-content .middle .head_text .price .tooltip-text {
    width: 200px !important;
    left: auto !important;
    right: -10px !important;
    -webkit-transform: none !important;
            transform: none !important;
  }
  .package-combo-entertainment .swiper-slide .package-content .middle .head_text .price .tooltip-text::after {
    left: auto;
    right: 15px;
    -webkit-transform: none;
            transform: none;
  }
}
.package-combo-entertainment .swiper-slide .package-content .middle .head_text .price .tooltip-container:hover .tooltip-text {
  visibility: visible !important;
  opacity: 1 !important;
}
@media screen and (max-width: 768px) {
  .package-combo-entertainment .swiper-slide .package-content .middle .head_text .price {
    margin: 16px 0 24px;
  }
}
.package-combo-entertainment .swiper-slide .package-content .middle .label-list-ul {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
}
.package-combo-entertainment .swiper-slide .package-content .middle ul {
  margin-top: 16px;
}
.package-combo-entertainment .swiper-slide .package-content .middle ul li {
  background: url("../images/icons/tick-circle-black.svg") left 2px no-repeat;
  background-size: 20px;
  text-align: left;
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  min-height: 24px;
  padding-left: 28px;
  padding-right: 0;
  color: #252525;
  overflow-x: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.package-combo-entertainment .swiper-slide .package-content .middle ul li:nth-last-child(1) {
  margin-bottom: 0;
}
.package-combo-entertainment .swiper-slide .package-content .middle.no_bullet_bg {
  padding-top: 24px;
}
.package-combo-entertainment .swiper-slide .package-content .middle.no_bullet_bg::before {
  display: none;
}
.package-combo-entertainment .swiper-slide .package-content .middle.no_bullet_bg::after {
  background: transparent;
  height: 17px;
  width: 100%;
  top: 0px;
  left: 0;
  border-top: 1px solid #E7E7E7;
  border-radius: 10px;
}
.package-combo-entertainment .swiper-slide .package-content .middle.no_bullet_bg .head_text {
  border-top: 0;
  padding-top: 0;
}
.package-combo-entertainment .swiper-slide .package-content .row-button {
  margin-bottom: 40px;
}
.package-combo-entertainment .swiper-slide .package-content .row-button a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}
.package-combo-entertainment .swiper-slide .package-content .row-button .button {
  color: #FF730A;
  border: 1px solid #FF730A;
  padding: 11px 0;
  width: 100%;
  font-weight: 500;
  font-size: 16px;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  border-radius: 12px;
  background-size: 300% 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: transparent;
}
@media screen and (max-width: 768px) {
  .package-combo-entertainment .swiper-slide .package-content .row-button {
    margin-bottom: 24px;
  }
}
.package-combo-entertainment .swiper-slide .package-content:hover .row-button .button {
  background: #FF730A;
  color: #fff;
}
.package-combo-entertainment .swiper-slide .package-content .label-priority {
  color: #252525;
  font-size: 16px;
  font-weight: 600;
}
.package-combo-entertainment .swiper-slide.with-suggest .package-content {
  border: 2px solid #360D3A;
  /* overflow: hidden; */
}
.package-combo-entertainment .swiper-slide.with-suggest .package-content ._label {
  background: #360D3A url("../images/icons/icon-star.png") no-repeat 58% center;
  height: 27px;
  background-size: 16px;
  line-height: 27px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  width: 100%;
  -webkit-border-top-left-radius: 13px;
  -webkit-border-top-right-radius: 13px;
  -moz-border-radius-topleft: 13px;
  -moz-border-radius-topright: 13px;
  border-top-left-radius: 13px;
  border-top-right-radius: 13px;
}
@media screen and (max-width: 1024px) {
  .package-combo-entertainment .swiper-slide.with-suggest .package-content ._label {
    background-position: 58% center;
  }
}
.package-combo-entertainment .swiper-slide.with-suggest .package-content ._label span {
  display: block;
  padding-right: 25px;
}
@media screen and (max-width: 1024px) {
  .package-combo-entertainment .swiper-slide.with-suggest .package-content ._label span {
    padding-right: 25px;
  }
}
.package-combo-entertainment .swiper-slide.with-suggest .package-content .top {
  border-radius: 0;
  border: 0;
  margin-top: 28px;
  background: none;
}
.package-combo-entertainment .swiper-slide.with-suggest .package-content .top .span-img::before {
  content: "";
  width: 100%;
  height: 0px;
  background: transparent;
}
.package-combo-entertainment .swiper-slide.with-suggest .package-content .middle {
  padding-top: 25px;
}
.package-combo-entertainment .swiper-slide.with-suggest .package-content .middle::after, .package-combo-entertainment .swiper-slide.with-suggest .package-content .middle::before {
  display: none;
}
.package-combo-entertainment .swiper-slide.with-suggest .package-content .row-button .button {
  color: #f8f8ff;
  background: #FF730A;
}
@media screen and (max-width: 1440px) {
  .package-combo-entertainment .swiper-slide {
    width: 340px;
  }
}

.swiper.package-combo-entertainment.not-label-suggest .swiper-slide .package-content ._label {
  display: none;
  height: 0;
}
.swiper.package-combo-entertainment.not-label-suggest .swiper-slide .package-content ._label::before, .swiper.package-combo-entertainment.not-label-suggest .swiper-slide .package-content ._label::after {
  display: none;
}
.swiper.package-combo-entertainment.not-label-suggest .swiper-slide.with-suggest .package-content .top,
.swiper.package-combo-entertainment.not-label-suggest .swiper-slide .package-content .top {
  margin-top: 0;
  border-top: 0;
}
.swiper.package-combo-entertainment.not-label-suggest .swiper-slide .package-content .top .span-img::before {
  display: none;
}

.js_wrapper_entertain_combo {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 12px;
}

.row--text-giahan {
  font-weight: 400;
  font-size: 20px;
  line-height: 22px;
  text-align: center;
  margin-top: 32px;
  color: #000;
  padding: 0 15px;
}
@media screen and (max-width: 768px) {
  .row--text-giahan {
    font-size: 19px;
  }
}
@media screen and (max-width: 540px) {
  .row--text-giahan {
    font-size: 18px;
    line-height: 26px;
  }
}

@media screen and (max-width: 1440px) {
  .swiper.package-combo-entertainment {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .parents_entertainment {
    padding-left: 5px;
    padding-right: 5px;
  }
  .parents_entertainment .swiper-button-next,
  .parents_entertainment .swiper-button-prev {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .parents_entertainment {
    padding-left: 0;
    padding-right: 0;
  }
  .swiper.package-combo-entertainment .swiper-slide .package-content .middle div h4 {
    font-size: 24px;
    line-height: 32px;
  }
}
@media screen and (max-width: 540px) {
  .parents_entertainment {
    padding-left: 0px;
    padding-right: 0px;
  }
  /* Fix mobile: ensure packages display correctly after Swiper destroy */
  /* Override visibility:hidden from layout_v1.3.css .swiper rule */
  .swiper.package-combo-entertainment,
  .package-combo-entertainment {
    display: block !important;
    overflow: visible !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .package-combo-entertainment .swiper-wrapper {
    display: flex !important;
    flex-direction: column !important;
    transform: none !important;
    transition: none !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .package-combo-entertainment .swiper-slide,
  .swiper.package-combo-entertainment .swiper-slide {
    display: flex !important;
    width: 100% !important;
    padding-bottom: 24px;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .swiper.package-combo-entertainment .swiper-slide .package-content ._label {
    height: 0;
  }
  .swiper.package-combo-entertainment .swiper-slide .package-content .top {
    margin-top: 28px;
  }
  .swiper.package-combo-entertainment .swiper-slide .package-content .middle {
    padding-top: 0;
  }
  .swiper.package-combo-entertainment .swiper-slide .package-content .middle::before, .swiper.package-combo-entertainment .swiper-slide .package-content .middle::after {
    top: 0;
  }
  .swiper.package-combo-entertainment .swiper-slide.with-suggest .package-content ._label {
    height: 28px;
    line-height: 28px;
    font-size: 14px;
  }
  .swiper.package-combo-entertainment .swiper-slide.with-suggest .package-content .top {
    margin-top: 27px;
  }
  .swiper.package-combo-entertainment .swiper-slide.with-suggest .package-content .middle .head_text {
    padding-top: 48px;
  }
}
/* section: Combo FPT Play & FPT Internet
lựa chọn tốt nhất để trải nghiệm Giải Ngoại Hạng Anh! */
.sec-combo-about {
  background: #ffffff;
}
.sec-combo-about .combo-about-bg {
  max-width: 1920px;
  margin: 0 auto;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .sec-combo-about .combo-about-bg {
    padding: 60px 0 45px;
  }
}
@media screen and (max-width: 540px) {
  .sec-combo-about .combo-about-bg {
    padding: 40px 0 25px;
  }
}
.sec-combo-about .box-container {
  width: 1440px;
  margin: 0 auto;
  padding: 32px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.sec-combo-about .box-container .flex-items .box-items {
  position: absolute;
  z-index: 10;
  max-width: 750px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 24px;
}
.sec-combo-about .box-container .flex-items .box-items .item {
  padding: 40px;
  width: calc(50% - 12px);
  width: 362px;
  -webkit-transition: all 0.2s ease-out 0.05s;
  transition: all 0.2s ease-out 0.05s;
  border-radius: 16px;
  background: #fff;
  -webkit-box-shadow: 0px 4px 6px -2px rgba(16, 24, 40, 0.031372549);
          box-shadow: 0px 4px 6px -2px rgba(16, 24, 40, 0.031372549);
  -webkit-box-shadow: 0px 9px 9px -4px rgba(16, 24, 40, 0.0784313725);
          box-shadow: 0px 9px 9px -4px rgba(16, 24, 40, 0.0784313725);
  border: 1px solid #E7E7E7;
  text-align: center;
  -webkit-transition: var(--transition_shadow);
  transition: var(--transition_shadow);
}
.sec-combo-about .box-container .flex-items .box-items .item img {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec-combo-about .box-container .flex-items .box-items .item h5 {
  color: #360D3A;
  font-weight: 700;
  font-size: 28px;
  line-height: 40px;
  margin: 16px 0;
}
.sec-combo-about .box-container .flex-items .box-items .item h5 span {
  display: block;
}
.sec-combo-about .box-container .flex-items .box-items .item p {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #3D3D3D;
  margin: 0;
}
.sec-combo-about .box-container .flex-items .box-items .item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
@media (max-width: 1200px) {
  .sec-combo-about .box-container .flex-items .box-items .item {
    padding: 20px;
  }
}
.sec-combo-about .box-container .box-img {
  position: relative;
  right: 0;
}
@media screen and (max-width: 1440px) {
  .sec-combo-about .box-container {
    width: calc(100% - 30px);
  }
}
@media (max-width: 1366px) {
  .sec-combo-about .box-container .flex-items .box-items {
    width: calc(380px + 28vw);
  }
  .sec-combo-about .box-container .flex-items .box-items .item {
    width: 45%;
  }
  .sec-combo-about .box-container .box-img {
    width: 55vw;
  }
  .sec-combo-about .box-container .box-img img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .sec-combo-about .box-container .flex-items .box-items {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow-x: auto;
    -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-top: 6px;
    padding-bottom: 16px;
  }
  .sec-combo-about .box-container .flex-items .box-items .item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 272px;
            flex: 0 0 272px;
    min-width: 319px;
    scroll-snap-align: start;
    padding: 16px;
  }
  .sec-combo-about .box-container .flex-items .box-items .item img {
    width: 52px;
    height: 52px;
  }
  .sec-combo-about .box-container .flex-items .box-items .item h5 {
    font-size: 20px;
    line-height: 28px;
    margin: 3px 0 1px;
  }
  .sec-combo-about .box-container .flex-items .box-items .item h5 span {
    display: inline-block;
  }
  .sec-combo-about .box-container .flex-items .box-items .item p {
    font-size: 14px;
    line-height: 23px;
  }
  .sec-combo-about .box-container .flex-items .box-items::-webkit-scrollbar {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .sec-combo-about .box-container {
    padding: 32px 0 0 0;
  }
  .sec-combo-about .box-container .flex-items {
    width: 100%;
  }
  .sec-combo-about .box-container .flex-items .box-items {
    width: 100%;
    position: relative;
  }
  .sec-combo-about .box-container .flex-items .box-items .item {
    width: 45%;
  }
  .sec-combo-about .box-container .box-img {
    display: none;
    width: 0;
  }
}
@media screen and (max-width: 540px) {
  .sec-combo-about .box-container {
    padding: 24px 0 0;
  }
}
.sec-combo-about .box-title {
  width: 1440px;
  margin: 0 auto;
  text-align: center;
}
.sec-combo-about .box-title .label-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 54px;
}
.sec-combo-about .box-title .label-title .text-color {
  color: #FF730A;
  display: block;
}
@media screen and (max-width: 1440px) {
  .sec-combo-about .box-title {
    width: calc(100% - 30px);
  }
}
@media screen and (max-width: 1200px) {
  .sec-combo-about .box-title .label-title {
    font-size: 32px;
    line-height: 44px;
  }
}
@media screen and (max-width: 834px) {
  .sec-combo-about .box-title .label-title {
    font-size: 30px;
    line-height: 34px;
  }
  .sec-combo-about .box-title .label-title .text-color {
    display: contents;
  }
}
@media screen and (max-width: 768px) {
  .sec-combo-about .box-title .label-title {
    font-size: 28px;
    line-height: 36px;
  }
}
@media screen and (max-width: 360px) {
  .sec-combo-about .box-title .label-title {
    font-size: 24px;
    line-height: 32px;
  }
}

.sec-register-video {
  background: url("../images/bn-video.jpg") center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.sec-register-video .football-bg {
  background: url("../images/bn-video.jpg") center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  min-height: 400px;
  max-width: 1920px;
  margin: 0 auto;
}
@media screen and (max-width: 540px) {
  .sec-register-video .football-bg {
    background-size: cover;
    background-attachment: unset;
    min-height: 538px;
  }
}
.sec-register-video .box-container {
  width: 1440px;
  margin: 0 auto;
  padding: 80px 0;
}
.sec-register-video .box-container .container-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
  padding: 24px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
}
.sec-register-video .box-container .container-flex .column {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(50% - 12px);
          flex: 1 1 calc(50% - 12px);
  border-radius: 16px;
}
.sec-register-video .box-container .container-flex .column .col-img-banner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
}
.sec-register-video .box-container .container-flex .column .col-img-banner .img-thumb {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  border-radius: 16px;
}
.sec-register-video .box-container .container-flex .column .col-img-banner .img-thumb .img-bn {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-transition: var(--transition_shadow);
  transition: var(--transition_shadow);
  display: block;
}
.sec-register-video .box-container .container-flex .column .col-img-banner .img-thumb:hover .img-bn {
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
}
.sec-register-video .box-container .container-flex .column .col-img-banner .img-thumb .row-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  z-index: 9;
  left: 45px;
  width: 100%;
  bottom: calc(20px + 2vw);
}
.sec-register-video .box-container .container-flex .column .col-img-banner .img-thumb .row-btn .btn-orange {
  line-height: 46px;
  border-radius: 12px;
  background: #FF730A;
  -webkit-transition: var(--transition_shadow);
  transition: var(--transition_shadow);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 0 25px;
  width: 310px;
  text-align: center;
}
.sec-register-video .box-container .container-flex .column .col-img-banner .img-thumb .row-btn .btn-orange:hover, .sec-register-video .box-container .container-flex .column .col-img-banner .img-thumb .row-btn .btn-orange:focus {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
          box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  outline: none;
  background: -webkit-gradient(linear, left top, left bottom, from(#FF8F4B), to(#FF5C00));
  background: linear-gradient(180deg, #FF8F4B 0%, #FF5C00 100%);
}
.sec-register-video .box-container .container-flex .column .col-img-banner .img-thumb .row-btn .btn-orange:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-box-shadow: none;
          box-shadow: none;
  background: -webkit-gradient(linear, left top, left bottom, from(#FF8F4B), to(#FF5C00));
  background: linear-gradient(180deg, #FF8F4B 0%, #FF5C00 100%);
}
@media screen and (max-width: 768px) {
  .sec-register-video .box-container .container-flex .column .col-img-banner .img-thumb .row-btn .btn-orange {
    width: 36%;
    min-width: 148px;
    line-height: 38px;
  }
}
@media screen and (max-width: 540px) {
  .sec-register-video .box-container .container-flex .column .col-img-banner .img-thumb .row-btn .btn-orange {
    width: 148px;
    line-height: 22px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 400;
  }
}
.sec-register-video .box-container .container-flex .column .col-video {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
}
.sec-register-video .box-container .container-flex .column .col-video .video-thumb {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  border-radius: 16px;
}
.sec-register-video .box-container .container-flex .column .col-video .video-thumb .icon-yt {
  position: absolute;
  width: 96px;
  height: 96px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: url("../images/icons/i-play.png") center no-repeat;
  background-size: 96px 96px;
}
.sec-register-video .box-container .container-flex .column .col-video .video-thumb .video-banner-img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-transition: var(--transition_shadow);
  transition: var(--transition_shadow);
  display: block;
}
.sec-register-video .box-container .container-flex .column .col-video .video-thumb:hover .video-banner-img {
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
}
@media (max-width: 768px) {
  .sec-register-video .box-container .container-flex .column .col-video .video-thumb .icon-yt {
    background-size: 48px 48px;
  }
}
@media (max-width: 834px) {
  .sec-register-video .box-container .container-flex .column {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    height: 420px;
  }
}
@media screen and (max-width: 768px) {
  .sec-register-video .box-container .container-flex {
    padding: 12px;
    gap: 12px;
  }
}
@media screen and (max-width: 540px) {
  .sec-register-video .box-container .container-flex {
    padding: 8px;
    gap: 8px;
  }
  .sec-register-video .box-container .container-flex .column {
    height: 215px;
  }
}
@media screen and (max-width: 1440px) {
  .sec-register-video .box-container {
    width: calc(100% - 30px);
  }
}
@media screen and (max-width: 768px) {
  .sec-register-video .box-container {
    padding: 60px 0;
  }
  .sec-register-video .box-container .box-container .container-flex .column {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    /* Chiếm 100% chiều rộng */
  }
}
@media screen and (max-width: 540px) {
  .sec-register-video .box-container {
    padding: 40px 0;
  }
  .sec-register-video .box-container .box-container .container-flex {
    padding: 0 5px 0;
  }
  .sec-register-video .box-container .box-container .container-flex .column {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    min-height: 122px;
    padding: 16px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.sec-customer_reviews {
  background: #F6F6F6;
}
.sec-customer_reviews .customer_reviews-bg {
  min-height: 100px;
  max-width: 1920px;
  margin: 0 auto;
}
.sec-customer_reviews .box-container {
  width: 1440px;
  margin: 0 auto;
  padding: 80px 0;
}
.sec-customer_reviews .box-container .support-box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  color: #3D3D3D;
}
.sec-customer_reviews .box-container .support-box .col-left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: calc(50% - 12px);
}
.sec-customer_reviews .box-container .support-box .col-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: calc(50% - 12px);
}
.sec-customer_reviews .box-container .support-box .col-right .label-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 54px;
}
.sec-customer_reviews .box-container .support-box .col-right .label-title .text-color {
  color: #FF730A;
  display: block;
}
@media screen and (max-width: 1440px) {
  .sec-customer_reviews .box-container {
    width: calc(100% - 30px);
  }
}
@media screen and (max-width: 1200px) {
  .sec-customer_reviews .box-container .support-box .col-left {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .sec-customer_reviews .box-container .support-box .col-left img {
    display: block;
    max-width: 100%;
    width: auto;
    margin: 0 auto;
  }
  .sec-customer_reviews .box-container .support-box .col-right .label-title {
    font-size: 30px;
    line-height: 37px;
  }
}
@media screen and (max-width: 1024px) {
  .sec-customer_reviews .box-container .support-box {
    gap: 16px;
  }
  .sec-customer_reviews .box-container .support-box .col-left {
    -webkit-box-flex: 1.2;
        -ms-flex: 1.2;
            flex: 1.2;
    width: calc(55% - 8px);
  }
  .sec-customer_reviews .box-container .support-box .col-right {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: calc(45% - 8px);
  }
}
@media screen and (max-width: 991px) {
  .sec-customer_reviews .box-container .support-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px 24px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .sec-customer_reviews .box-container .support-box .col-left {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .sec-customer_reviews .box-container .support-box .col-right {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media screen and (max-width: 834px) {
  .sec-customer_reviews .box-container .support-box .col-right .label-title {
    font-size: 30px;
    line-height: 34px;
    text-align: center;
  }
  .sec-customer_reviews .box-container .support-box .col-right .label-title .text-color {
    display: inline-block;
  }
}
@media screen and (max-width: 768px) {
  .sec-customer_reviews .box-container {
    padding: 60px 0;
  }
  .sec-customer_reviews .box-container .support-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sec-customer_reviews .box-container .support-box .col-right {
    width: 100%;
  }
  .sec-customer_reviews .box-container .support-box .col-right .label-title {
    font-size: 28px;
    line-height: 36px;
  }
}
@media screen and (max-width: 540px) {
  .sec-customer_reviews .box-container {
    padding: 40px 0;
  }
  .sec-customer_reviews .box-container .support-box {
    gap: 12px 0;
  }
  .sec-customer_reviews .box-container .support-box .col-left {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 360px) {
  .sec-customer_reviews .box-container .support-box .col-right {
    width: 100%;
  }
  .sec-customer_reviews .box-container .support-box .col-right .label-title {
    font-size: 24px;
    line-height: 32px;
  }
}

.parents_customer_reviews {
  position: relative;
  padding-top: 24px;
  width: 100%;
}
.parents_customer_reviews .swiper-button-next,
.parents_customer_reviews .swiper-button-prev {
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.2s ease-out 0.05s;
  transition: all 0.2s ease-out 0.05s;
  -webkit-box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1), 0 3px 5px rgba(0, 0, 0, 0.01);
          box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1), 0 3px 5px rgba(0, 0, 0, 0.01);
  border-radius: 0 !important;
  background: #fff url("../images/icons/icon-arrow-orange.svg") no-repeat center center/24px;
  border: 1px solid #E7E7E7;
  top: calc(100% - 18px);
  left: 62px;
}
.parents_customer_reviews .swiper-button-next::after,
.parents_customer_reviews .swiper-button-prev::after {
  display: none;
}
.parents_customer_reviews .swiper-button-prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  right: unset;
  left: 4px;
}
.parents_customer_reviews .swiper-button-next.swiper-button-disabled,
.parents_customer_reviews .swiper-button-prev.swiper-button-disabled {
  pointer-events: unset;
  display: none;
}
.parents_customer_reviews .swiper-button-disabled.swiper-button-lock {
  display: none !important;
}
.parents_customer_reviews .swiper-pagination.swiper-pagination-horizontal {
  display: none;
  bottom: 0px;
}
.parents_customer_reviews .swiper-pagination.swiper-pagination-horizontal .swiper-pagination-bullet {
  background: #D9D9D9;
  opacity: 1;
}
.parents_customer_reviews .swiper-pagination.swiper-pagination-horizontal .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #FF730A;
  width: 26px;
  height: 8px;
  border-radius: 20px;
}
.parents_customer_reviews .swiper-pagination.fraction-pagination {
  right: 0;
  bottom: 3px;
  color: #888888;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 2px;
}
@media screen and (max-width: 991px) {
  .parents_customer_reviews .swiper-pagination.swiper-pagination-horizontal {
    display: block;
  }
  .parents_customer_reviews .swiper-pagination.fraction-pagination,
  .parents_customer_reviews .swiper-button-next,
  .parents_customer_reviews .swiper-button-prev {
    display: none;
  }
}

.swiper.sw-customer-reviews {
  width: 100%;
  height: auto;
  min-height: 100px;
  margin: 0 auto;
  padding-bottom: 40px;
}
.swiper.sw-customer-reviews .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  /* Căng đều các slide theo chiều cao */
  -webkit-transition: all 0.2s ease-out 0.05s;
  transition: all 0.2s ease-out 0.05s;
  width: 100%;
}
@media screen and (max-width: 540px) {
  .swiper.sw-customer-reviews .swiper-wrapper {
    left: 0;
  }
}
.swiper.sw-customer-reviews .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: auto;
}
.swiper.sw-customer-reviews .swiper-slide .cards {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
  padding: 2px 2px 20px 2px;
  width: calc(100% - 80px);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  /* Kéo dài để lấp đầy chiều cao của slide */
  display: flex;
  flex-direction: column;
}
.swiper.sw-customer-reviews .swiper-slide .cards .card_info {
  background: #fff;
  border: 1px solid #E7E7E7;
  padding: 40px;
  border-radius: 32px;
  -webkit-box-shadow: 0px 4px 6px -2px rgba(16, 24, 40, 0.03);
          box-shadow: 0px 4px 6px -2px rgba(16, 24, 40, 0.03);
  -webkit-box-shadow: 0px 7px 9px -4px rgba(16, 24, 40, 0.05);
          box-shadow: 0px 7px 9px -4px rgba(16, 24, 40, 0.05);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  /* Đảm bảo nội dung bên trong giãn đều */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.swiper.sw-customer-reviews .swiper-slide .cards .card_info .cus-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 24px;
  color: #3D3D3D;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1114px) {
  .swiper.sw-customer-reviews .swiper-slide .cards .card_info .cus-info {
    font-size: 23px;
    line-height: 38px;
  }
}
@media screen and (max-width: 768px) {
  .swiper.sw-customer-reviews .swiper-slide .cards .card_info .cus-info {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 540px) {
  .swiper.sw-customer-reviews .swiper-slide .cards .card_info .cus-info {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 12px;
  }
}
.swiper.sw-customer-reviews .swiper-slide .cards .card_info .cus-info .avatar {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  margin-right: 12px;
  border-radius: 50%;
  user-drag: none;
  -webkit-user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
@media screen and (max-width: 1114px) {
  .swiper.sw-customer-reviews .swiper-slide .cards .card_info .cus-info .avatar {
    width: 72px;
    height: 72px;
  }
}
@media screen and (max-width: 768px) {
  .swiper.sw-customer-reviews .swiper-slide .cards .card_info .cus-info .avatar {
    width: 68px;
    height: 68px;
  }
}
@media screen and (max-width: 540px) {
  .swiper.sw-customer-reviews .swiper-slide .cards .card_info .cus-info .avatar {
    width: 36px;
    height: 36px;
  }
}
.swiper.sw-customer-reviews .swiper-slide .cards .card_info .cus-info .cus-location {
  color: #888888;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  margin: 8px 0 0;
}
@media screen and (max-width: 768px) {
  .swiper.sw-customer-reviews .swiper-slide .cards .card_info .cus-info .cus-location {
    font-size: 16px;
  }
}
.swiper.sw-customer-reviews .swiper-slide .cards .card_info .desc {
  color: #3D3D3D;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  text-align: justify;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .swiper.sw-customer-reviews .swiper-slide .cards .card_info .desc {
    font-size: 15px;
    line-height: 24px;
  }
}
@media screen and (max-width: 768px) {
  .swiper.sw-customer-reviews .swiper-slide .cards .card_info .desc {
    font-size: 15px;
    line-height: 24px;
  }
}
@media screen and (max-width: 540px) {
  .swiper.sw-customer-reviews .swiper-slide .cards .card_info .desc {
    font-size: 14px;
    line-height: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .swiper.sw-customer-reviews .swiper-slide .cards .card_info {
    padding: 20px;
  }
  .swiper.sw-customer-reviews .swiper-slide .cards .card_info .cus-info {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 768px) {
  .swiper.sw-customer-reviews .swiper-slide .cards .card_info {
    padding: 18px;
    border-radius: 16px;
  }
}
@media screen and (max-width: 991px) {
  .swiper.sw-customer-reviews .swiper-slide {
    width: 530px;
  }
  .swiper.sw-customer-reviews .swiper-slide .cards {
    padding: 2px 2px 10px 2px;
  }
}
@media screen and (max-width: 768px) {
  .swiper.sw-customer-reviews .swiper-slide {
    width: 480px;
  }
}
@media screen and (max-width: 540px) {
  .swiper.sw-customer-reviews .swiper-slide {
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .swiper.sw-customer-reviews {
    padding-bottom: 20px;
  }
}

@media screen and (max-width: 1439px) {
  .swiper.sw-customer-reviews {
    width: 100%;
  }
}
.sec-cus-faq {
  background: #fff;
}
.sec-cus-faq .cus-faq-bg {
  min-height: 100px;
  max-width: 1920px;
  margin: 0 auto;
}
.sec-cus-faq .box-container {
  width: 1440px;
  margin: 0 auto;
  padding: 80px 0;
}
.sec-cus-faq .box-container .cus-faq-box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  color: #3D3D3D;
}
.sec-cus-faq .box-container .cus-faq-box .col-left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: calc(50% - 12px);
}
.sec-cus-faq .box-container .cus-faq-box .col-left .label-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 54px;
}
.sec-cus-faq .box-container .cus-faq-box .col-left .label-title .text-color {
  color: #FF730A;
}
.sec-cus-faq .box-container .cus-faq-box .col-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: calc(50% - 12px);
  position: sticky;
  top: 2px;
}
.sec-cus-faq .box-container .cus-faq-box .col-right .img-faq {
  display: block;
  max-width: 100%;
  width: auto;
  margin: 0 auto;
}
@media screen and (max-width: 1440px) {
  .sec-cus-faq .box-container {
    width: calc(100% - 30px);
  }
}
@media screen and (max-width: 991px) {
  .sec-cus-faq .box-container {
    padding: 65px 0;
  }
  .sec-cus-faq .box-container .cus-faq-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
  .sec-cus-faq .box-container .cus-faq-box .col-left,
  .sec-cus-faq .box-container .cus-faq-box .col-right {
    width: 100%;
  }
}
@media screen and (max-width: 834px) {
  .sec-cus-faq .box-container .cus-faq-box .col-left .label-title {
    text-align: center;
    font-size: 30px;
    line-height: 34px;
  }
}
@media screen and (max-width: 768px) {
  .sec-cus-faq .box-container {
    padding: 60px 0;
  }
  .sec-cus-faq .box-container .cus-faq-box .col-left .label-title {
    font-size: 28px;
    line-height: 36px;
  }
}
@media screen and (max-width: 540px) {
  .sec-cus-faq .box-container {
    padding: 40px 0;
  }
}
@media screen and (max-width: 360px) {
  .sec-cus-faq .box-container .cus-faq-box .col-left .label-title {
    font-size: 24px;
    line-height: 32px;
  }
}

.accor-faq--fpts {
  padding-top: 20px;
}
.accor-faq--fpts .tab--fpt-wifi7,
.accor-faq--fpts .toggle-rows {
  padding: 0px;
  margin: 0 0 24px;
  overflow: hidden;
  -webkit-transition: var(--transition_shadow);
  transition: var(--transition_shadow);
  border-bottom: 1px solid #D1D1D1;
}
.accor-faq--fpts .tab--fpt-wifi7 .toggle-container .tab__content,
.accor-faq--fpts .toggle-rows .toggle-container .tab__content {
  padding: 0px;
  color: var(--text888);
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
}
.accor-faq--fpts .tab--fpt-wifi7:nth-last-of-type(1),
.accor-faq--fpts .toggle-rows:nth-last-of-type(1) {
  margin-bottom: 0;
  border-bottom: 0;
}
.accor-faq--fpts .tab--fpt-wifi7:nth-last-of-type(1) .toggle-container .tab__content p,
.accor-faq--fpts .toggle-rows:nth-last-of-type(1) .toggle-container .tab__content p {
  margin-bottom: 0;
}
.accor-faq--fpts .tab--fpt-wifi7:hover,
.accor-faq--fpts .toggle-rows:hover {
  background: rgba(255, 255, 255, 0.25);
}
.accor-faq--fpts .tab--fpt-wifi7 input:checked + .tab__content,
.accor-faq--fpts .toggle-rows input:checked + .tab__content {
  max-height: unset;
  padding: 0;
}
.accor-faq--fpts .accor-title {
  color: var(--primary);
  padding: 0 32px 0 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 24px;
}
@media screen and (max-width: 991px) {
  .accor-faq--fpts .accor-title {
    font-weight: 600;
    font-size: 20px;
  }
}
@media screen and (max-width: 540px) {
  .accor-faq--fpts .accor-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 21px;
  }
}
.accor-faq--fpts .tab__content .text,
.accor-faq--fpts .tab__content p {
  margin: 0 0 22px;
  padding: 0;
  line-height: 150%;
}
.accor-faq--fpts .tab__content .list-ul li {
  list-style: none;
  color: #000;
  margin-left: 0px;
  padding-left: 24px;
  position: relative;
  margin-bottom: 6px;
}
.accor-faq--fpts .tab__content .list-ul li::after {
  position: absolute;
  left: 8px;
  top: -1px;
  content: "•";
  font-size: 17px;
}
.accor-faq--fpts .tab__content .list-ul li a {
  color: #678BF3;
  border-bottom: 1px solid #678BF3;
}
.accor-faq--fpts .tab__label {
  -webkit-tap-highlight-color: transparent;
  /* Tắt flash khi tap */
  tap-highlight-color: transparent;
  -webkit-transition: none !important;
  transition: none !important;
}
.accor-faq--fpts .tab__label:focus, .accor-faq--fpts .tab__label:active {
  background-color: inherit !important;
  /* Ngăn đổi màu */
  outline: none !important;
}
@media (hover: none) {
  .accor-faq--fpts .tab__label:hover {
    background: inherit !important;
  }
  .accor-faq--fpts .tab__label {
    -webkit-transition: none !important;
    transition: none !important;
  }
}
.accor-faq--fpts .tab__label::after {
  top: 4px;
  right: 0px;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  background: url("../images/icons/arrow-up-black.svg") center no-repeat;
  width: 24px;
  height: 24px;
  background-size: 24px;
  opacity: 1;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
}
@media screen and (max-width: 540px) {
  .accor-faq--fpts .tab__label::after {
    top: 0px;
  }
}
.accor-faq--fpts .tab input:checked + .tab__label {
  margin-bottom: 8px;
}
.accor-faq--fpts .tab input:checked + .tab__label::after {
  background: url("../images/icons/arrow-up-black.svg") center no-repeat;
  background-size: 24px;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
@media screen and (max-width: 768px) {
  .accor-faq--fpts .tab__label::after,
  .accor-faq--fpts .tab input:checked + .tab__label::after {
    background-size: 10px;
  }
}
@media screen and (max-width: 540px) {
  .accor-faq--fpts {
    padding-top: 16px;
  }
  .accor-faq--fpts .tab input:checked + .tab__label {
    margin-bottom: 6px;
  }
  .accor-faq--fpts .tab--fpt-wifi7,
  .accor-faq--fpts .toggle-rows {
    margin-bottom: 16px;
  }
  .accor-faq--fpts .tab__content .text,
  .accor-faq--fpts .tab__content p {
    margin: 0 0 12px;
    padding: 0;
    font-size: 16px;
    font-size: 15.5px;
    line-height: 21px;
  }
}

.sec-movie-guide {
  background: #111921 url("../images/movie-guide-bg.jpg") center no-repeat;
  background-attachment: fixed;
  background-size: cover;
  min-height: 200px;
  color: #fff;
  /*
  |
  |
  |---------------------------- tab content
  |
  |
  io/cssjockey/pen/njywEE
  */
}
.sec-movie-guide .movie-guide-bg {
  max-width: 1920px;
  min-height: 300px;
  margin: 0 auto;
}
@media screen and (max-width: 540px) {
  .sec-movie-guide .movie-guide-bg {
    min-height: auto;
  }
}
.sec-movie-guide .box-container {
  margin: 0 auto;
  width: 100%;
  max-width: 1440px;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .sec-movie-guide .box-container {
    padding: 60px 0;
  }
}
@media screen and (max-width: 540px) {
  .sec-movie-guide .box-container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.sec-movie-guide .box-title {
  width: 1440px;
  margin: 0 auto;
  text-align: center;
}
.sec-movie-guide .box-title .label-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 54px;
}
.sec-movie-guide .box-title .label-title .text-color {
  color: #FF730A;
}
.sec-movie-guide .box-title p {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: #D1D1D1;
  margin-top: 8px;
}
@media screen and (max-width: 1440px) {
  .sec-movie-guide .box-title {
    width: calc(100% - 30px);
  }
}
@media screen and (max-width: 1200px) {
  .sec-movie-guide .box-title .label-title {
    font-size: 32px;
    line-height: 44px;
  }
}
@media screen and (max-width: 1024px) {
  .sec-movie-guide .box-title p {
    margin-top: 4px;
  }
}
@media screen and (max-width: 834px) {
  .sec-movie-guide .box-title .label-title {
    font-size: 30px;
    line-height: 34px;
  }
  .sec-movie-guide .box-title .label-title .text-color {
    display: inline-block;
  }
}
@media screen and (max-width: 768px) {
  .sec-movie-guide .box-title .label-title {
    font-size: 28px;
    line-height: 36px;
  }
}
@media (max-width: 540px) {
  .sec-movie-guide .box-title p {
    font-size: 14px;
    line-height: 20px;
    margin-top: 2px;
  }
}
@media screen and (max-width: 360px) {
  .sec-movie-guide .box-title .label-title {
    font-size: 24px;
    line-height: 32px;
  }
}
.sec-movie-guide .div-tabs {
  margin-top: 40px;
}
.sec-movie-guide .div-tabs ul.tabs-movie-guide {
  margin: 0px;
  padding: 0px;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .sec-movie-guide .div-tabs ul.tabs-movie-guide {
    margin-bottom: 30px;
    gap: 18px;
  }
}
@media screen and (max-width: 540px) {
  .sec-movie-guide .div-tabs ul.tabs-movie-guide {
    gap: 6px;
  }
}
@media screen and (max-width: 390px) {
  .sec-movie-guide .div-tabs ul.tabs-movie-guide {
    margin-bottom: 20px;
    gap: 12px;
  }
}
@media screen and (max-width: 375px) {
  .sec-movie-guide .div-tabs ul.tabs-movie-guide {
    gap: 8px;
  }
}
.sec-movie-guide .div-tabs ul.tabs-movie-guide li {
  background: none;
  color: #ffffff;
  display: inline-block;
  padding: 0 16px 0 62px;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  line-height: 64px;
  border-radius: 12px;
  border: 1px solid transparent;
}
@media screen and (max-width: 540px) {
  .sec-movie-guide .div-tabs ul.tabs-movie-guide li {
    font-size: 14px;
    padding: 0 12px 0 34px;
    line-height: 48px;
  }
}
@media screen and (max-width: 390px) {
  .sec-movie-guide .div-tabs ul.tabs-movie-guide li {
    padding: 0 10px 0 32px;
  }
}
.sec-movie-guide .div-tabs ul.tabs-movie-guide li.current {
  background: rgba(80, 80, 80, 0.25);
  border: 1px solid #FF730A;
}
.sec-movie-guide .div-tabs ul.tabs-movie-guide li.tab_link_mobile {
  background: url("../images/icons/guide-tab-mobile.svg");
}
.sec-movie-guide .div-tabs ul.tabs-movie-guide li.tab_link_desktop {
  background: url("../images/icons/guide-tab-desktop.svg");
}
.sec-movie-guide .div-tabs ul.tabs-movie-guide li.tab_link_tv {
  background: url("../images/icons/guide-tab-tv.svg");
}
.sec-movie-guide .div-tabs ul.tabs-movie-guide li.tab_link {
  background-size: 32px;
  background-position: 16px center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 540px) {
  .sec-movie-guide .div-tabs ul.tabs-movie-guide li.tab_link {
    background-size: 24px;
    background-position: 6px center;
  }
}
.sec-movie-guide .div-tabs .tab-content {
  display: none;
}
.sec-movie-guide .div-tabs .tab-content.current {
  display: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sec-movie-guide .div-tabs .tab-content > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: auto;
  white-space: nowrap;
}
@media screen and (max-width: 1440px) {
  .sec-movie-guide .div-tabs .tab-content > div .img-tab-mobile {
    max-width: 100%;
  }
  .sec-movie-guide .div-tabs .tab-content > div .img-tab-mobile img {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .sec-movie-guide .div-tabs .tab-content > div .img-tab-mobile {
    width: 1100px;
    max-width: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .sec-movie-guide .div-tabs .tab-content > div .img-tab-mobile img {
    width: 1100px;
  }
}
@media screen and (max-width: 768px) {
  .sec-movie-guide .div-tabs .tab-content > div .img-tab-mobile img {
    width: auto;
    margin: 0 auto;
  }
}
@media screen and (max-width: 540px) {
  .sec-movie-guide .div-tabs .tab-content > div .img-tab-mobile {
    width: 586px;
    width: auto;
  }
}
@media screen and (max-width: 1440px) {
  .sec-movie-guide .div-tabs .tab-content > div .img-tab-desktop {
    max-width: 100%;
  }
  .sec-movie-guide .div-tabs .tab-content > div .img-tab-desktop img {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .sec-movie-guide .div-tabs .tab-content > div .img-tab-desktop {
    width: 1100px;
    max-width: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .sec-movie-guide .div-tabs .tab-content > div .img-tab-desktop img {
    width: 1100px;
  }
}
@media screen and (max-width: 768px) {
  .sec-movie-guide .div-tabs .tab-content > div .img-tab-desktop img {
    width: auto;
    margin: 0 auto;
  }
}
@media screen and (max-width: 540px) {
  .sec-movie-guide .div-tabs .tab-content > div .img-tab-desktop {
    width: 569px;
    width: auto;
  }
}
@media screen and (max-width: 1440px) {
  .sec-movie-guide .div-tabs .tab-content > div .img-tab-tv {
    max-width: 100%;
  }
  .sec-movie-guide .div-tabs .tab-content > div .img-tab-tv img {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .sec-movie-guide .div-tabs .tab-content > div .img-tab-tv {
    width: 1100px;
    max-width: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .sec-movie-guide .div-tabs .tab-content > div .img-tab-tv img {
    width: 1100px;
  }
}
@media screen and (max-width: 768px) {
  .sec-movie-guide .div-tabs .tab-content > div .img-tab-tv img {
    width: auto;
    margin: 0 auto;
  }
}
@media screen and (max-width: 540px) {
  .sec-movie-guide .div-tabs .tab-content > div .img-tab-tv {
    width: auto;
  }
}
@media screen and (max-width: 1439px) {
  .sec-movie-guide .div-tabs {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 768px) {
  .sec-movie-guide .div-tabs {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media screen and (max-width: 540px) {
  .sec-movie-guide {
    background-attachment: unset;
  }
}

.sec-marquee-img {
  background: #fff;
}
.sec-marquee-img .marquee-img-bg {
  max-width: 1920px;
  margin: 0 auto;
}
.sec-marquee-img .box-container {
  width: 100%;
  margin: 0 auto;
  padding: 80px 0;
}
@media screen and (max-width: 1366px) {
  .sec-marquee-img .box-container {
    padding: 65px 0;
  }
}
@media screen and (max-width: 834px) {
  .sec-marquee-img .box-container {
    padding: 60px 0;
  }
}
@media screen and (max-width: 540px) {
  .sec-marquee-img .box-container {
    padding: 24px 0;
  }
}

.swiper.marquee-swiper {
  -webkit-mask-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(15%, white), color-stop(85%, white), to(transparent));
  -webkit-mask-image: linear-gradient(to right, transparent 0%, white 15%, white 85%, transparent 100%);
          mask-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(15%, white), color-stop(85%, white), to(transparent));
          mask-image: linear-gradient(to right, transparent 0%, white 15%, white 85%, transparent 100%);
}

.swiper-wrapper.marquee-swiper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.swiper-slide.marquee-swiper {
  width: auto;
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.swiper-slide.marquee-swiper img {
  width: auto;
  height: 100%;
}
@media screen and (max-width: 1366px) {
  .swiper-slide.marquee-swiper {
    height: 100px;
  }
}
@media screen and (max-width: 991px) {
  .swiper-slide.marquee-swiper {
    height: 90px;
  }
}
@media screen and (max-width: 834px) {
  .swiper-slide.marquee-swiper {
    height: 80px;
  }
}
@media screen and (max-width: 768px) {
  .swiper-slide.marquee-swiper {
    height: 60px;
  }
}
@media screen and (max-width: 540px) {
  .swiper-slide.marquee-swiper {
    height: 36px;
  }
}

.sec-register-combo {
  background: -webkit-gradient(linear, left top, right top, from(#FF983C), to(#FE7043));
  background: linear-gradient(90deg, #FF983C 0%, #FE7043 100%);
  background-size: cover;
  min-height: 200px;
  color: #fff;
}
.sec-register-combo .register-combo {
  background: #FF983C url("../images/register-combo-bg.jpg") center no-repeat;
  background-size: cover;
  min-height: 636px;
  max-width: 1920px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 834px) {
  .sec-register-combo .register-combo {
    min-height: auto;
  }
}
@media screen and (max-width: 540px) {
  .sec-register-combo .register-combo {
    background: url("../images/register-combo-bg-m.jpg") center no-repeat;
    min-height: auto;
    background-size: cover;
  }
}
.sec-register-combo .box-container {
  margin: 0 auto;
  width: 100%;
  max-width: 1440px;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 1440px) {
  .sec-register-combo .box-container {
    width: calc(100% - 30px);
  }
}
@media screen and (max-width: 768px) {
  .sec-register-combo .box-container {
    padding: 60px 0;
  }
}
@media screen and (max-width: 540px) {
  .sec-register-combo .box-container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.form--register-container {
  width: 530px;
  min-height: 100px;
  background: #fff;
  border-radius: 20px;
  z-index: 10;
  color: #4c4c4c;
  border-radius: 12px;
  background: #fff;
  padding: 32px 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .form--register-container {
    margin: 0 auto;
    width: 500px;
    padding: 16px 24px;
  }
}
@media screen and (max-width: 540px) {
  .form--register-container {
    width: 100%;
    padding: 12px 20px;
  }
}

.popup-register-combo {
  width: 536px;
  border-radius: 16px;
  text-align: center;
}
.popup-register-combo .popup-close {
  right: 16px !important;
  top: 16px !important;
}
.popup-register-combo .popup-close::before {
  position: absolute;
  content: "";
  background: #F3F3F3 url("../images/button-close-gray.png") center/36px 36px no-repeat;
  width: 32px;
  height: 32px !important;
  display: block;
  border-radius: 50%;
}
@media screen and (max-width: 540px) {
  .popup-register-combo .popup-close {
    right: 16px;
  }
}
.popup-register-combo .pop--icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.popup-register-combo .pop--icon .icon {
  width: 88px;
  height: 88px;
}
.popup-register-combo .pop--title {
  font-size: 28px;
  line-height: 40px;
  font-weight: 700;
  color: #360D3A;
  margin: 0 0 4px;
}
.popup-register-combo .pop--desc {
  margin: 4px 0 16px;
  color: #888888;
  font-size: 12px;
  font-weight: 400;
}
.popup-register-combo .default-button-popup .button-popup {
  background: -webkit-gradient(linear, left top, left bottom, from(#FF8F4B), to(#FF5C00));
  background: linear-gradient(180deg, #FF8F4B 0%, #FF5C00 100%);
  border-radius: 12px;
  line-height: 40px;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (max-width: 540px) {
  .popup-register-combo {
    width: calc(100% - 30px);
  }
}
@media screen and (max-width: 360px) {
  .popup-register-combo .pop--title {
    font-size: 26px;
    line-height: 32px;
  }
}

.popup-overlay .popup-box .popup-content .container-popup.popup-register-combo {
  padding: 32px 40px;
}
@media screen and (max-width: 540px) {
  .popup-overlay .popup-box .popup-content .container-popup.popup-register-combo {
    padding: 16px 16px;
  }
}
@media screen and (max-width: 360px) {
  .popup-overlay .popup-box .popup-content .container-popup.popup-register-combo {
    width: calc(100% - 20px);
  }
}

.form--register-combo {
  position: relative;
  display: block;
  text-align: left;
}
.form--register-combo .form-title {
  font-size: 28px;
  line-height: 40px;
  font-weight: 700;
  color: #360D3A;
  margin: 0 0 4px;
  text-align: center;
}
.form--register-combo .form-title span {
  display: block;
}
.form--register-combo .form-desc {
  margin: 4px 0 16px;
  color: #888888;
  font-size: 12px;
  font-weight: 400;
  text-align: center;
}
.form--register-combo .form-register h4 {
  text-align: center;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
}
@media screen and (max-width: 540px) {
  .form--register-combo .form-register h4 {
    font-size: 24px;
    line-height: 32px;
  }
}
.form--register-combo .form-register input[type=text] {
  border: 1px solid #ccc;
  border-radius: 16px;
  line-height: 46px;
  height: auto;
  padding: 0 12px;
  font-size: 16px;
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media screen and (max-width: 540px) {
  .form--register-combo .form-register input[type=text] {
    height: 44px;
    line-height: 44px;
  }
}
.form--register-combo .form-register .row-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-top: 20px;
}
.form--register-combo .form-register .row-text div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 540px) {
  .form--register-combo .form-register .row-text {
    display: block;
  }
  .form--register-combo .form-register .row-text div:nth-of-type(1) {
    margin-bottom: 16px;
  }
}
.form--register-combo .form-register .rows {
  margin-top: 16px;
}
.form--register-combo .form-register .row-btn {
  margin-top: 32px;
}
.form--register-combo .form-register .row-btn button {
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#FF8F4B), to(#FF5C00));
  background: linear-gradient(180deg, #FF8F4B 0%, #FF5C00 100%);
  border-radius: 12px;
  line-height: 40px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
}
.form--register-combo .form-register .row-btn .link,
.form--register-combo .form-register .row-btn .desc-bottom {
  font-size: 12px;
  color: #888888;
  margin-top: 16px;
}
.form--register-combo .form-register .row-btn .link {
  margin-top: 0;
  font-weight: 700;
}
.form--register-combo .form-register .row-btn .desc-bottom {
  text-align: center;
  line-height: 20px;
}
@media screen and (max-width: 540px) {
  .form--register-combo .form-register .row-btn {
    margin-top: 24px;
  }
  .form--register-combo .form-register .row-btn button {
    line-height: 44px;
  }
}
.form--register-combo .form-register label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2px;
}
.form--register-combo .form-register .note {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #000;
  margin: 0;
}
.form--register-combo .form-register .note.note-under-button {
  padding-top: 8px;
}
@media screen and (max-width: 540px) {
  .form--register-combo .form-register {
    top: 80px;
    left: 0;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    width: 100%;
  }
}
@media screen and (max-width: 360px) {
  .form--register-combo .form-title {
    font-size: 24px;
    line-height: 32px;
  }
}

.form-control {
  width: 100%;
  padding: 12px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
}

.select2-container {
  width: 100% !important;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.select2-container--default .select2-selection--single {
  height: 48px;
  border: 1px solid #ccc;
  border-radius: 16px;
  padding-left: 12px;
  padding-right: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 540px) {
  .select2-container--default .select2-selection--single {
    height: 44px;
  }
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 0;
  line-height: 48px;
}
@media screen and (max-width: 540px) {
  .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 44px;
  }
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  right: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  margin-right: 4px;
  position: absolute;
  right: 30px;
}

.sec--customer-registration___xxxx {
  border-bottom: 1px solid #E7E7E7;
  margin-bottom: 80px;
}
.sec--customer-registration___xxxx .new-title-label {
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .sec--customer-registration___xxxx .new-title-label {
    padding-bottom: 16px;
  }
}
@media screen and (max-width: 768px) {
  .sec--customer-registration___xxxx {
    margin-bottom: 40px;
  }
}

.dtest {
  color: red;
  font-size: 55px;
}

/* ----------------- footer */
.footer {
  background: #F8F9FA;
  padding: 40px 0 80px;
  color: var(--primary);
  /* Responsive */
}
.footer .footer-container {
  max-width: 1440px;
  margin: 0 auto;
  color: var(--primary);
}
.footer .footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
}
.footer .footer-content .footer-left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.footer .footer-content .footer-left p {
  margin: 8px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.footer .footer-content .footer-left p img {
  margin-right: 6px;
  margin-top: 2px;
  vertical-align: middle;
}
.footer .footer-content .footer-left p a {
  color: var(--primary);
}
.footer .footer-content .footer-left p.space {
  margin: 18px 0;
}
@media (max-width: 540px) {
  .footer .footer-content .footer-left p.space {
    margin: 14px 0;
  }
}
.footer .footer-content .footer-left .text-head {
  margin: 0 0 20px 0;
  font-weight: 700;
}
.footer .footer-content .footer-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.footer .footer-content .footer-right .footer-col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.footer .footer-content .footer-right .footer-col .foot-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer .footer-content .footer-right .footer-col .foot-title .arrow {
  width: 12px;
  height: 12px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  background: url("../images/icons/arrow.svg") center no-repeat;
  width: 30px;
  height: 21px;
  background-size: 8px;
  opacity: 0.8;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
.footer .footer-content .footer-right .footer-col .link-footer {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}
.footer .footer-content .footer-right .footer-col .link-footer li {
  margin-bottom: 8px;
  line-height: 24px;
}
.footer .footer-content .footer-right .footer-col .link-footer li a {
  text-decoration: none;
  color: var(--primary);
}
.footer .footer-content .footer-right .footer-col .link-footer li a:hover {
  text-decoration: underline;
}
.footer .footer-content .footer-right .footer-col .link-footer li:nth-last-child(1) {
  margin-bottom: 0;
}
@media (max-width: 540px) {
  .footer .footer-content .footer-right .footer-col .link-footer li {
    line-height: 19px;
  }
}
.footer .footer-content .footer-right .footer-col.active .foot-title .arrow {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}
@media screen and (min-width: 992px) {
  .footer .footer-content .footer-right .footer-col .foot-title {
    cursor: default;
  }
}
@media (max-width: 1440px) {
  .footer {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 991px) {
  .footer .footer-top {
    border-bottom: 0;
  }
  .footer .footer-top .footer-social {
    display: none;
  }
  .footer .footer-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .footer .footer-content .footer-right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .footer .footer-content .footer-right .footer-col {
    padding-bottom: 10px;
  }
  .footer .footer-content .footer-right .footer-col .link-footer {
    display: none;
  }
  .footer .footer-content .footer-right .footer-col.active .link-footer {
    display: block;
    margin-top: 8px;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 40px 15px;
  }
}
@media (max-width: 540px) {
  .footer .footer-content {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  .footer .footer-col .link-footer {
    display: block !important;
  }
  .footer .footer-col .foot-title {
    cursor: default;
  }
  .footer .footer-col .foot-title .arrow {
    display: none;
  }
}

.fix-call_zalo {
  position: fixed;
  right: 20px;
  bottom: 100px;
  z-index: 97;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fix-call_zalo a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: block;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
}

.fix-call_zalo a:hover {
  transform: scale(1.1);
}

.fix-call_zalo .zalo-icon-fix {
  background: #fff url("../images/zalo-icon.png") center center no-repeat;
  background-size: 100%;
}

.fix-call_zalo .call-icon-fix {
  background: url("../../../front-end/assets/images/icon-call-green.png") center center no-repeat;
  background-size: 100%;
}

@media (max-width: 768px) {
  .fix-call_zalo {
    bottom: 120px;
  }
  .fix-call_zalo a {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 540px) {
  .fix-call_zalo {
    right: 15px;
    bottom: 110px;
  }
}

/* Livechat SOP - position above call/zalo icons */
#livechat-sop {
  position: fixed !important;
  right: 20px !important;
  bottom: 180px !important;
  z-index: 99 !important;
}

@media (max-width: 768px) {
  #livechat-sop {
    bottom: 200px !important;
  }
}

@media (max-width: 540px) {
  #livechat-sop {
    right: 15px !important;
    bottom: 180px !important;
  }
}

/* -----------------END footer */

/* ===============================================
   SHIMMER LOADING EFFECT FOR PACKAGES
   =============================================== */

/* Shimmer animation keyframes */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* Hide online-gov-vn for EPL page */
.online-gov-vn {
  display: none !important;
}

/*# sourceMappingURL=layouts.css.map */
