html * {
  font-family: "Manrope";
  font-size: 14px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
}

input {
  transition: all 0.3s;
  outline: none;
}

input:focus {
  border: 2px solid rgba(164, 211, 255, 1) !important;
}

input.error {
  border: 2px solid rgba(240, 68, 56, 1) !important;
}

input:disabled {
  border: 2px solid rgba(228, 231, 236, 1) !important;
  background-color: rgba(228, 231, 236, 1);
  cursor: not-allowed;
}

input::placeholder {
  font-weight: 500;
}

input:active {
  border: 2px solid rgba(228, 231, 236, 1) !important;
}

input:focus::placeholder {
  color: rgba(52, 64, 84, 1);
}

input:active::placeholder {
  color: rgba(52, 64, 84, 1);
}

input:disabled::placeholder {
  color: rgba(152, 162, 179, 1);
}

input:is(.error)::placeholder {
  color: rgba(240, 68, 56, 1) !important;
}

.nav-profile {
  width: 853px;
  height: 48px;
  display: flex;
  text-align: center;
  position: relative;
  margin-top: 36px;
}

.nav-profile label {
  height: 48px;
  line-height: 36px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 30px;
  margin: 0 5px;
  color: #0043a7;
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #e4e7ec;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-profile label.home {
  min-width: 210px;
}

.nav-profile label.blog {
  min-width: 199px;
}

.nav-profile label.code {
  min-width: 226px;
}

.nav-profile label.help {
  min-width: 170px;
}

.nav-profile label:hover {
  border: 2px solid #a4d3ff;
  background-color: #e3f3ff;
}

.nav-profile .slider {
  position: absolute;
  height: 100%;
  margin: 0 5px;
  width: calc(25% - 10px);
  background: #0043a7;
  left: 0;
  top: 0;
  border-radius: 30px;
  z-index: 1;
}

#home:checked ~ nav label.home,
#blog:checked ~ nav label.blog,
#code:checked ~ nav label.code,
#help:checked ~ nav label.help {
  color: #f9fbfd;
  border: 0;
  background: #0043a7;
}

#home:checked ~ .nav-profile .slider {
  left: 0;
  width: 210px;
}

#blog:checked ~ .nav-profile .slider {
  left: calc(210px + 10px);
  width: 199px;
}

#code:checked ~ .nav-profile .slider {
  left: calc(199px + 210px + 20px);
  width: 226px;
}

#help:checked ~ .nav-profile .slider {
  left: calc(199px + 210px + 226px + 30px);
  width: 170px;
}

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

@media only screen and (max-width: 1176px) {
  .nav-profile {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    row-gap: 10px;
    height: 100%;
  }

  .nav-profile .slider {
    height: 48px;
    /* width: calc(50% - 5px); */
  }

  #home:checked ~ .nav-profile .slider {
    left: 0;
    width: calc(50% - 10px);
  }

  #blog:checked ~ .nav-profile .slider {
    left: calc(50%);
    width: calc(50% - 10px);
  }

  #code:checked ~ .nav-profile .slider {
    top: calc(48px + 10px);
    left: 0;
    width: calc(50% - 10px);
  }

  #help:checked ~ .nav-profile .slider {
    top: calc(48px + 10px);
    left: calc(50%);
    width: calc(50% - 10px);
  }
  .nav-profile label {
    font-size: 14px;
    line-height: 22px;
  }
  .nav-profile label.home {
    min-width: auto;
  }

  .nav-profile label.blog {
    min-width: auto;
  }

  .nav-profile label.code {
    min-width: auto;
  }

  .nav-profile label.help {
    min-width: auto;
  }
}

.hamburger-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 16px;
  cursor: pointer;
}

