/* CSS Document */

/* html5doctor.com/html-5-reset-stylesheet/ */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  /* box-sizing: border-box; */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* overflow-x: hidden;  */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

:root {
  --black: #000;
  --white: #fff;
  --bkp: #060d81;
  --bkp2: #2253bf;
  --default: #000;

  --font-Charis: "Charis SIL", serif;
  --font-Arial: "Arial", sans-serif;
  --font-DM_Serif: "DM Serif Text", serif;
  --font-DM_Sans: "DM Sans", sans-serif;

  --txt13: 16px;
}

@media (max-width: 576px) {
  :root {
    --txt13: 13px;
  }
}

/* -- CUSTOM CSS -- */
html,
body {
  width: 100%;
  height: 100%;
  padding: 0px;
  margin: 0px;
}

body {
  background-color: #fff;
  position: relative;
}

body {
  font-family: var(--font-DM_Sans);
  font-size: 100%;
  font-weight: 400;
  color: var(--default);
  text-decoration: none;
}

img {
  border: 0px;
}

.img-responsive {
  display: block;
  height: auto;
  max-width: 100%;
}

a,
a:hover {
  text-decoration: none;
  color: inherit;
  outline: 0;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary);
}

a:focus {
  text-decoration: none;
  outline: 0;
}

button {
  border: 0;
  cursor: pointer;
  background: transparent;
  padding: 0;
  margin: 0;
}

.btn.focus,
.btn:focus,
button:focus {
  outline: 0;
  box-shadow: none;
}

input:focus,
select:focus,
textarea:focus,
.form-control:focus,
button:focus {
  outline: none !important;
  box-shadow: none;
}

/* Bootstrap Form Validation Style 20260710 */
.form-control.is-valid,
.was-validated .form-control:valid {
  border-color: #e5e7eb;
}

.form-check-input.is-valid,
.was-validated .form-check-input:valid {
  border-color: #e5e7eb;
}

.form-check-input.is-valid:checked,
.was-validated .form-check-input:valid:checked {
  background-color: #0d6efd;
}

.form-check-input.is-valid ~ .form-check-label,
.was-validated .form-check-input:valid ~ .form-check-label {
  color: #5d5d5d;
}

.form-control.select,
.was-validated .form-control.select:valid {
  background-image: url(../images/icon/select.svg);
  background-size: auto;
}

.form-control.select,
.was-validated .form-control.select:invalid {
  background-image: url(../images/icon/select.svg);
  background-size: auto;
}

.form-control.is-valid,
.was-validated .form-control:valid {
  background-image: none;
  padding-right: 1rem;
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
  background-image: none;
  padding-right: 1rem;
}

.was-validated .form-control:valid:focus,
.form-control.is-valid:focus {
  box-shadow: none;
}

input,
select,
textarea {
  background-clip: padding-box;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

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

.accordion-button:focus {
  box-shadow: none;
}

.title-h2 {
  font-family: var(--font-DM_Serif);
  font-size: 32px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--black);
  text-align: center;
  max-width: 580px;
  margin: 0 auto 30px;
}

.title-subline {
  font-family: var(--font-DM_Serif);
  font-size: 22px;
  line-height: 1;
  font-weight: 400;
  color: var(--black);
  border-bottom: 1px solid var(--black);
  padding-bottom: 10px;
  margin-bottom: 40px;
}

.title-h3 {
  font-family: var(--font-DM_Serif);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 10px;
}

.title-h23 {
  font-family: var(--font-DM_Serif);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--white);
  text-align: center;
  max-width: 620px;
  margin: 0 auto 30px;
}

.title-h2.underline {
  border-bottom: 1px solid var(--black);
  padding-bottom: 20px;
}

