:root {
  --primary-color: #000; /* Default primary color */
  --primary-color3: #243166;
  --ck-color-image-caption-background: #f7f7f7;
  --ck-color-image-caption-text: #333;
  --ck-color-image-caption-highligted-background: #fd0;
}


.btn {
  font-weight: 600;
  height: 52px;
  line-height: 52px;
  padding: 0px 24px;
  border-radius: 26px;
  -webkit-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
}

.btn.btn-icon {
  padding: 0;
  padding-top: 0px;
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
}

.btn.btn-icon img {
  width: 22px;
}

.btn.btn-icon .icon-svg {
  width: 28px;
  height: 28px;
  display: inline-block;
  margin: 0px;
  padding: 0px;
}

.btn.btn-icon.sm {
  width: 28px;
  height: 28px;
}

.btn.btn-icon.sm .icon-svg {
  width: 20px;
  height: 20px;
}

.btn.btn-icon.lg {
  width: 42px;
  height: 42px;
}

.btn.btn-icon.lg .icon-svg {
  width: 34px;
  height: 34px;
}

.btn.btn-icon.xlg {
  width: 52px;
  height: 52px;
  border-radius: 26px;
}

.btn.btn-icon.xlg .icon-svg {
  width: 44px;
  height: 44px;
}

/* .btn.btn-icon:hover {
  -webkit-transform: scale(1.14);
          transform: scale(1.14);
} */

.btn.btn-icon.no-animation:hover {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.btn.btn-icon.anim-rotate:hover {
  -webkit-transform: scale(1) rotate(-10deg);
          transform: scale(1) rotate(-10deg);
}

.btn.btn-icon.btn-disabled .fa-solid {
  opacity: .2;
}

@media screen and (max-width: 1024px) {
  /* .btn.btn-icon:hover {
    -webkit-transform: none;
            transform: none;
  } */
}

@media screen and (max-width: 600px) {
  .btn.btn-icon.lg {
    width: 36px;
    height: 36px;
  }
  .btn.btn-icon.lg .icon-svg {
    width: 26px;
    height: 26px;
  }
}

.btn.btn-md {
  height: 40px;
  line-height: 38px;
  padding: 0px 18px;
}

.btn.btn-sm {
  height: 32px;
  line-height: 32px;
  font-size: 14px;
  padding: 0px 12px;
  border-radius: 16px;
}

.btn.btn-xs {
  height: 26px;
  line-height: 24px;
  font-size: 12px;
  padding: 0px 12px;
  border-radius: 13px;
}

.btn.btn-w-icon {
  position: relative;
}

.btn.btn-w-icon .icon {
  position: absolute;
  top: 0;
  height: 52px;
  width: 52px;
  border-radius: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--primary-color);
  color: #ffffff;
}

.btn.btn-w-icon.btn-icon-left {
  padding-left: 64px;
}

.btn.btn-w-icon.btn-icon-left .icon {
  left: 0;
}

.btn.btn-w-icon.btn-icon-right {
  padding-right: 64px;
}

.btn.btn-w-icon.btn-icon-right .icon {
  right: 0;
}

.btn.btn-w-icon.btn-sm.btn-icon-left {
  padding-left: 32px;
}

.btn.btn-w-icon.btn-sm.btn-icon-left .icon {
  left: 4px;
}

.btn.btn-w-icon.btn-sm.btn-icon-right {
  padding-right: 32px;
}

.btn.btn-w-icon.btn-sm.btn-icon-right .icon {
  right: 4px;
}

.btn.btn-w-icon.btn-sm .icon {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 22px;
  width: 22px;
  border-radius: 11px;
}

.btn.btn-naked {
  padding: 0px;
  color: #757C9C;
}

.btn.btn-naked:hover {
  opacity: .8;
}

.btn:hover, .btn:active, .btn:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.btn:hover.primary2, .btn:active.primary2, .btn:focus.primary2 {
  color: var(--primary-color);
}

@media screen and (max-width: 600px) {
  .btn {
    height: 42px;
    line-height: 42px;
    padding: 0px 18px;
    border-radius: 21px;
    font-size: 14px;
  }
  .btn.btn-sm {
    height: 28px;
    line-height: 28px;
    font-size: 12px;
  }
}

.btn-primary {
  background-color: #F04938;
  border-color: #F04938;
  color: #ffffff;
}

.btn-primary:hover, .btn-primary:active, .btn-primary:focus {
  background-color: #CD2D1C;
  border-color: #CD2D1C;
  color: #ffffff;
}

.btn-primary2 {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff;
}

.btn-primary2:hover, .btn-primary2:active, .btn-primary2:focus {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff;
}

.btn-primary2.btn-disabled, .btn-primary2.disabled, .btn-primary2:disabled {
  pointer-events: none;
  background-color: #E6E9FF;
  border-color: #E6E9FF;
  color: #B0B0B0;
  opacity: 1;
}

.btn-primary3 {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff;
}

.btn-primary3:hover, .btn-primary3:active, .btn-primary3:focus {
  background-color: #0D1430;
  border-color: #0D1430;
  color: #ffffff;
}

.btn-light {
  background-color: #F6F6F6;
  border-color: #F6F6F6;
  color: var(--primary-color);
}

.btn-light:hover, .btn-light:active, .btn-light:focus {
  background-color: #EEF0FF;
  border-color: #EEF0FF;
  color: var(--primary-color);
}

.btn-primary5 {
  background-color: #EEF0FF;
  border-color: #EEF0FF;
  color: var(--primary-color);
}

.btn-primary5:hover, .btn-primary5:active, .btn-primary5:focus {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff;
}

.btn-white {
  background-color: #ffffff;
  border-color: #ffffff;
  color: var(--primary-color);
}

.btn-white:hover, .btn-white:active, .btn-white:focus {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff;
}

.btn-yellow {
  background-color: #FDED81;
  border-color: #FDED81;
  color: var(--primary-color);
}

.btn-yellow.shadowed {
  -webkit-box-shadow: 0px 2px 12px rgba(253, 237, 129, 0.8);
          box-shadow: 0px 2px 12px rgba(253, 237, 129, 0.8);
}

.btn-yellow:hover, .btn-yellow:active, .btn-yellow:focus {
  background-color: #FDED81;
  border-color: #FDED81;
  color: var(--primary-color);
}

.btn-white2 {
  background-color: #ffffff;
  border-color: #ffffff;
  color: var(--primary-color);
}

.btn-white2:hover, .btn-white2:active, .btn-white2:focus {
  background-color: #F6F6F6;
  border-color: #F6F6F6;
  color: var(--primary-color);
}

.btn-white3 {
  background-color: #E6E9FF;
  border-color: #E6E9FF;
  color: var(--primary-color);
}

.btn-white3:hover, .btn-white3:active, .btn-white3:focus {
  background-color: #E6E9FF;
  border-color: #E6E9FF;
  color: var(--primary-color);
}

.btn-link {
  padding: 0;
  height: inherit;
  line-height: inherit;
  -webkit-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
}

.btn-link.no-hover:hover, .btn-link.no-hover:active, .btn-link.no-hover:focus {
  opacity: .8;
  text-decoration: none;
}

.btn-link {
  color: var(--primary-color);
}

.btn-link:hover {
  color: var(--primary-color);
}

.btn-link-primary {
  color: #F04938;
}

.btn-link-primary:hover {
  color: #F04938;
}

.btn-oval {
  display: inline-block;
  background-color: #F04938;
  color: #ffffff;
  padding: 14px 42px;
  border: 0px;
  border-radius: 48%;
  text-align: center;
  -webkit-box-shadow: 4px 10px 0px #8D2F25;
          box-shadow: 4px 10px 0px #8D2F25;
}

.btn-oval:hover {
  color: #ffffff;
  text-decoration: none;
}

.fixed-btn {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 121;
}