.bar {
  height: 2px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-menu.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-menu.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.classin-on-going::before {
  content: "";
  background: url(../../assets/image/union.png);
  background-size: 100vw 129px;
  width: 100%;
  height: 129px;
  display: block;
  padding-top: 129px;
}

.owl-carousel .owl-stage {
  padding-left: 0px !important;
  display: flex;
}

.article-items {
  display: flex;
  flex: 1 0 auto;
  height: 100%;
}

.aticle-box {
  position: relative;
  overflow: hidden;
  /* margin-bottom: 80px; */ /*This is optional*/
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* @media only screen and (max-width: 767px) {
  .classin-going-wrapper {
    -ms-overflow-style: none; 
    scrollbar-width: none;  
  }
  
  .classin-going-wrapper::-webkit-scrollbar {
    display: none;  
  }
} */

@media only screen and (max-width: 1176px) {
  .classin-on-going::before {
    content: none;
    background: none;
    background-size: none;
    padding-top: 0px;
  }

  .classin-going-wrapper {
    height: 48px !important;
    width: 645px;
    min-width: 645px;
    background: #fff;
    line-height: 48px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    padding: 6px;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .classin-going-wrapper > div {
    position: relative;
    display: flex;
    height: 36px !important;
    align-items: stretch;
    column-gap: 6px;
    width: 100%;
  }

  .classin-going-wrapper div label {
    position: relative;
    font-size: 14px !important;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.6s ease;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.classin-going-wrapper {
  max-width: 870px;
  height: 60px !important; 
  display: flex;
  flex-wrap: wrap; 
  align-items: center;
  overflow: hidden;
  background-color: #FFFFFF;
  padding: 4px;
  border-radius: 35px; 
}

.classin-going-wrapper div {
  display: flex;
  align-items: center;
}

.classin-going-wrapper input[type="radio"] {
  display: none;
}

.classin-going-wrapper label {
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 24px;
  background-color: #fff;
  transition: background-color 0.3s ease;
  white-space: nowrap;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -1%;
  font-weight: 600;
  color: #53ACFF;
  margin: 0 4px;
}

.classin-going-wrapper label:hover {
  background-color: #E3F3FF;
  color: #1a91ff;
}

.classin-going-wrapper input[type="radio"]:checked + label {
  background-color: #0043A7;
  color: #fff;
}

.classin-going-wrapper .tab {
  display: none;
}
/* 
.classin-going-wrapper::-webkit-scrollbar {
  height: 5px;
}

.classin-going-wrapper::-webkit-scrollbar-thumb {
  background-color: #0043A7;
  border-radius: 10px;
}

.classin-going-wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.classin-going-wrapper::-webkit-scrollbar-thumb:hover {
  background-color: #0043A7;
} */

.classin-going-item .classin-going-item__thumbnail {
  background: linear-gradient(
    180deg,
    #d9d9d9 0%,
    rgba(226, 221, 221, 0.507) 42.4%,
    rgba(211, 211, 211, 0.2) 100%
  );
}

.classin-going-item .classin-going-item__icon-user {
  background: url("../../assets/image/iconUser.png");
  background-size: 30px 30px;
  min-width: 30px;
  width: 30px;
  height: 30px;
}

.classin-going-item .classin-going-item__icon-graduation {
  background: url("../../assets/image/iconGraduation.png");
  background-size: 30px 30px;
  min-width: 30px;
  width: 30px;
  height: 30px;
}

.classin-going-item .classin-going-item__icon-dollar {
  background: url("../../assets/image/iconDollar.png");
  background-size: 30px 30px;
  min-width: 30px;
  width: 30px;
  height: 30px;
}

.classin-going-item:hover {
  background: #1a91ff;
}

.classin-going-item:hover .classin-going-item__thumbnail {
  background: #002f8a;
  border-color: #0043a7;
}

.classin-going-item:hover .classin-going-item__thumbnail p {
  color: #53acff;
}

.classin-going-item:hover .classin-going-item__thumbnail h3 {
  color: #ffffff;
}

.classin-going-item:hover .classin-going-item__icon-user {
  background: url("../../assets/image/iconUserWhite.png");
  background-size: 30px 30px;
}

.classin-going-item:hover .classin-going-item__icon-graduation {
  background: url("../../assets/image/iconGraduationWhite.png");
  background-size: 30px 30px;
}

.classin-going-item:hover .classin-going-item__icon-dollar {
  background: url("../../assets/image/iconDollarWhite.png");
  background-size: 30px 30px;
}

.classin-going-item:hover .classin-going-item__info {
  color: #ffffff;
}

.classin-going-item:hover .classin-going-item__join-button {
  background: #ffffff;
  color: #00237c;
}

.classin-going-item-incomming:hover .classin-going-item__timeline p {
  background: #e4e7ec;
}

#am-next:not(.disabled):hover > div,
#am-next-mobile:not(.disabled):hover > div,
#am-next-workshop:not(.disabled):hover > div,
#am-next-workshop-mobile:not(.disabled):hover > div,
#am-next-review:not(.disabled):hover > div,
#am-next-review-mobile:not(.disabled):hover > div {
  background: url("../../assets/image/angle-right-white.png") !important;
  background-size: 9px 16px;
}

#am-prev.disabled:hover,
#am-prev-mobile.disabled:hover,
#am-prev-workshop.disabled:hover,
#am-prev-workshop-mobile.disabled:hover,
#am-prev-review.disabled:hover,
#am-prev-review-mobile.disabled:hover {
  background-color: transparent !important;
}

#am-next.disabled:hover,
#am-next-mobile.disabled:hover,
#am-next-workshop.disabled:hover,
#am-next-workshop-mobile.disabled:hover,
#am-next-review.disabled:hover,
#am-next-review-mobile.disabled:hover {
  background-color: transparent !important;
}

#am-prev.disabled,
#am-prev-mobile.disabled,
#am-prev-workshop.disabled,
#am-prev-workshop-mobile.disabled,
#am-prev-review.disabled,
#am-prev-review-mobile.disabled {
  cursor: not-allowed;
}

#am-next.disabled,
#am-next-mobile.disabled,
#am-next-workshop.disabled,
#am-next-workshop-mobile.disabled,
#am-next-review.disabled,
#am-next-review-mobile.disabled {
  cursor: not-allowed;
}

