@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --generic-white: #FFFFFF;
  --generic-black: #000000;
  --generic-font: sans-serif;
  --primary-font: "Poppins", sans-serif;
  --title-font: "EB Garamond", serif;
  --text-font: "Poppins", sans-serif;
  --bt-blue: #00AEEF;
  --bt-purple: #8E5EED;
  --bt-grey: #777777;
  --bt-grey-light: #D9D9D9;
  --bt-black: #04091E;
  --bt-white: #FFFFFF;
  --bt-off-white: #F9F9FF;
}

/* Add generic styles here! */
/* CROSS BROWSER SCROLL BAR */
/* The emerging W3C standard that is currently Firefox-only */
*.no-scrollbar {
  scrollbar-width: none;
}
*.no-scrollbar::-webkit-scrollbar {
  width: 0px;
}
*.no-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}
*.no-scrollbar::-webkit-scrollbar-thumb {
  background-color: transparent;
  border: 1px solid transparent;
}

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

::-webkit-scrollbar-track {
  background: var(--generic-white);
}

::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: #b8b6b6;
  border: 1px solid var(--generic-white);
}

/* Generic body style */
* {
  -webkit-tap-highlight-color: transparent;
}

body {
  color: var(--bt-black);
  font-family: var(--primary-font);
  background-color: var(--generic-white);
}

main {
  margin-top: 49px;
  min-height: calc(100vh - 145px);
}
@media screen and (min-width: 720px) {
  main {
    margin-top: 65px;
    min-height: calc(100vh - 173px);
  }
}

[data-attr=padding] {
  margin-top: 49px;
  padding: 48px 0;
  min-height: calc(100vh - 241px);
}
@media screen and (min-width: 720px) {
  [data-attr=padding] {
    margin-top: 65px;
    padding: 64px 0;
    min-height: calc(100vh - 301px);
  }
}

page-header > h1 {
  font-size: 36px;
  font-weight: 500;
  color: var(--bt-black);
  font-family: var(--title-font);
}

page-header > img {
  width: 68px;
  height: 68px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

section-header > .section-title {
  font-size: 32px;
  font-weight: 500;
  color: var(--bt-black);
  font-family: var(--title-font);
}

section-header > p {
  font-size: 14px;
  text-align: center;
  color: var(--bt-grey);
  font-family: var(--text-font);
}

section-header > a, .btn {
  display: block;
  cursor: pointer;
  font-size: 15px;
  line-height: 24px;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  color: var(--bt-white);
  font-family: var(--text-font);
  -webkit-transition: opacity 350ms ease;
  transition: opacity 350ms ease;
  background-color: var(--bt-blue);
}

section-header > a:hover, .btn:hover {
  opacity: 0.75;
}

course-card {
  position: relative;
}

course-card > img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

course-card > h2, course-header > h2 {
  padding: 6px 0;
  font-size: 20px;
  font-weight: 500;
  color: var(--bt-black);
  font-family: var(--title-font);
}

course-card > small {
  gap: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 15px;
  font-weight: 500;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--bt-grey);
  font-family: var(--text-font);
}

course-card > small[slot=author]::before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("/asset/icon/tutor.png");
}

course-card > small > span {
  font-weight: 700;
}

course-card > a {
  margin-top: 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 24px !important;
  position: absolute;
  bottom: 16px;
}

course-header img {
  width: 100%;
  height: 320px;
  display: block;
  margin-top: 20px;
  margin-left: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}

course-header h2 {
  font-weight: 600;
}

course-header small {
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 20px;
  border-radius: 20px;
  color: var(--bt-grey);
  font-family: var(--text-font);
  background-color: var(--bt-off-white);
}

course-module h3 {
  font-size: 20px;
  font-weight: 600;
  padding: 9px 16px;
  line-height: 28px;
  border-radius: 4px;
  color: var(--bt-white);
  font-family: var(--title-font);
  background-color: var(--bt-blue);
}

course-module ul {
  gap: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

course-module li {
  gap: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 15px;
  line-height: 19px;
  padding: 12px 16px;
  border-radius: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  color: var(--bt-black);
  font-family: var(--text-font);
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: var(--bt-off-white);
}

course-module li::before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("/asset/icon/star.png");
}

