@import url("../../fonts/quicksand.css");
@import url("https://fonts.googleapis.com/css2?family=Inria+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");
@import url("../../fonts/quicksand.css");
@import url("https://fonts.googleapis.com/css2?family=Inria+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");
main.content {
  padding-top: 4.5rem;
  font-family: "Quicksand", sans-serif;
}
main.content .head {
  background-image: linear-gradient(45deg, #008cff, #004581);
  width: 100%;
  margin-bottom: 5rem;
}
main.content .head .row {
  display: flex;
  flex-direction: row;
  padding-top: 3rem;
  padding-bottom: 2rem;
}
main.content .head .row .left {
  display: flex;
  width: 50%;
  justify-content: center;
}
main.content .head .row .left .thumbnail {
  width: 70%;
}
main.content .head .row .left .thumbnail img {
  border: 2px solid rgba(255, 255, 255, 0.613);
  width: 100%;
}
main.content .head .row .right {
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
}
main.content .head .row .right .title {
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 2.3rem;
}
main.content .head .row .right .tab {
  font-size: 16px;
  font-weight: 500;
  display: flex;
}
main.content .head .row .right .tab span {
  margin-right: 1.5rem;
  display: flex;
  flex-direction: row;
}
main.content .head .row .right .tab span svg,
main.content .head .row .right .tab span img {
  margin-right: 0.4rem;
}
main.content .head .row .right .tab span img {
  width: 18px;
}
main.content .head .row .right .tab span.rating {
  color: yellow;
  font-weight: bold;
}
main.content .head .row .right .tab span.rating .grade {
  margin-left: 0.2rem;
  font-size: 13px;
  color: white;
  font-weight: 600;
}
main.content .head .row .right .tab span.rating svg {
  color: yellow;
}
main.content .head .row .right .enrolled-notification {
  margin-top: 2rem;
  font-size: 18px;
  font-weight: 500;
}
main.content .head .row .right .product-pricing {
  margin-top: 2rem;
}
main.content .head .row .right .product-pricing .sale-price {
  font-size: 25px;
  font-weight: bold;
}
main.content .head .row .right .product-pricing .regular-price {
  font-size: 18px;
  text-decoration: line-through;
  color: rgb(190, 190, 190);
}
main.content .head .row .right .product-free {
  margin-top: 2rem;
}
main.content .head .row .right .product-free .free-price {
  font-size: 25px;
  font-weight: bold;
}
main.content .head .row .right .button {
  border: 2px solid white;
  font-size: 20px;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 2.5rem;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: 0.2s;
}
main.content .head .row .right .button:hover {
  scale: 1.1;
}
main.content .head .row .right .button:active {
  scale: 1.03;
}
main.content .head .row .right .button svg {
  margin-right: 1rem;
}
main.content .head .nav {
  box-shadow: 1px 1px 5px 2px rgba(0, 0, 0, 0.5);
  background-color: white;
  width: 90%;
  padding: 1.3rem 0.5rem;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  top: 2rem;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  border-radius: 5px;
}
main.content .head .nav span {
  color: #008cff;
  font-weight: bold;
  font-size: 20px;
  cursor: pointer;
  transition: 0.2s;
}
main.content .head .nav span.active {
  border: 2px solid #008cff;
  padding: 0.8rem 2rem;
  border-radius: 3px;
}
main.content .head .nav span:hover {
  scale: 1.1;
}
main.content .head .nav span:active {
  scale: 1;
}
main.content .head .nav span.disabled {
  color: #999 !important;
  position: relative;
  cursor: not-allowed;
}
main.content .head .nav span.disabled:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 12px;
  line-height: 18px;
  width: -moz-max-content;
  width: max-content;
  max-width: 300px;
  word-wrap: break-word;
  white-space: normal;
  text-align: center;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
@media (max-width: 768px) {
  main.content .head .nav span.disabled:hover::after {
    display: none;
  }
}
main.content .head .nav span.disabled:hover::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.9);
}
@media (max-width: 768px) {
  main.content .head .nav span.disabled:hover::before {
    display: none;
  }
}
main.content .head .nav span.disabled svg {
  margin-left: 5px;
  fill: #999;
}
main.content .head .nav span.disabled:hover {
  transform: none;
}
main.content .container {
  background-color: white;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  box-sizing: border-box;
  margin-bottom: 4rem;
  color: rgb(51, 51, 51);
  align-items: center;
}
main.content .container .title {
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.5rem;
}
main.content .container main {
  padding-bottom: 2rem;
}
main.content .container .next {
  background-color: #008cff;
  color: white;
  display: flex;
  width: 10rem;
  height: 3rem;
  font-size: 25px;
  font-weight: 500;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.1s;
  -webkit-user-select: none; /* Untuk Chrome, Safari, dan Opera */
  -moz-user-select: none; /* Untuk Firefox */ /* Untuk Internet Explorer/Edge */
  user-select: none; /* Properti standar */
  margin-top: 2rem;
}
main.content .container .next:hover {
  scale: 1.1;
}
main.content .container .next:active {
  scale: 1;
}

@media screen and (max-width: 900px) {
  main.content .head .row {
    flex-direction: column;
    align-items: center;
  }
  main.content .head .row .left,
  main.content .head .row .right {
    width: 90%;
    align-items: center;
  }
  main.content .head .row .right .title {
    font-size: 30px;
    margin: 1.7rem 0;
  }
  main.content .head .row .right .button {
    border: 1.8px solid white;
    font-size: 16px;
    padding: 0.6rem 1.3rem;
  }
  main.content .head .row .right .button svg {
    width: 1.5rem;
    height: 1.5rem;
  }
  main.content .head .nav {
    width: 90%;
    top: 2rem;
    flex-wrap: wrap;
    padding: 0.8rem 0.5rem;
  }
  main.content .head .nav span {
    font-size: 16px;
    margin: 0.5rem 0.5rem;
  }
  main.content .head .nav span.active {
    padding: 0.5rem 1.5rem;
  }
}
@media screen and (max-width: 576px) {
  main.content .head .row .right .title {
    font-size: 20px;
    margin: 1.5rem 0;
  }
  main.content .head .row .right .tab {
    font-size: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }
  main.content .head .row .right .tab span {
    margin: 0.5rem;
  }
  main.content .head .row .right .button {
    border: 1px solid white;
    font-size: 12px;
    padding: 0.5rem 1rem;
  }
  main.content .head .row .right .button svg {
    width: 1rem;
    height: 1rem;
  }
  main.content .head .nav {
    width: 95%;
    top: 2rem;
  }
  main.content .head .nav span {
    font-size: 14px;
    margin: 0.5rem;
  }
  main.content .head .nav span.active {
    padding: 0.4rem 1rem;
  }
}/*# sourceMappingURL=course-welcome.css.map */