@media (max-width: 767px) {
  .title-h2 {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .title-h2 {
    font-size: 22px;
  }

  .title-subline {
    font-size: 18px;
  }
}

.bg--white {
  background-color: var(--white);
}

.bg--light {
  background-color: rgba(255, 255, 255, 0.8);
}

.bg--blue {
  background-color: #2b2854;
}

.txt-white {
  color: var(--white);
}

.contentStatic-pageBody {
  display: flex;
  flex-flow: column nowrap;
  flex: 0 0 auto;
  height: 100%;
}

.contentStatic-pageContent {
  width: 100%;
  flex: 1 1 auto;
  margin: 0 auto;
}

.contentStatic-detail {
  padding: 50px 0;
}

@media (max-width: 767px) {
  .contentStatic-detail {
    padding: 30px 0;
  }
}

/**********************************************************/
/**********************************************************/

header.header-static {
  padding: 17px 0;
  background-color: var(--bkp);
  width: 100%;
  z-index: 99;
}

header.header-static .header-panel {
  display: flex;
  align-items: center;
}

header.header-static .bp-logo2 {
  width: 150px;
}

header.header-static .bp-logo2 img {
  margin: 0;
  padding: 0;
}

header.header-static .bp-titile {
  font-family: var(--font-Charis);
  font-size: 26px;
  line-height: 1;
  color: #fff;
  float: left;
  padding-left: 20px;
  margin-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

header.header-static .bp-titile a {
  color: #fff;
}

@media (max-width: 991px) {
  header.header-static {
    padding: 10px 0;
  }

  header.header-static .bp-titile {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  header.header-static {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
}

@media (max-width: 575px) {
  header.header-static .bp-logo2 {
    width: 120px;
  }

  header.header-static .bp-titile {
    font-size: 16px;
    padding-left: 10px;
    margin-left: 10px;
  }
}

@media (max-width: 351px) {
  header.header-static .bp-titile {
    display: none;
  }
}

footer {
  background-color: #e7e8eb;
  width: 100%;
  position: relative;
}

footer .footer-panel {
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.875rem;
  font-family:
    Arial,
    Helvetica Neue,
    Helvetica,
    sans-serif;
  font-weight: normal;
}

footer .footer-panel img {
  width: 145px;
}

.turehits img {
  width: 14px !important;
}

footer .footer-copy {
  display: inline-block;
  padding-top: 7px;
}

footer .footer-bottom {
  font-family:
    Arial,
    Helvetica Neue,
    Helvetica,
    sans-serif;
  font-size: 14px;
  color: #000;
  font-weight: bold;
  padding: 20px 0;
}

footer .turehits {
  display: inline-block;
  padding-top: 0;
  padding-left: 10px;
}

footer .footer-contact {
  float: right;
}

footer .footer-contact ul li {
  display: inline-block;
  margin-right: 30px;
  font-weight: normal;
  font-size: 12px;
}

footer .footer-contact ul li:last-of-type {
  margin-right: 0;
}

footer .footer-contact a {
  color: #fff;
  font-family:
    Arial,
    Helvetica Neue,
    Helvetica,
    sans-serif;
  font-weight: 300;
  margin-left: 10px;
}

footer .footer-contact ul li img {
  vertical-align: middle;
  width: 28px;
  height: 28px;
}

.footer-top {
  background-color: var(--bkp);
  padding: 30px 0;
  font-family:
    Arial,
    Helvetica Neue,
    Helvetica,
    sans-serif;
  font-size: 14px;
  color: var(--white);
  text-align: center;
}

.footer-top .title {
  font-family: var(--font-DM_Serif);
  font-size: 20px;
  margin-bottom: 10px;
}

.footer-top p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
}

.footer-top a {
  color: var(--white);
  text-decoration: underline;
}

.footer-top a:hover {
  text-decoration: none;
}

@media (max-width: 1199px) {
  footer .footer-bottom {
    text-align: center;
  }

  footer .footer-contact {
    float: none;
  }

  footer .footer-contact ul li {
    padding-top: 15px;
  }
}

@media (max-width: 576px) {
  footer .turehits {
    display: block;
    padding-top: 0;
    padding-left: 0px;
  }

  footer .footer-contact {
    text-align: left;
    padding: 0 10px;
    width: 300px;
    margin: 0 auto;
  }

  footer .footer-contact ul li {
    display: block;
    margin: 0;
  }

  footer .footer-contact ul li span {
    display: block;
    padding-left: 45px;
  }
}

.footer-bottom2 {
  background-color: #e7e8eb;
  padding: 30px 0;
  font-size: 13px;
  color: var(--black);
}

.copyright {
  margin-bottom: 15px;
  font-weight: 700;
}

.ft-bottom--link {
  display: flex;
  gap: 30px;
  flex-flow: row wrap;
}

.ft-bottom--link a:hover {
  text-decoration: underline;
}

@media (max-width: 1199px) {
  .ft-bottom--link {
    gap: 15px 20px;
  }
}

/**********************************************************/
/**********************************************************/
/**********************************************************/

/* nav menu */
.header-menu .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav-epaper {
  display: flex;
  align-items: center;
}

.nav-epaper ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-epaper a {
  font-size: 15px;
  line-height: 1.5;
  color: var(--white);
}

.nav-epaper a:hover,
.nav-epaper a.active {
  text-decoration: underline;
}

.navLogin {
  line-height: 0;
  margin-left: 10px;
  position: relative;
}

.navLogin > a {
  line-height: 0;
}

.navLogin img {
  width: 22px;
  height: 22px;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg)
    brightness(102%) contrast(102%);
}

.boxlogin-account {
  position: absolute;
  top: 25px;
  right: 0;
  background-color: var(--white);
  border: 1px solid #d8d8df;
  border-radius: 3px;
  z-index: 5;
  display: none;
}

.boxlogin-account ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100px;
}

.boxlogin-account ul li {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.boxlogin-account ul li:last-of-type {
  border-bottom: 0;
}

.boxlogin-account ul li a {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: var(--default);
  background-color: #fff;
  padding: 10px 0;
}

.boxlogin-account ul li a:hover {
  text-decoration: none;
  background-color: #c5d5f4;
}

/* .navLogin:hover a.nav-myAccount + .boxlogin-account{ display: block; } */

#ham-menu,
.linkprofile,
.linksignout {
  display: none;
}

.scrolDisabled {
  overflow: hidden;
  position: fixed;
}

@media (max-width: 991px) {
  .nav-epaper ul {
    gap: 20px;
  }

  .nav-epaper a {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .nav-epaper {
    display: none;
  }

  .nav-epaper.navOpen {
    display: block;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 46px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    float: none;
    z-index: 99;
    padding: 30px;
    text-align: center;
  }

  .nav-epaper ul {
    flex-direction: column;
    gap: 0;
  }

  .nav-epaper.navOpen ul li a {
    color: var(--bkp);
  }

  .nav-epaper.navOpen ul li {
    display: block;
    color: var(--bkp);
    padding: 15px 0;
  }

  .nav-epaper.navOpen ul li.linkprofile,
  .nav-epaper.navOpen ul li.linksignout {
    display: block;
  }

  .nav-epaper.navOpen ul li.linkprofile a {
    display: flex;
    align-items: center;
  }

  .nav-epaper.navOpen ul li.linkprofile a img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    filter: invert(14%) sepia(93%) saturate(6176%) hue-rotate(207deg)
      brightness(92%) contrast(104%);
  }

  .content-pd {
    padding-top: 46px;
  }

  #ham-menu {
    width: 28px;
    height: 20px;
    position: fixed;
    display: block;
    margin: 0;
    top: 13px;
    right: 20px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    z-index: 101;
  }

  #ham-menu span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
  }

  #ham-menu span:nth-child(1) {
    top: 0px;
  }

  #ham-menu span:nth-child(2) {
    top: 9px;
  }

  #ham-menu span:nth-child(3) {
    top: 18px;
  }

  #ham-menu.open span:nth-child(1) {
    top: 9px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  #ham-menu.open span:nth-child(2) {
    opacity: 0;
    left: -30px;
  }

  #ham-menu.open span:nth-child(3) {
    top: 9px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
}

