/* [project]/lib/components/Language/scss/language.scss.css [app-client] (css) */
.langswitch {
  box-sizing: border-box;
  letter-spacing: .2px;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  background: #fff;
  border-radius: 2rem;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  line-height: 16px;
  position: relative;
}

.langswitch .lang-selected {
  color: #000;
  background: none;
  border-radius: 50px;
  padding: 5px 15px 5px 5px;
}

.langswitch ul {
  z-index: 999;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  width: max-content;
  max-width: 200px;
  margin: 0;
  padding: 5px;
  font-size: 15px;
  top: 52px;
  right: 0;
}

.langswitch ul li {
  margin-bottom: 5px;
  padding: 5px;
}

.langswitch ul li:hover {
  background: #00000017;
  border-radius: 5px;
}

.langswitch img {
  border-radius: 50%;
  width: 22px;
  height: 22px;
}

.langswitch ul {
  font-size: .9em;
}

.langswitch ul img {
  width: 16px;
  height: 16px;
}

.template-dark .langswitch ul {
  color: #fff;
  background-color: #ffffff29;
  background-image: linear-gradient(90deg, #151618 15px, #0000 1%), linear-gradient(#151618 15px 1%), none;
  background-position: 50%, 0, 0 0;
  background-repeat: repeat, repeat, repeat;
  background-size: 16px 16px;
  background-attachment: scroll, scroll, fixed;
  background-origin: padding-box, padding-box, padding-box;
  background-clip: border-box, border-box, border-box;
  border: 1px solid #ffffff21;
}

.template-dark .langswitch ul li:hover {
  background: #596c9828;
  border-radius: 5px;
}

/* [project]/lib/components/Notice/scss/NoticeIcon.scss.css [app-client] (css) */
.button-icon, .notice-icon {
  color: #000;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  cursor: pointer;
  background-color: #ffffffde;
  border: 1px solid #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  display: flex;
  box-shadow: 0 0 1px #29292985;
}

.button-icon svg, .notice-icon svg {
  width: 20px;
  height: 20px;
}

.button-icon:hover, .notice-icon:hover {
  color: #fdce0c;
  background-color: #ed3432;
  border: 1px solid #fff;
}

.notice-wrapper {
  -webkit-user-select: none;
  user-select: none;
  position: relative;
}

.notice-wrapper .notice_counter {
  color: #fff;
  background: #dd0a0ae3;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  font-size: 11px;
  display: flex;
  position: absolute;
  top: -5px;
  left: 16px;
}

.notice-wrapper .notice-content {
  color: #070f11;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0px 12px 16px -4px var(--tw-shadow-color, #10182814),0px 4px 6px -2px var(--tw-shadow-color, #10182808);
  background: #fff url("/trangnguyen/images/texture-1.jpg?v=1.1") center no-repeat;
  border-radius: 10px;
  width: 300px;
  padding: 0;
  font-size: .9em;
  position: absolute;
  top: 45px;
  right: 0;
}

.notice-wrapper .notice-content .notice-heading {
  color: #000;
  border-bottom: 1px solid #79797980;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  line-height: 16px;
  display: flex;
}

.notice-wrapper .notice-content .notice-footer {
  border-top: 1px solid #79797980;
  justify-content: center;
  align-items: center;
  padding: 5px 0;
  display: flex;
}

.notice-wrapper .notice-content .notice-list {
  max-height: 400px;
  padding: 10px;
  overflow: hidden auto;
}

.notice-wrapper .notice-content .notice-list p {
  margin: 0;
  padding: 0;
}

.notice-wrapper .notice-content .notice-list .notice-item {
  cursor: pointer;
  border-radius: 15px;
  margin-bottom: 5px;
  padding: 5px;
  position: relative;
}

.notice-wrapper .notice-content .notice-list .notice-item.unread-notice {
  background-color: #f0f8ff;
}

.notice-wrapper .notice-content .notice-list .notice-item:hover {
  background: #8b8b8b1b;
}

.notice-wrapper .notice-content .notice-list .notice-item .notice-bsn {
  color: #222;
  margin-top: 5px;
  font-size: .9em;
}

.notice-wrapper .notice-content .notice-list .notice-item .notice-link {
  color: #0eb77f;
  font-weight: 600;
}

.notice-wrapper .notice-content .notice-list .notice-item .notice-link:hover {
  text-decoration: underline;
}

.notice-wrapper .notice-content .notice-list .notice-item .notice-avatar {
  background-color: #e2e2e2;
  background-position: center;
  background-size: cover;
  border-radius: 50%;
  width: 40px;
  min-width: 40px;
  height: 40px;
}

.notice-wrapper .notice-content .notice-list .notice-item:last-child {
  border-bottom: none;
}

.notice-wrapper .notice-content .notice-list .notice-item .unread {
  background-color: #5aa7ff;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
}

.notice-empty {
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-style: italic;
  font-weight: 500;
  display: flex;
}

.notice-empty svg {
  width: 18px;
  height: 18px;
}

.notice-tabs {
  flex: 1;
  display: flex;
}

.notice-tabs .notice-tab {
  text-align: center;
  cursor: pointer;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 15px 0;
  display: flex;
}

.notice-tabs .notice-tab.active {
  color: #df0000;
  font-weight: 700;
}

.notice-tabs .notice-tab svg {
  width: 18px;
  height: 18px;
}

.close-btn {
  padding-right: 10px;
}

.close-btn svg {
  width: 18px;
  height: 18px;
}

.template-dark .notice-content {
  color: #e7e7e7;
}

.template-dark .notice-content .notice-heading, .template-dark .notice-tabs .notice-tab {
  color: #fff;
}

.template-dark .notice-tabs .notice-tab.active {
  color: #09ff42;
}

@media (max-width: 768px) {
  .button-icon, .notice-icon {
    color: #000;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    background-color: #fff;
    border: 1px solid #fff;
    width: 32px;
    height: 32px;
  }
}

/* [project]/lib/components/Header/scss/avatar-dropdown.scss.css [app-client] (css) */
.avatar-dropdown {
  display: inline-block;
  position: relative;
}

.avatar-dropdown .account-menu-account-section-title {
  color: #374151;
  text-transform: uppercase;
  margin: 0;
  padding: 5px 15px 0;
  font-size: .86em;
  font-weight: 900;
}

.avatar-dropdown .dropdown-menu {
  z-index: 1000;
  cursor: pointer;
  border: 1px solid #85858552;
  border-radius: 8px;
  flex-direction: column;
  gap: 5px;
  width: 300px;
  min-width: 180px;
  padding: 10px 0 0;
  display: flex;
  position: absolute;
  top: 44px;
  right: 0;
  overflow: hidden;
  box-shadow: 0 2px 8px #00000026;
}

.avatar-dropdown .dropdown-menu:before, .avatar-dropdown .dropdown-menu:after {
  content: "";
  z-index: -2;
  background: url("/trangnguyen/images/login-bg-5.png") 100% no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

.avatar-dropdown .dropdown-menu-contain {
  max-height: calc(80vh - 250px);
}

.avatar-dropdown .dropdown-group.dropdown-logout {
  color: #b10000;
}

.avatar-dropdown .dropdown-item {
  align-items: center;
  padding: 5px 18px;
  font-size: 15px;
  transition: background .2s;
  display: flex;
}

.avatar-dropdown .dropdown-item:hover {
  background: #f3f4f6;
}

.avatar-dropdown .avatar-img {
  cursor: pointer;
  object-fit: cover;
  background: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  padding: 0;
  display: flex;
}

.avatar-dropdown .dropdown-item-avatar {
  color: #000;
  align-items: center;
  padding: 5px;
  font-size: 15px;
  font-weight: 600;
  line-height: 16px;
}

.avatar-dropdown .dropdown-item-avatar .dropdown-avatar-img {
  cursor: pointer;
  object-fit: cover;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
}

.avatar-dropdown .dropdown-item-avatar .p-username {
  font-weight: 600;
}

.avatar-dropdown .dropdown-item-avatar .p-email {
  font-size: .9em;
}

.template-dark .avatar-dropdown, .template-dark .avatar-dropdown .account-menu-account-section-title {
  color: #b3c5e1;
}

.template-dark .avatar-dropdown .dropdown-menu {
  background-color: #ffffff29;
  background-image: linear-gradient(90deg, #151618 15px, #0000 1%), linear-gradient(#151618 15px 1%), none;
  background-position: 50%, 0, 0 0;
  background-repeat: repeat, repeat, repeat;
  background-size: 16px 16px;
  background-attachment: scroll, scroll, fixed;
  background-origin: padding-box, padding-box, padding-box;
  background-clip: border-box, border-box, border-box;
  border: 1px solid #ffffff21;
  box-shadow: 0 2px 8px #00000026;
}

.template-dark .avatar-dropdown .dropdown-menu .dropdown-item:hover {
  background: #596c9828;
}

.template-dark .avatar-dropdown .dropdown-menu .dropdown-item-avatar {
  color: #dde1e9;
}

/* [project]/lib/components/Header/scss/header-trangnguyen.scss.css [app-client] (css) */
.header-document-title {
  text-shadow: 0 0 2px #fff;
  cursor: pointer;
  line-height: 1em;
  position: relative;
}

.header-document-title:hover {
  color: red;
}

.header-document-title:hover:before, .header-document-title.active:before {
  content: "";
  background: red;
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: -24px;
  left: 0;
}

.header-trangnguyen {
  z-index: 1000;
  background: none;
  border-bottom: 1px solid #9494941a;
  font-size: 15px;
  transition: all .5s;
  position: relative;
  top: 0;
  box-shadow: 0 0 1px #83838354;
}

.header-trangnguyen.sticky {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #fff0;
  border-bottom: 1px solid #e4e4e4;
  border-radius: 0;
  animation: .3s linear to_bottom;
  position: sticky;
}

.header-trangnguyen .logo {
  justify-content: center;
  align-items: center;
  width: 218px;
  display: flex;
}

.header-trangnguyen .logo img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.header-trangnguyen .app-download {
  border-right: none;
  padding-right: 0;
}

.header-trangnguyen .app-download .app-download-button {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  gap: .75rem;
  height: 44px;
  padding: 0 1.2rem;
  display: flex;
}

.header-trangnguyen .app-download .inc-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  font-size: 0 !important;
  line-height: 0 !important;
}

.header-trangnguyen .app-download .app-download-button > .inc-icon {
  color: #ffd875;
  width: 36px;
  height: 36px;
}

.header-trangnguyen .app-download .inc-icon img, .header-trangnguyen .app-download .inc-icon svg {
  width: 100% !important;
  height: 100% !important;
}

.header-trangnguyen .app-download .text {
  flex-direction: column;
  gap: .3rem;
  font-size: 12px;
  line-height: 1.1;
  display: flex;
}

.header-trangnguyen .app-download .text strong {
  font-size: 14px;
}

.header-trangnguyen .login-btn {
  color: #000;
  background-color: #f3f3f3;
  border: none;
  border-radius: 30px;
  padding: 5px 15px 5px 10px;
  font-weight: 700;
  box-shadow: 0 0 #fff;
}

.header-trangnguyen .login-btn:hover {
  color: #fff;
  background-color: #af0000;
}

@media (max-width: 768px) {
  .header-trangnguyen {
    cursor: pointer;
    background-color: #fff;
    border: none;
    border-bottom: 1px solid #80808000;
    width: 100%;
    padding: 0;
  }

  .header-trangnguyen .header {
    padding: 5px 10px;
  }

  .header-trangnguyen.sticky {
    width: 100%;
    padding: 0;
    top: 0;
  }

  .header-trangnguyen.sticky:after {
    content: "";
    border: 1px solid #ff000083;
    border-radius: 15px;
    width: calc(100% - 12px);
    height: calc(100% - 12px);
    margin: 5px;
    position: absolute;
    top: 0;
    left: 0;
  }

  .header-trangnguyen:before {
    content: "";
    -webkit-backdrop-filter: blur();
    backdrop-filter: blur();
    z-index: -1;
    background: #fff;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }

  .header-trangnguyen:after {
    content: "";
    z-index: -2;
    background: url("/trangnguyen/images/header/mobile-bg.png") center / cover no-repeat;
    border-radius: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
  }
}

/* [project]/lib/components/TaskBar/scss/trangnguyen.scss.css [app-client] (css) */
.taskbar {
  z-index: 990;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background: linear-gradient(0deg, #f9f9f963, #e4e4e48f);
  border: 1px solid #b9b9b969;
  border-radius: 20px;
  width: calc(100% - 20px);
  position: fixed;
  bottom: 10px;
  left: 10px;
  box-shadow: 0 0 1px #292929;
}

.taskbar .taskbar-item {
  text-align: center;
  padding: 5px;
  font-size: .7em;
  line-height: 18px;
}

.taskbar .taskbar-item span {
  border-radius: 5px;
  margin-top: 2px;
  padding: 2px 0;
}

.taskbar .taskbar-item.active, .taskbar .taskbar-item:hover {
  color: #3d28d1;
}

.taskbar .taskbar-item.active span, .taskbar .taskbar-item:hover span {
  background-color: #b9b9ff4a;
}

.taskbar .taskbar-item.active .home, .taskbar .taskbar-item:hover .home {
  background-position: -10px -120px;
}

.taskbar .taskbar-item.active .hoctap, .taskbar .taskbar-item:hover .hoctap {
  background-position: -66px -120px;
}

.taskbar .taskbar-item.active .thidau, .taskbar .taskbar-item:hover .thidau {
  background-position: -122px -120px;
}

.taskbar .taskbar-item.active .huyhieu, .taskbar .taskbar-item:hover .huyhieu {
  background-position: -180px -120px;
}

.taskbar .taskbar-item.active .canhan, .taskbar .taskbar-item:hover .canhan {
  background-position: -238px -120px;
}

.taskbar .taskbar-icon {
  background: url("/trangnguyen/images/taskbar/bg.png") 0 0 / 300px no-repeat;
  width: 52px;
  height: 52px;
  margin: 0 auto;
  transition: all .2s;
}

.taskbar .taskbar-icon.home {
  background-position: -10px -42px;
}

.taskbar .taskbar-icon.hoctap {
  background-position: -66px -42px;
}

.taskbar .taskbar-icon.thidau {
  background-position: -122px -42px;
}

.taskbar .taskbar-icon.huyhieu {
  background-position: -180px -42px;
}

.taskbar .taskbar-icon.canhan {
  background-position: -238px -42px;
}

/* [project]/lib/components/Notice/scss/Confirm.scss.css [app-client] (css) */
.notice-overlay {
  z-index: 9990;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: #0f172a73;
  justify-content: center;
  align-items: center;
  padding: 20px;
  display: flex;
  position: fixed;
  inset: 0;
}

.notice-popup {
  z-index: 9999;
  background-color: #fff;
  border-radius: 34px;
  padding: 5px;
  transition: all .5s;
  animation: .25s noticeShow;
  position: fixed;
  top: 50%;
  left: 50%;
  overflow: hidden;
  transform: translate(-50%, -50%);
  box-shadow: 0 24px 80px #00000040;
}

.notice-popup .notice-popup-content {
  border-radius: 30px;
  width: max-content;
  max-width: 95svw;
  height: fit-content;
  max-height: 95svh;
  position: relative;
  overflow: auto;
}

.notice-close {
  z-index: 2;
  color: #111827;
  cursor: pointer;
  background: #f3f4f6;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  font-size: 24px;
  line-height: 1;
  display: flex;
  position: absolute;
  top: 25px;
  right: 25px;
}

.notice-close:hover {
  color: #dc2626;
  background: #fee2e2;
}

@keyframes noticeShow {
  from {
    opacity: 0;
    top: 200%;
  }

  to {
    opacity: 1;
    top: 50%;
  }
}

/* [project]/lib/components/FAQ/FAQ.scss.css [app-client] (css) */
.app-faq {
  -webkit-user-select: none;
  user-select: none;
  overflow: hidden;
}

.app-faq p {
  margin: 0;
  padding: 5px 0 0;
}

.app-faq .faq-terms {
  background: #ede4fb;
  border: 1px solid #000;
  border-radius: 10px;
  gap: 0;
  width: 100%;
  font-weight: 900;
  overflow: auto;
}

.app-faq .faq-terms .faq-term {
  color: #36008d;
  cursor: pointer;
  text-align: center;
  border-right: 1px solid #36008d18;
  padding: 15px 20px;
}

.app-faq .faq-terms .faq-term span {
  white-space: nowrap;
}

.app-faq .faq-terms .faq-term.active, .app-faq .faq-terms .faq-term:hover {
  color: #d3dbff;
  background: #7474ff;
}

.app-faq .faq-empty, .app-faq .faq-item {
  background: #fff;
  border: 1px solid #000;
  border-radius: 10px;
  width: 100%;
  padding: 15px;
  display: block;
}

.app-faq .faq-empty .faq-question, .app-faq .faq-item .faq-question {
  cursor: pointer;
  font-weight: 900;
}

.app-faq .faq-empty .faq-question svg, .app-faq .faq-item .faq-question svg {
  width: 24px;
  min-width: 24px;
  height: 24px;
}

.app-faq .faq-empty .faq-answer, .app-faq .faq-item .faq-answer {
  transition: all;
  animation: .3s linear open;
  display: none;
  overflow: hidden;
}

.app-faq .faq-empty .faq-answer .faq-answer-content, .app-faq .faq-item .faq-answer .faq-answer-content {
  border-top: 1px solid #000000a8;
  margin-top: 5px;
  padding-top: 15px;
}

.app-faq .faq-empty.active, .app-faq .faq-item.active {
  border: 1px solid #0400ff;
  height: auto;
  transition: all;
}

.app-faq .faq-empty.active .faq-question, .app-faq .faq-item.active .faq-question {
  color: #020079;
}

.app-faq .faq-empty.active .faq-answer, .app-faq .faq-item.active .faq-answer {
  display: block;
}

/* [project]/lib/components/Spinner/scss/trangnguyen-loader.scss.css [app-client] (css) */
.trangnguyen-loader-overlay {
  text-align: center;
  z-index: 99;
  background: #f8fafc url("/trangnguyen/images/login-bg-5.png") 100% 100% / cover no-repeat;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: fixed;
}

.trangnguyen-loader-overlay:before {
  content: "";
  background: linear-gradient(0deg, #fffffffa, #ffffff78);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.trangnguyen-loader-overlay .trangnguyen-loader-logo {
  margin: 0 auto;
  position: relative;
}

.trangnguyen-loader-overlay .trangnguyen-loader-logo img {
  width: min(360px, 80vw);
}

.trangnguyen-loader-overlay p {
  letter-spacing: .04em;
  margin-top: 2px;
  font-weight: 700;
}

.trangnguyen-loader-overlay .gray {
  filter: grayscale();
}

.trangnguyen-loader-overlay .color {
  clip-path: inset(0 100% 0 0);
  animation: 2.5s linear infinite fillColor;
  position: absolute;
  top: 0;
  left: 0;
}

@keyframes fillColor {
  0% {
    clip-path: inset(0 100% 0 0);
  }

  100% {
    clip-path: inset(0);
  }
}

.trangnguyen-loader-overlay .trangnguyen-loader {
  border: 8px solid #f3f3f3;
  border-top-color: #9f0000;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin: 20px auto;
  animation: 1s linear infinite spin;
}

/* [project]/lib/components/UI/Card/scss/ImageSlide.scss.css [app-client] (css) */
.sliders {
  text-shadow: 0 0 2px #fff;
}

.sliders .media-title {
  color: #320a00;
  text-shadow: 0 1px 1px #0003;
  margin-top: 6rem;
  font-size: 6em;
  font-weight: 900;
  line-height: 1.2;
}

.sliders .description {
  text-shadow: 0 1px 1px #0003;
  color: #37262a;
  margin-top: 0;
  margin-bottom: 2rem;
  font-size: 1.4em;
  line-height: 1.6;
}

.sliders .description b {
  color: #ff3232;
  font-weight: 900;
}

.sliders .action-btns {
  align-items: center;
  gap: 10px;
  display: flex;
}

.sliders .action-btns .button-learn, .sliders .action-btns .button-play {
  opacity: .95;
  cursor: pointer;
  border: 3px solid #0000;
  border-radius: 50px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  gap: .75rem;
  height: 56px;
  padding: .5rem .5rem .5rem 1rem;
  display: flex;
  box-shadow: 0 4px 5px #ead8d4;
}

.sliders .action-btns .button-learn:hover, .sliders .action-btns .button-play:hover {
  border: 3px solid red;
  box-shadow: 0 6px 20px #ead8d4;
}

.sliders .action-btns .button-learn {
  color: #fff;
  background-color: red;
  padding-right: 50px;
}

.sliders .action-btns .button-learn:hover {
  border: 3px solid #fff;
}

.sliders .action-btns .button-learn:hover .startnow-icon {
  height: 58px;
  transition: all .2s;
  top: -5px;
  right: -8px;
}

.sliders .action-btns .inc-icon {
  color: #fff;
  background-color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  padding: 10px;
  display: flex;
}

.sliders .action-btns svg {
  width: 100%;
  height: 100%;
}

.sliders .action-btns .startnow-icon {
  height: 48px;
  transition: all .2s;
  position: absolute;
  top: -3px;
  right: 3px;
}

.sliders .action-btns .button-play {
  color: #5a1a19;
  background-color: #fff;
}

.sliders .action-btns .button-play .inc-icon {
  color: red;
  background-color: #fcdbcc;
}

.sliders .action-btns .button-play .inc-icon svg {
  color: red;
  fill: currentColor;
}

.sliders .slide-elements {
  background-color: var(--top-bg-default);
  background: radial-gradient(#b3dafd 150%, #b3dafd);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.sliders .slide-elements .safe-area {
  cursor: grab;
  z-index: 2;
  align-items: flex-end;
  width: 100%;
  max-width: 1900px;
  margin: 0 auto;
  display: flex;
  position: relative;
  overflow: hidden;
}

.sliders .slide-elements .cover-fade {
  animation: .2s forwards cover-fade;
  height: 100% !important;
}

.sliders .slide-elements .cover-fade .cover-image {
  width: 100%;
  height: 100%;
  padding-top: 50px;
  animation: .2s forwards hide-show;
  display: block;
  position: relative;
}

.sliders .slide-elements:before, .sliders .top-detail-wrap:before {
  content: "";
  opacity: 0;
  z-index: 1;
  filter: contrast(.5);
  background-image: url("/assets/images/dotted.png");
  background-repeat: repeat;
  position: absolute;
  inset: 0;
}

.sliders .slide-image {
  max-width: 960px;
  padding: 150px 0 50px;
}

.sliders .slide-image img {
  max-width: 100%;
}

.sliders .slide-content {
  z-index: 5;
  width: 100%;
  max-width: 700px;
  padding: 20px 0;
  position: relative;
}

.sliders .slide-content .media-title-image {
  margin-bottom: 0;
}

.sliders .slide-content .media-title-image img {
  max-width: 600px;
}

.sliders .slide-content .touch {
  align-items: center;
  gap: 2rem;
  display: flex;
}

.sliders .slide-content .touch .button-play {
  opacity: .95;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  display: flex;
  color: var(--primary-button-text) !important;
}

.sliders .slide-content .touch-group {
  border: 2px solid var(--border-color);
  border-radius: 30px;
  align-items: center;
  display: inline-flex;
  overflow: hidden;
}

.sliders .slide-content .touch-group .item {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .3rem;
  min-width: 68px;
  height: 50px;
  padding: 0 .2rem;
  display: flex;
  position: relative;
}

.sliders .hl-tags {
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: .6rem;
  margin-bottom: .75rem;
  display: flex;
}

.sliders .tag-imdb {
  color: #fff;
  cursor: default;
  border: 1px solid #f0d25c;
  border-image: initial;
  background-color: #0000;
  border-radius: .33rem;
  flex-shrink: 0;
  align-items: center;
  padding: 0 .4rem;
  font-size: 12px;
  font-weight: 500;
  line-height: 24px;
  display: inline-flex;
}

.sliders .tag-imdb:before {
  content: "IMDb";
  color: #f0d25c;
  padding-right: 4px;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  position: relative;
}

.sliders .pin-quality-tag, .sliders .tag-quality {
  color: #000;
  background-color: #ffd875;
  background-image: linear-gradient(220deg, #ffd875, #fff);
  border-radius: .33rem;
  justify-content: center;
  align-items: center;
  height: 26px;
  padding: 0 .4rem;
  font-size: 12px;
  font-weight: 700;
  display: flex;
}

.sliders .tag-model {
  color: #000;
  cursor: default;
  background-color: #fff;
  flex-shrink: 0;
  padding: 0 .5rem;
  font-weight: 500;
  line-height: 26px;
  display: flex;
  overflow: hidden;
}

.sliders .tag-classic {
  border: 1px solid #fff;
  border-image: initial;
  color: #fff;
  background-color: #ffffff10;
  height: 26px;
  padding: 0 .4rem;
}

.sliders .tag-classic, .sliders .tag-topic {
  color: #fff;
  cursor: default;
  text-transform: uppercase;
  text-overflow: ellipsis;
  white-space: nowrap;
  background-color: #ffffff10;
  border-radius: .33rem;
  justify-content: center;
  align-items: center;
  height: 26px;
  padding: 0 .4rem;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  overflow: hidden;
}

.sliders .mb-4 {
  margin-bottom: 1.5rem;
}

.sliders .cover-fade .cover-image video, .sliders .cover-fade .cover-image img, .sliders .gallery-row .item img, .sliders .object-fit img, .sliders .sound-cover img, .sliders .user-avatar img, .sliders .v-actor img, .sliders .v-thumbnail img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.sliders .fade-in.visible {
  opacity: 1;
  filter: blur();
}

.sliders .swiper-thumbs .swiper-wrapper .swiper-slide {
  border: 3px solid #282b3a;
}

.sliders .swiper-thumbs .swiper-slide-active {
  border: 3px solid #ffc624;
}

.sliders .swiper-slide-active .slide-content {
  animation: .2s forwards slide-content;
}

.sliders .swiper-slide {
  cursor: pointer;
  border-image: initial;
  width: 65px;
  height: 45px;
  position: relative;
  overflow: hidden;
  transform: scale(1);
  margin-right: 0 !important;
}

.sliders .swiper-slide img {
  object-fit: cover;
}

.sliders .top-slide-main {
  background-color: var(--top-bg-default);
  width: 100%;
  height: 1088px;
  overflow: hidden;
}

.sliders .slide-elements .background-fade, .sliders .top-detail-wrap .background-fade {
  filter: blur(580px);
  opacity: .4;
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.sliders .slide-elements .cover-fade, .sliders .top-detail-wrap .cover-fade {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0%;
  transform: translateX(-50%);
}

.sliders .top-detail-wrap:after, .sliders .top-slide-main:before {
  z-index: 3;
  background: linear-gradient(0deg, #191b24, #191b2400);
  height: 200px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.sliders .top-slide-wrap .swiper-slide-active .cover-image {
  animation: .2s forwards hide-show;
}

.sliders .top-slide-wrap .swiper-slide-active .cover-fade {
  animation: .2s forwards cover-fade;
}

.sliders .swiper-thumbs .swiper-wrapper {
  justify-content: center;
  gap: 15px;
}

.slide-report-wrap, .security-wrap {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #f7f7f9ad;
  border: 1px solid #fff;
  border-radius: 28px;
  margin-top: 30px;
  padding: 10px;
}

.security-wrap {
  max-width: 500px;
}

.slide-term-wrap {
  padding: 15px 0;
}

.slide-term-item, .slide-report-wrap {
  z-index: 9;
  border-radius: 18px;
  padding: 10px;
}

.slide-term-item span:first-child, .slide-report-wrap span:first-child {
  font-size: 1.2em;
  font-weight: 900;
  line-height: .8em;
  display: block;
}

.slide-term-item span:nth-child(2), .slide-report-wrap span:nth-child(2) {
  margin-top: .5em;
  line-height: .8em;
  display: block;
}

.slide-term-item span:first-child {
  font-size: 1.2em;
  font-weight: 900;
  line-height: 1.3em;
  display: block;
}

.slide-term-item span:nth-child(2) {
  margin-top: .5em;
  line-height: 1.3em;
  display: block;
}

.slide-report-wrap {
  padding: 10px;
}

.slide-term-item {
  background: url("/trangnguyen/images/icy_butterfly_bird_overlay.svg") 100% 0 / cover no-repeat;
  border: 2px solid #fff;
  border-radius: 30px;
  align-items: center;
  min-width: 160px;
  max-width: 280px;
  min-height: 122px;
  padding: 15px 10px 15px 110px;
  display: flex;
}

.slide-term-item.icon-96:before {
  position: absolute;
  top: 15px;
  left: 15px;
}

.slide-term-item.httm {
  color: #870d09;
  background: #fedded url("/trangnguyen/images/icy_butterfly_bird_overlay-pink.svg") 100% 0 / cover no-repeat;
  box-shadow: 0 0 5px #fedded;
}

.slide-term-item.httm:hover {
  border: 2px solid #870d0988;
}

.slide-term-item.tdhd {
  color: #0a0a52;
  background-color: #dae2fc;
  box-shadow: 0 0 5px #dae2fc;
}

.slide-term-item.tdhd:hover {
  border: 2px solid #0a0a529d;
}

.slide-term-item.hhdd {
  color: #7b0100;
  background: #feead3 url("/trangnguyen/images/icy_butterfly_bird_overlay-yellow.svg") 100% 0 / cover no-repeat;
  box-shadow: 0 0 5px #feead3;
}

.slide-term-item.hhdd:hover {
  border: 2px solid #870d0988;
}

.slide-term-item.cdsd {
  color: #151551;
  background: #f2d3fe url("/trangnguyen/images/icy_butterfly_bird_overlay-purper.svg") 100% 0 / cover no-repeat;
  box-shadow: 0 0 5px #f2d3fe;
}

.slide-term-item.cdsd:hover {
  border: 2px solid #0a0a529d;
}

.icon-1:before {
  content: "";
  background: url("/trangnguyen/images/icon-1-alpha.png?v=1.1") 0 0 / 900px no-repeat;
  width: 30px;
  height: 30px;
  padding-left: 0;
  display: inline-flex;
}

.sec:before {
  background-position: -290px -155px;
}

.free:before {
  background-position: -345px -155px;
}

.noads:before {
  background-position: -404px -155px;
}

.advance:before {
  background-position: -467px -155px;
}

.icon-48:before {
  background-size: 1100px;
  width: 48px;
  height: 48px;
}

.student:before {
  background-position: -672px -130px;
}

.quiz:before {
  background-position: -780px -130px;
}

.question:before {
  background-position: -888px -130px;
}

.school:before {
  background-position: -988px -130px;
}

.icon-96:before {
  background-size: 1450px;
  width: 96px;
  height: 96px;
}

.httm:before {
  background-position: -18px -722px;
}

.tdhd:before {
  background-position: -130px -722px;
}

.hhdd:before {
  background-position: -235px -722px;
}

.cdsd:before {
  background-position: -347px -722px;
}

@keyframes slide-content {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes cover-fade {
  0% {
    opacity: 0;
    transform: translateX(5%);
  }

  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}

.float-box {
  will-change: transform;
  animation: 9s ease-in-out infinite floatUpDown;
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }

  100% {
    transform: translateY(0);
  }
}

/* [project]/lib/components/Account/scss/login-form.scss.css [app-client] (css) */
.login-box {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-sizing: border-box;
  background: url("/trangnguyen/images/login-box-1.png") -42px 0 / 445px 100% no-repeat;
  border: 1px solid #c9150a;
  border-radius: 29px;
  max-width: 720px;
  height: 100%;
  margin: 0 auto;
  padding: 0 0 0 267px;
  overflow: auto;
  box-shadow: 1px 1px 7px #0000, 1px -1px 6px #0000006b;
}

.login-box.login-box-1 {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-sizing: border-box;
  background: url("/trangnguyen/images/login-box.png") -46px -282px / 238% no-repeat;
  border: 0 solid #c9150a;
  border-radius: 29px;
  padding: 30px 30px 30px 210px;
  box-shadow: 1px 1px 7px #0000, 1px -1px 6px #0000006b;
}

.login-box.login-box-1 .login-form {
  background: none;
}

.login-box .login-form {
  box-sizing: border-box;
  background: #fff;
  border-radius: 29px;
  width: 100%;
  height: 100%;
}

.login-box .login-footer {
  background: #f7f6ef;
}

.login-box .login-social {
  color: var(--textColor, #000);
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px;
  font-weight: 500;
  transition: background-color .3s, color .3s;
  display: flex;
}

.login-page .logo-form {
  display: none;
}

.logo-form {
  border: 1px solid #8d8d8d63;
  border-radius: 10px;
  height: 88px;
  padding: 10px;
  display: block;
}

.logo-form img {
  height: 100%;
}

#loginButton {
  background-color: var(--btn-bg);
  color: var(--btn-color);
  border: none;
  border-radius: 15px;
  min-height: 56px;
}

#loginButton:hover {
  background-color: var(--btn-hover-bg);
  color: var(--btn-hover-color);
  border: none;
}

.forgot-pwd {
  color: var(--link-color);
}

.copyright {
  color: #fff;
  -webkit-user-select: none;
  user-select: none;
  z-index: 1;
  text-align: center;
  margin-top: 20px;
  font-size: 15px;
  bottom: 20px;
  left: 0;
  right: 0;
}

@media (max-width: 768px) {
  .copyright {
    font-size: 12px;
  }

  .login-label .login-logo {
    max-width: 100%;
  }

  .login-box {
    max-width: 100%;
    box-shadow: none;
    background: none;
    border: none;
    margin: 0 auto;
    padding: 0;
  }

  .login-box .login-form {
    background: none;
  }

  .login-box .login-form input {
    background: #fffaf2e7;
    border: 1px solid #ffb1b1;
    border-radius: 15px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .login-box .login-form .line-text span {
    z-index: 2;
    background: #fdf1e2;
    padding: 2px 15px;
    position: relative;
  }

  .login-box .login-footer {
    background: #fff6f666;
  }

  .login-box .login-social {
    color: var(--textColor, #000);
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px;
    font-weight: 500;
    transition: background-color .3s, color .3s;
    display: flex;
  }

  .login-body {
    padding: 0 20px 20px;
  }
}

/* [project]/lib/components/Account/scss/register-form.scss.css [app-client] (css) */
.register-box {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-sizing: border-box;
  background: url("/trangnguyen/images/register-box-1.png") -180px 0 / 550px 765px no-repeat;
  border: 1px solid #c9150a;
  border-radius: 29px;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 0 0 267px;
  overflow: auto;
  box-shadow: 1px 1px 7px #0000, 1px -1px 6px #0000006b;
}

.register-box.register-box-1 {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-sizing: border-box;
  background: url("/trangnguyen/images/register-box.png") -46px -282px / 238% no-repeat;
  border: 0 solid #c9150a;
  border-radius: 29px;
  padding: 30px 30px 30px 210px;
  box-shadow: 1px 1px 7px #0000, 1px -1px 6px #0000006b;
}

.register-box.register-box-1 .register-form {
  background: none;
}

.register-box .register-form {
  box-sizing: border-box;
  background: #fff;
  border-radius: 29px;
  width: 100%;
}

.register-box .register-footer {
  background: #f7f6ef;
}

.register-box .register-social {
  color: var(--textColor, #000);
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px;
  font-weight: 500;
  transition: background-color .3s, color .3s;
  display: flex;
}

#registerButton {
  background-color: var(--btn-bg);
  color: var(--btn-color);
  border: none;
  border-radius: 15px;
  min-height: 56px;
}

#registerButton:hover {
  background-color: var(--btn-hover-bg);
  color: var(--btn-hover-color);
  border: none;
}

.forgot-pwd {
  color: var(--link-color);
}

.copyright {
  color: #fff;
  -webkit-user-select: none;
  user-select: none;
  z-index: 1;
  text-align: center;
  margin-top: 20px;
  font-size: 15px;
  bottom: 20px;
  left: 0;
  right: 0;
}

@media (max-width: 768px) {
  .copyright {
    font-size: 12px;
  }

  .register-box {
    max-width: 100%;
    box-shadow: none;
    background: none;
    border: none;
    margin: 0 auto;
    padding: 0;
  }

  .register-box .register-form {
    background: none;
  }

  .register-box .register-form input {
    background: #fffaf2e7;
    border: 1px solid #ffb1b1;
    border-radius: 15px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .register-box .register-form .line-text span {
    z-index: 2;
    background: #fdf1e2;
    padding: 2px 15px;
    position: relative;
  }

  .register-box .register-footer {
    background: #fff6f666;
  }

  .register-box .register-social {
    color: var(--textColor, #000);
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px;
    font-weight: 500;
    transition: background-color .3s, color .3s;
    display: flex;
  }

  .register-body {
    padding: 0 20px 20px;
  }
}

/* [project]/lib/components/Account/scss/auth-form.scss.css [app-client] (css) */
.auth-wrapper {
  width: 100%;
  max-width: 700px;
  overflow: hidden;
}

.auth-wrapper .slider {
  will-change: transform;
  grid-template-columns: 1fr 1fr;
  width: 200%;
  transition: transform .45s ease-in-out;
  display: grid;
}

.auth-wrapper .panel {
  flex: 0 0 100%;
  width: 100%;
}

.auth-wrapper.login .slider {
  transform: translateX(0%);
}

.auth-wrapper.register .slider {
  transform: translateX(-50%);
}

/* [project]/lib/components/Rank/scss/rank.scss.css [app-client] (css) */
.app-rank-wrap {
  z-index: 99;
  position: relative;
  overflow: hidden;
}

.app-rank-wrap .app-rank {
  border-radius: 20px;
  flex: 1 0 380px;
  min-height: 300px;
  overflow: hidden;
}

.app-rank-wrap .app-rank .rank-heading {
  color: #fff;
  background: #4562d8;
  border-bottom: 1px solid #0e30d9;
  padding: 15px 15px 15px 90px;
}

.app-rank-wrap .app-rank .rank-heading .rank-title {
  font-size: 1.2em;
  font-weight: 900;
  display: block;
}

.app-rank-wrap .app-rank .rank-heading .rank-sapo {
  color: #e6eafd;
  font-size: .9em;
  line-height: 20px;
  display: block;
}

.app-rank-wrap .app-rank .rank-heading:before {
  content: "";
  background: url("/trangnguyen/images/rank/rank-icon.png?v=1.1") 25px 16px no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.app-rank-wrap .app-rank .rank-mostest {
  text-align: center;
  background: linear-gradient(#3547d1, #bfdfff);
  border: none;
  border-radius: 0;
  width: 100%;
  padding: 60% 0 0;
  font-size: .9em;
  position: relative;
}

.app-rank-wrap .app-rank .rank-mostest .rank-avatar {
  background: radial-gradient(#c13a3a, #ff929b, #f9f4f4, #fb9797);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
  padding: 5px;
  display: inline-flex;
  box-shadow: 0 0 5px #fff;
}

.app-rank-wrap .app-rank .rank-mostest .rank-avatar .rank-avatar-image {
  border: 1px solid #ffffff4d;
  border-radius: 50%;
  width: 68px;
  height: 68px;
}

.app-rank-wrap .app-rank .rank-mostest .st-1 {
  position: absolute;
  bottom: 35%;
  left: 50%;
  transform: translate(-50%);
}

.app-rank-wrap .app-rank .rank-mostest .st-1:after {
  content: "";
  background: url("/trangnguyen/images/rank/most/st1.png?v=1.1") 0 0 / 46px no-repeat;
  width: 46px;
  height: 46px;
  position: absolute;
  top: -25px;
  left: 17px;
}

.app-rank-wrap .app-rank .rank-mostest .st-2 {
  position: absolute;
  bottom: 30%;
  left: calc(16% + 8px);
  transform: translate(-50%);
}

.app-rank-wrap .app-rank .rank-mostest .st-2 .rank-avatar-image {
  border-radius: 50%;
  width: 58px;
  height: 58px;
}

.app-rank-wrap .app-rank .rank-mostest .st-2:after {
  content: "";
  background: url("/trangnguyen/images/rank/most/st2.png?v=1.1") 0 0 / 46px no-repeat;
  width: 46px;
  height: 46px;
  position: absolute;
  top: -26px;
  left: 12px;
}

.app-rank-wrap .app-rank .rank-mostest .st-3 {
  position: absolute;
  bottom: 25%;
  right: 18%;
  transform: translate(50%);
}

.app-rank-wrap .app-rank .rank-mostest .st-3 .rank-avatar-image {
  border-radius: 50%;
  width: 48px;
  height: 48px;
}

.app-rank-wrap .app-rank .rank-mostest .st-3:after {
  content: "";
  background: url("/trangnguyen/images/rank/most/st3.png?v=1.1") 0 0 / 46px no-repeat;
  width: 46px;
  height: 46px;
  position: absolute;
  top: -25px;
  left: 9px;
}

.app-rank-wrap .app-rank .rank-mostest .rank-mostest-content {
  z-index: 2;
  width: calc(100% - 20px);
  height: 100%;
  padding: 10px;
  line-height: 18px;
  position: absolute;
  top: 0;
}

.app-rank-wrap .app-rank .rank-mostest .rank-mostest-content .rank-point {
  color: red;
  font-size: .8em;
}

.app-rank-wrap .app-rank .rank-mostest .rank-mostest-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.app-rank-wrap .app-rank .rank-mostest .rank-mostest-bg:before, .app-rank-wrap .app-rank .rank-mostest .rank-mostest-bg:after {
  content: "";
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.app-rank-wrap .app-rank .rank-mostest .rank-mostest-bg:before {
  z-index: 1;
  background: url("/trangnguyen/images/rank/mobile-bg.png?v=1.1") bottom / calc(100% - 30px) no-repeat;
}

.app-rank-wrap .app-rank .rank-mostest .rank-mostest-bg:after {
  content: "";
  z-index: 0;
  background: url("/trangnguyen/images/light.png?v=1.1") 0 75px / 100% no-repeat;
  transform: rotateZ(180deg);
}

.app-rank-wrap .app-rank .rank-content {
  background: linear-gradient(#bedefe, #f8fbfe);
  padding: 15px;
  position: relative;
}

.app-rank-wrap .app-rank .rank-content:before {
  background: url("/trangnguyen/images/rank/rank.png?v=1.1") 0 0 / 100% no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.app-rank-wrap .app-rank .rank-item {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #ffffffe5;
  border: 1px solid #1a4cff61;
  border-radius: 20px;
  width: 100%;
  padding: 10px;
}

.app-rank-wrap .app-rank .rank-item:hover {
  border: 1px solid #1a4cffec;
}

.app-rank-wrap .app-rank .rank-item .rank-number {
  text-align: center;
  background: url("/trangnguyen/images/rank/reward-number.png?v=1.1") center / cover no-repeat;
  justify-content: center;
  align-items: center;
  min-width: 30px;
  height: 42px;
  font-size: 16px;
  display: flex;
}

.app-rank-wrap .app-rank .rank-item .rank-avatar {
  min-width: 62px;
  max-width: 62px;
  height: 62px;
  display: flex;
}

.app-rank-wrap .app-rank .rank-item .rank-avatar img {
  width: 100%;
  height: 100%;
}

.app-rank-wrap .app-rank .rank-item .rank-name {
  font-weight: 900;
  line-height: 1.5em;
}

.app-rank-wrap .app-rank .rank-item .rank-point {
  margin-bottom: 5px;
  font-size: .8em;
  font-weight: 800;
  line-height: 1.2em;
}

.app-rank-wrap .app-rank .rank-item .rank-point span {
  background: linear-gradient(to right, #c00909, #b111a9, #c22);
  -webkit-text-fill-color: #0000;
  color: #0000;
  text-shadow: 0 0 1px #ff00001c;
  -webkit-background-clip: text;
  background-clip: text;
  display: inline-block;
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .app-rank-wrap .app-rank .rank-item .rank-point span {
    color: #c22;
  }
}

.app-rank-wrap .app-rank .rank-item .rank-school {
  color: #333;
  font-size: .8em;
  line-height: 1.2em;
}

.app-rank-wrap .app-badge {
  background: linear-gradient(#f8fbfe, #f8fbfe);
  border-radius: 20px;
  flex: 1 0 420px;
  min-height: 300px;
}

.app-rank-wrap .app-badge .badge-h2 {
  color: #0b2dbb;
  font-weight: 900;
  display: block;
}

.app-rank-wrap .app-badge .badge-heading {
  padding: 15px 15px 15px 75px;
}

.app-rank-wrap .app-badge .badge-heading .badge-title {
  color: #0b2dbb;
  font-size: 1.2em;
  font-weight: 900;
  display: block;
}

.app-rank-wrap .app-badge .badge-heading .badge-sapo {
  color: #04060f;
  font-size: .9em;
  line-height: 20px;
  display: block;
}

.app-rank-wrap .app-badge .badge-heading:before {
  content: "";
  background: url("/trangnguyen/images/rank/shield.png?v=1.1") 25px 16px no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.app-rank-wrap .app-badge .badge-content {
  padding: 15px;
}

.app-rank-wrap .app-badge .badge-latest {
  border-radius: 15px;
  padding: 15px;
}

.app-rank-wrap .app-community {
  background: linear-gradient(#f8fbfe, #f8fbfe);
  border-radius: 20px;
  min-height: 300px;
  position: relative;
}

.app-rank-wrap .app-community:after {
  content: "";
  background: url("/trangnguyen/images/rank/comunication-bg.png?v=1.1") no-repeat;
  width: 305px;
  height: 490px;
  position: absolute;
  bottom: 80px;
  right: 0;
}

.app-rank-wrap .app-community .community-h2 {
  color: #0b2dbb;
  font-weight: 900;
  display: block;
}

.app-rank-wrap .app-community .community-heading {
  padding: 15px 15px 15px 75px;
}

.app-rank-wrap .app-community .community-heading .community-title {
  color: #0b2dbb;
  font-size: 1.2em;
  font-weight: 900;
  display: block;
}

.app-rank-wrap .app-community .community-heading .community-sapo {
  color: #04060f;
  font-size: .9em;
  line-height: 20px;
  display: block;
}

.app-rank-wrap .app-community .community-heading:before {
  content: "";
  background: url("/trangnguyen/images/rank/comunication.png?v=1.1") 25px 16px no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.app-rank-wrap .app-community .community-content, .app-rank-wrap .app-community .community-content-end {
  z-index: 9;
  padding: 15px;
  font-size: .9em;
}

.app-rank-wrap .app-community .community-content-end {
  color: #0b2dbb;
}

.app-rank-wrap .app-community .community-content-end .community-content-school-number, .app-rank-wrap .app-community .community-content-end .community-content-most {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  -webkit-user-select: none;
  user-select: none;
  background: #ffffff05;
  border-radius: 8px;
  padding: 5px 10px;
  font-size: 14px;
}

.app-rank-wrap .app-community .community-content-end .community-content-school-number .u-most-avatar img, .app-rank-wrap .app-community .community-content-end .community-content-most .u-most-avatar img {
  width: 24px;
  min-width: 24px;
  height: 24px;
  display: flex;
}

.app-rank-wrap .app-community .community-content-end .community-content-school-number .u-mostlink, .app-rank-wrap .app-community .community-content-end .community-content-most .u-mostlink {
  color: #0051ba;
  background-color: #0061ff33;
  border-radius: 30px;
  padding: 0 10px;
}

.app-rank-wrap .app-community .community-content-end .community-content-school-number {
  flex: 0 0 220px;
}

.app-rank-wrap .app-community .community-content-wrap {
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background-color: #ffffff75;
  border-radius: 15px;
  width: 100%;
  padding: 5px;
}

.app-rank-wrap .app-community .community-content-header {
  -webkit-user-select: none;
  user-select: none;
  background-color: #b6d4fc4b;
  border: 1px solid #0b2dbb05;
  border-radius: 12px;
  padding: 5px;
}

.app-rank-wrap .app-community .community-content-header > span {
  cursor: pointer;
  border-radius: 10px;
  padding: 5px 10px;
  position: relative;
}

.app-rank-wrap .app-community .community-content-header > span:hover {
  color: #0400ff;
}

.app-rank-wrap .app-community .community-content-header > span.active {
  color: #0e0e0e;
  cursor: not-allowed;
  background-color: #fff;
}

.app-rank-wrap .app-community .community-content-header > span.active:after {
  content: "";
  background: url("/trangnguyen/images/line-bottom.png") center / 100% no-repeat;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.app-rank-wrap .app-community .community-content-acts {
  padding: 10px;
}

.app-rank-wrap .app-community .community-content-acts .rank-more {
  justify-content: center;
  width: calc(100% - 20px);
  margin-top: 10px;
  padding: 5px 0;
}

.app-rank-wrap .app-community .act-item {
  border-bottom: 1px solid #8d8d8d54;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.app-rank-wrap .app-community .act-item:last-child {
  border-bottom: 0 solid #8d8d8d54;
  margin-bottom: 0;
  padding-bottom: 0;
}

.app-rank-wrap .app-community .act-item:has( + .rank-more) {
  border-bottom: 0 solid #8d8d8d54;
  margin-bottom: 0;
  padding-bottom: 0;
}

.app-rank-wrap .app-community .act-avatar {
  width: 64px;
  height: 64px;
}

.app-rank-wrap .app-community .act-u-name {
  font-weight: 900;
  line-height: 22px;
  display: block;
}

.app-rank-wrap .app-community .act-u-sapo {
  font-size: .9em;
  line-height: 20px;
}

.app-rank-wrap .app-community .act-u-sapo b {
  color: red;
  font-weight: 900;
}

.app-rank-wrap .app-community .act-u-time {
  color: #7e7e7e;
  font-size: .9em;
  font-weight: 600;
  line-height: 20px;
}

.app-rank-wrap .rank-more {
  color: #0b2dbb;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  border: 1px solid #0b2ebb2d;
  border-radius: 15px;
  width: max-content;
  margin: 0 auto;
  padding: 2px 12px;
  font-size: .9em;
}

.app-rank-wrap .rank-more:hover {
  color: #e60f33;
}

.app-rank-wrap .school-joined-icon {
  width: 30px;
  height: 30px;
}

.app-rank-wrap .school-joined-icon .school-joined-image {
  background: url("/trangnguyen/images/rank/school.png") 0 0 / 36px no-repeat;
  width: 36px;
  height: 36px;
  position: absolute;
  top: -10px;
}

@media (max-width: 768px) {
  .app-rank-wrap {
    overflow: hidden;
  }

  .app-rank-wrap .app-rank, .app-rank-wrap .app-badge {
    border-radius: 15px !important;
  }

  .app-rank-wrap .app-rank .rank-heading {
    color: #000;
    background: #fff;
    border-bottom: none;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 60px;
  }

  .app-rank-wrap .app-rank .rank-heading:before {
    content: "";
    background: url("/trangnguyen/images/rank/rank-icon.png?v=1.1") 25px 16px no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: -5px;
    left: -20px;
  }

  .app-rank-wrap .app-rank .rank-heading .rank-title {
    font-size: 1em;
  }

  .app-rank-wrap .app-rank .rank-heading .rank-sapo {
    color: #2a2a2a;
  }

  .app-rank-wrap .app-rank .rank-mostest {
    background: linear-gradient(#fff, #bedefe66);
    padding-top: 55%;
  }

  .app-rank-wrap .app-rank .rank-content {
    background: linear-gradient(#bedefe66, #f8fbfe);
  }

  .app-rank-wrap .app-community:after {
    content: "";
    width: calc(100% - 20px);
  }
}

/* [project]/lib/components/QR/scss/QRVerticalBox.scss.css [app-client] (css) */
.QRVerticalBox {
  text-align: left;
}

.QRVerticalBox .QRVerticalBox-item {
  background-color: #fff;
  border: 1px solid #fbfbfb;
  border-radius: 10px;
  padding: 5px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 3px #0000004a;
}

.QRVerticalBox .platform {
  background: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  padding: 2px;
  display: flex;
  position: absolute;
  top: 50%;
  left: 28px;
  transform: translate(-50%, -50%);
}

.QRVerticalBox .platform svg {
  width: 12px;
  height: 12px;
}

.QRVerticalBox img {
  background-color: #fff;
  width: 48px;
  height: 48px;
}

.QRVerticalBox span {
  font-size: .8em;
  line-height: 18px;
}

.QRVerticalBox span b {
  color: #000;
  font-size: .9em;
  display: block;
}

/* [project]/lib/components/QR/scss/QRVerticalFlat.scss.css [app-client] (css) */
.QRVerticalFlat {
  text-align: left;
  background-color: #fff;
  border: 1px solid #fbfbfb;
  border-radius: 15px;
  width: max-content;
  padding: 5px;
}

.QRVerticalFlat .QRVerticalFlat-item {
  background-color: #fff;
  border: 1px solid #fbfbfb;
  border-radius: 10px;
  padding: 5px 15px;
  overflow: hidden;
  box-shadow: 0 0 3px #0000004a;
}

.QRVerticalFlat img {
  background-color: #fff;
  width: 96px;
  height: 96px;
  margin-top: 10px;
}

.QRVerticalFlat span {
  color: #383838;
  font-size: .6em;
  line-height: 15px;
}

.QRVerticalFlat span b {
  color: #000;
  font-size: 1.5em;
  font-weight: 700;
  display: block;
}

.QRVerticalFlat .QRVerticalFlat-bottom {
  color: #000;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin: 10px auto;
  font-size: .8em;
  font-weight: 500;
  display: flex;
}

.QRVerticalFlat .QRVerticalFlat-bottom .scanQr {
  position: relative;
}

.QRVerticalFlat .QRVerticalFlat-bottom .scanQr:before, .QRVerticalFlat .QRVerticalFlat-bottom .scanQr:after {
  content: "";
  background: url("/trangnguyen/images/download-app/arrow.png") no-repeat;
  width: 32px;
  height: 20px;
  position: absolute;
  top: 0;
  left: -35px;
}

.QRVerticalFlat .QRVerticalFlat-bottom .scanQr:after {
  left: unset;
  background-position: -35px 0;
  right: -35px;
}

/* [project]/lib/pages/Home/scss/HomeTrangNguyen.scss.css [app-client] (css) */
:root {
  --border-color: #ffffff10;
  --shadow-large: 0 0 20px 20px #0000001a;
  --padding-base: 40px;
  --bg-color: #191b24;
  --text-base: #aaa;
  --primary-color: #05d357;
  --primary-color-hover: #05d357;
  --primary-button-text: #191b24;
  --primary-text: #05d357;
  --top-bg-default: #202331;
  --bg-2: #282b3a;
  --bg-3: #2f3346;
  --bg-4: #3e435c;
  --bg-5: #535d8e;
  --footer-bg: #0f111a;
  --h-shadow: 0 2px 3px #0006;
  --category-name: #fff;
  --bs-border-color: #0000004d;
  --Toastify__progress-bar--error: #f85f5f !important;
  --toastify-icon-color-error: #f85f5f !important;
}

#wrapper.wrapper-w-slide {
  background: linear-gradient(0deg, #191c24, #191c24);
  margin: 0 auto;
  padding: 100px 0 0;
  position: relative;
}

#wrapper.wrapper-w-slide .fluid-gap {
  max-width: 1900px;
  margin: 0 auto;
}

.touch-group .fluid-gap {
  flex-direction: column;
  gap: 50px;
  display: flex;
}

.cards-row.wide, .container {
  padding: 0 2rem;
}

.cards-row .row-header {
  justify-content: flex-start;
  align-items: center;
  margin: 0;
  display: flex;
  position: relative;
}

.cards-row .row-header .category-name {
  color: #fff;
  text-shadow: 0 2px 1px #0000004d;
  margin: 1rem 0;
  font-size: 2em;
  font-weight: 600;
  line-height: 1.4;
}

.topics-grid {
  -webkit-user-select: none;
  user-select: none;
  grid-template-columns: repeat(7, 1fr);
  gap: 1rem;
  display: grid;
}

.topics-grid .row-topic {
  background: radial-gradient(at 0 0, #fffc 30%, #ff6f6fc9 100%);
  border-radius: 1.25rem;
  justify-content: space-between;
  padding: 1.2rem 2.5rem 1.2rem 1.5rem;
  position: relative;
  top: 0;
  overflow: hidden;
}

.topics-grid .row-topic .mask {
  z-index: 1;
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 30px 5px #fff0;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

.topics-grid .row-topic .intro {
  z-index: 99;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: flex-end;
  align-items: flex-start;
  gap: .7rem;
  width: 100%;
  height: 100%;
  min-height: 110px;
  padding: 0;
  font-weight: 500;
  display: flex;
  position: relative;
}

.topics-grid .row-topic .intro.align-center {
  align-items: center !important;
}

.topics-grid .row-topic .intro.justify-center {
  justify-content: center !important;
}

.topics-grid .row-topic .intro .heading-md {
  color: #fff;
  text-shadow: 0 1px #0002;
  font-size: 2em;
  font-weight: 700;
  line-height: 1.3;
}

.topics-grid .row-topic .intro .btn-outline {
  color: #fff !important;
  background-color: #0000 !important;
}

.topics-grid .row-topic:hover {
  top: -.6rem;
}

#totop, .accordion-button .btn-select, .app-box-fix, .bu-top .bu-tabs .item, .button-play, .cat-more .line-center, .coin-pack-list .item, .d-item .text, .de-type .item, .item-focus.is-on, .menu-toggle .icon-menu *, .network-select .net-item, .new-payment-method .item, .pin-trans .line-center, .search-toggle .icon-search *, .shoutbox, .sound-cover, .toggle-x *, .top-slide-small .swiper-slide, .top-up .sw-item .v-thumbnail img, .topic-item .inc-icon, .topics-grid .row-topic, .topics-line .topic-item, .transition, header {
  transition: all .3s;
}

.inc-icon img, .inc-icon svg {
  width: 100% !important;
  height: 100% !important;
}

.swiper-vertical {
  width: 100%;
  height: 400px;
}

.item-title a {
  color: #fff;
  font-size: 1.2em;
}

.alias-title a {
  color: #a0a0a0;
  text-shadow: 0 1px #0002;
  font-size: 1em;
  line-height: 1.3;
  text-decoration: none;
}

.mobile-sliders {
  border-radius: 10px;
  margin: 5px;
  overflow: hidden;
}

.mobile-sliders .mobile-slider {
  height: 100%;
  margin: 0;
  padding: 0;
}

.sliders {
  z-index: 10;
  -webkit-user-select: none;
  user-select: none;
  margin-top: -80px;
  position: relative;
}

.sliders .slide-wrapper {
  position: relative;
}

.sliders .slide-content .touch {
  align-items: center;
  gap: 2rem;
  display: flex;
}

.sliders .slide-content .touch .button-play {
  width: 70px;
  height: 70px;
  color: var(--primary-button-text);
  opacity: .95;
  background: linear-gradient(39deg, #fecf59, #fff1cc);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  transition: all .3s;
  display: flex;
  box-shadow: 0 5px 10px 5px #ffda7d1a;
}

.sliders .slide-content .touch .button-play svg {
  width: 26px;
  height: 26px;
}

.sliders .slide-content .touch .button-play i {
  font-size: 28px;
  position: relative;
  left: 2px;
}

.sliders .slide-content .touch .touch-group {
  border: 2px solid var(--border-color);
  border-radius: 30px;
  align-items: center;
  display: inline-flex;
  overflow: hidden;
}

.sliders .slide-content .touch .touch-group .item:first-of-type {
  padding-left: .4rem;
}

.sliders .slide-content .touch .touch-group .item {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .3rem;
  min-width: 68px;
  height: 50px;
  padding: 0 .2rem;
  display: flex;
  position: relative;
}

.sliders .slide-content .touch .touch-group .item + .item {
  border-left: 2px solid var(--border-color);
}

.sliders .slide-content .touch .touch-group a {
  cursor: pointer;
  color: #fff;
  text-decoration: none !important;
}

.sliders .swiper {
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  list-style: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.sliders .swiper-horizontal {
  touch-action: pan-y;
}

.sliders .swiper-horizontal .swiper-wrapper {
  z-index: 1;
  width: 100%;
  height: 100%;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
  display: flex;
  position: relative;
}

.sliders .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  transition-property: transform;
  display: block;
  position: relative;
}

.sliders .top-slide-main, .sliders .top-slide-wrap {
  position: relative;
}

.sliders.big-slide-wrapper .swiper-horizontal:not(.swiper-thumbs) {
  border-radius: 20px;
  height: 520px;
}

.sliders.big-slide-wrapper .slide-elements {
  background-color: #2f3346;
}

.sliders.big-slide-wrapper .slide-elements .cover-fade {
  width: calc(100% - 500px);
  left: auto;
  right: 0;
  transform: none;
  -webkit-mask-image: linear-gradient(90deg, #0000 0, #000 30%, #000);
  mask-image: linear-gradient(90deg, #0000 0, #000 30%, #000);
  height: 100% !important;
}

.sliders.big-slide-wrapper .slide-content {
  background: linear-gradient(90deg, #182e3c 60%, #0000);
}

.sliders .swiper-thumbs {
  justify-content: center;
  display: flex;
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
}

.sliders .swiper-thumbs .swiper-wrapper .swiper-slide {
  cursor: pointer;
  background-color: #282b3a;
  border-radius: .6rem;
  flex-basis: 80px;
  position: relative;
  overflow: hidden;
}

.sliders .swiper-thumbs .swiper-wrapper .swiper-slide.swiper-slide-thumb-active {
  background-color: #fff;
  border: 3px solid #ffd875;
}

.sliders .swiper-thumbs .v-thumbnail {
  -webkit-user-select: none;
  user-select: none;
  background-color: #2f3346;
  border-radius: .5rem;
  width: 100%;
  height: 0;
  padding-bottom: 150%;
  display: block;
  position: relative;
  overflow: hidden;
}

.app-main {
  z-index: 99;
  background: url("/trangnguyen/images/bg2.png") top / cover no-repeat;
  width: 100%;
  min-height: 100px;
  padding-top: 20px;
  position: relative;
}

.app-main:before {
  content: "";
  z-index: -1;
  background: linear-gradient(#fff0, #fff7f7, #fff0);
  width: 100%;
  min-height: 100px;
  position: absolute;
  top: -52px;
  left: 0;
}

.app-main .heading-title {
  color: #051b65;
  text-align: center;
  width: max-content;
  margin: 10px auto;
  font-size: 3em;
  font-weight: 900;
  line-height: 1.5em;
  position: relative;
}

.app-main .heading-title:before, .app-main .heading-title:after {
  content: "";
  background: url("/trangnguyen/images/icons/heading-title.png?v=1.1") 0 0 / 72px 32px no-repeat;
  width: 36px;
  height: 73px;
  position: absolute;
  top: 0;
  left: -40px;
}

.app-main .heading-title:before {
  right: unset;
  background-position: 2px 0;
}

.app-main .heading-title:after {
  left: unset;
  background-position: -36px 0;
  right: -41px;
}

.app-mh {
  text-align: center;
}

.app-mh .mh-item {
  background: #f5fff8;
  border: 1px solid #34a137;
  border-radius: 15px;
  width: 100%;
  overflow: hidden;
}

.app-mh .mh-item .mh-title {
  text-align: center;
  padding-top: 15px;
  font-size: 1.2em;
  font-weight: 900;
  display: block;
}

.app-mh .mh-item.mh-green {
  color: #34a137;
  background: #f5fff8;
  border: 1px solid #34a137;
}

.app-mh .mh-item.mh-green svg {
  color: #1e9132;
}

.app-mh .mh-item.mh-blue {
  color: #3988ff;
  background: #f0f6ff;
  border: 1px solid #3988ff;
}

.app-mh .mh-item.mh-blue svg {
  color: #3988ff;
}

.app-mh .mh-item.mh-orange {
  color: #ff8239;
  background: #fff9f0;
  border: 1px solid #ff8239;
}

.app-mh .mh-item.mh-orange svg {
  color: #ff8239;
}

.app-mh .mh-item.mh-purple {
  color: #b339ff;
  background: #f9f0ff;
  border: 1px solid #b339ff;
}

.app-mh .mh-item.mh-purple svg {
  color: #b339ff;
}

.app-mh .mh-item .mh-info {
  text-align: left;
  color: #000;
  margin-top: 15px;
}

.app-mh .mh-info {
  background-color: #8d8d8d1a;
  padding: 5px 15px;
  font-size: 14px;
}

.app-mh .mh-info svg {
  width: 18px;
  height: 18px;
}

.app-steps {
  text-align: center;
}

.app-steps .step-item {
  border: 1px solid #34a137;
  border-radius: 18px;
  width: 100%;
  margin-top: 30px;
}

.app-steps .step-item .step-number {
  color: #fff;
  background-color: #2c2626;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  font-size: 30px;
  display: flex;
  position: absolute;
  top: -22px;
  left: calc(50% - 24px);
}

.app-steps .step-item .step-list {
  text-align: left;
  font-size: .9em;
}

.app-steps .step-item .step-title {
  text-align: center;
  margin: 30px 0 0;
  padding: 0;
  font-size: 1.2em;
  font-weight: 900;
  display: block;
}

.app-steps .step-item .step-info {
  padding: 15px;
}

.app-steps .step-item .step-sapo {
  text-align: center;
  display: block;
}

.app-steps .step-item.step-hocbai {
  background: #f0f6ff;
  border: 1px solid #3988ff;
}

.app-steps .step-item.step-hocbai .step-title {
  color: #3988ff;
}

.app-steps .step-item.step-hocbai .step-number {
  background: #3988ff;
}

.app-steps .step-item.step-luyentap {
  background: #fff9f0;
  border: 1px solid #ff8239;
}

.app-steps .step-item.step-luyentap:after {
  background-position: -768px -99px;
}

.app-steps .step-item.step-luyentap .step-title {
  color: #ff8239;
}

.app-steps .step-item.step-luyentap .step-number {
  background: #ff8239;
}

.app-steps .step-item.step-thidau {
  background: #f5fff8;
  border: 1px solid #34a137;
}

.app-steps .step-item.step-thidau:after {
  background-position: -1160px -99px;
}

.app-steps .step-item.step-thidau .step-title {
  color: #34a137;
}

.app-steps .step-item.step-thidau .step-number {
  background: #34a137;
}

.app-steps .step-item.step-nhanthuong {
  background: #f9f0ff;
  border: 1px solid #b339ff;
}

.app-steps .step-item.step-nhanthuong .step-title {
  color: #b339ff;
}

.app-steps .step-item.step-nhanthuong .step-number {
  background: #b339ff;
}

.app-steps .step-item:after {
  content: "";
  z-index: 9;
  background: url("/trangnguyen/images/step-bg.png?v=1.1") -395px -99px no-repeat;
  width: 59px;
  height: 29px;
  position: absolute;
  top: 33%;
  right: -62px;
}

.app-steps .step-item:last-child:after {
  display: none;
}

.app-steps .icon-3 {
  z-index: 8;
  height: 196px;
  position: relative;
}

.app-steps .icon-3:before {
  content: "";
  background: url("/trangnguyen/images/step-bg.png?v=1.1") 0 0 / 1650px 258px no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.app-steps .icon-3.hocbai:before {
  background-position: -65px -30px;
}

.app-steps .icon-3.luyentap:before {
  background-position: -445px -30px;
}

.app-steps .icon-3.thidau:before {
  background-position: -835px -30px;
}

.app-steps .icon-3.nhanthuong:before {
  background-position: -1225px -30px;
}

.app-feature {
  text-align: center;
}

.app-feature .feature-title {
  z-index: 2;
  margin-bottom: 10px;
  font-size: 1.2em;
  font-weight: 900;
  display: block;
  position: relative;
}

.app-feature .feature-sapo {
  z-index: 2;
  position: relative;
}

.app-feature .feature-item {
  text-align: left;
  z-index: 2;
  background: #fff9f0;
  border: 1px solid #ff8239;
  border-radius: 20px;
  height: 140px;
  padding: 15px;
  position: relative;
  overflow: hidden;
}

.app-feature .feature-item .feature-content {
  padding-right: calc(100% - 218px);
}

.app-feature .feature-item.feature-AImentor {
  border: 1px solid #2d92e3;
  width: 360px;
  min-width: 300px;
  height: 330px;
  position: relative;
}

.app-feature .feature-item.feature-AImentor .feature-title {
  color: #236dfb;
}

.app-feature .feature-item.feature-AImentor .feature-sapo {
  max-width: 200px;
  display: block;
}

.app-feature .feature-item.feature-AImentor:before {
  content: "";
  z-index: 1;
  background: url("/trangnguyen/images/feature/ai-mentor.png") 30px 90px / 300px no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
}

.app-feature .feature-item.feature-AImentor:after {
  content: "";
  z-index: 0;
  background: linear-gradient(45deg, #c8defc, #d9eefd, #d9eefd, #d9eefd, #d9e8fc);
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
}

.app-feature .feature-item.feature-flashcard {
  background: #fff9f0;
  border: 1px solid #ff8239;
}

.app-feature .feature-item.feature-flashcard:before {
  content: "";
  z-index: 1;
  background: url("/trangnguyen/images/feature/flashcard.png?v=1.1") -5px 13px / 180px no-repeat;
  width: 218px;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
}

.app-feature .feature-item.feature-quiz {
  background: #f5fff8;
  border: 1px solid #34a137;
}

.app-feature .feature-item.feature-quiz:before {
  content: "";
  z-index: 1;
  background: url("/trangnguyen/images/feature/quiz.png?v=1.1") 0 0 / 268px no-repeat;
  width: 268px;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
}

.app-feature .feature-item.feature-reward {
  background: #f9f0ff;
  border: 1px solid #b339ff;
}

.app-feature .feature-item.feature-reward:before {
  content: "";
  z-index: 1;
  background: url("/trangnguyen/images/feature/reward.png?v=1.1") 0 22px / 133px no-repeat;
  width: 138px;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
}

.app-feature .feature-item.feature-report {
  background: #f0f6ff;
  border: 1px solid #3988ff;
}

.app-feature .feature-item.feature-report:before {
  content: "";
  z-index: 1;
  background: url("/trangnguyen/images/feature/report.png?v=1.1") 0 22px / 133px no-repeat;
  width: 138px;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
}

.app-feature .feature-item.feature-roadmap {
  background: #fff0f6;
  border: 1px solid #ff3964;
}

.app-feature .feature-item.feature-roadmap:before {
  content: "";
  z-index: 1;
  background: url("/trangnguyen/images/feature/roadmap.png?v=1.1") 0 22px / 133px no-repeat;
  width: 138px;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
}

.app-review .review-item {
  background: #fff0f6;
  border: 1px solid #ff3964;
  border-radius: 20px;
  padding: 20px 10px;
}

.app-review .review-item .review-line-1 {
  margin-bottom: 10px;
  padding-left: 74px;
  font-style: italic;
  position: relative;
}

.app-review .review-item .review-line-1:before {
  content: "";
  background: url("/trangnguyen/images/icons/quote.svg?v=1.1") center / 20px no-repeat;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  left: 40px;
}

.app-review .review-item .review-avatar {
  width: 64px;
  height: 64px;
}

.app-download-wrap {
  margin-top: 30px;
}

.app-download-wrap .app-download {
  z-index: 1;
  border: 1px solid salmon;
  border-radius: 35px;
  height: 222px;
  padding: 30px 15px;
  position: relative;
}

.app-download-wrap .app-download .app-download-title {
  font-size: 1.5em;
  font-weight: 900;
}

.app-download-wrap .app-download .app-download-qr {
  width: 100%;
  max-width: 350px;
  margin-top: 10px;
}

.app-download-wrap .app-download .app-download-left {
  text-align: end;
  align-items: end;
}

.app-download-wrap .app-download-bg {
  z-index: -1;
  background: url("/trangnguyen/images/download-app/dowload-app.png?v=1") center / cover no-repeat;
  border-radius: 35px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.app-download-wrap .app-download-left {
  padding-right: 320px;
}

@media (max-width: 768px) {
  .app-download-wrap .app-download-left {
    padding-right: 0;
    text-align: center !important;
    align-items: center !important;
  }
}

.app-download-wrap .app-download-loveapp-bg {
  background: url("/trangnguyen/images/download-app/love.png") center / 455px 333px no-repeat;
  width: 308px;
  height: 383px;
  position: absolute;
  bottom: -106px;
  left: 50%;
}

.app-download-wrap .app-download-more {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background-color: #ffffff14;
  border: 1px solid #00000014;
  border-radius: 10px;
  width: max-content;
  padding: 10px;
  display: inline-block;
  position: relative;
}

.app-download-wrap .app-download-more:before {
  background: url("/trangnguyen/images/download-app/love.png") center no-repeat;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0;
  left: 0;
}

.app-main-video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.reaction-love, .reaction-comment {
  font-size: 15px;
  font-weight: 600;
  position: relative;
}

.reaction-svg {
  width: 16px;
  height: 16px;
}

.__live {
  color: red;
  background: #ffe8e8;
  border-radius: 0 0 10px 10px;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 500;
  position: absolute;
  top: 0;
  right: 34px;
}

.__live span {
  background: #ff3b30;
  border-radius: 50%;
  width: 9px;
  height: 9px;
  margin-right: 5px;
  animation: 1.2s infinite livePulse;
  display: inline-flex;
  box-shadow: 0 0 #ff3b3080;
}

.rank-c {
  border-radius: 10px;
}

.rank {
  position: relative;
}

.rank:not(.rank-top) {
  min-height: 60px;
}

.rank.rank-small, .rank.rank-small .rank-text:before {
  font-size: .9em;
}

.rank.rank-left {
  padding-left: 68px;
}

.rank.rank-top {
  text-align: center;
  margin: 0 auto;
  padding-top: 68px;
}

.rank.sapo-hidden .rank-text:after {
  display: none;
}

.rank.black .rank-name-text, .rank.black .rank-current .rank-text:before {
  color: #000;
}

.rank .rank-name-text {
  color: #c01b2e;
  font-weight: 800;
  display: block;
}

.rank .rank-name-sapo {
  font-weight: 700;
  line-height: 18px;
  display: block;
}

.rank.center .rank-current:before {
  left: calc(50% - 30px);
}

.rank .rank-current:before {
  content: "";
  background: url("/trangnguyen/images/rank/rank-level.png") center / 280px no-repeat;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0;
  left: 0;
}

.rank .rank-current .rank-text:before {
  color: #c01b2e;
  margin-bottom: 10px;
  font-weight: 800;
  line-height: 18px;
  display: block;
}

.rank .rank-current .rank-text:after {
  font-weight: 700;
  line-height: 18px;
  display: block;
}

.rank .rank-current.vuathidau:before {
  background-position: -4px -18px;
}

.rank .rank-current.vuathidau .rank-text:before {
  content: "Vua thi đấu";
}

.rank .rank-current.vuathidau .rank-text:after {
  content: "Chiến thắng 20 trận thi đấu";
}

.rank .rank-current.nhatoanhoc:before {
  background-position: -4px -82px;
}

.rank .rank-current.nhatoanhoc .rank-text:before {
  content: "Nhà toán học";
}

.rank .rank-current.sieutienganh:before {
  background-position: -70px -82px;
}

.rank .rank-current.sieutienganh .rank-text:before {
  content: "Siêu tiếng anh";
}

.rank .rank-current.hocsinhchuyencan:before {
  background-position: -145px -82px;
}

.rank .rank-current.hocsinhchuyencan .rank-text:before {
  content: "Học sinh chuyên cần";
}

.rank .rank-current.nhavannhi:before {
  background-position: -216px -82px;
}

.rank .rank-current.nhavannhi .rank-text:before {
  content: "Nhà văn nhí";
}

.rank .rank-current.tocdoanhsang:before {
  background-position: -4px -150px;
}

.rank .rank-current.tocdoanhsang .rank-text:before {
  content: "Tốc độ ánh sáng";
}

.rank .rank-current.bacthaykienthuc:before {
  background-position: -72px -150px;
}

.rank .rank-current.bacthaykienthuc .rank-text:before {
  content: "Bậc thầy kiến thức";
}

.rank .rank-current.khamphathegioi:before {
  background-position: -143px -150px;
}

.rank .rank-current.khamphathegioi .rank-text:before {
  content: "Khám phá thế giới";
}

.rank .rank-current.huyenthoai:before {
  background-position: -213px -150px;
}

.rank .rank-current.huyenthoai .rank-text:before {
  content: "Huyển thoại";
}

.mh-more {
  text-align: center;
  background: #fff8f0;
  border: 1px solid #ff8239;
  border-radius: 15px;
  margin: 15px auto;
  padding: 5px 15px 5px 45px;
  display: inline-flex;
  position: relative;
}

.mh-more:before {
  content: "";
  background: url("/trangnguyen/images/icons/star-orange.png?v=1.1") center / cover no-repeat;
  width: 22px;
  height: 22px;
  position: absolute;
  top: 7px;
  left: 12px;
}

.icon-2 {
  background: url("/trangnguyen/images/icon-2.png") 0 0 / 600px no-repeat;
  width: 100px;
  height: 100px;
  margin: 0 auto;
}

.tienganh {
  background-position: -38px -216px;
}

.toan {
  background-position: -38px -65px;
}

.tiengviet {
  background-position: -175px -65px;
}

.lichsu {
  background-position: -302px -65px;
}

.dialy {
  background-position: -302px -220px;
}

.khoahoc {
  background-position: -408px -65px;
}

.tinhoc {
  background-position: -172px -226px;
}

.iq {
  background-position: -467px -218px;
}

.thamgiangay-wrap {
  z-index: 99;
  max-width: 360px;
  position: absolute;
  bottom: 125px;
  right: 0;
}

.thamgiangay-wrap .thamgiangay-image {
  width: 100%;
}

.thamgiangay-wrap .thamgiangay-button {
  color: #fff;
  background-color: #ff1515;
  border: 0 solid #ff1515;
  border-radius: 37px;
  padding: 10px 25px;
  position: absolute;
  bottom: 32px;
  left: 0;
  box-shadow: 1px 2px 2px #850000;
}

.thamgiangay-wrap .thamgiangay-button:hover {
  color: #ffeabd;
  background-color: #e21818;
}

.tn-footer {
  color: #cfcfcf;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background: linear-gradient(135deg, #030516 0%, #030724 45% 100%);
  border-radius: 36px 36px 0 0;
  width: calc(100% - 8px);
  margin: 30px auto 0;
  padding: 56px 0 22px;
  position: relative;
  overflow: hidden;
}

.tn-footer__bg {
  pointer-events: none;
  background: radial-gradient(circle at 10% 20%, #9b112f47, #0000 28%), radial-gradient(circle at 90% 15%, #38bdf838, #0000 30%), radial-gradient(circle at 50% 100%, #ef44441f, #0000 36%);
  animation: linear infinite rotate;
  position: absolute;
  inset: 0;
}

.tn-footer__inner {
  z-index: 1;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin: 0 auto;
  display: grid;
  position: relative;
}

.tn-footer__brand img {
  width: 300px;
  margin-bottom: 5px;
}

.tn-footer__brand h3 {
  margin: 0 0 10px;
  font-size: 1.5em;
}

.tn-footer__brand p {
  color: #d4daf5;
  max-width: 360px;
  line-height: 1.7;
}

.tn-footer__col h4, .tn-footer__download h4 {
  color: #d4daf5;
  margin: 0 0 16px;
  font-size: 1.2em;
  font-weight: 900;
}

.tn-footer__col a, .tn-footer__col p, .tn-footer__download a, .tn-footer__download p {
  color: #d4daf5;
  margin-bottom: 10px;
  line-height: 1.6;
  text-decoration: none;
  display: block;
}

.tn-footer__col a:hover, .tn-footer__download a:hover {
  color: #d4daf5;
}

.tn-footer__stores {
  flex-wrap: wrap;
  gap: 12px;
  display: flex;
}

.tn-footer__stores button {
  color: #d4daf5;
  cursor: pointer;
  background: #090d44;
  border: 0;
  border-radius: 16px;
  margin-top: 10px;
  padding: 12px 18px;
  font-weight: 700;
  transition: all .25s;
  box-shadow: 0 0 1px #e0e0e0dc;
}

.tn-footer__stores button:hover {
  color: #fff;
  background: #d71920;
  transform: translateY(-3px);
}

.tn-footer__bottom {
  z-index: 1;
  color: #6b7280;
  border-top: 1px solid #26315f1f;
  justify-content: space-between;
  gap: 16px;
  max-width: 1200px;
  margin: 36px auto 0;
  padding-top: 22px;
  display: flex;
  position: relative;
}

.tn-footer__bottom a {
  color: #6b7280;
  margin-left: 18px;
  text-decoration: none;
}

.tn-footer__bottom a:hover {
  color: #d71920;
}

@media (max-width: 768px) {
  .tn-footer {
    border-radius: 18px 18px 0 0;
    width: calc(100% - 20px);
    margin: 10px;
    padding: 22px 0 62px;
  }

  .tn-footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 15px !important;
  }

  .tn-footer__bottom {
    flex-direction: column;
    margin-top: 30px !important;
    padding: 0 15px !important;
  }

  .tn-footer__bottom a {
    margin: 0 18px 0 0;
  }

  .app-download-wrap .app-download {
    height: auto;
  }

  .app-feature .feature-item.feature-AImentor, .app-download-wrap .app-download-loveapp .app-download-loveapp-bg {
    width: 100%;
  }

  .feature-item {
    width: calc(100% - 20px);
  }

  .app-steps {
    overflow: hidden;
  }

  .sm-column {
    flex-direction: column;
  }

  .sm-border-radius-none {
    border-radius: 0 !important;
  }

  .container {
    max-width: 100%;
  }

  .sm-trunkcate-3-line {
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
  }

  .app-main .heading-title {
    max-width: 100%;
    font-size: 1.5em;
  }

  .app-feature .feature-item.feature-AImentor, .app-download-wrap .app-download-loveapp .app-download-loveapp-bg {
    width: calc(100vw - 20px);
    height: 100vw;
    min-width: unset;
  }

  .app-feature .feature-item.feature-AImentor:before, .app-download-wrap .app-download-loveapp .app-download-loveapp-bg:before {
    background-size: calc(100vw - 20px);
  }

  .tn-footer__brand img {
    width: calc(100vw - 64px);
  }

  .app-download-wrap .app-download-loveapp-bg {
    left: 0;
  }

  .cards-row.wide, .container {
    padding: 0 0;
  }

  .sm-after-hidden:after, .sm-before-hidden:before {
    display: none;
  }

  .home-mp.light {
    background-color: #fff;
  }

  .home-mp .app {
    margin-top: 0;
  }

  .sm-border {
    border: 1px solid #bdbefe;
  }

  .app-main:before {
    display: none;
  }

  .app-rank-wrap .app-community .community-content, .app-rank-wrap .app-community .community-content-end {
    width: 100%;
    padding: 10px;
  }
}

/* [project]/lib/pages/Home/scss/swiper.scss.css [app-client] (css) */
.sw-navigation .sw-prev, .sw-navigation .swiper-button-prev {
  left: -20px;
  right: auto;
}

.sw-navigation .sw-next, .sw-navigation .swiper-button-next {
  left: auto;
  right: -20px;
}

.sw-navigation .sw-button:after, .sw-navigation .sw-next:after, .sw-navigation .sw-prev:after {
  font-size: 16px;
}

.sw-navigation .sw-button {
  opacity: 1;
  color: #fff;
  z-index: 10;
  cursor: pointer;
  opacity: .7;
  background-color: #171717;
  border: 1px solid #ffffff0b;
  border-radius: 50%;
  outline: none;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  padding: 0;
  display: flex;
  position: absolute;
  top: calc(50% - 27px);
  right: 4px;
}

.sw-navigation .sw-button svg {
  width: 20px;
  height: 20px;
}

.sw-navigation .sw-button:hover {
  opacity: 1;
}

.sw-navigation .sw-button.sw-prev {
  left: 0;
  right: auto;
}

/*# sourceMappingURL=lib_0-9pxi0._.css.map*/