#am-prev:not(.disabled):hover > div,
#am-prev-mobile:not(.disabled):hover > div,
#am-prev-workshop:not(.disabled):hover > div,
#am-prev-workshop-mobile:not(.disabled):hover > div,
#am-prev-review:not(.disabled):hover > div,
#am-prev-review-mobile:not(.disabled):hover > div {
  background: url("../../assets/image/angle-left-white.png") !important;
  background-size: 9px 16px;
}

#carousel-custom-dots li.owl-dot button {
  opacity: 0.5;
}

#carousel-custom-dots li.owl-dot.active button {
  opacity: 1;
}

.owl-carousel .owl-nav {
  display: none;
}

/* Input Checked */
.container-checked {
  width: 20px !important;
  display: block;
  position: relative;
  cursor: pointer;
}

.container-checked input {
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  border: 2px solid #e4e7ec;
  border-radius: 8px;
}

.container-checked:hover input ~ .checkmark {
  background-color: #ccc;
}

.container-checked input:checked ~ .checkmark {
  background-color: #0043a7;
}

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

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

.container-checked .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* Scroll */
.scroll-wrap {
  position: fixed;
  right: 20px;
  bottom: 50px;
  transform: translateY(0);
  height: 60px;
  width: 60px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 200ms linear;
}

.scroll-wrap.active-scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-wrap::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 30px;
  width: 30px;
  background-image: url("../../assets/image/iconScroll.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 200ms linear;
}

.scroll-wrap:hover::after {
  opacity: 1;
}

.scroll-wrap::before {
  position: absolute;
  content: "";
  opacity: 1;
  background-image: url("../../assets/image/iconScroll.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 30px;
  width: 30px;
  cursor: pointer;
  display: block;
  z-index: 2;
  transition: all 200ms linear;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.scroll-wrap:hover::before {
  opacity: 1;
}

.scroll-wrap svg path {
  fill: none;
}

.scroll-wrap svg.scroll-circle path {
  stroke: #1a91ff;
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear;
}

#class-workshop-button.active > div:first-child {
  transform: rotate(180deg);
}

#class-workshop-level-button.active > div:first-child {
  transform: rotate(180deg);
}

.code-authen{
  max-width: calc(100% -123px);
  min-width: 0;
}

.custom-detail h3{
  font-family: Manrope;
  font-size: 18px;
  color:  #344054;
  line-height: 28px;
  font-weight: 600;
}

.custom-detail p{
  font-family: Manrope;
  font-size: 18px;
  color:  #344054;
  line-height: 28px;
  font-weight: 600;
}

.custom-detail-mobile h3{
  font-family: Manrope;
  font-size: 16px;
  color:  #344054;
  line-height: 24px;
  font-weight: 600;
  text-align: justify;
}

.custom-detail-mobile p{
  font-family: Manrope;
  font-size: 16px;
  color:  #344054;
  line-height: 24px;
  font-weight: 600;
  text-align: justify;
}

.review-content p {
  font-family: Manrope;
  font-size: 18px;
  color: #344054;
  line-height: 28px;
  font-weight: 500;
}

@media only screen and (max-width: 1280px){
  .review-content p {
    font-family: Manrope;
    font-size: 14px;
    color: #344054;
    line-height: 22px;
    font-weight: 500;
  }
}

.custom-scrollbar::-webkit-scrollbar {
  width: 5px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 1);
  border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: rgb(15, 52, 126);
  border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: rgb(19, 63, 151);
}