/**********************************************************/
/**********************************************************/
/**********************************************************/

section {
  position: relative;
}

.page-section {
  padding: 80px 0;
  /* background-color: #f6f6f7; */
}

@media (max-width: 767px) {
  .page-section {
    padding: 50px 0;
  }
}

.swiper-pagination {
  position: relative;
  margin-top: 15px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #9f9f9f;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #000;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "";
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}

.swiper-button-prev {
  background-image: url("../images/icon/arrow-prev.svg");
}

.swiper-button-next {
  background-image: url("../images/icon/arrow-next.svg");
}

/**********************************************************/
/**********************************************************/

.boxbtn {
  display: inline-block;
  background-color: var(--bkp);
  color: #fff;
  font-size: 15px;
  color: #fff;
  padding: 10px 20px;
  border-radius: 13px;
  border: 1px solid var(--bkp);
  transition: all 0.3s ease-in-out;
}

.boxbtn:hover {
  background-color: #2253bf;
  color: #fff;
  border-color: #2253bf;
}

.boxbtn.txt-large {
  font-size: 18px;
}

.boxbtn.btnsignin {
  background-color: #000;
  font-family: var(--font-DM_Serif);
  color: #fff;
  border-color: #000;
  border-radius: 5px;
}

.boxbtn.btnsignin:hover {
  background-color: var(--white);
  color: #000;
}

.boxbtn.btn-apply {
  padding: 12px 0;
  width: 200px;
  text-align: center;
}

@media (max-width: 576px) {
  .boxbtn.btn-apply {
    width: 100%;
  }
}

.imgpromo img {
  width: 100%;
}

/**********************************************************/
/**********************************************************/

/* faq */
.bg-faq {
  background-color: var(--white);
}

.faq-panel {
  max-width: 800px;
  margin: 0 auto;
}

.faq-panel .accordion-button {
  font-size: 18px;
  line-height: 1.5;
  font-weight: bold;
  color: var(--default);
  border: 0;
  gap: 20px;
  padding: 20px 0px;
  background-color: transparent;
}

.faq-panel .accordion-button::after {
  /*background-image: url(../images/icon/icon-plus.svg);*/
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24.00 24.00' fill='none' xmlns='http://www.w3.org/2000/svg' stroke='' stroke-width='2' %3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='square' stroke-linejoin='round' stroke='%23CCCCCC' stroke-width='0.048'%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E %3Crect width='17' height='17' fill=''%3E%3C/rect%3E %3Cpath d='M12 6V18' stroke='%23AEC6FA' stroke-linecap='square' stroke-linejoin='round'%3E%3C/path%3E %3Cpath d='M6 12H18' stroke='%23AEC6FA' stroke-linecap='square' stroke-linejoin='round'%3E%3C/path%3E %3C/g%3E%3C/svg%3E");
  background-size: cover;
  background-color: #eef4fe;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}

.faq-panel .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
}

.faq-panel .accordion-button:not(.collapsed)::after {
  transform: rotate(45deg);
  background-color: #d1e3ff;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24.00 24.00' fill='none' xmlns='http://www.w3.org/2000/svg' stroke='' stroke-width='2' %3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='square' stroke-linejoin='round' stroke='%23CCCCCC' stroke-width='0.048'%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E %3Crect width='17' height='17' fill=''%3E%3C/rect%3E %3Cpath d='M12 6V18' stroke='%23060D81' stroke-linecap='square' stroke-linejoin='round'%3E%3C/path%3E %3Cpath d='M6 12H18' stroke='%23060D81' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E %3C/g%3E%3C/svg%3E");
}

.faq-panel .accordion-item {
  border: 0;
  border-top: 1px solid #d3e2fd;
  background-color: transparent;
}

.faq-panel .accordion-item:first-of-type,
.faq-panel .accordion-item:last-of-type,
.faq-panel .accordion-item:first-of-type .accordion-button,
.faq-panel .accordion-item:last-of-type .accordion-button.collapsed {
  border-radius: 0;
}

.faq-panel .accordion-body {
  padding: 5px 0 30px;
}

.faq-panel .accordion-body p {
  font-size: 18px;
  line-height: 1.86;
  color: var(--default);
  margin-bottom: 30px;
}

.faq-panel .accordion-body p:last-of-type {
  margin-bottom: 0;
}

.faq-panel .accordion-body a {
  color: var(--bkp);
}

.faq-panel .accordion-body a:hover {
  text-decoration: underline;
}

@media (max-width: 1599px) {
  .faq-panel .accordion-button,
  .faq-panel .accordion-body p {
    font-size: 16px;
  }

  .faq-panel .accordion-button::after {
    width: 33px;
    height: 33px;
  }
}

@media (max-width: 991px) {
  .faq-panel .accordion-button,
  .faq-panel .accordion-body p {
    font-size: 15px;
  }

  .faq-panel .accordion-button::after {
    width: 16px;
    height: 16px;
  }
}

/**********************************************************/
/**********************************************************/

.planlist {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-flow: row wrap;
}

.plancard {
  text-align: center;
  width: 320px;
  position: relative;
}