footer-nav > div {
  gap: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

footer-nav > div > a {
  display: block;
  cursor: pointer;
  font-size: 15px;
  line-height: 24px;
  text-decoration: none;
  color: var(--bt-grey);
  -webkit-transition: color 350ms ease;
  transition: color 350ms ease;
  font-family: var(--text-font);
}

footer-nav > div > a:hover {
  color: var(--bt-white);
}

copy-right > small {
  font-size: 13px;
  text-align: center;
  color: var(--bt-white);
}

@media screen and (min-width: 768px) {
  page-header > h1 {
    font-size: 44px;
  }
  page-header > img {
    width: 88px;
    height: 88px;
  }
  section-header > .section-title {
    font-size: 40px;
  }
  section-header > p {
    font-size: 14px;
  }
  section-header > a, .btn {
    font-size: 16px;
    line-height: 26px;
    padding: 12px 24px;
    border-radius: 6px;
  }
  copy-right > small {
    text-align: left;
  }
}
.skeleton {
  opacity: 0.7;
  border-width: 0 !important;
  overflow: hidden !important;
  position: relative !important;
  border-radius: 8px !important;
}
.skeleton::before {
  content: "" !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 999999 !important;
  border-radius: 0 !important;
  position: absolute !important;
  background-size: 0% !important;
  background-image: none !important;
  -webkit-animation: skeleton-loading 1s linear infinite alternate !important;
          animation: skeleton-loading 1s linear infinite alternate !important;
}
.skeleton::after {
  display: none !important;
}

@-webkit-keyframes skeleton-loading {
  0% {
    background-color: hsl(180, 1%, 85%);
  }
  100% {
    background-color: hsl(200, 20%, 95%);
  }
}

@keyframes skeleton-loading {
  0% {
    background-color: hsl(180, 1%, 85%);
  }
  100% {
    background-color: hsl(200, 20%, 95%);
  }
}
#bite-map {
  height: 250px;
  width: 250px;
}
#bite-map [data-attr=map-container] {
  width: 100%;
  height: 100%;
  position: relative;
}
#bite-map [data-attr=map-container] #map {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  position: absolute;
}

body {
  background-color: #F7F4F2;
}

#campaign-container #content-wrapper {
  margin: 0 auto;
  padding: 0 16px;
  width: calc(100% - 32px);
  max-width: 1248px;
}
#campaign-container #content-wrapper .content-box {
  width: 100%;
}
#campaign-container #content-wrapper .content-box .image {
  width: 100%;
  margin: auto;
  max-width: 380px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
#campaign-container #content-wrapper .content-box .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#campaign-container #content-wrapper .content-box .content {
  margin-top: 64px;
}
#campaign-container #content-wrapper .content-box .content .main-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 28px;
  color: var(--bt-blue);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin: 0 auto 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#campaign-container #content-wrapper .content-box .content .main-title::before {
  content: "";
  width: 48px;
  height: 48px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../image/campaign/icon.png");
}
#campaign-container #content-wrapper .content-box .content .message-text {
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
  margin-bottom: 12px;
  color: var(--bt-purple);
}
#campaign-container #content-wrapper .content-box .content .message-text:last-child {
  margin-bottom: 0;
}
#campaign-container #content-wrapper .content-box .content .register-btn {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #F7F4F2;
  margin: 24px auto;
  line-height: 16px;
  padding: 16px 36px;
  border-radius: 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: var(--bt-purple);
}
@media screen and (min-width: 820px) {
  #campaign-container #content-wrapper .content-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  #campaign-container #content-wrapper .content-box .image {
    margin: unset;
  }
  #campaign-container #content-wrapper .content-box .content .main-title {
    font-size: 28px;
    text-align: left;
    line-height: 36px;
    margin: 0 0 48px;
  }
  #campaign-container #content-wrapper .content-box .content .message-text {
    text-align: left;
  }
  #campaign-container #content-wrapper .content-box .content .register-btn {
    margin: 24px 0;
  }
}
@media screen and (min-width: 1040px) {
  #campaign-container #content-wrapper .content-box .image {
    max-width: 480px;
  }
  #campaign-container #content-wrapper .content-box .content .main-title::before {
    width: 64px;
    height: 64px;
  }
  #campaign-container #content-wrapper .content-box .content .message-text {
    font-size: 18px;
    line-height: 22px;
  }
}
@media screen and (min-width: 1240px) {
  #campaign-container #content-wrapper .content-box .image {
    max-width: 620px;
  }
  #campaign-container #content-wrapper .content-box .content .main-title {
    font-size: 36px;
    line-height: 40px;
  }
}