.fixed-btn .fixed-btn-menu .fixed-btn-item {
  position: absolute;
  white-space: nowrap;
  -webkit-transition: 0.6s all cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: 0.6s all cubic-bezier(0.075, 0.82, 0.165, 1);
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

.fixed-btn .fixed-btn-menu .fixed-btn-item:nth-child(1) {
  top: -48px;
  left: -60px;
}

.fixed-btn .fixed-btn-menu .fixed-btn-item:nth-child(2) {
  top: -0px;
  left: -128px;
  -webkit-transition-delay: .14s;
          transition-delay: .14s;
}

.fixed-btn .fixed-btn-menu .fixed-btn-item:hover, .fixed-btn .fixed-btn-menu .fixed-btn-item:active, .fixed-btn .fixed-btn-menu .fixed-btn-item:focus {
  background-color: #FDED81;
  border-color: #FDED81;
  color: var(--primary-color);
}

.fixed-btn .fixed-btn-menu.show .fixed-btn-item {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

@media screen and (max-width: 1024px) {
  .fixed-btn.fixed-btn-tablet {
    bottom: calc(1rem + 18px) !important;
    right: calc(1rem + 18px) !important;
  }
}

@media screen and (max-width: 600px) {
  .fixed-btn.fixed-btn-tablet {
    bottom: 12px !important;
    right: 12px !important;
  }
}

.fixed-btn-two {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 121;
}

.fixed-btn-two .fixed-btn-two-menu .fixed-btn-two-item {
  position: absolute;
  white-space: nowrap;
  -webkit-transition: 0.6s all cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: 0.6s all cubic-bezier(0.075, 0.82, 0.165, 1);
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

.fixed-btn-two .fixed-btn-two-menu .fixed-btn-two-item:hover, .fixed-btn-two .fixed-btn-two-menu .fixed-btn-two-item:active, .fixed-btn-two .fixed-btn-two-menu .fixed-btn-two-item:focus {
  background-color: #FDED81;
  border-color: #FDED81;
  color: var(--primary-color);
}

.fixed-btn-two .fixed-btn-two-menu.show .fixed-btn-two-item {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

@media screen and (max-width: 1024px) {
  .fixed-btn-two.fixed-btn-two-tablet {
    bottom: calc(1rem + 18px) !important;
    right: calc(1rem + 18px) !important;
  }

  .fixed-btn-two .fixed-btn-two-menu .fixed-btn-two-item:nth-child(1) {
    top: -114px;
    left: 0px;
  }
  
  .fixed-btn-two .fixed-btn-two-menu .fixed-btn-two-item:nth-child(2) {
    top: -114px;
    left: -128px;
    -webkit-transition-delay: .14s;
            transition-delay: .14s;
  }
}

@media screen and (max-width: 767px) {
  .fixed-btn-two .fixed-btn-two-menu .fixed-btn-two-item:nth-child(1) {
    top: -78px;
    left: 0px;
  }
  
  .fixed-btn-two .fixed-btn-two-menu .fixed-btn-two-item:nth-child(2) {
    top: -78px;
    left: -128px;
    -webkit-transition-delay: .14s;
            transition-delay: .14s;
  }
}

@media screen and (max-width: 600px) {
  .fixed-btn-two.fixed-btn-two-tablet {
    bottom: 12px !important;
    right: 12px !important;
  }
}

.fixed-btn-three {
  position: fixed;
  top: 190px;
  right: 175px;
  z-index: 121;
}

.fixed-btn-three .fixed-btn-three-menu .fixed-btn-three-item {
  position: absolute;
  white-space: nowrap;
  -webkit-transition: 0.6s all cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: 0.6s all cubic-bezier(0.075, 0.82, 0.165, 1);
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

.fixed-btn-three .fixed-btn-three-menu .fixed-btn-three-item:nth-child(1) {
  top: -78px;
  left: 0px;
}

.fixed-btn-three .fixed-btn-three-menu .fixed-btn-three-item:nth-child(2) {
  top: -78px;
  left: -128px;
  -webkit-transition-delay: .14s;
          transition-delay: .14s;
}

.fixed-btn-three .fixed-btn-three-menu .fixed-btn-three-item:hover, .fixed-btn-three .fixed-btn-three-menu .fixed-btn-three-item:active, .fixed-btn-three .fixed-btn-three-menu .fixed-btn-three-item:focus {
  background-color: #FDED81;
  border-color: #FDED81;
  color: var(--primary-color);
}

.fixed-btn-three .fixed-btn-three-menu.show .fixed-btn-three-item {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

@media screen and (max-width: 1024px) {
  .fixed-btn-three.fixed-btn-three-tablet {
    bottom: calc(1rem + 18px) !important;
    right: calc(1rem + 18px) !important;
  }
}

@media screen and (max-width: 600px) {
  .fixed-btn-three.fixed-btn-three-tablet {
    bottom: 12px !important;
    right: 12px !important;
  }
}

.btn-clear {
  border: 0px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-clear:focus {
  outline: none;
}

.btn-clear.bg-light:hover {
  background-color: #ECECEC !important;
}

.icon-animate {
  position: absolute;
  top: -4px;
  right: -2px;
  width: 48px;
  height: 48px;
}

.icon-animate img {
  position: absolute;
  top: 4px;
  left: 0;
  width: 100%;
  -webkit-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
  -webkit-transform-origin: center;
          transform-origin: center;
  opacity: 0;
}

.icon-animate img:nth-child(1), .icon-animate img:nth-child(4) {
  -webkit-transform: rotate(24deg) scale(0.8);
          transform: rotate(24deg) scale(0.8);
}

.icon-animate img:nth-child(2), .icon-animate img:nth-child(3) {
  -webkit-transform: rotate(12deg) scale(0.8);
          transform: rotate(12deg) scale(0.8);
}

.icon-animate img:nth-child(1) {
  -webkit-transition-delay: .04s;
          transition-delay: .04s;
}

.icon-animate img:nth-child(2) {
  -webkit-transition-delay: .08s;
          transition-delay: .08s;
}

.icon-animate img:nth-child(3) {
  -webkit-transition-delay: .05s;
          transition-delay: .05s;
}

.btn-w-icon-animate {
  position: relative;
}

.btn-w-icon-animate .icon {
  z-index: 10;
  -webkit-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
}

.btn-w-icon-animate:hover {
  background-color: #EEF0FF;
}

.btn-w-icon-animate:hover .icon {
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
}

.btn-w-icon-animate:hover .icon-animate img {
  opacity: 1;
}

.btn-w-icon-animate:hover .icon-animate img:nth-child(1), .btn-w-icon-animate:hover .icon-animate img:nth-child(2), .btn-w-icon-animate:hover .icon-animate img:nth-child(3), .btn-w-icon-animate:hover .icon-animate img:nth-child(4) {
  -webkit-transform: rotate(0deg) scale(1.6);
          transform: rotate(0deg) scale(1.6);
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

body {
  color: var(--primary-color);
  font-family: 'Poppins', sans-serif;
}

body.locked {
  /* overflow-y: hidden; */
}

@media screen and (max-width: 600px) {
  body {
    font-size: 13px;
  }
}

b {
  font-weight: 600;
}

a {
  color: #F04938;
}

a:hover {
  color: #CD2D1C;
}

a.no-hover:hover {
  text-decoration: none;
}

a.link-dark, a.link-black {
  color: #343A40;
}

a.link-dark:hover, a.link-black:hover {
  color: #343A40;
}

a.primary2:hover {
  color: #454E92;
}

.mochiy {
  font-family: 'Mochiy Pop One', sans-serif;
}

.rounded {
  border-radius: 12px !important;
}

.rounded-md {
  border-radius: 20px !important;
}

.rounded-lg {
  border-radius: 30px !important;
}

.rounded-bottom {
  border-bottom-left-radius: 30px !important;
  border-bottom-right-radius: 30px !important;
}

.primary,
.text-primary {
  color: #F04938 !important;
}

.primary a,
.text-primary a {
  color: #F04938 !important;
}

.primary:hover,
.text-primary:hover {
  color: #F04938 !important;
}

.text-dark,
.text-black {
  color: #343A40 !important;
}

.text-dark a,
.text-black a {
  color: #343A40 !important;
}

.text-dark:hover,
.text-black:hover {
  color: #343A40 !important;
}

a.text-primary:hover,
a.primary:hover {
  color: #F04938 !important;
}

.primary2 {
  color: var(--primary-color);
}

.primary2 a, .primary2a {
  color: var(--primary-color);
}

.purple {
  color: #835AA5;
}

.purple a, .purplea {
  color: #835AA5;
}

.primary3 {
  color: var(--primary-color);
}

.primary3 a, .primary3a {
  color: var(--primary-color);
}

.text-red {
  color: #E74C3C;
}

.text-yellow {
  color: #FDED81;
}

.text-orange {
  color: #F1B20F;
}

.text-green {
  color: #30CB83;
}

.text-pink {
  color: #EF5997;
}

.text-purple {
  color: #835AA5;
}

.text-white a {
  color: #ffffff;
}

.bg-primary {
  background-color: #F04938 !important;
}

.bg-primary2 {
  background-color: var(--primary-color) !important;
}

.bg-primary3 {
  background-color: var(--primary-color) !important;
}

.bg-purple {
  background-color: #835AA5 !important;
}

.bg-cream {
  background-color: #FDF0E7 !important;
}

.bg-cream2 {
  background-color: #F4F2EE !important;
}

.bg-cream3 {
  background-color: #F1E1C7 !important;
}

.bg-light {
  background-color: #F6F6F6 !important;
}

.bg-black {
  background-color: #343A40 !important;
}

.bg-muted3 {
  background-color: #757C9C !important;
}

a.bg-light:hover {
  background-color: #ECECEC !important;
}

@media screen and (max-width: 1024px) {
  .bg-white-tablet {
    background-color: #ffffff !important;
  }

  .container {
    padding-left: 0px;
    padding-right: 0px;
  }
}

.bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #F6F6F6;
}

.shadow2 {
  -webkit-box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.1);
}

.shadow-blue {
  -webkit-box-shadow: 0px 0.5rem 1rem rgba(62, 70, 184, 0.4) !important;
          box-shadow: 0px 0.5rem 1rem rgba(62, 70, 184, 0.4) !important;
}

.progress {
  background-color: #ECECEC;
  border-radius: 8px;
}

.progress .progress-bar {
  background-color: #F04938;
}

.progress-read {
  height: 7px;
  overflow: inherit;
}

.progress-read .progress-bar {
  position: relative;
  overflow: inherit;
  border-radius: 8px;
}

.progress-read .progress-bar:after {
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -7px;
  width: 14px;
  height: 14px;
  border-radius: 7px;
  background-color: #F04938;
  display: block;
}

@media screen and (max-width: 1024px) {
  .progress-read {
    position: relative;
    z-index: 10;
  }
  .progress-read .progress-bar {
    border-radius: 0px;
  }
}

.text-muted {
  color: #909090;
}

.text-muted2 {
  color: #B0B0B0;
}

.text-muted3 {
  color: #757C9C;
}

.h1-lg {
  font-size: 3rem;
  line-height: 1.2;
}

.h1-xlg {
  font-size: 4rem;
  line-height: 1.2;
}

.text-body-x {
  font-size: 1.1rem;
}

@media screen and (max-width: 600px) {
  .text-body-x {
    font-size: .9rem;
  }
}

.text-sm {
  font-size: 14px;
}

@media screen and (max-width: 600px) {
  .text-sm {
    font-size: 12px;
  }
}

.text-xs {
  font-size: 12px;
}

@media screen and (max-width: 600px) {
  .text-xs {
    font-size: 11px;
  }
}

.text-xxs {
  font-size: 11px;
}

.font-400 {
  font-weight: 400;
}

.font-600 {
  font-weight: 600;
}

.font-700 {
  font-weight: 700;
}

.content-gap {
  padding: 32px;
}

@media screen and (max-width: 600px) {
  .content-gap {
    padding: 12px;
  }
}

.content-full {
  display: block;
  position: relative;
  height: 100vh;
  width: 100%;
}

.h-auto {
  height: auto;
}

.h-100vh {
  height: 100vh;
}

.loading-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20000;
  background-color: rgba(0, 0, 0, 0.5);
  /* display: none; */
}

.loading-wrap.active {
  display: block;
}

.loading-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100vh;
}

.dot-flashing {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background-color: var(--primary-color);
  color: var(--primary-color);
  -webkit-animation: dot-flashing 1s infinite linear alternate;
          animation: dot-flashing 1s infinite linear alternate;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.dot-flashing::before, .dot-flashing::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
}

.dot-flashing::before {
  left: -30px;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background-color: var(--primary-color);
  color: var(--primary-color);
  -webkit-animation: dot-flashing 1s infinite alternate;
          animation: dot-flashing 1s infinite alternate;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.dot-flashing::after {
  left: 30px;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background-color: var(--primary-color);
  color: var(--primary-color);
  -webkit-animation: dot-flashing 1s infinite alternate;
          animation: dot-flashing 1s infinite alternate;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

@-webkit-keyframes dot-flashing {
  0% {
    background-color: var(--primary-color);
  }
  50%, 100% {
    background-color: #ffffff;
  }
}

@keyframes dot-flashing {
  0% {
    background-color: var(--primary-color);
  }
  50%, 100% {
    background-color: #ffffff;
  }
}

.block-tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.block-tag .tag {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.block-tag.block-tag-menu {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.block-tag.block-tag-menu .tag {
  margin: 0;
}

.block-tag.block-tag-menu .tag:first-child {
  margin-left: 0;
}

.block-tag.block-tag-menu .tag:last-child {
  margin-right: 0;
}

.tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 24px;
  background-color: #F6F6F6;
  font-size: 13px;
  color: #000000;
  text-decoration: none;
  cursor: pointer;
}

.tag:hover {
  background-color: #E74C3C;
  color: #ffffff !important;
  text-decoration: none;
}

.block-tag-menu {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.block-tag-menu .tag {
  position: relative;
  color: var(--primary-color);
}

.block-tag-menu .tag.notif {
  padding-left: 30px;
}

.block-tag-menu .tag.notif:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background-color: #F04938;
  position: absolute;
  top: calc(50% - 1px);
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.block-tag-menu .tag:hover, .block-tag-menu .tag.active {
  background-color: #F04938;
  color: #ffffff;
}

.block-tag-menu .tag:hover.notif:before, .block-tag-menu .tag.active.notif:before {
  background-color: #ffffff;
}

.dropdown .btn[aria-expanded="true"] .fa-solid {
  -webkit-transform: rotate(180deg) translateY(1px);
          transform: rotate(180deg) translateY(1px);
  -webkit-transform-origin: center;
          transform-origin: center;
}

.dropdown-menu {
  border: 0px;
  border-radius: 12px;
  -webkit-box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
  padding: 1rem .85rem;
  position: relative;
}

.dropdown-menu .dropdown-item-2 {
  padding: 6px 14px;
}

.dropdown-menu .dropdown-item {
  padding: 6px 14px;
  border-radius: 12px;
  font-size: 14px;
}

.dropdown-menu .dropdown-item.text-red:hover {
  color: #E74C3C;
}

.dropdown-menu .dropdown-divider {
  border-width: 4px;
  border-color: #F6F6F6;
  margin-left: -.85rem;
  margin-right: -.85rem;
}

.dropdown-menu.dropdown-menu-wide {
  width: 300px;
}

.dropdown-menu.dropdown-menu-wide2 {
  width: 400px;
}

.dropdown-menu.dropdown-menu-wide3 {
  width: 600px;
}

.dropdown-menu.dropdown-menu-wide4 {
  width: 700px;
}

.mw-0 {
  min-width: 0;
}

.block-ellipsis {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.block-ellipsis-3.readmore {
  position: relative;
}

.block-ellipsis-3.readmore span {
  position: absolute;
  bottom: 0;
  right: 0;
  font-weight: 600;
  color: var(--primary-color);
  background: #fdf0e7;
  background: -webkit-gradient(linear, left top, right top, from(rgba(253, 240, 231, 0)), color-stop(20%, #fdf0e7));
  background: linear-gradient(90deg, rgba(253, 240, 231, 0) 0%, #fdf0e7 20%);
  padding-left: 2rem;
  cursor: pointer;
}

.block-ellipsis-3.readmore span:before {
  content: '... ';
  color: #343A40;
  font-weight: 400;
}

.block-ellipsis-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.flex-center-align {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-1 {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.align-stretch > div,
.align-stretch > button {
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
}

.avatar-w-style {
  position: relative;
}

.avatar-w-style .style {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
  z-index: 4;
}

.avatar {
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 19px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #F6F6F6;
  position: relative;
}

.avatar.sm{
  width: 21px;
  height: 21px;
  border-radius: 19px;
}

.avatar.md {
  width: 42px;
  height: 42px;
  border-radius: 21px;
}

.avatar.lg {
  width: 48px;
  height: 48px;
  border-radius: 24px;
}

.avatar.xlg {
  width: 70px;
  height: 70px;
  border-radius: 35px;
}

.avatar.xxlg {
  width: 90px;
  height: 90px;
  border-radius: 45px;
}

.avatar.mega {
  width: 140px;
  height: 140px;
  border-radius: 70px;
}

.avatar.xmega {
  width: 200px;
  height: 200px;
  border-radius: 100px;
}

.avatar .badge {
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 24px;
  height: 24px;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 0;
  z-index: 5;
}

.avatar .badge.badge-vote {
  background-color: #FDED81;
}

.avatar .badge.badge-chat {
  background-color: #30CB83;
}

.avatar .badge.badge-follow {
  background-color: #EF5997;
}

.avatar .badge.badge-message {
  background-color: #F6F6F6;
  color: #F04938;
}

.avatar .badge.badge-notif {
  background-color: #343A40;
}

.avatar.w-frame, .avatar.w-frame-cream, .avatar.w-frame-grey {
  border-radius: 0px;
  border: 1px solid #ffffff;
}

.avatar.w-frame:before, .avatar.w-frame-cream:before, .avatar.w-frame-grey:before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  display: block;
  background-image: url("../img/photo-frame-2.svg");
  background-size: cover;
  z-index: 1;
}

.avatar.w-frame-cream:before {
  background-image: url("../img/photo-frame-2-cream.svg");
}

.avatar.w-frame-grey:before {
  background-image: url("../img/photo-frame-2-grey.svg");
}

@media screen and (max-width: 600px) {
  .avatar.xlg {
    width: 60px;
    height: 60px;
    border-radius: 30px;
  }
}

a .avatar {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
}

a:hover .avatar {
  -webkit-transform: scale(0.96);
          transform: scale(0.96);
}

.badge {
  font-weight: 400;
  padding: 6px 12px;
  font-size: 11px;
}

.badge.badge-warning {
  background-color: #F1B20F;
  color: #ffffff;
}

.badge.badge-success {
  background-color: #30CB83;
  color: #ffffff;
}

.badge.badge-danger, .badge.badge-primary {
  background-color: #F04938;
  color: #ffffff;
}

.section {
  display: block;
  position: relative;
  background-color: #ffffff;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.section.border-divider {
  border-bottom: 4px solid #F6F6F6;
}

@media screen and (max-width: 1024px) {
  .section {
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media screen and (max-width: 600px) {
  .section {
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 12px;
    padding-right: 12px;
  }
}

.section-divider {
  display: block;
  height: 8px;
  background-color: #F6F6F6;
  width: 100%;
}

@media screen and (max-width: 600px) {
  .section-divider {
    height: 6px;
  }
}

.section-top {
  margin-top: -13vw;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1024px) {
  .section-top {
    padding-top: 0px !important;
  }
}

@media screen and (max-width: 600px) {
  .section-top {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }
}

.section-top2 {
  margin-top: -62px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.section-content {
  padding-top: 8rem;
}

@media screen and (max-width: 1024px) {
  .section-content {
    padding-top: 6rem;
  }
}

@media screen and (max-width: 600px) {
  .section-content {
    padding-top: 62px;
  }
}

.section-popup {
  position: fixed;
  top: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  z-index: 140;
  pointer-events: none;
  -webkit-transition: 0.6s all cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: 0.6s all cubic-bezier(0.075, 0.82, 0.165, 1);
  overflow-y: auto;
}

.section-popup.active {
  top: 92px;
  pointer-events: all;
}

.section-popup .btn-popup-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
}

@media screen and (max-width: 600px) {
  .section-popup.active {
    top: 58px;
  }
}

.section-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  background: -webkit-gradient(linear, left top, left bottom, from(white), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg, white 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 100;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px calc(18px + 1rem);
  height: 92px;
  overflow: hidden;
}

.section-nav .btn {
  position: absolute;
  top: 50%;
  left: calc(18px + 1rem);
  -webkit-transform: translateY(-50%) !important;
          transform: translateY(-50%) !important;
  z-index: 10;
}

.section-nav .btn:hover {
  -webkit-transform: translateY(-50%) !important;
          transform: translateY(-50%) !important;
}

.section-nav .btn.btn-2 {
  left: auto;
  right: calc(18px + 1rem);
}

.section-nav .section-nav-title {
  font-family: 'Mochiy Pop One', sans-serif;
  color: var(--primary-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 82%;
  text-align: center;
  font-size: 16px;
}

.section-nav.bg-cream {
  background: #fdf0e7;
  background: -webkit-gradient(linear, left top, left bottom, from(#fdf0e7), to(rgba(255, 255, 255, 0))) !important;
  background: linear-gradient(180deg, #fdf0e7 0%, rgba(255, 255, 255, 0) 100%) !important;
}

.section-nav.section-nav-primary2, .section-nav.bg-primary2 {
  background: #5c66af;
  background: -webkit-gradient(linear, left top, left bottom, from(#5c66af), to(rgba(255, 255, 255, 0))) !important;
  background: linear-gradient(180deg, #5c66af 0%, rgba(255, 255, 255, 0) 100%) !important;
}

.section-nav.section-nav-primary2 .section-nav-title, .section-nav.bg-primary2 .section-nav-title {
  color: #ffffff;
}

.section-nav .input-w-icon {
  padding-left: 3rem;
}

.section-nav .input-w-icon .icon {
  left: calc(3rem + 14px);
}

@media screen and (max-width: 1024px) {
  .section-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 600px) {
  .section-nav {
    padding: 0px 24px;
    height: 58px;
  }
  .section-nav .section-nav-title {
    width: 68%;
  }
  .section-nav .section-nav-title.section-nav-title-2 {
    margin-right: 20px;
  }
  .section-nav .btn {
    left: 18px;
  }
  .section-nav .btn.btn-2 {
    right: 18px;
  }
  .section-nav .input-w-icon {
    padding-left: 34px;
  }
  .section-nav .input-w-icon .input-search {
    padding-left: 40px;
  }
  .section-nav .input-w-icon.input-w-icon-2 .icon {
    left: 46px;
    width: 18px;
  }
}

@media screen and (max-width: 1024px) {
  .section-content-tablet-1 {
    padding-top: 1rem;
    padding-bottom: 5rem;
  }
}

.rotate-45 {
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.rotate-180 {
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.form-control-2 {
  font-size: 14px;
  border-radius: 24px;
  height: 42px;
}

.form-control-2:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: var(--primary-color);
}

.form-control:-moz-read-only {
  background-color: #ffffff;
  color: #909090;
}

.form-control:read-only {
  background-color: #ffffff;
  color: #909090;
}

.form-control-light {
  background-color: #F6F6F6;
  border: 0px !important;
}

.form-control-light:focus {
  background-color: #ECECEC;
}

@media screen and (max-width: 1024px) {
  .pb-768-0 {
    padding-bottom: 0px !important;
  }
}

.card {
  position: relative;
}

.card .card-image {
  display: block;
  position: relative;
  width: 100%;
  padding-top: 58%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #F6F6F6;
  border-radius: 12px;
}

.card .card-image.low {
  padding-top: 48%;
}

.card .card-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.85rem !important;
}

.card .card-subtitle {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card .float {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
}

.card.shadow {
  -webkit-box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.1) !important;
          box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.1) !important;
}

@media screen and (max-width: 600px) {
  .card .card-title {
    font-size: .9rem;
  }
  .card .float {
    bottom: 6px;
    right: 6px;
  }
}

.card-image {
  display: block;
  position: relative;
  width: 100%;
  padding-top: 58%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #F6F6F6;
  border-radius: 12px;
}

.card-image.low {
  padding-top: 48%;
}

.card-title-a {
  color: #343A40;
}

.card-title-a:hover {
  color: #343A40;
  text-decoration: none;
}

.card2 {
  border: 0px;
  border-radius: 20px;
}

.card-forum {
  border-radius: 20px;
  background-color: #FDF0E7;
  border: 0px;
}

@media screen and (max-width: 600px) {
  .card-forum {
    border-radius: 12px;
  }
}

.card-highlight {
  padding-left: 1.2rem;
  padding-right: 3rem;
}

.card-highlight:before {
  content: '';
  position: absolute;
  top: 1rem;
  left: 1rem;
  bottom: 1rem;
  width: 6px;
  background-color: #FDED81;
  border-radius: 8px;
  display: block;
}

.card-highlight .action {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 1rem;
}

.card-ribbon {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 42px;
  height: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 600;
  color: #ffffff;
  z-index: 8;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.card-body-list {
  position: relative;
  border-bottom: 4px solid #F6F6F6;
}

.card-body-list:last-child {
  border-bottom: 0px;
}

.card-body-list.have-notif:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background-color: #F04938;
  position: absolute;
  top: 50%;
  left: 7px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 1024px) {
  .card-full-tablet {
    border-radius: 0px !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    border: 0px;
    margin-left: calc(-18px - 1rem);
    margin-right: calc(-18px - 1rem);
  }
  .card-full-tablet .card-body {
    padding-left: calc(18px + 1rem);
    padding-right: calc(18px + 1rem);
  }
  .card-full-tablet.shadow {
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }
}

@media screen and (max-width: 600px) {
  .card-full-tablet {
    margin-left: -24px;
    margin-right: -24px;
  }
  .card-full-tablet .card-body {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.block-border-list {
  position: relative;
  border-bottom: 4px solid #F6F6F6;
}

.block-border-list:last-child {
  border-bottom: 0px;
}

@media screen and (max-width: 600px) {
  .block-border-list {
    border-bottom: 2px solid #F6F6F6;
  }
}

@media screen and (max-width: 600px) {
  .card-body {
    padding: 1rem;
  }
}

.block-img {
  display: block;
  position: relative;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #F6F6F6;
  padding-top: 44%;
}

.block-img.low {
  padding-top: 28%;
}

@media screen and (max-width: 600px) {
  .block-img {
    border-radius: 12px;
  }
}

.block-text-content h1, .block-text-content h2, .block-text-content h3, .block-text-content h4, .block-text-content h5, .block-text-content h6 {
  font-family: 'Mochiy Pop One', sans-serif;
}

.block-text-content img {
  border-radius: 30px;
  margin-bottom: 1rem;
}

.block-text-content p {
  margin-bottom: .45rem;
}

@media screen and (max-width: 1024px) {
  .h3-768 {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 600px) {
  .h3-768 {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 600px) {
  h2, .h2 {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 600px) {
  h3, .h3 {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 600px) {
  h4, .h4 {
    font-size: 1rem;
  }
}

@media screen and (max-width: 600px) {
  h5, .h5 {
    font-size: 1rem;
  }
}

.icon-square {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  line-height: 42px;
  text-align: center;
}

.icon-square.sm {
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 8px;
}

.col-20, .col-lg-20, .col-md-20, .col-sm-20, .col-xl-20 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

@media screen and (max-width: 1024px) {
  .row-sm-tablet {
    margin-left: -10px;
    margin-right: -10px;
  }
  .row-sm-tablet .col, .row-sm-tablet .col-1, .row-sm-tablet .col-10, .row-sm-tablet .col-11, .row-sm-tablet .col-12, .row-sm-tablet .col-2, .row-sm-tablet .col-20, .row-sm-tablet .col-3, .row-sm-tablet .col-4, .row-sm-tablet .col-5, .row-sm-tablet .col-6, .row-sm-tablet .col-7, .row-sm-tablet .col-8, .row-sm-tablet .col-9, .row-sm-tablet .col-auto, .row-sm-tablet .col-lg, .row-sm-tablet .col-lg-1, .row-sm-tablet .col-lg-10, .row-sm-tablet .col-lg-11, .row-sm-tablet .col-lg-12, .row-sm-tablet .col-lg-2, .row-sm-tablet .col-lg-20, .row-sm-tablet .col-lg-3, .row-sm-tablet .col-lg-4, .row-sm-tablet .col-lg-5, .row-sm-tablet .col-lg-6, .row-sm-tablet .col-lg-7, .row-sm-tablet .col-lg-8, .row-sm-tablet .col-lg-9, .row-sm-tablet .col-lg-auto, .row-sm-tablet .col-md, .row-sm-tablet .col-md-1, .row-sm-tablet .col-md-10, .row-sm-tablet .col-md-11, .row-sm-tablet .col-md-12, .row-sm-tablet .col-md-2, .row-sm-tablet .col-md-20, .row-sm-tablet .col-md-3, .row-sm-tablet .col-md-4, .row-sm-tablet .col-md-5, .row-sm-tablet .col-md-6, .row-sm-tablet .col-md-7, .row-sm-tablet .col-md-8, .row-sm-tablet .col-md-9, .row-sm-tablet .col-md-auto, .row-sm-tablet .col-sm, .row-sm-tablet .col-sm-1, .row-sm-tablet .col-sm-10, .row-sm-tablet .col-sm-11, .row-sm-tablet .col-sm-12, .row-sm-tablet .col-sm-2, .row-sm-tablet .col-sm-20, .row-sm-tablet .col-sm-3, .row-sm-tablet .col-sm-4, .row-sm-tablet .col-sm-5, .row-sm-tablet .col-sm-6, .row-sm-tablet .col-sm-7, .row-sm-tablet .col-sm-8, .row-sm-tablet .col-sm-9, .row-sm-tablet .col-sm-auto, .row-sm-tablet .col-xl, .row-sm-tablet .col-xl-1, .row-sm-tablet .col-xl-10, .row-sm-tablet .col-xl-11, .row-sm-tablet .col-xl-12, .row-sm-tablet .col-xl-2, .row-sm-tablet .col-xl-20, .row-sm-tablet .col-xl-3, .row-sm-tablet .col-xl-4, .row-sm-tablet .col-xl-5, .row-sm-tablet .col-xl-6, .row-sm-tablet .col-xl-7, .row-sm-tablet .col-xl-8, .row-sm-tablet .col-xl-9, .row-sm-tablet .col-xl-auto {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row-sm-tablet .mb-4 {
    margin-bottom: 20px !important;
  }
}

@media screen and (max-width: 600px) {
  .row {
    margin-left: -12px;
    margin-right: -12px;
  }
  .row .col, .row .col-1, .row .col-10, .row .col-11, .row .col-12, .row .col-2, .row .col-20, .row .col-3, .row .col-4, .row .col-5, .row .col-6, .row .col-7, .row .col-8, .row .col-9, .row .col-auto, .row .col-lg, .row .col-lg-1, .row .col-lg-10, .row .col-lg-11, .row .col-lg-12, .row .col-lg-2, .row .col-lg-20, .row .col-lg-3, .row .col-lg-4, .row .col-lg-5, .row .col-lg-6, .row .col-lg-7, .row .col-lg-8, .row .col-lg-9, .row .col-lg-auto, .row .col-md, .row .col-md-1, .row .col-md-10, .row .col-md-11, .row .col-md-12, .row .col-md-2, .row .col-md-20, .row .col-md-3, .row .col-md-4, .row .col-md-5, .row .col-md-6, .row .col-md-7, .row .col-md-8, .row .col-md-9, .row .col-md-auto, .row .col-sm, .row .col-sm-1, .row .col-sm-10, .row .col-sm-11, .row .col-sm-12, .row .col-sm-2, .row .col-sm-20, .row .col-sm-3, .row .col-sm-4, .row .col-sm-5, .row .col-sm-6, .row .col-sm-7, .row .col-sm-8, .row .col-sm-9, .row .col-sm-auto, .row .col-xl, .row .col-xl-1, .row .col-xl-10, .row .col-xl-11, .row .col-xl-12, .row .col-xl-2, .row .col-xl-20, .row .col-xl-3, .row .col-xl-4, .row .col-xl-5, .row .col-xl-6, .row .col-xl-7, .row .col-xl-8, .row .col-xl-9, .row .col-xl-auto {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.row-sm {
  margin-left: -12px;
  margin-right: -12px;
}

.row-sm .col, .row-sm .col-1, .row-sm .col-10, .row-sm .col-11, .row-sm .col-12, .row-sm .col-2, .row-sm .col-20, .row-sm .col-3, .row-sm .col-4, .row-sm .col-5, .row-sm .col-6, .row-sm .col-7, .row-sm .col-8, .row-sm .col-9, .row-sm .col-auto, .row-sm .col-lg, .row-sm .col-lg-1, .row-sm .col-lg-10, .row-sm .col-lg-11, .row-sm .col-lg-12, .row-sm .col-lg-2, .row-sm .col-lg-20, .row-sm .col-lg-3, .row-sm .col-lg-4, .row-sm .col-lg-5, .row-sm .col-lg-6, .row-sm .col-lg-7, .row-sm .col-lg-8, .row-sm .col-lg-9, .row-sm .col-lg-auto, .row-sm .col-md, .row-sm .col-md-1, .row-sm .col-md-10, .row-sm .col-md-11, .row-sm .col-md-12, .row-sm .col-md-2, .row-sm .col-md-20, .row-sm .col-md-3, .row-sm .col-md-4, .row-sm .col-md-5, .row-sm .col-md-6, .row-sm .col-md-7, .row-sm .col-md-8, .row-sm .col-md-9, .row-sm .col-md-auto, .row-sm .col-sm, .row-sm .col-sm-1, .row-sm .col-sm-10, .row-sm .col-sm-11, .row-sm .col-sm-12, .row-sm .col-sm-2, .row-sm .col-sm-20, .row-sm .col-sm-3, .row-sm .col-sm-4, .row-sm .col-sm-5, .row-sm .col-sm-6, .row-sm .col-sm-7, .row-sm .col-sm-8, .row-sm .col-sm-9, .row-sm .col-sm-auto, .row-sm .col-xl, .row-sm .col-xl-1, .row-sm .col-xl-10, .row-sm .col-xl-11, .row-sm .col-xl-12, .row-sm .col-xl-2, .row-sm .col-xl-20, .row-sm .col-xl-3, .row-sm .col-xl-4, .row-sm .col-xl-5, .row-sm .col-xl-6, .row-sm .col-xl-7, .row-sm .col-xl-8, .row-sm .col-xl-9, .row-sm .col-xl-auto {
  padding-left: 12px;
  padding-right: 12px;
}

.row-sm-2 {
  margin-left: -12px;
  margin-right: -12px;
}

.row-sm-2 .col, .row-sm-2 .col-1, .row-sm-2 .col-10, .row-sm-2 .col-11, .row-sm-2 .col-12, .row-sm-2 .col-2, .row-sm-2 .col-20, .row-sm-2 .col-3, .row-sm-2 .col-4, .row-sm-2 .col-5, .row-sm-2 .col-6, .row-sm-2 .col-7, .row-sm-2 .col-8, .row-sm-2 .col-9, .row-sm-2 .col-auto, .row-sm-2 .col-lg, .row-sm-2 .col-lg-1, .row-sm-2 .col-lg-10, .row-sm-2 .col-lg-11, .row-sm-2 .col-lg-12, .row-sm-2 .col-lg-2, .row-sm-2 .col-lg-20, .row-sm-2 .col-lg-3, .row-sm-2 .col-lg-4, .row-sm-2 .col-lg-5, .row-sm-2 .col-lg-6, .row-sm-2 .col-lg-7, .row-sm-2 .col-lg-8, .row-sm-2 .col-lg-9, .row-sm-2 .col-lg-auto, .row-sm-2 .col-md, .row-sm-2 .col-md-1, .row-sm-2 .col-md-10, .row-sm-2 .col-md-11, .row-sm-2 .col-md-12, .row-sm-2 .col-md-2, .row-sm-2 .col-md-20, .row-sm-2 .col-md-3, .row-sm-2 .col-md-4, .row-sm-2 .col-md-5, .row-sm-2 .col-md-6, .row-sm-2 .col-md-7, .row-sm-2 .col-md-8, .row-sm-2 .col-md-9, .row-sm-2 .col-md-auto, .row-sm-2 .col-sm, .row-sm-2 .col-sm-1, .row-sm-2 .col-sm-10, .row-sm-2 .col-sm-11, .row-sm-2 .col-sm-12, .row-sm-2 .col-sm-2, .row-sm-2 .col-sm-20, .row-sm-2 .col-sm-3, .row-sm-2 .col-sm-4, .row-sm-2 .col-sm-5, .row-sm-2 .col-sm-6, .row-sm-2 .col-sm-7, .row-sm-2 .col-sm-8, .row-sm-2 .col-sm-9, .row-sm-2 .col-sm-auto, .row-sm-2 .col-xl, .row-sm-2 .col-xl-1, .row-sm-2 .col-xl-10, .row-sm-2 .col-xl-11, .row-sm-2 .col-xl-12, .row-sm-2 .col-xl-2, .row-sm-2 .col-xl-20, .row-sm-2 .col-xl-3, .row-sm-2 .col-xl-4, .row-sm-2 .col-xl-5, .row-sm-2 .col-xl-6, .row-sm-2 .col-xl-7, .row-sm-2 .col-xl-8, .row-sm-2 .col-xl-9, .row-sm-2 .col-xl-auto {
  padding-left: 12px;
  padding-right: 12px;
}

.col-20 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  max-width: 20%;
}

@media screen and (min-width: 992px) {
  .col-lg-20 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }
}

@media screen and (min-width: 768px) {
  .col-md-20 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }
}

@media screen and (min-width: 576px) {
  .col-sm-20 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }
}

.float-top-right {
  position: absolute;
  top: 0;
  right: 0;
}

.float-top-right-2 {
  position: fixed;
  right: calc(1rem + 18px);
  z-index: 100;
  top: calc(1rem + 16px);
  display: none;
}

@media screen and (max-width: 1024px) {
  .float-top-right-2 {
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .float-top-right-2 {
    top: 14px;
    right: 12px;
  }
}

.section-tabs .nav-tabs {
  border-bottom: 4px solid #F6F6F6;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.section-tabs .nav-tabs .nav-item {
  width: 100%;
  margin: 0;
  padding: 0;
}

.section-tabs .nav-tabs .nav-link {
  background-color: #ffffff;
  border: 0px;
  border-radius: 0px;
  position: relative;
  color: #343A40;
  margin: 0;
  width: 100%;
  text-align: center;
  padding-bottom: 1rem;
  height: 100%;
}

.section-tabs .nav-tabs .nav-link:before {
  content: '';
  position: absolute;
  bottom: -0px;
  left: 0;
  width: 100%;
  height: 0px;
  background-color: var(--primary-color);
  opacity: 0;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  -webkit-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
}

.section-tabs .nav-tabs .nav-link:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.section-tabs .nav-tabs .nav-link:hover {
  color: var(--primary-color);
  font-weight: 600;
}

.section-tabs .nav-tabs .nav-link.active {
  background-color: #ffffff;
  color: var(--primary-color);
  font-weight: 600;
}

.section-tabs .nav-tabs .nav-link.active:before {
  opacity: 1;
  height: 4px;
}

@media screen and (max-width: 600px) {
  .section-tabs .nav-tabs {
    border-bottom: 2px solid #F6F6F6;
  }
  .section-tabs .nav-tabs.nav-tabs-2 .nav-item:first-child {
    width: auto;
  }
  .section-tabs .nav-tabs.nav-tabs-2 .nav-item:last-child {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.nav-tag-menu {
  border: 0px;
}

.nav-tag-menu .nav-item {
  margin-right: 0.5rem;
}

.nav-tag-menu .nav-link {
  background-color: #F6F6F6;
  padding: 4px 10px;
  border-radius: 24px;
  font-size: 13px;
  border: 0px;
  color: var(--primary-color);
}

.nav-tag-menu .nav-link:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.nav-tag-menu .nav-link.active {
  background-color: #F04938;
  color: #ffffff;
}

.nav-tag-menu.nav-tag-menu-2 .nav-link.active {
  background-color: var(--primary-color);
}

.popup-curtain {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 120;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.6s all cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: 0.6s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.popup-curtain.show {
  opacity: 1;
  pointer-events: all;
}

.popup-curtaon {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.6s all cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: 0.6s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.popup-curtaon.show {
  opacity: 1;
  pointer-events: all;
}

.lh-1 {
  line-height: 1.6;
}

.pointer {
  cursor: pointer;
}

.anim-pressed-hover {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.6s all cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: 0.6s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.anim-pressed-hover:hover {
  -webkit-transform: scale(0.96);
          transform: scale(0.96);
}

.anim-pressed-hover2 {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.6s all cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: 0.6s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.anim-pressed-hover2:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.border-bottom-2 {
  border-bottom: 4px solid #F6F6F6;
}

@media screen and (max-width: 600px) {
  .border-bottom-2 {
    border-bottom: 2px solid #F6F6F6;
  }
}

.modal .modal-header.border-divider {
  border-bottom: 4px solid #F6F6F6;
}

.modal .modal-content {
  border-radius: 12px;
  border: 0;
}

@media screen and (max-width: 600px) {
  .modal.border-divider {
    border-bottom: 2px solid #F6F6F6;
  }
}

.modal-notif {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  z-index: 1;
}

.modal-notif .notif {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
}

.modal-notif .notif.notif-success {
  background-color: #30CB83;
  color: #ffffff;
}

.modal-body.have-action {
  padding-bottom: 4rem !important;
}

.modal-body-action {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}

@media screen and (max-width: 1024px) {
  .modal-body-action {
    padding-left: 32%;
    padding-right: 32%;
  }
}

.block-img-square,
.block-img-square-3,
.block-img-square-4,
.block-img-square-100,
.block-img-square-2 {
  width: 100%;
  display: block;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #F6F6F6;
  padding-top: 100%;
  border-radius: 30px;
  -webkit-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.block-img-square:hover,
.block-img-square-3:hover,
.block-img-square-4:hover,
.block-img-square-100:hover,
.block-img-square-2:hover {
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}

.block-img-square.no-anim-hover:hover,
.block-img-square-3.no-anim-hover:hover,
.block-img-square-4.no-anim-hover:hover,
.block-img-square-100.no-anim-hover:hover,
.block-img-square-2.no-anim-hover:hover {
  -webkit-transform: scale(1);
          transform: scale(1);
}

@media screen and (max-width: 600px) {
  .block-img-square,
  .block-img-square-3,
  .block-img-square-4,
  .block-img-square-100,
  .block-img-square-2 {
    border-radius: 20px;
  }
}

.block-img-square-100 {
  width: 100px;
  height: 100px;
  padding: 0px;
  border-radius: 12px;
}

.block-img-square-2 {
  width: 100px;
  height: 90px;
  padding: 0px;
  border-radius: 12px;
}

.block-img-square-3 {
  padding-top: 84%;
}

.block-img-square-4 {
  padding-top: 90%;
}

a .block-img-square,
a .block-img-square-100,
a .block-img-square-2 {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
}

a:hover .block-img-square,
a:hover .block-img-square-100,
a:hover .block-img-square-2 {
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}

.alert2 {
  display: block;
  border-radius: 12px;
  font-size: 12px;
  padding: 1rem;
  color: var(--primary-color);
}

.alert2.alert-danger {
  background-color: #FFE6E6;
}

.accordion-item {
  position: relative;
  background-color: #F6F6F6;
  border-radius: 12px;
  padding-bottom: 4px;
}

.accordion-item .btn {
  display: block;
  width: 100%;
  height: auto;
  color: var(--primary-color);
  font-size: 15px;
}

.accordion-item .btn i {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}

.accordion-item .btn:hover {
  -webkit-transform: scale(0.99);
          transform: scale(0.99);
}

.accordion-item .btn[aria-expanded="true"] i {
  -webkit-transform: translateY(2px) rotate(180deg);
          transform: translateY(2px) rotate(180deg);
}

.accordion-item .accordion-btn {
  border: 0;
  background-color: transparent;
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  color: var(--primary-color);
}

.accordion-item .accordion-btn[aria-expanded="true"] .fa-solid {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.accordion-item .accordion-btn:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.accordion-item .collapse-content {
  padding: 24px;
  color: var(--primary-color);
}

@media screen and (max-width: 1024px) {
  .accordion-item .btn:hover {
    -webkit-transform: none;
            transform: none;
  }
}

@media screen and (max-width: 600px) {
  .accordion-item .accordion-btn {
    padding: 12px 18px;
  }
  .accordion-item .collapse-content {
    padding: 8px 18px 0px 18px;
  }
  .accordion-item .d-block.mochiy {
    font-size: 13px;
  }
}

.card-menu-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
  padding: 0;
}

.card-menu-tab li {
  list-style: none;
  display: block;
  margin-bottom: 1.5rem;
}

.card-menu-tab .card-menu-tab__item {
  padding: 4px 12px;
  border-radius: 24px;
  background-color: #F6F6F6;
  color: var(--primary-color);
}

.card-menu-tab .card-menu-tab__item:hover, .card-menu-tab .card-menu-tab__item.active {
  text-decoration: none;
  background-color: #F04938;
  color: #ffffff;
}

.card-menu-tab .card-menu-tab__item:hover .text-primary, .card-menu-tab .card-menu-tab__item.active .text-primary {
  color: #ffffff !important;
}

@media screen and (max-width: 1024px) {
  .card-menu-tab {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .card-menu-tab li {
    margin-bottom: 0;
    margin-right: 1rem;
  }
}

@media screen and (max-width: 1024px) {
  .card-menu-tab {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
    padding-bottom: 17px !important;
    padding: 4px 12px;
    margin-left: -12px;
    margin-right: -12px;
    width: 90vw;
  }
}

@media screen and (max-width: 600px) {
  .card-menu-tab li {
    margin-right: 6px;
  }
}

.show-768 {
  display: none !important;
}

@media screen and (max-width: 1024px) {
  .show-768 {
    display: block !important;
  }
}

@media screen and (max-width: 1024px) {
  .hide-768 {
    display: none !important;
  }
}

.show-375 {
  display: none !important;
}

@media screen and (max-width: 600px) {
  .show-375 {
    display: block !important;
  }
}

@media screen and (max-width: 600px) {
  .hide-375 {
    display: none !important;
  }
}

.relative-10 {
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 1024px) {
  .container-fluid {
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media screen and (max-width: 600px) {
  .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media screen and (max-width: 1024px) {
  .text-center-768 {
    text-align: center;
  }
}

@media screen and (max-width: 1024px) {
  .justify-content-center-768 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 600px) {
  .pr-375-0 {
    padding-right: 0 !important;
  }
}

@media screen and (max-width: 600px) {
  .pl-375-0 {
    padding-left: 0 !important;
  }
}

.alert {
  border-radius: 30px;
  border: 0px;
}

.alert.alert-danger {
  background-color: #E74C3C;
  color: #ffffff;
}

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  input[type='checkbox'],
  input[type='radio'] {
    --active: var(--primary-color);
    --active-inner: #fff;
    --focus: none;
    --border: var(--primary-color);
    --border-hover: var(--primary-color);
    --background: #F6F6F6;
    --disabled: #F6F8FF;
    --disabled-inner: #E1E6F9;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 21px;
    outline: none;
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin: 0;
    cursor: pointer;
    border: 1px solid var(--bc, var(--border));
    background: var(--b, var(--background));
    -webkit-transition: background .3s, border-color .3s, -webkit-box-shadow .2s;
    transition: background .3s, border-color .3s, -webkit-box-shadow .2s;
    transition: background .3s, border-color .3s, box-shadow .2s;
    transition: background .3s, border-color .3s, box-shadow .2s, -webkit-box-shadow .2s;
  }
  input[type='checkbox']:after,
  input[type='radio']:after {
    content: '';
    display: block;
    left: 0;
    top: 0;
    position: absolute;
    -webkit-transition: opacity var(--d-o, 0.2s), -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
    transition: opacity var(--d-o, 0.2s), -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
    transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
    transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s), -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
  }
  input[type='checkbox']:checked,
  input[type='radio']:checked {
    --b: var(--active);
    --bc: var(--active);
    --d-o: .3s;
    --d-t: .6s;
    --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
  }
  input[type='checkbox']:disabled,
  input[type='radio']:disabled {
    --b: var(--disabled);
    cursor: not-allowed;
    opacity: .9;
  }
  input[type='checkbox']:disabled:checked,
  input[type='radio']:disabled:checked {
    --b: var(--disabled-inner);
    --bc: var(--border);
  }
  input[type='checkbox']:disabled + label,
  input[type='radio']:disabled + label {
    cursor: not-allowed;
  }
  input[type='checkbox']:hover:not(:checked):not(:disabled),
  input[type='radio']:hover:not(:checked):not(:disabled) {
    --bc: var(--border-hover);
  }
  input[type='checkbox']:focus,
  input[type='radio']:focus {
    -webkit-box-shadow: 0 0 0 var(--focus);
            box-shadow: 0 0 0 var(--focus);
  }
  input[type='checkbox']:not(.switch),
  input[type='radio']:not(.switch) {
    width: 21px;
  }
  input[type='checkbox']:not(.switch):after,
  input[type='radio']:not(.switch):after {
    opacity: var(--o, 0);
  }
  input[type='checkbox']:not(.switch):checked,
  input[type='radio']:not(.switch):checked {
    --o: 1;
  }
  input[type='checkbox'] + label,
  input[type='radio'] + label {
    font-size: 14px;
    line-height: 21px;
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
    margin-left: 4px;
  }
  input[type='checkbox']:not(.switch) {
    border-radius: 7px;
  }
  input[type='checkbox']:not(.switch):after {
    width: 5px;
    height: 9px;
    border: 2px solid var(--active-inner);
    border-top: 0;
    border-left: 0;
    left: 7px;
    top: 4px;
    -webkit-transform: rotate(var(--r, 20deg));
            transform: rotate(var(--r, 20deg));
  }
  input[type='checkbox']:not(.switch):checked {
    --r: 43deg;
  }
  input[type='checkbox'].switch {
    width: 38px;
    border-radius: 11px;
  }
  input[type='checkbox'].switch:after {
    left: 2px;
    top: 2px;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    background: var(--ab, var(--border));
    -webkit-transform: translateX(var(--x, 0));
            transform: translateX(var(--x, 0));
  }
  input[type='checkbox'].switch:checked {
    --ab: var(--active-inner);
    --x: 17px;
  }
  input[type='checkbox'].switch:disabled:not(:checked):after {
    opacity: .6;
  }
  input[type='radio'] {
    border-radius: 50%;
  }
  input[type='radio']:after {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: var(--active-inner);
    opacity: 0;
    -webkit-transform: scale(var(--s, 0.7));
            transform: scale(var(--s, 0.7));
  }
  input[type='radio']:checked {
    --s: .5;
  }
}

.onboarding-header,
.onboarding-footer {
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 10;
}

.onboarding-header.onboarding-relative,
.onboarding-footer.onboarding-relative {
  position: relative;
}

.onboarding-header {
  top: 0;
  padding: 32px 32px 0px 32px;
}

.onboarding-footer {
  bottom: 0;
  padding: 24px 32px 32px 32px;
}

@media screen and (max-width: 1024px) {
  .onboarding-footer {
    display: none;
  }
}

.onboarding-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 100%;
}

.onboarding-panel .left-panel {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: calc(752px + 32px);
  background-color: var(--primary-color);
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  position: relative;
}

.onboarding-panel .right-panel {
  border-radius: 30px;
  display: block;
  margin-left: -32px;
  position: relative;
  z-index: 2;
}

.onboarding-panel .right-panel.fixed-width {
  width: 460px;
}

.onboarding-panel .inner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-right: 32px;
}

.alert-onboarding {
  position: absolute;
  top: 28px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 78%;
}

@media screen and (max-width: 1024px) {
  .alert-onboarding {
    top: 0;
    width: 100%;
    z-index: 10;
  }
}

.float-1 {
  position: absolute;
  bottom: -28px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 280px;
  padding: 12px;
}

.float-1 > .d-flex {
  position: relative;
  z-index: 1;
}

.float-1 .float-1-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%) scale(1.2);
          transform: translateX(-50%) translateY(-50%) scale(1.2);
  width: 100%;
}

.float-1 .float-1-btn {
  position: absolute;
  right: 24px;
  bottom: -8px;
  padding: 0;
  color: #ffffff;
  height: inherit;
  line-height: inherit;
  font-size: 12px;
}

.float-1 .float-1-btn img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  z-index: -1;
}

.float-1.float-1-tablet {
  position: relative;
  bottom: 0px;
}

.float-1.float-1-tablet .float-1-bg {
  top: calc(50% - 4px);
  left: calc(50% - 4px);
  -webkit-transform: translateX(-50%) translateY(-50%) scale(1.1);
          transform: translateX(-50%) translateY(-50%) scale(1.1);
}

.onboarding-img-1 {
  position: absolute;
  width: 100%;
  top: 16rem;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (max-width: 600px) {
  .onboarding-img-1 {
    width: 150%;
    -webkit-transform: translateX(-50%) translateY(32px);
            transform: translateX(-50%) translateY(32px);
    left: 50%;
    top: 5rem;
  }
}

.form-group {
  position: relative;
}

.form-group label {
  position: absolute;
  top: -11px;
  left: 32px;
  font-size: 12px;
  font-weight: 600;
  padding: 2px 6px;
  background-color: #ffffff;
  color: var(--primary-color);
  z-index: 1;
  margin: 0;
}

.form-group .form-control {
  border: 1px solid var(--primary-color);
  border-radius: 26px;
  padding: 26px 24px;
  /* padding: 1px 19px 44px; */
}

.tagify.form-control{
  height: auto !important;
  padding: 10px 12px !important;
}

.form-group .form-control::-webkit-input-placeholder {
  color: #B0B0B0;
}

.form-group .form-control:-ms-input-placeholder {
  color: #B0B0B0;
}

.form-group .form-control::-ms-input-placeholder {
  color: #B0B0B0;
}

.form-group .form-control::placeholder {
  color: #B0B0B0;
}

.form-group .form-control:focus, .form-group .form-control:active {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.form-group .form-panel-action-right {
  position: absolute;
  top: 50%;
  right: 8px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 44px;
  width: 47px;
  padding: 0;
  background-color: #ffffff;
  border: 0;
  border-radius: 30px;
}

.form-group .form-panel-action-right:focus, .form-group .form-panel-action-right:active {
  outline: none;
}

.form-group .form-panel-action-right:hover {
  background-color: #F6F6F6;
}

.form-group .form-panel-action-right svg {
  width: 24px;
  height: 24px;
}

.form-group .form-panel-action-right svg g path:nth-child(2) {
  stroke: var(--primary-color);
}

.form-group .form-panel-action-right-2 {
  position: absolute;
  top: 50%;
  right: 8px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.form-group .form-panel {
  position: relative;
}

.form-group .form-panel.have-action .form-control {
  padding-right: 68px;
}

.form-group .form-panel.have-icon .form-icon {
  position: absolute;
  top: 50%;
  left: 18px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #909090;
}

.form-group .form-panel.have-icon .form-control {
  padding-left: 44px;
}

@media screen and (max-width: 600px) {
  .form-control {
    font-size: 13px;
  }
}

.form-control__static {
  border: 1px solid var(--primary-color);
  border-radius: 26px;
  padding: 14px 24px;
}

.choice-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.choice-col {
  display: block;
  width: 33.3333333333%;
  padding-left: 10px;
  padding-right: 10px;
}

.choice-item {
  display: block;
  padding: 5px;
  background-color: #ffffff;
  margin-bottom: 3px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-left-radius: 10%;
  border-bottom-right-radius: 10%;
  -webkit-box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  cursor: pointer;
}

.text-primary2 {
  color: #01186d !important;
}

.choice-item-text {
  color: #01186d;
  text-decoration: none;
  font-size: 10px;
}

.choice-item:hover {
  border: 5px solid var(--primary-color);
}

.choice-item .images {
  width: 100%;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  object-fit: cover;
  /* height: 88px; */
}

.images {
  width: 100%;            /* Lebar 100% dari container */
  height: 100%;           /* Tinggi 100% dari container */
  object-fit: cover;      /* Mengisi kotak dengan gambar, crop jika perlu */
  border-radius: 8px;     /* Opsional: jika ingin sudut yang melengkung */
}

.choice-item {
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .choice-item {
      margin-left: auto;
      margin-right: auto;
  }
}

.choice-item .check {
  position: absolute;
  top: 0;
  right: -4px;
  display: none;
}

.choice-item.selected {
  border: 5px solid var(--primary-color);
}

.choice-item.selected .check {
  display: block;
}

.choice-panel-section .choice-col {
  width: 120px;
}

@media screen and (max-width: 600px) {
  .choice-panel-375 .choice-col {
    width: 33.33333% !important;
  }
}

.block-panel-1 {
  position: relative;
  background-color: #FDF0E7;
  border-radius: 10vw;
}

.block-panel-1 .block-panel-img {
  position: absolute;
  top: 50%;
  left: calc(50% + 8px);
  -webkit-transform: translateY(-50%) translateX(-50%) scale(1.1);
          transform: translateY(-50%) translateX(-50%) scale(1.1);
  width: 100%;
}

.block-panel-1 .block-panel-inner {
  position: relative;
  z-index: 2;
  padding: 4vw;
}

@media screen and (max-width: 600px) {
  .block-panel-1 .block-panel-img {
    left: 0;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    top: 10%;
  }
  .block-panel-1 .block-panel-inner {
    padding: 2.2rem;
  }
}

.assets-1 {
  position: fixed;
  right: 0;
  bottom: 4rem;
}

@media screen and (max-width: 600px) {
  .assets-1 {
    width: 32%;
    bottom: 0;
  }
}

.boy-stair {
  position: absolute;
  left: 20px;
  bottom: -170px;
  width: 180px;
}

.main-nav {
  display: block;
  position: fixed;
  top: .85rem;
  left: .85rem;
  right: .85rem;
  background-color: #ffffff;
  border-radius: 12px;
  z-index: 100;
  -webkit-box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.16);
}

.main-nav .main-nav-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 18px;
}

.main-nav .main-nav-logo img {
  height: 38px;
}

.main-nav .btn-nav.btn {
  height: 48px;
  line-height: 48px;
}

.main-nav .btn-nav.btn.btn-light {
  font-weight: 400;
}

.main-nav .btn-nav.btn.btn-w-icon .icon {
  width: 47px;
  height: 47px;
  border-radius: 24px;
}

.main-nav .btn-nav.btn.btn-icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
}

.main-nav .btn-nav.btn.btn-icon svg {
  width: 40px;
  height: 40px;
  display: block;
}

.main-nav .btn-nav.btn.btn-icon svg.icon-2 {
  display: none;
}

.main-nav .btn-nav.btn.btn-icon:hover svg.icon-1 {
  display: none;
}

.main-nav .btn-nav.btn.btn-icon:hover svg.icon-2 {
  display: block;
}

.main-nav .btn-nav.btn.btn-icon.active svg.icon-1 {
  display: none;
}

.main-nav .btn-nav.btn.btn-icon.active svg.icon-2 {
  display: block;
}

.main-nav .main-nav-search {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  position: relative;
}

.main-nav .main-nav-search input {
  background-color: #F6F6F6;
  border-radius: 12px;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  padding: 12px 20px;
  padding-left: 48px;
  width: 100%;
}

.main-nav .main-nav-search input::-webkit-input-placeholder {
  color: #909090;
}

.main-nav .main-nav-search input:-ms-input-placeholder {
  color: #909090;
}

.main-nav .main-nav-search input::-ms-input-placeholder {
  color: #909090;
}

.main-nav .main-nav-search input::placeholder {
  color: #909090;
}

.main-nav .main-nav-search .search-icon {
  position: absolute;
  top: 50%;
  left: 14px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.main-nav .main-nav-search .search-history {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  padding: 1.4rem;
  border-radius: 12px;
  -webkit-box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.main-nav .main-nav-search .search-history.show {
  opacity: 1;
  pointer-events: all;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.main-nav .main-nav-avatar {
  background-color: #ffffff;
  border: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 12px;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: var(--primary-color);
  padding: 0;
}

.main-nav .main-nav-avatar:focus, .main-nav .main-nav-avatar:active {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.main-nav .dropdown .dropdown-menu {
  width: 280px;
}

.main-nav .dropdown .dropdown-menu.wider {
  width: 380px;
}

.main-nav .dropdown .dropdown-menu.type-2 {
  margin-top: 6px;
  left: 94px !important;
}

@media screen and (max-width: 1024px) {
  .main-nav {
    display: none;
  }
}

.block-dropdown-1 {
  position: relative;
}

.block-dropdown-1 .dropdown {
  position: absolute;
  top: 0;
  right: 0;
}

.dropdown-action .btn {
  width: 100%;
  max-width: 380px;
  border: 1px solid var(--primary-color);
}

.block-notif {
  display: block;
  position: relative;
  padding: 1rem 0.85rem !important;
  margin-left: -.85rem;
  margin-right: -.85rem;
  cursor: pointer;
}

.block-notif:hover {
  background-color: #F6F6F6;
}

.block-notif:hover .avatar:before {
  background-image: url("../img/photo-frame-2-grey.svg");
}

.block-notif.have-notif:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background-color: #F04938;
  position: absolute;
  top: 50%;
  left: 7px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.block-notif:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: #F6F6F6;
}

.block-notif:last-child:after {
  display: none;
}

.hero-banner {
  display: block;
  position: relative;
  background-color: var(--primary-color);
  width: 100%;
  padding-bottom: 8rem;
  padding-top: 160px;
  overflow: hidden;
}

.hero-banner .illust svg {
  position: absolute;
  width: 160px;
  height: 160px;
}

.hero-banner .illust svg:nth-child(1) {
  top: 12%;
  left: -4%;
}

.hero-banner .illust svg:nth-child(2) {
  bottom: 10%;
  left: 1%;
  -webkit-transform: rotate(-18deg);
          transform: rotate(-18deg);
  width: 100px;
  height: 100px;
}

.hero-banner .illust svg:nth-child(3) {
  bottom: 6%;
  left: 50%;
  -webkit-transform: rotate(-18deg);
          transform: rotate(-18deg);
}

.hero-banner .illust svg:nth-child(4) {
  top: 10%;
  right: -2%;
}

@media screen and (max-width: 1024px) {
  .hero-banner {
    padding-top: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .hero-banner .illust {
    display: none;
  }
  .hero-banner:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background-color: #ffffff;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }
}

@media screen and (max-width: 600px) {
  .hero-banner {
    padding-top: 1rem;
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 5rem;
  }
}

button.cover-card {
  border: 0px;
}

button.cover-card:focus {
  border: 0;
  outline: none;
}

.cover-card {
  display: block;
  width: 100%;
  padding-top: 152%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  background-color: #F6F6F6;
  border-radius: 20px;
  -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.18);
          box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  -webkit-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
  margin-bottom: 15px;
  margin-top: 22px;
}


.cover-card:after {
  content: '';
  position: absolute;
  top: -5px;
  left: 13px;
  width: 13px;
  height: 11px;
  background-color: #532b77;
  -webkit-transform: skewX(-42deg);
          transform: skewX(-42deg);
  display: none;
  z-index: -1;
}

.cover-card.book-community:after {
  display: block;
}

.cover-card.cover-card-sm {
  border-radius: 8px;
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.16);
}

.cover-card.cover-card-md {
  border-radius: 10px;
  -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.18);
          box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.18);
}

.cover-card .btn-icon {
  position: absolute;
  bottom: 0px;
  right: 0px;
  -webkit-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
  -webkit-transform: none !important;
          transform: none !important;
}

.cover-card .btn-icon .icon-svg {
  width: 38px !important;
  height: 38px !important;
}

.cover-card .cover-badge {
  position: absolute;
  top: -6px;
  left: 16px;
  width: 161.72px;
  height: 40px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../img/komunitas-badge.png);
  color: #ffffff;
  z-index: 10;
  font-size: 14px;
  padding-top: 6px;
}

.cover-card .progress {
  position: absolute;
  bottom: -22px;
  left: 0;
  width: 100%;
  height: 10px;
}

.cover-card .cover-card-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.cover-card:hover {
  -webkit-transform: scale(0.99);
          transform: scale(0.99);
}

/* .cover-card:hover .btn-icon {
  -webkit-transform: scale(1.14);
          transform: scale(1.14);
} */

.cover-card.no-action {
  pointer-events: none;
  cursor: default;
}

.cover-card.have-notif:before {
  content: '';
  position: absolute;
  top: -8px;
  right: 8px;
  width: 16px;
  height: 16px;
  border-radius: 8px;
  border: 2px solid #ffffff;
  display: block;
  background-color: #F04938;
  z-index: 2;
}

@media screen and (max-width: 600px) {
  .cover-card {
    border-radius: 12px;
    -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.24);
            box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.24);
  }
  .cover-card.have-progress {
    margin-bottom: 26px !important;
  }
}

@media screen and (max-width: 1024px) {
  .cover-card .cover-badge {
    top: -6px;
    font-size: 10px;
    width: 92px !important;
    height: 23px;
    padding-top: 2px;
  }
}

.cover-card-arrow {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 20%;
  padding-top: 20%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/arrow-right-primary.svg);
}

.cover-card-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  bottom: 0;
  -webkit-filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.18));
          filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.18));
}

.cover-card-mask .mask-img {
  -webkit-mask-image: url(../img/mask-card.svg);
          mask-image: url(../img/mask-card.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: relative;
}

.cover-card-mask .mask-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
}

.cover-card-mask.cover-card-mask-2 .mask-img {
  -webkit-mask-image: url(../img/mask-card-3.svg);
          mask-image: url(../img/mask-card-3.svg);
}

.cover-card--detail {
  position: relative;
  display: block;
  width: 48%;
}

.cover-card--detail .cover-card {
  z-index: 4;
  margin-bottom: 0;
  pointer-events: none;
}

.cover-card--detail .cover-card--detail-bg {
  position: absolute;
  bottom: 3rem;
  left: 0;
  right: 0;
  width: 100%;
  -webkit-transform: scale(1.7) translateX(-0.3rem);
          transform: scale(1.7) translateX(-0.3rem);
}

@media screen and (max-width: 600px) {
  .cover-card--detail {
    width: 62%;
  }
}

.swiper-panel {
  display: block;
  margin-left: calc(-3rem - 15px);
  margin-right: calc(-3rem - 15px);
  padding-bottom: 1.2rem;
}

.swiper-panel .swiper {
  padding-left: calc(3rem + 15px);
  padding-right: calc(3rem + 15px);
}

.swiper-panel .swiper-slide {
  height: auto;
  text-decoration: none;
}

@media screen and (max-width: 1024px) {

  .start-reading {
    width: 75%;
  }

  .swiper-panel {
    margin-left: calc(-18px - 1rem);
    margin-right: calc(-18px - 1rem);
    padding-bottom: 12px;
  }
  .swiper-panel .swiper {
    padding-left: calc(18px + 1rem);
    padding-right: calc(18px + 1rem);
  }
}

@media screen and (max-width: 600px) {
  .swiper-panel {
    margin-left: -24px;
    margin-right: -24px;
    padding-bottom: 0px;
  }
  .swiper-panel .swiper {
    padding-left: 24px;
    padding-right: 24px;
  }
  .swiper-panel .cover-card {
    margin-bottom: 6px !important;
  }
  .swiper-panel .cover-card.have-progress {
    margin-bottom: 26px !important;
  }
  .cover-card {
    padding-top: 140% !important;
  }
}

.swiper-button-disabled {
  opacity: 0.2 !important;
}

.swiper-hero {
  overflow: inherit;
  height: 48vw;
  position: relative;
}

.swiper-hero .card {
  position: relative;
  overflow: hidden;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
}

.swiper-hero .card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 1;
  z-index: 2;
  -webkit-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
}

@media screen and (max-width: 1024px) {
  .swiper-hero .card:before {
    background-color: rgba(0, 0, 0, 0.1);
  }
}

.swiper-hero .card-body {
  position: relative;
  z-index: 3;
}

.swiper-hero .swiper-slide {
  -webkit-transform-origin: center;
          transform-origin: center;
  overflow: inherit;
}

.swiper-hero .swiper-slide-active .card {
  -webkit-transform: none;
          transform: none;
}

.swiper-hero .swiper-slide-active .card:before {
  opacity: 0;
}

.swiper-hero.swiper-fade .swiper-slide-next,
.swiper-hero.swiper-fade .swiper-slide-prev {
  opacity: 1 !important;
}

.swiper-hero .swiper-slide-shadow {
  display: none;
}

@media screen and (max-width: 600px) {
  .swiper-hero {
    height: 110vw;
  }
}

@media screen and (max-width: 400px) {
  .swiper-hero {
    height: 132vw;
  }
}

.swiper-hero-btn {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 10;
}

.swiper-hero-btn .swiper-hero-btn__next {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.swiper-hero-btn .swiper-hero-btn__prev {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

@media screen and (max-width: 600px) {
  .swiper-hero-btn {
    display: none;
  }
}

.section-fix-1 {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 100;
}

.section-have-fix-1 {
  margin-top: 80px;
  display: block;
}

@media screen and (max-width: 1024px) {
  .section-have-fix-1 {
    margin-top: 92px;
    padding-top: 0px !important;
  }
}

@media screen and (max-width: 600px) {
  .section-have-fix-1 {
    margin-top: 62px;
  }
}

.card-read-1 {
  display: block;
  position: fixed;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 100px;
  bottom: 0;
  max-width: 700px;
  width: 100%;
  background-color: #ffffff;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.card-read-1 .card-read-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  /* border-bottom: 4px solid #F6F6F6; */
  z-index: 10;
}

.card-read-1 .card-read-body {
  position: absolute;
  top: 3.5rem;
  left: 0;
  right: 0;
  bottom: 39px;
  overflow: initial;
}

/* .card-read-1 .card-read-body img {
  width: 100%;
  border-radius: 12px;
} */

.card-read-1 .card-read-foot {
  background-color: #ffffff;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-top: 4px solid #F6F6F6;
}

@media screen and (max-width: 1024px) {
  .card-read-1 {
    border-radius: 0px;
    top: 0;
  }
  .card-read-1 .card-read-header {
    padding: 0;
  }
  .card-read-1 .card-read-body {
    top: 186px;
    bottom: 72px;
  }
  .card-read-1 .card-read-foot {
    border-top: 0px;
  }

  .card-read-fullscreen .card-read-body {
    top: 15px !important;
    bottom: 0px !important;
  }
}

@media screen and (max-width: 600px) {
  .card-read-1 .card-read-body {
    top: 138px;
    bottom: 52px;
  }

  .card-read-fullscreen .card-read-body {
    top: 15px !important;
    bottom: 0px !important;
  }
}

.card-header-tablet {
  display: none;
}

@media screen and (max-width: 1024px) {
  .card-header-tablet {
    position: relative;
    display: block;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: calc(1rem + 18px) calc(1rem + 18px) 1rem calc(1rem + 18px);
    margin-bottom: 1rem;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
    z-index: 100;
  }
  .card-header-tablet:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(153, 89, 89, 0.7);
  }
  .card-header-tablet .btn {
    position: absolute;
    top: 50%;
    left: calc(18px + 1rem);
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 10;
  }
  .card-header-tablet .card-header-content {
    width: 76%;
    text-align: center;
    color: #ffffff;
    position: relative;
    z-index: 10;
    margin: 0 auto;
  }
  .card-header-tablet .card-header-content .title {
    font-family: 'Mochiy Pop One', sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    display: block;
    text-align: center;
  }
}

@media screen and (max-width: 600px) {
  .card-header-tablet {
    padding: 12px;
    margin-bottom: 12px;
  }
  .card-header-tablet .btn {
    left: 12px;
  }
}

.card-editor-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: fixed;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 110px;
  bottom: 0;
  max-width: 900px;
  width: 100%;
}

.card-editor-wrap .card-editor-img {
  display: block;
  padding: 10px;
  background-color: #F6F6F6;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  padding-top: 30%;
  position: relative;
  overflow: hidden;
}

.card-editor-wrap .card-editor-content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  background-color: #ffffff;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.card-editor-wrap .card-editor-img__add,
.card-editor-wrap .card-editor-img__added {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
}

.card-editor-wrap .card-editor-img__add:hover,
.card-editor-wrap .card-editor-img__added:hover {
  opacity: .8;
}

.card-editor-wrap .card-editor-img__added {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.card-editor-wrap .card-editor-img__edit {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 1;
}

@media screen and (max-width: 1024px) {
  .card-editor-wrap.card-editor-wrap-2 {
    top: 70px;
    padding-top: 28px;
  }
  .card-editor-wrap .card-editor-img {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 1.5rem;
  }
  .card-editor-wrap .card-editor-content {
    border-radius: 0px !important;
  }
}

@media screen and (max-width: 600px) {
  .card-editor-wrap {
    top: 66px;
  }
  .card-editor-wrap.card-editor-wrap-2 {
    top: 38px;
  }
  .card-editor-wrap .card-editor-img {
    width: calc(100% - 24px);
    margin-bottom: 12px;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }
  .card-editor-wrap .card-editor-content {
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }
}

.float-card-editor {
  position: absolute;
  bottom: 4rem;
  left: 0;
  right: 0;
  z-index: 20;
}

@media screen and (max-width: 600px) {
  .float-card-editor {
    bottom: 54px;
  }
}

.card-read-menu {
  position: absolute;
  right: -56px;
  top: 100px;
  width: 42px;
  background-color: #ffffff;
  padding: 12px 0px;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.card-read-menu .menu-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 28px;
  height: 28px;
  opacity: 1;
  margin-bottom: 20px;
  cursor: pointer;
  -webkit-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
}

.card-read-menu .menu-item[aria-expanded="true"] {
  opacity: 1;
}

.card-read-menu .menu-item[aria-expanded="true"] svg path {
  fill: var(--primary-color);
}

.card-read-menu .menu-item:last-child {
  margin-bottom: 0px;
}

.card-read-menu .menu-item .fa-solid {
  color: #757C9C;
}

.card-read-menu .menu-item img {
  width: 100%;
}

.card-read-menu .menu-item:hover {
  opacity: .8;
}

.card-read-menu.menu-2 {
  position: relative;
  right: inherit;
  top: inherit;
}

.card-read-menu.menu-2 .menu-item {
  margin-bottom: 12px;
}

@media screen and (max-width: 1024px) {
  .card-read-menu.card-read-menu--tablet {
    position: relative;
    top: inherit;
    right: inherit;
    width: 100%;
    padding: 1rem;
    border-radius: 0px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .card-read-menu.card-read-menu--tablet .menu-item {
    margin-bottom: 0px;
    width: 34px;
    height: 34px;
  }
}

@media screen and (max-width: 600px) {
  .card-read-menu.card-read-menu--tablet {
    padding: 12px;
  }
  .card-read-menu.card-read-menu--tablet .menu-item {
    width: 22px;
    height: 22px;
  }
}

.form-title,
.form-title-2 {
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  border-radius: 0px;
  border: 0px;
  text-align: center;
}

.form-title:focus,
.form-title-2:focus {
  outline: none;
}

.form-title::-webkit-input-placeholder,
.form-title-2::-webkit-input-placeholder {
  color: #B0B0B0;
}

.form-title:-ms-input-placeholder,
.form-title-2:-ms-input-placeholder {
  color: #B0B0B0;
}

.form-title::-ms-input-placeholder,
.form-title-2::-ms-input-placeholder {
  color: #B0B0B0;
}

.form-title::placeholder,
.form-title-2::placeholder {
  color: #B0B0B0;
}

@media screen and (max-width: 600px) {
  .form-title,
  .form-title-2 {
    font-size: 16px;
  }
}

.form-title-2[placeholder]:empty:before {
  color: #B0B0B0;
  content: attr(placeholder);
}

.form-title-2[placeholder]:focus:before {
  content: "";
}

.modal-comment-panel .modal-dialog {
  position: absolute;
  max-width: inherit;
  margin: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 480px;
}

.modal-comment-panel .modal-dialog .modal-content {
  height: 100%;
  border: 0px;
  border-radius: 0px;
  overflow: hidden;
}

.modal-comment-panel .modal-dialog .modal-content .modal-body {
  overflow: auto;
  height: 100%;
}

.modal-comment-panel .modal-dialog .modal-content .modal-footer {
  -webkit-box-shadow: -10px 0px 14px rgba(0, 0, 0, 0.2);
          box-shadow: -10px 0px 14px rgba(0, 0, 0, 0.2);
}

.modal-comment-panel.fade .modal-dialog {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: 0.6s all cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: 0.6s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.modal-comment-panel.show .modal-dialog {
  -webkit-transform: none;
          transform: none;
}

@media screen and (max-width: 1024px) {
  .modal-comment-panel .modal-dialog {
    width: 100%;
    top: 28%;
  }
  .modal-comment-panel .modal-dialog .modal-content {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
  .modal-comment-panel.fade .modal-dialog {
    -webkit-transform: translate(0, 50px);
            transform: translate(0, 50px);
  }
  .modal-comment-panel.show .modal-dialog {
    -webkit-transform: none;
            transform: none;
  }
}

@media screen and (max-width: 600px) {
  .modal-comment-panel .modal-dialog {
    top: 10%;
  }
}

@media screen and (max-width: 1024px) {
  .share-font {
    font-size: 10px !important;
  }
  
  .modal-tablet .modal-dialog {
    max-width: 100%;
    margin: 0;
    min-height: 100%;
    padding-top: 6rem;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .modal-tablet .modal-content {
    border-radius: 20px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
  }
  .modal-tablet .modal-dialog-centered {
    padding-top: 0px !important;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .modal-tablet .modal-dialog-centered .modal-content {
    margin-top: 6rem;
  }
  .modal-tablet.fade .modal-dialog {
    -webkit-transform: translate(0, 50px);
            transform: translate(0, 50px);
  }
  .modal-tablet.show .modal-dialog {
    -webkit-transform: none;
            transform: none;
  }
}

.comment-panel {
  display: block;
  position: relative;
  margin-bottom: 1.5rem;
}

.comment-panel:last-child {
  margin-bottom: 0;
}

.comment-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.comment-see-reply {
  display: block;
  position: relative;
  font-size: 14px;
  color: #757C9C;
  padding-left: 46px;
  margin-top: .4rem;
  margin-left: calc(48px + 1rem);
  cursor: pointer;
}

.comment-see-reply:before {
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 38px;
  height: 3px;
  background-color: #757C9C;
}

.comment-see-reply:hover {
  color: var(--primary-color);
}

.comment-see-reply:hover:before {
  background-color: var(--primary-color);
}

.comment-reply {
  display: block;
  position: relative;
  padding-left: calc(48px + 1rem);
  padding-top: 1rem;
}

.comment-reply .comment-item {
  margin-bottom: .75rem;
}

.bg-share-item {
  display: block;
  width: 100%;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #F6F6F6;
  padding-top: 150%;
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.bg-share-item .check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  opacity: 0;
}

.bg-share-item .add {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  width: 34px;
}

.bg-share-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  border: 4px solid var(--primary-color);
  opacity: 0;
  -webkit-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
}

.bg-share-item.selected {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

.bg-share-item.selected .check {
  opacity: 1;
}

.bg-share-item.selected:before {
  opacity: 1;
}

.bg-share-item:hover {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

.bg-share-item:hover.bg-share-item--add, .bg-share-item:hover.bg-share-main {
  -webkit-transform: scale(1);
          transform: scale(1);
  background-color: #ECECEC;
}

.bg-share-item:hover.bg-share-item--add:before, .bg-share-item:hover.bg-share-main:before {
  opacity: 0;
}

.bg-share-main {
  overflow: hidden;
  cursor: default;
}

.bg-share-main:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.bg-share-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  z-index: 2;
  color: #ffffff;
  padding: 1.5rem;
}

.bg-share-content .content {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

.category-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-left: -40px;
  margin-right: -40px;
}

.cl-item {
  display: block;
  text-align: center;
  width: 120px;
  color: #ffffff;
  margin-left: 40px;
  margin-right: 40px;
  margin-bottom: 40px;
  cursor: pointer;
}

.cl-item .block-img-square {
  -webkit-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
}

.cl-item:hover .block-img-square {
  -webkit-transform: scale(0.96);
          transform: scale(0.96);
}

@media screen and (max-width: 1024px) {
  .category-list-tablet {
    margin-left: -10px;
    margin-right: -10px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .category-list-tablet .cl-item {
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 10px;
    padding: 10px;
    width: 25%;
  }
}

@media screen and (max-width: 600px) {
  .category-list-tablet .cl-item {
    padding: 8px;
    margin-bottom: 4px;
    font-size: 10px;
  }
}

textarea#message {
  overflow: hidden;
  /*overflow is set to auto at max height using JS */
  outline: none;
  min-height: 42px;
  max-height: 88px;
  height: auto;
  padding-top: 12px;
  padding-bottom: 12px;
  resize: none;
  line-height: 1.2;
}

.message-form-wrapper {
  display: block;
  width: 100%;
  border-radius: 12px;
  padding: 8px 12px;
  min-height: 40px;
  max-height: 88px;
  border: 1px solid #ced4da;
  font-size: 14px;
  position: relative;
}

.message-form-wrapper:before {
  content: attr(data-placeholder);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 12px;
  color: #909090;
  font-size: 14px;
}

.message-form-wrapper.active:before {
  display: none;
}

.message-form-wrapper .message-form {
  position: relative;
  z-index: 1;
  padding-right: 42px;
}

.message-form-wrapper .message-form[placeholder]:empty:before {
  color: #B0B0B0;
  content: attr(placeholder);
}

.message-form-wrapper .message-form[placeholder]:focus:before {
  content: "";
}

.message-form-wrapper .message-form:focus, .message-form-wrapper .message-form:active {
  outline: none;
  border-color: var(--primary-color);
}

.message-form-wrapper .message-action {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 4px;
  z-index: 1;
}

@media screen and (max-width: 600px) {
  .message-form-wrapper .message-form {
    font-size: 13px;
  }
}

.editor-wrap { 
  color: #000 !important;
}

.editor-wrap .ck-editor {
  height: 100% !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.editor-wrap .ck-editor__main {
  position: absolute;
  top: 0px;
  left: 0;
  bottom: 39px;
  right: 0;
}

.editor-wrap .ck-toolbar {
  border: 0px !important;
}

.editor-wrap .ck-editor__editable_inline {
  height: 100%;
  border: 0px !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

@media screen and (max-width: 1024px) {
  .editor-wrap .ck-content {
    padding: calc(1rem + 18px) !important;
  }
  .editor-wrap .ck-content {
    padding: 12px !important;
  }
}

.alert-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.alert-form .alert-form-inner {
  display: block;
  width: 74%;
  position: relative;
  -webkit-transform: translateX(6%);
          transform: translateX(6%);
}

.alert-form .alert-form-title {
  position: absolute;
  top: 50%;
  text-align: right;
  right: 88%;
  -webkit-transform: translateY(-50%) rotate(-8deg);
          transform: translateY(-50%) rotate(-8deg);
  background-color: var(--primary-color);
  color: #ffffff;
  font-family: 'Mochiy Pop One', sans-serif;
  font-size: 11px;
  padding: 8px 18px;
  padding-bottom: 10px;
  border-radius: 30px;
}

.alert-form .alert-form-title .icon {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 20px;
  height: 20px;
  background-color: #F04938;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10px;
  -webkit-transform: rotate(8deg);
          transform: rotate(8deg);
}

.alert-form .alert-form-content {
  padding: 10px 20px;
  padding-left: 64px;
  background-color: #FDF0E7;
  color: #F04938;
  border-radius: 30px;
  font-size: 12px;
}

@media screen and (max-width: 600px) {
  .alert-form .alert-form-inner {
    width: 82%;
  }
  .alert-form .alert-form-title {
    font-size: 10px;
  }
  .alert-form .alert-form-content {
    font-size: 11px;
  }
}

.list-baca {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.list-baca .list-baca-buku {
  position: relative;
  width: 30%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 1rem;
  -webkit-transform: translateY(8px) scale(1);
          transform: translateY(8px) scale(1);
  -webkit-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
}

.list-baca .list-baca-buku .list-baca-buku-item {
  display: block;
  width: 100%;
  padding-top: 120%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #F6F6F6;
  border-radius: 12px;
  position: relative;
  z-index: 3;
  margin-bottom: 8px;
  -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.12);
  -webkit-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
}

.list-baca .list-baca-buku:before, .list-baca .list-baca-buku:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  border-radius: 12px;
  display: block;
  -webkit-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
}

.list-baca .list-baca-buku:before {
  top: -10px;
  background-color: #757C9C;
  bottom: 10px;
  z-index: 2;
  -webkit-transform: scale(0.94);
          transform: scale(0.94);
}

.list-baca .list-baca-buku:after {
  top: -22px;
  background-color: #E6E9FF;
  bottom: 22px;
  -webkit-transform: scale(0.86);
          transform: scale(0.86);
}

.list-baca .list-baca-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 14px;
  background-color: #F6F6F6;
  border-radius: 12px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.list-baca:hover .list-baca-buku {
  -webkit-transform: translateY(1px) scale(1.02);
          transform: translateY(1px) scale(1.02);
}

.list-baca:hover .list-baca-buku:before, .list-baca:hover .list-baca-buku:after {
  top: 0;
}

.card-menu-side {
  display: block;
  overflow: hidden;
  border-radius: 30px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.1);
}

.card-menu-side .card-menu-side__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--primary-color);
  border-bottom: 4px solid #F6F6F6;
  padding: 1.5rem;
  -webkit-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
}

.card-menu-side .card-menu-side__item .card-menu-side__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background-color: #EEF0FF;
  color: var(--primary-color);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 1rem;
  -webkit-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.card-menu-side .card-menu-side__item:last-child {
  border-bottom: 0px;
}

.card-menu-side .card-menu-side__item.active {
  background-color: #E6E9FF;
}

.card-menu-side .card-menu-side__item.active .card-menu-side__icon {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.card-menu-side .card-menu-side__item:hover {
  text-decoration: none;
  color: var(--primary-color);
  background-color: #E6E9FF;
}

.card-menu-side .card-menu-side__item:hover .card-menu-side__icon {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@media screen and (max-width: 1024px) {
  .card-menu-side {
    border-radius: 0px;
    margin-left: calc(-1rem - 18px);
    margin-right: calc(-1rem - 18px);
    -webkit-box-shadow: none;
            box-shadow: none;
    border-bottom: 4px solid #F6F6F6;
  }
  .card-menu-side .card-menu-side__item {
    border-bottom: 0px;
    padding: 14px calc(1rem + 18px);
    position: relative;
  }
  .card-menu-side .card-menu-side__item .arrow-right {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: calc(1rem + 18px);
    width: 20px;
  }
  .card-menu-side .card-menu-side__item.active {
    background-color: #ffffff;
  }
  .card-menu-side .card-menu-side__item.active .card-menu-side__icon {
    -webkit-transform: none;
            transform: none;
  }
}

@media screen and (max-width: 600px) {
  .card-menu-side {
    border-radius: 0px;
    margin-left: -24px;
    margin-right: -24px;
    border-bottom: 2px solid #F6F6F6;
  }
  .card-menu-side .card-menu-side__item {
    padding: 14px 24px;
  }
  .card-menu-side .card-menu-side__item .arrow-right {
    right: 24px;
  }
}

.card-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.card-message .card-col {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.card-message .card-col:first-child {
  width: 360px;
  background-color: #ffffff;
  border-radius: 20px;
  -webkit-box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.card-message .card-col:last-child {
  width: calc(100% - 360px);
}

.card-message .card-col-header {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-bottom: 4px solid #F6F6F6;
  position: relative;
}

.card-message .card-col-body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  position: relative;
}

.card-message .card-col-footer {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  -webkit-box-shadow: 0px -4px 8px rgba(0, 0, 0, 0.04);
          box-shadow: 0px -4px 8px rgba(0, 0, 0, 0.04);
}

@media screen and (max-width: 1024px) {
  .card-message .card-col:first-child {
    width: 100%;
    border-radius: 0px;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .card-message .card-col:last-child {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #ffffff;
    z-index: 100;
    width: 100%;
  }
  .card-message .card-col:last-child.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 600px) {
  .card-message .card-col-header,
  .card-message .card-col-footer {
    padding: 12px !important;
  }
  .card-message .card-col-header {
    border-bottom: 2px solid #F6F6F6;
  }
}

.card-message-item {
  display: block;
  cursor: pointer;
  border-bottom: 4px solid #F6F6F6;
  padding: 1rem;
}

.card-message-item:last-child {
  border-bottom: 0px;
}

.card-message-item:hover, .card-message-item.active {
  background-color: #E6E9FF;
}

.card-message-item:hover .avatar.w-frame:before, .card-message-item.active .avatar.w-frame:before {
  background-image: url("../img/photo-frame-2-hover.svg");
}

@media screen and (max-width: 1024px) {
  .card-message-item {
    padding: 1rem calc(1rem + 18px);
  }
  .card-message-item.active {
    background-color: #ffffff;
  }
  .card-message-item.active .avatar.w-frame:before {
    background-image: url("../img/photo-frame-2.svg");
  }
}

@media screen and (max-width: 600px) {
  .card-message-item {
    padding: 12px;
    border-bottom: 2px solid #F6F6F6;
  }
}

.card-message-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.card-col-float {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 1;
}

.card-col-float .btn i {
  -webkit-transform: translateX(-2px) translateY(-1px);
          transform: translateX(-2px) translateY(-1px);
}

@media screen and (max-width: 1024px) {
  .card-col-float.show-768 {
    position: fixed;
    right: calc(1rem + 18px);
    bottom: calc(1rem + 18px);
  }
}

@media screen and (max-width: 1024px) {
  .card-col-float.show-768 {
    right: 12px;
    bottom: 12px;
  }

  .card-editor-wrap .card-editor-img {
    display: block;
    padding: 10px;
    background-color: #F6F6F6;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    padding-top: 30%;
    position: relative;
    overflow: initial;
  }
}

.panel-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 1rem;
}

.panel-message .panel-message__avatar {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: .75rem;
}

.panel-message .panel-message__content {
  position: relative;
  background-color: #F6F6F6;
  padding: 1rem;
  border-radius: 12px;
  max-width: 72%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 0;
}

.panel-message .panel-message__content .card {
  width: 100%;
}

.panel-message.panel-message__main {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.panel-message.panel-message__main .panel-message__avatar {
  margin-right: 0;
  margin-left: .75rem;
}

.panel-message.panel-message__main .panel-message__content {
  background-color: #835AA5;
  color: #ffffff;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.panel-message.panel-message__main .panel-message__content .text-muted {
  color: #ffffff !important;
}

.panel-message.panel-message__share-book .panel-message__content {
  background-color: #ffffff !important;
  width: 280px;
  max-width: inherit;
  color: #343A40 !important;
  padding-bottom: 0;
}

.panel-message.panel-message__share-book .panel-message__content .text-muted {
  color: #909090 !important;
}

.panel-message.panel-message__share-book .panel-message__content .panel-message__book {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.panel-message.panel-message__share-book .panel-message__content .panel-message__book .cover-card-wrap {
  width: 50%;
  margin-bottom: 1rem;
}

.panel-message.panel-message__book-list .panel-message__content {
  background-color: #ffffff !important;
  width: 400px;
  max-width: inherit;
  padding-bottom: 0;
}

.panel-message.panel-message__book-list .panel-message__content .text-muted {
  color: #909090 !important;
}

.panel-message.panel-message__forum .panel-message__content {
  background-color: #ffffff !important;
  width: 400px;
  max-width: inherit;
  padding-bottom: 0;
  color: #343A40 !important;
}

.panel-message.panel-message__forum .panel-message__content .text-muted {
  color: #909090 !important;
}

@media screen and (max-width: 600px) {
  .panel-message .panel-message__content {
    padding: 12px;
  }
  .panel-message.panel-message__book-list .panel-message__content, .panel-message.panel-message__forum .panel-message__content {
    width: 100%;
    padding: 0px;
  }
}

.panel-message-wrap {
  height: 500px;
}

@media screen and (max-width: 1024px) {
  .panel-message-wrap {
    height: inherit;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

@media screen and (max-width: 1024px) {
  .panel-message-wrap {
    padding: 12px !important;
  }
}

.card-chapter {
  position: relative;
  z-index: 1;
}

.card-chapter .chapter-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 16%;
  bottom: 0;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--primary-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.card-chapter .chapter-cover img {
  width: 70%;
}

.card-chapter .card-body {
  padding-left: calc(16% + 1.25rem);
}

.status {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 24px;
}

.status.status-black {
  background-color: #343A40;
  color: #ffffff;
}

.status.status-success {
  background-color: #30CB83;
  color: #ffffff;
}

.status.status-warning {
  background-color: #F1B20F;
  color: #ffffff;
}

.status.status-danger {
  background-color: #F04938;
  color: #ffffff;
}

.card-alert-1 {
  background-color: #FFE6E6;
  color: var(--primary-color);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 1.25rem;
  position: relative;
}

.card-alert-1:before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 40px;
  background-color: #FFE6E6;
}

.block-action-br {
  position: relative;
}

.block-action-br .action {
  position: absolute;
  bottom: 0;
  right: 0;
}

.onboarding-scroll-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  cursor: pointer;
  color: var(--primary-color);
}

.onboarding-scroll-top img {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  margin-top: .5rem;
  display: block;
}

@media screen and (max-width: 1024px) {
  .lock-onboarding-tablet {
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
}

.main-nav-bottom {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem;
  background-color: #ffffff;
  z-index: 100;
  -webkit-box-shadow: 0px -3px 18px rgba(0, 0, 0, 0.1);
          box-shadow: 0px -3px 18px rgba(0, 0, 0, 0.1);
}

.main-nav-bottom ul {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-nav-bottom ul li {
  list-style: none;
  width: 20%;
  text-align: center;
}

.main-nav-bottom ul li a {
  display: block;
  text-align: center;
  color: #757C9C;
}

.main-nav-bottom ul li a .isvg,
.main-nav-bottom ul li a .isvg-2 {
  height: 42px;
}

.main-nav-bottom ul li a .isvg-2 {
  display: none;
}

.main-nav-bottom ul li a.active {
  color: #F04938;
}

.main-nav-bottom ul li a.active .isvg {
  display: none;
}

.main-nav-bottom ul li a.active .isvg-2 {
  display: block;
}

.main-nav-bottom ul li a:hover {
  text-decoration: none;
}

.main-nav-bottom ul li .key {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 72px;
  height: 72px;
  background-color: var(--primary-color);
  border-radius: 36px;
  -webkit-box-shadow: 0px 4px 12px rgba(36, 49, 102, 0.4);
          box-shadow: 0px 4px 12px rgba(36, 49, 102, 0.4);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.main-nav-bottom ul li .key img {
  height: 38px;
}

.main-nav-bottom ul li .key.active {
  background-color: #F04938;
}

@media screen and (max-width: 1024px) {
  .main-nav-bottom {
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .main-nav-bottom {
    padding: 8px 0px 6px 0px;
  }
  .main-nav-bottom ul li a {
    font-size: 11px;
  }
  .main-nav-bottom ul li a .isvg,
  .main-nav-bottom ul li a .isvg-2 {
    height: 26px;
  }
  .main-nav-bottom ul li .key {
    width: 44px;
    height: 44px;
  }
  .main-nav-bottom ul li .key img {
    height: 26px;
  }
}

.body--wrapper,
.body--wrapper2 {
  display: block;
}

@media screen and (max-width: 1024px) {
  .body--wrapper,
  .body--wrapper2 {
    padding-bottom: 7rem;
  }
}

@media screen and (max-width: 600px) {
  .body--wrapper,
  .body--wrapper2 {
    padding-bottom: 4rem;
  }
}

@media screen and (max-width: 1024px) {
  .body--wrapper2 {
    padding-bottom: 3rem;
  }
}

@media screen and (max-width: 600px) {
  .body--wrapper2 {
    padding-bottom: 4rem;
  }
}

.sticky-1 {
  position: -webkit-sticky;
  position: sticky;
  top: 140px;
}

@media screen and (max-width: 1024px) {
  .sticky-1 {
    position: relative;
    top: inherit;
  }
}

@media screen and (max-width: 1024px) {
  .float-action-editor {
    position: fixed;
    bottom: 3.4rem;
    left: 0%;
    width: 100%;
    z-index: 10;
  }
}

.input-search {
  background-color: #F6F6F6;
  border-color: #F6F6F6;
  border-radius: 24px;
}

.input-search.input-search-2 {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.input-search.input-search-2::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.input-search.input-search-2:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.input-search.input-search-2::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.input-search.input-search-2::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.input-w-icon {
  position: relative;
}

.input-w-icon .icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 12px;
}

.input-w-icon .input-search {
  padding-left: 44px;
}

.input-w-icon.pl-5 .icon {
  left: 60px;
}

.input-w-icon.input-w-icon-2 .icon {
  opacity: .5;
}

.bottom-nav-read {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(white));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, white 100%);
  height: 92px;
  padding: 0px calc(1rem + 18px);
  z-index: 100;
}

@media screen and (max-width: 1024px) {
  .bottom-nav-read {
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .bottom-nav-read {
    height: 64px;
  }
}

#detailPopupTitle {
  opacity: 0;
  -webkit-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
  -webkit-transition-delay: .4s;
          transition-delay: .4s;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
  display: none;
}

#detailPopupTitle.show {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

@media screen and (max-width: 1024px) {
  #detailPopupTitle {
    display: block;
  }
}

.menu-action-768 {
  display: none;
}

@media screen and (max-width: 1024px) {
  .menu-action-768 {
    display: block;
    position: fixed;
    bottom: 134px;
    left: 0;
    right: 0;
    z-index: 40;
    padding: 0 20%;
  }
}

@media screen and (max-width: 600px) {
  .menu-action-768 {
    bottom: 76px;
    padding: 0;
  }
}

.block-edit-photo .overlay,
.block-edit-photo .photo-wrapper {
  position: fixed;
  top: 56px;
  bottom: 6.4rem;
  left: 0;
  right: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
}

.block-edit-photo .overlay {
  z-index: 10;
}

.block-edit-photo .photo-wrapper {
  background-color: #F6F6F6;
}
/*# sourceMappingURL=styles.css.map */

.pt-10percent{
  padding-top: 160% !important;
}

.terpilih{
  border: 3px solid #5c66af;
  border-radius: 10px;
}

.block-img-book{
  padding-top: 130% !important;
}

.form-control-select{
  border: 1px solid var(--primary-color);
  border-radius: 26px;
  padding: 14px 24px;
  width: 100%;
}

.form-control option {
  padding: 5px;
  border-radius: 20px;
}

.select2-container .select2-selection--single{
  border: 1px solid var(--primary-color);
  border-radius: 26px;
  padding: 15px 23px 36px;
}

.select2-dropdown {
  border: 1px solid #5c66af !important;
  border-radius: 21px !important;
  top: 4px;
  /* padding: 14px !important; */
}

.select2-results__options{
  padding: 12px !important;
}

.cover-card-mask.landscape{
  position: sticky;
  padding-top: 53%;
}

.select2-search--dropdown .select2-search__field{
  border-radius: 20px;
  border: 1px solid #5c66af;
  padding: 5px 10px;
}

.select2-search--dropdown{
  display: block;
  padding: 10px 10px 0px 10px;
}

::selection{
  background: #E9CFFF !important;
  background-image: url(/public/img/union-start.svg);
  background-repeat: no-repeat;
  background-position: left center;
  padding-right: 20px;
  background-image: url(/public/img/union-start.svg);
  background-repeat: no-repeat;
  background-position: right center;
}

.btn-light.btn-disabled, .btn-light.disabled, .btn-light:disabled {
  pointer-events: none;
  color: #B0B0B0;
  opacity: 1;
}

.dragging {
  transition: transform 0.3s ease;
}

.primary2:hover {
  text-decoration: none;
}

@media screen and (max-width: 1024px) {
  .data-not-found {
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .w-mb-100 {
    width: 100% !important;
  }
}

.right-search {
  right: calc(18px + 1rem) !important;
  left: initial !important;
}

.read-list-active {
  background: #E9CFFF !important;
  border-radius: 12px !important;
}

.highlight-text {
  color: black !important;
  text-decoration: none !important;
}

.notifikasi::before {
  content: '';
    width: 12px;
    height: 12px;
    border-radius: 6px;
    background-color: #F04938;
    position: absolute;
    top: 7px;
    right: 4px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.bg-samarsamar{
  background: #0000000f !important;
}

.progress-tugas{
  height: 4px;
}

.avatar-tugas {
  background-size: cover;
  border: 1px solid #fff;
  margin-bottom: -19px;
}

.avatar-tugas:last-child {
  margin-bottom: 0;
}

.avatar-last{
  background-color: #8f8f8f;
  padding: 11px 10px;
  font-size: 11px;
  font-weight: bold;
}

.table td, .table th {
  vertical-align: middle;
}

.body-table{
  height: 24rem;
  width: 100%;
}

.form-control-2{
  background-color: #ebebeb;
  border-radius: 12px;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  padding: 12px 20px;
  padding-left: 22px;
  width: 100%;
}

.no-underline-hover:hover{
  text-decoration: none;
}

:root {
  --ck-image-style-spacing: 1.5rem; /* atau nilai yang sesuai dengan desain Anda */
}

body {
  overflow-x: hidden;
}

.image img {
  display: block;
  height: auto;
  margin: 0 auto;
  max-width: 100%;
  min-width: 100%;
}

.image-style-side {
  float: right;
  margin-left: var(--ck-image-style-spacing);
  max-width: 50%;
}

.datepicker-dropdown {
  position: absolute;
  z-index: 1000;
  background: white;
  border: 1px solid #ccc;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
  border-radius: 4px;
}

.datepicker-dropdown .form-control {
  width: 100%;
}

.datepicker-dropdown .form-group .form-control {
  padding: 17px 24px !important;
}

.pdf-page {
  position: relative;
  margin: 0 auto;
  /* max-width: 800px; */
  padding: 20px;
  /* border: 1px solid #ccc; */
  /* background-color: #f9f9f9; */
}

.text-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.text-item {
  position: absolute;
  white-space: pre;
  pointer-events: all;
}

.textLayer {
  font-family: 'Poppins', sans-serif !important;
  font-size: 16px !important;
  line-height: 1.5;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  color: '#4950a8';
  mix-blend-mode: multiply;
}

.react-datepicker-popper {
  z-index: 2 !important;
}

.line-height-left {
  text-align: left;
  line-height: 30px;
}

#setting-menu{
  position: absolute;
  transform: translate3d(-372px, 28px, 0px);
  top: 0px;
  left: 0px;
  will-change: transform
}

@media screen and (max-width: 1330px) {
  #setting-menu{
    top: -123px !important;
    left: -40px !important;
  }
}


.image>figcaption {
  background-color: var(--ck-color-image-caption-background);
  caption-side: bottom;
  color: var(--ck-color-image-caption-text);
  font-size: .75em;
  outline-offset: -1px;
  padding: .6em;
  word-break: break-word;
  text-align: center;
}

#viewerContainer {
  scrollbar-width: none !important;
}

.ck.ck-editor {
  min-height: 300px !important;
}

::-webkit-scrollbar {
  /* width: 6px; */
  display: none;
}

/* Track scrollbar */
::-webkit-scrollbar-track {
  background: #f1f1f1; /* Warna latar belakang track */
}

/* Handle scrollbar */
::-webkit-scrollbar-thumb {
  background: #888; /* Warna handle */
  border-radius: 10px; /* Sudut membulat handle */
}

/* Handle scrollbar saat hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; /* Warna handle saat hover */
}

#myArea {
  padding-top: 1rem !important;
}

@media screen and (max-width: 1280px) and (max-height: 720px) {
  .onboarding-panel {
    width: 90% !important;
    height: 72% !important;
    top: -1.2rem !important;
  }

  .h1-lg {
    font-size: 1.7rem !important;
    line-height: 1.2 !important;
  }

  .h4, h4 {
    font-size: 1.3rem !important;
  }

  .text-login {
    font-size: 12px !important;
  }

  .pt-3-1920 {
    padding-top: 1rem !important;
  }

  .pt-0-1920 {
    padding-top: 0px !important;
  }
}

.swiper-slide {
  margin-left: 20px;
  margin-right: 20px;
}

@media screen and (min-width: 1280px){
  .bookList {
    padding-right: 10rem !important;
  }
}

.border-top-dark {
  border-top: 4px solid #343a40 !important;
}

.border-top-cream3 {
  border-top: 4px solid #f1e1c7 !important;

}

.text-white * {
  color: white !important;
}

.spinner-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* agar tinggi penuh layar */
  width: 100vw;  /* agar lebar penuh layar */
}

.spinner-square {
  display: flex;
  flex-direction: row;
  width: 40px;
  height: 120px;
}

.spinner-square > .square {
  width: 5px;
  height: 80px;
  margin: auto auto;
  border-radius: 4px;
}

.square-1 {
  animation: square-anim 1200ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 0s infinite;
}

.square-2 {
  animation: square-anim 1200ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 200ms infinite;
}

.square-3 {
  animation: square-anim 1200ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 400ms infinite;
}

@keyframes square-anim {
  0% {
      height: 20px;
      background-color: #5C66AF;
  }
  20% {
      height: 20px;
  }
  40% {
      height: 40px;
      background-color: rgb(111, 200, 240);
  }
  80% {
      height: 20px;
  }
  100% {
      height: 20px;
      background-color: #5C66AF;
  }
}

.btn.disabled, .btn:disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}

.image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.image-wrapper .images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}