.plancard:hover {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.plancard .plancard-name {
  font-size: 17px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
}

.plancard .plancard-price {
  font-family: var(--font-DM_Serif);
  font-size: 28px;
  line-height: 1.2;
  font-weight: 400;
  color: #001868;
}

.plancard .plancard-oldprice {
  font-size: 13px;
  line-height: 1.2;
  font-weight: 500;
  color: #9f9f9f;
  margin-bottom: 10px;
  text-decoration: line-through;
  height: 16px;
}

.plancard .plancard-freeback {
  font-size: 12px;
  line-height: 1.2;
  font-weight: 300;
  color: #424242;
}

.plancard input[type="radio"] {
  display: none;
}

.needs-validation.was-validated .invalid-feedback {
  display: block;
}

.txt-invalid {
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
  color: #f00;
  margin-top: 20px;
}

.plancard label {
  width: 100%;
  height: 100%;
  padding: 12px 10px 20px;
  background-color: var(--white);
  border: 1px solid #d8d8df;
  border-radius: 3px;
}

.plancard label > span {
  position: absolute;
  background-color: var(--white);
  border: 1px solid #aeadac;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  top: 16px;
  left: 16px;
  z-index: 9;
}

.plancard input[type="radio"]:not(:disabled) ~ label {
  cursor: pointer;
}

.plancard input[type="radio"]:checked + label figure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(212, 4, 144, 0.4);
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

.plancard input[type="radio"]:checked + label > span::after {
  content: "";
  background-color: #000;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
}

.planbtn-subscribe {
  text-align: center;
  margin-top: 40px;
}

.planbtn-subscribe p {
  font-size: 12px;
  line-height: 1.2;
  font-weight: 400;
  color: #424242;
  margin-top: 10px;
}

.btn-subscribe_now {
  font-size: 26px;
  width: 320px;
  text-align: center;
  margin: 0 auto;
  display: block;
}

.taglable {
  position: absolute;
  top: -10px;
  right: 10px;
  background-color: #c5d5f4;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
}

@media (max-width: 1199px) {
  .plancard {
    width: 280px;
  }

  .btn-subscribe_now {
    font-size: 22px;
    width: 240px;
  }
}

@media (max-width: 767px) {
  .planlist {
    gap: 20px;
  }

  .plancard {
    width: 240px;
  }

  .planbtn-subscribe {
    position: -webkit-sticky;
    position: sticky;
    bottom: 20px;
    padding: 15px 0;
    z-index: 10;
  }
}

@media (max-width: 576px) {
  .planlist {
    gap: 20px 10px;
  }

  .plancard {
    width: calc(50% - 8px);
  }

  .plancard .plancard-name {
    font-size: 12px;
    height: 30px;
  }

  .plancard .plancard-price {
    font-size: 20px;
  }

  .plancard .plancard-oldprice {
    font-size: 9px;
    height: 10px;
  }

  .planbtn-subscribe {
    margin-top: 20px;
  }

  .btn-subscribe_now {
    font-size: 18px;
    width: 240px;
  }

  .plancard label > span {
    width: 18px;
    height: 18px;
    top: 5px;
    left: 5px;
  }

  .plancard input[type="radio"]:checked + label > span::after {
    width: 12px;
    height: 12px;
    top: 2px;
    left: 2px;
  }

  .taglable {
    font-size: 10px;
  }
}

/* modal */
.modal--planlogin {
  max-width: 460px;
}

.modal--planlogin .modal-content {
  border: 1px solid #707070;
  border-radius: 0;
}

.modal--planlogin .modal-header {
  border-bottom: 0;
}

.closex {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.closex img {
  width: 20px;
  height: 20px;
}

.planlogin {
  text-align: center;
}

.planlogin-title {
  font-family: var(--font-DM_Serif);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--black);
  width: 250px;
  margin: 0 auto 20px;
  text-align: center;
}

.planlogin-desc {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 400;
  color: var(--black);
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

.planlogin-desc a {
  color: #0054c6;
  text-decoration: underline;
}

.planlogin-desc a:hover {
  color: #000;
  text-decoration: none;
}

@media (max-width: 576px) {
  .planlogin-title {
    font-size: 19px;
  }

  .planlogin-desc {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

/**********************************************************/
/**********************************************************/

.better_way {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-flow: row wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.better_way .better_way--img {
  width: calc(45% - 10px);
  line-height: 0;
}

.better_way .better_way-list {
  width: calc(55% - 10px);
}

.better_way .better_way--desc {
  position: relative;
  padding: 20px;
  /*width: 100%;*/
}

.better_way .better_way--desc::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 5px;
  height: 100%;
  background-color: transparent;
  opacity: 0;
  transition: all 0.3s ease;
}

.better_way .better_way--desc h3 {
  font-size: 18px;
  line-height: 1.34;
  font-weight: bold;
  color: #1f1f1f;
}

.better_way .better_way--desc p {
  font-size: 15px;
  line-height: 1.34;
  font-weight: 300;
  color: #1f1f1f;
}

.better_way .better_way--desc.active,
.better_way .better_way--desc:hover {
  background-color: #e7e8eb;
  cursor: pointer;
}

.better_way .better_way--desc.active::before,
.better_way .better_way--desc:hover::before {
  background-color: #d1e3ff;
  opacity: 1;
}

.show-mobile {
  display: none;
}

@media (max-width: 1199px) {
  .better_way .better_way--desc h3 {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .better_way .better_way--desc {
    padding: 15px;
  }

  .better_way .better_way--desc h3 {
    font-size: 16px;
  }

  .better_way .better_way--desc p {
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  .section--betterway {
    padding-bottom: 50px;
  }

  .show-mobile {
    display: block;
  }

  .show-desktop {
    display: none;
  }

  .better_way {
    gap: 20px;
  }

  .better_way .better_way--img,
  .better_way .better_way-list {
    width: 100%;
  }

  .better_way .better_way--desc {
    padding: 10px 15px;
  }

  .better_way .better_way--desc {
    background-color: rgba(187, 189, 215, 0.35);
    cursor: pointer;
  }

  .better_way .better_way--desc::before {
    background-color: rgba(187, 189, 215, 0.65);
    opacity: 1;
  }
}

/**********************************************************/
/**********************************************************/

.panel--list {
  display: flex;
  gap: 24px;
  flex-flow: row wrap;
  justify-content: center;
}

.panel--card {
  width: 425px;
  background-color: var(--white);
  border-radius: 0px;
  border-top-right-radius: 50px;
  padding: 40px;
}

.panel--card .card-title {
  font-family: var(--font-DM_Serif);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 10px;
  text-align: center;
}

.panel--card .card-title span {
  font-size: 13px;
  font-weight: 400;
}

.panel--card .card-desc {
  font-size: 13px;
  line-height: 1.4;
  font-weight: 400;
  color: var(--black);
  max-width: 285px;
  margin: 0 auto;
}

.panel--card .panel--img {
  max-width: 180px;
  margin: 0 auto;
}

.panel--card .panel--btn {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-flow: row wrap;
  margin-top: 20px;
}

.card--print {
  background-color: #e4e4e4;
}

.card--digital {
  background-color: #c5d5f4;
}

@media (max-width: 991px) {
  .panel--card {
    width: calc(50% - 12px);
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .panel--card {
    width: 100%;
  }
}

/**********************************************************/
/**********************************************************/

.divContainer {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  padding: 50px 20px;
  background-color: var(--white);
  border: 1px solid #ede7e1;
  border-radius: 5px;
}

.divContent {
  max-width: 430px;
  margin: 0 auto;
}

@media (max-width: 576px) {
  .divContainer {
    padding: 30px 15px;
  }
}

.nav-step {
  text-align: center;
  position: relative;
  max-width: 450px;
  margin: 0 auto 50px;
}

.nav-step::after {
  content: "";
  position: absolute;
  width: 85%;
  height: 2px;
  background-color: #d8d8df;
  top: 11px;
  left: 25px;
  z-index: 1;
}

.nav-step ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-step ul li {
  text-align: center;
  position: relative;
  z-index: 4;
}

.nav-step ul li span {
  width: 25px;
  height: 25px;
  margin: 0 auto;
  background-color: #d8d8df;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-step ul li.active span {
  background-color: var(--bkp);
}

.nav-step ul li p {
  font-size: 15px;
  color: #000;
  margin-top: 5px;
}

@media (max-width: 576px) {
  .nav-step::after {
    width: 80%;
  }

  .nav-step ul li p {
    font-size: 12px;
  }
}

/**********************************************************/
/**********************************************************/

.epaper-plan {
  background-color: #cce2fe;
  border-radius: 3px;
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
}

.epaper-plan--name {
  font-family: var(--font-DM_Serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.2;
}

.epaper-plan--desc {
  font-size: var(--txt13);
  /*line-height: 1.4;*/
  color: #0b0b0b;
}

.plan-subtext {
  padding-top: 10px;
  color: #333333;
  font-size: 12px;
  line-height: 1.2;
}

.plan-subtext.small {
  font-size: 10px;
  padding-top: 6px;
}

.changeplan a {
  font-size: var(--txt13);
  color: #346aea;
  text-decoration: underline;
}

.changeplan a:hover {
  color: #000;
  text-decoration: none;
}

.hrline {
  border-color: #d1d5db;
  opacity: 0.4;
}

@media (max-width: 576px) {
  .epaper-plan--name {
    font-size: 18px;
  }
}

.epaper-plan--summary {
  border-bottom: 1px solid rgba(209, 213, 219, 0.4);
  margin-top: 20px;
  padding-bottom: 10px;
  margin-bottom: 40px;
}

.promo_code {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
}

.promo_code .form-control {
  font-size: var(--txt13);
  border-radius: 3px;
  border-color: #d8d8df;
  height: 40px;
}

.promo_code .btn-apply {
  font-family: var(--font-DM_Sans);
  font-size: var(--txt13);
  width: auto;
  height: 40px;
  border-radius: 13px;
  background-color: var(--bkp);
  padding: 10px 20px;
}

.promo_code .btn-apply:hover {
  background-color: #2253bf;
  color: #fff;
  border-color: #2253bf;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: var(--txt13);
  line-height: 1.3;
}

.row-discount .summary-title {
  color: #161616;
}

.row-discount .summary-price {
  color: #ff0000;
}

.summary-row.row-total {
  font-family: var(--font-DM_Serif);
  font-size: 18px;
}

.summary-row.row-total span {
  font-family: var(--font-DM_Sans);
  font-size: 13px;
  color: #161616;
  display: block;
}

@media (max-width: 576px) {
  .summary-row.row-total {
    font-size: 15px;
  }

  .summary-row.row-total span {
    font-size: 11px;
  }
}

.txtPayment {
  background-color: var(--bkp2);
  border-radius: 3px;
  font-size: 18px;
  line-height: 1.3;
  color: #fff;
  text-align: center;
  padding: 20px 30px;
  margin-bottom: 25px;
}

@media (max-width: 576px) {
  .txtPayment {
    font-size: 15px;
    padding: 15px 20px;
  }
}

/* navPayment */
.navPayment {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.navPayment .boxPayment input[type="radio"] {
  display: none;
}

.navPayment .boxPayment label {
  border: 1px solid #d8d8dd;
  border-radius: 3px;
  padding-block: 12px;
  padding-inline: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #000;
  position: relative;
  width: 120px;
  height: 100%;
  cursor: pointer;
}

.navPayment .boxPayment label img {
  width: 28px;
}

.navPayment .boxPayment.cc :checked + label {
  background-color: #cce2fe;
  border: 1px solid #90b8f6;
}

.navPayment .boxPayment .creditcard {
  display: flex;
  flex-direction: column;
  align-content: center;
  line-height: 1.5;
}

.navPayment .boxPayment .creditcard span {
  display: flex;
  /*justify-content: center;*/
  align-items: center;
  gap: 5px;
}

.navPayment .boxPayment .creditcard img:first-child {
  height: 16px;
}

.navPayment .boxPayment.qr {
  background-color: #1a3763;
  border-radius: 3px;
}

.navPayment .boxPayment.qr label {
  border: none;
  font-size: 11px;
  text-align: center;
}

.navPayment .boxPayment .qrcode {
  display: flex;
  color: white;
  align-items: center;
}

.form-creditCard .form-label {
  font-size: var(--txt13);
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 10px;
}

.form-creditCard .form-control {
  font-size: var(--txt13);
  border-radius: 3px;
  border-color: #d8d8df;
  height: 40px;
}

.row2col {
  display: flex;
  gap: 20px;
}

.row2col .form-group50 {
  width: 50%;
}

.input-cvv {
  background-image: url("../images/icon/icn-cvv.svg");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 24px;
}

.btn-payment {
  width: 100%;
  margin-top: 30px;
}

.btn-payment .boxbtn {
  font-family: var(--font-DM_Sans);
  font-size: 15px;
  background-color: var(--bkp);
  color: #fff;
  border: 1px solid var(--bkp);
  border-radius: 13px;
  padding: 12px 0;
  width: 200px;
  margin: 0 auto;
  display: block;
  text-align: center;
}

.btn-payment .boxbtn:hover {
  background-color: #2253bf;
  color: #fff;
  border-color: #2253bf;
}

@media (max-width: 576px) {
  .btn-payment .boxbtn {
    font-size: 18px;
  }
}

.payment-qr {
  max-width: 500px;
  margin: 0 auto;
  border: 1px solid #d8d8df;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  text-align: center;
  padding-bottom: 30px;
}

.payment-qr .payment-qr-title {
  text-align: center;
  padding: 20px;
  background-color: #213260;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.payment-qr-title img {
  width: 150px;
}

.payment-promptpay {
  margin: 30px 0;
}

.payment-promptpay img {
  width: 100px;
}

.payment-qrcode {
  margin: 30px 0;
}

.payment-qrcode img {
  width: 200px;
}

.payment-qr p {
  font-size: 24px;
  line-height: 1.2;
  font-weight: bold;
  color: #4f4f4f;
}

.qrhowto {
  max-width: 500px;
  margin: 30px auto;
}

.qrhowto .qrhowto-title {
  font-size: 18px;
  line-height: 1.2;
  font-weight: bold;
  color: #1f1f1f;
  margin-bottom: 10px;
}

.qrhowto ol {
  padding-left: 20px;
  list-style: decimal;
}

.qrhowto ol li {
  font-size: 15px;
  line-height: 1.4;
  color: #1f1f1f;
  margin-bottom: 10px;
}

.qrhowto ol li:last-of-type {
  margin-bottom: 0;
}

.boxborder-btn {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.boxborder-btn .bntborder1,
.boxborder-btn .bntborder2 {
  font-size: 18px;
  line-height: 1.2;
  font-weight: bold;
  border: 2px solid var(--bkp2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 60px;
}

.boxborder-btn .bntborder1 {
  color: var(--bkp2);
  background-color: #fff;
}

.boxborder-btn .bntborder2 {
  color: #fff;
  background-color: var(--bkp2);
}

.boxborder-btn .bntborder1:hover,
.boxborder-btn .bntborder2:hover {
  color: #fff;
  background-color: #000;
  border-color: #000;
}

@media (max-width: 991px) {
  .boxborder-btn .bntborder1,
  .boxborder-btn .bntborder2 {
    font-size: 16px;
    width: 200px;
    height: 50px;
    border-radius: 16px;
  }
}

@media (max-width: 576px) {
  .payment-qr-title img {
    width: 100px;
  }

  .payment-promptpay img {
    width: 80px;
  }

  .boxborder-btn {
    gap: 15px;
  }

  .boxborder-btn .bntborder1,
  .boxborder-btn .bntborder2 {
    font-size: 14px;
    width: 160px;
    height: 40px;
    border-radius: 12px;
  }
}

/**********************************************************/
/**********************************************************/

.box-choose-payment {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #edeef1;
  margin-bottom: 20px;
}

.box-choose-payment .radio-payment {
  width: 50%;
  margin: 0;
  padding: 0;
}

.box-choose-payment .form-check label {
  font-family: var(--font-DM_Serif);
  font-size: 18px;
  color: #000;
  padding-bottom: 10px;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  width: 100%;
  text-align: center;
}

@media (max-width: 576px) {
  .box-choose-payment .form-check label {
    font-size: 15px;
  }
}

.radio-payment input[type="radio"] {
  display: none;
}

.radio-payment input[type="radio"]:checked:before {
  content: "";
  position: absolute;
  bottom: -27px;
  left: -5px;
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-bottom: 22px solid #f6f6f6;
}

.radio-payment input[type="radio"]:checked:before {
  content: "";
  position: absolute;
  bottom: -25px;
  left: -5px;
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-bottom: 22px solid #f6f6f6;
}

.radio-payment input[type="radio"]:checked + label {
  border-bottom: 3px solid var(--bkp2);
}

/*  */
.form--text {
  margin-bottom: 15px;
}

.form--text label {
  font-size: var(--txt13);
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 5px;
}

.form--text .form-control {
  font-size: var(--txt13);
  border-radius: 3px;
  border-color: #e5e7eb;
  height: 40px;
}

.form--text select.select {
  width: 100%;
  height: 40px;
  background: transparent;
  color: #aeadac;
  outline: none;
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background-image: url(../images/icon/select.svg);
  background-repeat: no-repeat;
  background-position: 93% center;
}

.form--text select.select:valid {
  color: #333;
}

.form--text .form-check.form-check-inline {
  margin-right: 0;
  margin-left: 1rem;
}

.form--text .form-check-input {
  margin-top: 0;
  cursor: pointer;
}

.form--text .form-check.form-check-inline label {
  margin-bottom: 0;
  cursor: pointer;
}

.btn-submit_form {
  width: 100%;
  font-size: 18px;
  padding: 13px;
}

.boxps {
  font-size: 14px;
  line-height: 1.2;
  color: #5d5d5d;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .boxps {
    font-size: 11px;
  }
}

/*  */
.step-form--row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

.step-form--col100 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 5px;
  padding-left: 5px;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.step-form--col30 {
  position: relative;
  width: 30%;
  min-height: 1px;
  padding-right: 5px;
  padding-left: 5px;
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
  max-width: 30%;
}

.step-form--col33 {
  position: relative;
  width: 33.333333%;
  min-height: 1px;
  padding-right: 5px;
  padding-left: 5px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.step-form--col50 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 5px;
  padding-left: 5px;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.step-form--col70 {
  position: relative;
  width: 70%;
  min-height: 1px;
  padding-right: 5px;
  padding-left: 5px;
  -ms-flex: 0 0 70%;
  flex: 0 0 70%;
  max-width: 70%;
}

.step-form--col20 {
  position: relative;
  width: 20%;
  min-height: 1px;
  padding-right: 5px;
  padding-left: 5px;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}

.step-form--col40 {
  position: relative;
  width: 40%;
  min-height: 1px;
  padding-right: 5px;
  padding-left: 5px;
  -ms-flex: 0 0 40%;
  flex: 0 0 40%;
  max-width: 40%;
}

.formrow--birthday {
  align-items: flex-end;
}

/*  */
.epaper-consent {
  margin-top: 20px;
}

.epaper-consent .title {
  font-size: var(--txt13);
  line-height: 1.2;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 10px;
}

.epaper-consent label {
  font-size: 14px;
  line-height: 1.2;
  color: #5d5d5d;
}

.epaper-consent label a {
  color: #0054c6;
  text-decoration: underline;
}

.epaper-consent label a:hover {
  color: #000;
  text-decoration: none;
}

.epaper-consent .form-check-input {
  margin-top: 0;
}

@media (max-width: 576px) {
  .epaper-consent label {
    font-size: 11px;
  }
}

/*  */
.boxReceipt-issued {
  background-color: var(--bkp2);
  border-radius: 3px;
  padding: 20px;
  text-align: center;
  font-size: 15px;
  line-height: 1.2;
  color: #fff;
  margin: 30px 0;
}

.boxform--sameAddress {
  background-color: #f0f0f0;
  border-radius: 3px;
  padding: 15px;
  margin-bottom: 15px;
}

.boxform--sameAddress .form--text,
.boxform--sameAddress .form--text label {
  margin-bottom: 0;
  min-height: auto;
}

.boxform--sameAddress .form--text label {
  font-size: 11px;
  color: #5d5d5d;
}

/**********************************************************/
/**********************************************************/

.divContainer-thankyou {
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
  padding: 50px 20px;
  background-color: var(--white);
  border: 1px solid #ede7e1;
  border-radius: 5px;
}

.thankyou-detail {
  max-width: 380px;
  margin: 20px auto 50px;
  text-align: center;
}

.thankyou-detail h1 {
  font-family: var(--font-DM_Serif);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--black);
  border-bottom: 1px solid #000;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.thankyou-detail h2 {
  font-family: var(--font-DM_Serif);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 20px;
}

.thankyou-detail p {
  font-size: 15px;
  line-height: 1.4;
  color: #5d5d5d;
  margin-bottom: 30px;
}

.thankyou-detail p a {
  color: var(--bkp);
  text-decoration: none;
}

.thankyou-detail p a:hover {
  color: #000;
  text-decoration: underline;
}

@media (max-width: 576px) {
  .divContainer-thankyou {
    padding: 30px 15px;
  }
}

/**********************************************************/
/**********************************************************/

.content-detail p {
  font-size: 16px;
  line-height: 1.5;
  color: #000;
}

.content-detail p a {
  color: var(--bkp);
  text-decoration: none;
}

.content-detail p a:hover {
  color: #000;
  text-decoration: underline;
}

.content-detail p.txt-terms {
  font-size: 13px;
}

.divbtn {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.form--cancelled {
  margin-top: 5px;
}

.form--cancelled label {
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 576px) {
  .divbtn {
    gap: 10px;
  }

  .divbtn.unsub {
    flex-direction: column;
    gap: 10px;
  }

  .content-detail p,
  .form--cancelled label {
    font-size: 14px;
  }
}

.checkbox-group {
  max-width: 350px;
  margin: 30px auto;
  text-align: left;
}

.custom-checkbox {
  display: block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 16px;
  user-select: none;
  line-height: 1;
}

.custom-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: transparent;
  border: 1px solid #757575;
  border-radius: 2px;
}

.custom-checkbox:hover input ~ .checkmark {
  background-color: #eee;
}

.custom-checkbox input:checked ~ .checkmark {
  background-color: transparent;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.custom-checkbox .checkmark:after {
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid #000;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
}

.answer_other {
  width: 100%;
  padding: 10px;
  border: 1px solid #e5e7eb;
  border-radius: 3px;
  font-size: 16px;
  margin-top: 10px;
}

.receipt-info-title {
  font-family: var(--font-DM_Serif);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 20px;
}

/**********************************************************/
/**********************************************************/

.page-section--welcome {
  padding-bottom: 0;
}

.welcome-panel {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-flow: row wrap;
  background-color: #cde3ff;
  border-radius: 0;
  border-top-right-radius: 50px;
}

.welcome-panel .welcome-img {
  width: 45%;
  text-align: center;
  line-height: 0;
}

.welcome-panel .welcome-img img {
  width: 294px;
  position: relative;
  margin-top: -50px;
}

.welcome-panel .welcome-content {
  width: 55%;
  text-align: center;
  color: var(--black);
}

.welcome-panel .welcome-content .title {
  font-family: var(--font-DM_Serif);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 5px;
}

.welcome-panel .welcome-content .sub-title {
  font-size: 13px;
  line-height: 1.5;
}

.welcome-panel .welcome-content .price {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 20px;
}

.welcome-panel .welcome-content .price span {
  font-size: 32px;
  font-weight: 600;
}

.welcome-panel .welcome-content .description {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.welcome-panel .welcome-content .welcome-btn {
  text-align: center;
}

.welcome-panel .welcome-content .cancel-info {
  font-size: 11px;
  line-height: 1.2;
  margin-top: 5px;
}

@media (max-width: 991px) {
  .welcome-panel .welcome-img img {
    width: 260px;
  }

  .welcome-panel .welcome-content .title {
    font-size: 18px;
  }

  .welcome-panel .welcome-content .price {
    margin-bottom: 10px;
  }

  .welcome-panel .welcome-content .description {
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  .welcome-panel {
    flex-direction: column-reverse;
    gap: 20px;
  }

  .welcome-panel .welcome-img {
    width: 100%;
  }

  .welcome-panel .welcome-img img {
    width: 220px;
    margin-top: 0;
  }

  .welcome-panel .welcome-content {
    width: 100%;
    padding: 20px;
  }
}

/**********************************************************/
/**********************************************************/

/* .needReceipt{ border-bottom: 1px solid rgba(209, 213, 219, 0.4); padding-bottom: 15px; margin-bottom: 20px; } */

.box-temporary {
  background-color: #b6d0f9;
  border-radius: 3px;
  padding: 8px 12px;
  font-size: 11px;
  line-height: 1.3;
  color: #5d5d5d;
  margin: 10px 0;
}

.boxps-red {
  font-size: 11px;
  color: #ff0102;
  margin-bottom: 15px;
}

.form--text textarea.form-control {
  height: auto;
}

@media (max-width: 767px) {
  .invalid-feedback {
    font-size: 0.65em;
  }
}

@media (max-width: 576px) {
  .form--text.needReceipt label {
    width: 100%;
  }
}

/************** 2608-20 ****************/
/************ DGS Landing **************/
/***************************************/

.dgs-landing-form {
  margin-block: 80px;
}

.dgs-landing,
.dgs-note {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  padding: 50px 20px;
  background-color: #cde3ff;
  /*border: 1px solid #ede7e1;*/
  border-radius: 5px;
  border-top-right-radius: 50px;
}

.dgs-landing hr {
  max-width: 400px;
  width: 100%;
  margin-block: 20px;
  opacity: 1;
}

.pb-20px {
  margin-bottom: 20px;
}

.pt-20px {
  margin-top: 20px;
}

.gray {
  color: #333333;
}

.dgs-landing h2 {
  font-size: 1.25rem;
  font-family: var(--font-DM_Sans);
  font-weight: 400;
}

.dgs-landing h3 {
  text-align: center;
  letter-spacing: 0px;
  color: #050d81;
  opacity: 1;
}

.dgs-landing-faq {
  background-color: var(--white);
}

.dgs-landing p {
  text-align: center;
  font: normal normal normal 14px/20px DM Sans;
  letter-spacing: 0px;
  color: #333333;
  opacity: 1;
  max-width: 400px;
}
.content-detail {
  max-width: 400px;
  width: 100%;
}

.content-detail .free-trial {
  width: 100%;
}

.content-detail form label {
  text-align: left;
  font: normal normal normal 13px/20px DM Sans;
  letter-spacing: 0px;
  color: #000000;
  opacity: 1;
  margin-bottom: 6px;
}

.content-detail .free-trial .full-name {
  width: 50%;
}

.dgs-note {
  margin-top: 22px;
  background: RGBA(208, 209, 215, 0.2);
  border-top-right-radius: 5px;
}

.dgs-note h3 {
  font: normal normal bold 18px/32px DM Sans;
  letter-spacing: 0px;
  color: #000000;
  opacity: 1;
}
.dgs-note ul li {
  list-style: inside;
  margin-bottom: 1rem;
  font: normal normal normal 15px/24px DM Sans;
  color: #1f1f1f;
}

.dgs-note ul li::marker {
  content: "• ";
  font-size: 1rem;
}

.dgs-landing-faq {
  padding-top: 0px;
}

@media (min-width: 1024px) {
  .dgs-note {
    padding-inline: 75px;
  }

  .dgs-landing h2 {
    font-size: 1.5rem;
  }
}

.divContainer p {
  text-align: center;
  font: normal normal normal 14px/24px DM Sans;
  letter-spacing: 0px;
  color: #000000;
  opacity: 1;
}

.footer-top.expire h2 {
  text-align: center;
  font: normal normal normal 20px/36px DM Serif Text;
  letter-spacing: 0.5px;
  color: #ffffff;
  opacity: 1;
  margin-bottom: 14px;
}

.footer-top.expire a {
  text-decoration: none;
}
