/*! THIS IS AUTO GENERATED, DO NOT EDIT */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
.js-fxm-custom-modal .modal-dialog .modal-content {
  border-radius: 0;
  box-shadow: none;
  border: none;
}
.js-fxm-custom-modal .modal-dialog .modal-content .modal-header {
  border-bottom: none;
  height: 40px;
}
.js-fxm-custom-modal .modal-dialog .modal-content .modal-header .close {
  font-size: 36px;
  opacity: 0.5;
}
@media (min-width: 768px) {
  .js-fxm-custom-modal.modal-large .modal-dialog {
    width: 675px;
  }
  .js-fxm-custom-modal.modal-medium .modal-dialog {
    width: 480px;
  }
  .js-fxm-custom-modal.modal-small .modal-dialog {
    width: 340px;
  }
}
@media (min-width: 992px) {
  .js-fxm-custom-modal.modal-large .modal-dialog {
    width: 810px;
  }
  .js-fxm-custom-modal.modal-medium .modal-dialog {
    width: 540px;
  }
  .js-fxm-custom-modal.modal-small .modal-dialog {
    width: 360px;
  }
}
@media (min-width: 1200px) {
  .js-fxm-custom-modal.modal-large .modal-dialog {
    width: 900px;
  }
  .js-fxm-custom-modal.modal-medium .modal-dialog {
    width: 600px;
  }
  .js-fxm-custom-modal.modal-small .modal-dialog {
    width: 400px;
  }
}

.is-mobile,
.is-tablet,
.is-desktop {
  float: left;
}

@media only screen and (min-width: 992px) {
  .is-desktop {
    display: block;
  }
  .is-mobile,
  .is-tablet {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .is-tablet {
    display: block;
  }
  .is-mobile,
  .is-desktop {
    display: none;
  }
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
  .is-mobile {
    display: block;
  }
  .is-tablet,
  .is-desktop {
    display: none;
  }
}
/* quicksand-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 400;
  src: url("../../fonts/quicksand-v31-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* quicksand-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 700;
  src: url("../../fonts/quicksand-v31-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
.input-group input:-ms-input-placeholder {
  color: #fff; /* Change placeholder text color */
}
.input-group input::placeholder {
  color: #fff; /* Change placeholder text color */
}

@keyframes anim-basic-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
}

.app-box {
  background-image: url("../../../public/assets/images/bg.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
}

#front-page {
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

#front-page-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
}

.basic-loading {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.75);
  color: white;
  text-align: center;
  line-height: 24px;
  width: 100%;
  height: 100%;
  overflow: auto;
  min-height: 200px;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.basic-loading.basic-loading--opaque {
  background-color: #111;
}
.basic-loading.basic-loading--transparent {
  background-color: rgba(0, 0, 0, 0.75);
}
.basic-loading .bl__box {
  padding: 1rem;
}
.basic-loading .bl__ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.basic-loading .bl__ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #fff;
  border-radius: 50%;
  animation: anim-basic-loading 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}
.basic-loading .bl__ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.basic-loading .bl__ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.basic-loading .bl__ring div:nth-child(3) {
  animation-delay: -0.15s;
}

.basic-loading.basic-loading--red {
  background-color: rgba(255, 255, 255, 0.85);
}
.basic-loading.basic-loading--red .bl__ring div {
  border-color: #da291c transparent transparent transparent;
}
.basic-loading.basic-loading--red .bl__ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.basic-loading.basic-loading--red .bl__ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.basic-loading.basic-loading--red .bl__ring div:nth-child(3) {
  animation-delay: -0.15s;
}
.basic-loading.basic-loading--red .bl__text {
  color: #111;
}

.public-space-wrapper .basic-loading {
  z-index: 10001;
}

.public-space-message {
  width: 100%;
  height: 100svh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.public-space {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.public-space .ps__object-sdk {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.public-space .ps__object-embed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.public-space .ps__object-embed iframe {
  width: 100%;
  height: 100%;
}

.toc-ui {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.content img {
  max-width: 100%;
}
.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
  line-height: 1.3;
  margin-top: 3rem;
  margin-bottom: 1rem;
}
.content h1:first-child,
.content h2:first-child,
.content h3:first-child,
.content h4:first-child,
.content h5:first-child,
.content h6:first-child {
  margin-top: 0;
}
.content h1 + h2,
.content h2 + h3,
.content h3 + h4,
.content h4 + h5,
.content h5 + h6 {
  margin-top: -5px;
}
.content h1 + p,
.content h2 + p,
.content h3 + p,
.content h4 + p,
.content h5 + p,
.content h6 + p {
  margin-top: 0;
}
.content h1 {
  font-size: 32px;
}
.content h2 {
  font-size: 28px;
}
.content h3 {
  font-size: 24px;
}
.content h4 {
  font-size: 22px;
}
.content h5 {
  font-size: 20px;
}
.content h6 {
  font-size: 18px;
}
.content blockquote {
  font-style: italic;
  padding: 1rem 3rem;
  margin: 5px 0 25px 0;
  font-size: 125%;
  border-left: none;
}
.content p {
  font-weight: normal;
}
.content p:first-child {
  margin-top: 0;
}
.content p,
.content ol,
.content ul {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
.content ol ol,
.content ol ul,
.content ul ol,
.content ul ul {
  margin-bottom: 0.75rem;
  margin-top: 0;
}
.content ol li,
.content ul li {
  margin-bottom: 0.5rem;
}
.content p + ol,
.content p + ul {
  margin-top: -5px;
}
.content table {
  border: 1px solid #fff;
  border-collapse: collapse;
  color: inherit;
}
.content table.table-no-border {
  border: none;
}
.content table.table-no-border > thead > tr > th,
.content table.table-no-border > tbody > tr > th,
.content table.table-no-border > tfoot > tr > th,
.content table.table-no-border > thead > tr > td,
.content table.table-no-border > tbody > tr > td,
.content table.table-no-border > tfoot > tr > td {
  padding: 8px;
  vertical-align: top;
  border: none;
}
.content table.table-no-border > tr > th,
.content table.table-no-border > tr > td {
  border-bottom-width: 0;
}
.content table > thead > tr > th,
.content table > tbody > tr > th,
.content table > tfoot > tr > th,
.content table > thead > tr > td,
.content table > tbody > tr > td,
.content table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border: 1px solid #fff;
}
.content table > tr > th,
.content table > tr > td {
  border-bottom-width: 2px;
}
.content .iframe-article {
  margin: 2rem auto;
}
.content figure {
  display: block;
  margin: 2rem 0;
}
.content figure img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.content figure figcaption {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
}
@media only screen and (max-width: 767.98px) {
  .content p,
  .content ol,
  .content ul {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .content blockquote {
    padding: 1rem 2rem;
  }
}

.module-popup {
  background: rgba(0, 0, 0, 0.25);
}

#login {
  height: 100%;
}
#login .login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 64px;
  margin: 0;
}
#login .lc__left {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: relative;
  flex: 1;
}
#login .lc__right {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex: 1;
}
#login .slick-slider {
  width: 100%;
  max-width: 1000px;
}
#login .slick-slide {
  text-align: center;
  box-sizing: border-box;
}
#login .slick-dots {
  position: absolute;
  bottom: 0;
  margin-bottom: 50px;
  width: 100%;
  text-align: center;
  display: flex !important;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 5px;
}
#login .slick-dots li {
  transition: width 0.3s ease-in-out;
}
#login .slick-dots li button {
  transition: width 0.3s ease-in-out;
  font-size: 0;
  line-height: 0;
  display: block;
  width: 22px;
  height: 22px;
  padding: 5px;
  cursor: pointer;
  border: 0;
  border-radius: 62px;
  background-color: #fff;
}
#login .slick-dots li button::before {
  display: none;
}
#login .slick-dots li.slick-active {
  width: 62px;
}
#login .slick-dots li.slick-active button {
  background-color: #FFDA58;
  border-radius: 62px;
  opacity: 1;
  width: 62px;
}
#login .lc__left__item {
  position: relative;
}
#login .lc__left__item img {
  width: 100%;
  height: 100%;
}
#login .lc__left__item h2 {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  width: 80%;
  font-weight: normal;
  color: #fff;
}
#login .login__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
  width: 100%;
  max-width: 600px;
  padding: 0 22px;
}
#login .login__form .form__title {
  font-size: 32px;
  font-weight: bold;
  color: #000;
}
#login .login__form .form__title h1 {
  color: #4D7B11;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 60px */
  margin: 0;
}
#login .login__form .form__title p {
  color: #444;
  text-align: center;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 45px */
  letter-spacing: 0.6px;
  margin: 0;
}
#login .login__form .registered__info {
  background-color: #D9D9D9;
  color: #444444;
  padding: 30px;
  margin-top: 30px;
  border-radius: 20px;
  text-align: center;
}
#login .login__form .registered__info .ri__login a {
  color: #4D7B11;
  text-decoration: none;
}
#login .login__form .form__input {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
}
#login .login__form .form__input .fi--id, #login .login__form .form__input .fi--email, #login .login__form .form__input .fi--code, #login .login__form .form__input .fi--password {
  width: 100%;
}
#login .login__form .form__input .fi--id input, #login .login__form .form__input .fi--email input, #login .login__form .form__input .fi--code input, #login .login__form .form__input .fi--password input {
  width: 100%;
  height: 50px;
  padding: 36px 24px;
  font-size: 22px;
  border-radius: 50px;
  border: 2px solid #C8E6C3;
  outline: none;
  transition: border 0.3s ease-in-out;
}
#login .login__form .form__input .fi--id input:focus, #login .login__form .form__input .fi--email input:focus, #login .login__form .form__input .fi--code input:focus, #login .login__form .form__input .fi--password input:focus {
  border-color: #4D7B11;
}
#login .login__form .form__input .fi--password {
  position: relative;
}
#login .login__form .form__input .fi--password .fi__eye {
  position: absolute;
  right: 24px;
  color: #4D7B11;
  font-size: 24px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
#login .login__form .form__input .fi__config {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
  margin: 10px 0;
  width: 100%;
}
#login .login__form .form__input .fic__rememberMe {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#login .login__form .form__input .ficrm__label {
  font-size: 16px;
  color: #444;
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
}
#login .login__form .form__input .fic__rememberMe input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  border: 2px solid #fff;
}
#login .login__form .form__input .ficrm__checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 20%;
  border: 2px solid #fff;
}
#login .login__form .form__input .fic__rememberMe:hover .ficrm__checkmark {
  background-color: #efe;
}
#login .login__form .form__input .fic__rememberMe input:checked + .ficrm__checkmark {
  background-color: #4D7B11;
  border: 2px solid #4D7B11;
}
#login .login__form .form__input .fic__rememberMe input:focus + .ficrm__checkmark {
  border: 2px solid #4D7B11;
  box-shadow: 0px 0px 2px rgba(58, 88, 25, 0.3098039216);
}
#login .login__form .form__input .ficrm__checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
#login .login__form .form__input .fic__rememberMe input:checked + .ficrm__checkmark:after {
  display: block;
}
#login .login__form .form__input .ficrm__checkmark:after {
  left: 0px;
  right: 0px;
  margin: 0 auto;
  top: 4px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
#login .login__form .form__input .fic__forgot {
  text-align: right;
}
#login .login__form .form__input .fic__forgot a {
  font-size: 16px;
  color: #4D7B11;
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
}
#login .login__form .form__input .fi--info {
  text-align: center;
  color: #444;
}
#login .login__form .form__submit {
  width: 100%;
}
#login .login__form .form__submit button {
  width: 100%;
  height: 74px;
  margin-bottom: 24px;
  font-size: 24px;
  color: #fff;
  background-color: #4D7B11;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}
#login .login__form .form__submit button:hover {
  background-color: #6EBD1A;
}
#login .login__form .form__submit button:disabled {
  background-color: #4D7B11;
}
#login .login__form .form__submit .fs__signup {
  font-size: 16px;
  color: #444;
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
}
#login .login__form .form__submit .fs__signup a {
  color: #4D7B11;
  text-decoration: none;
}
#login .login__form .form__divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0;
}
#login .login__form .form__divider::before, #login .login__form .form__divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #4D7B11;
}
#login .login__form .form__divider::before {
  margin-right: 10px;
}
#login .login__form .form__divider::after {
  margin-left: 10px;
}
#login .login__form .form__divider span {
  padding: 0 10px;
  font-weight: bold;
}
#login .login__form .form__social {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
#login .login__form .form__social button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 74px;
  width: 100%;
  border: 2px solid #C8E6C3;
  border-radius: 50px;
  cursor: pointer;
}

.form__alert {
  position: absolute;
  top: 20px;
  padding: 10px 20px;
  gap: 20px;
  width: 560px;
  border-radius: 10px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form__alert p {
  margin-bottom: 0 !important;
  font-size: 18px !important;
  text-align: center;
}
.form__alert--success {
  background-color: #DDF0C4 !important;
  color: #4D7B11 !important;
}
.form__alert--error {
  background-color: #F0C4C4 !important;
  color: #854242 !important;
}
.form__alert i {
  margin-left: auto;
  cursor: pointer;
}

#avatar {
  background-image: url("/assets/images/avatar-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  padding: 108px 94px;
  overflow: hidden;
}
#avatar .avatar__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}
#avatar .avatar__header .ah__title {
  color: #4D7B11;
}
#avatar .avatar__header .ah__title div {
  font-size: 30px;
  font-weight: medium;
}
#avatar .avatar__header .ah__title h1 {
  font-size: 65px;
  font-weight: bold;
}
#avatar .avatar__header .ah__action button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 24px;
  border-radius: 50px;
  background-color: #90DF28;
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 40px;
  padding: 16px;
  width: 176px;
}
#avatar .avatar__header .ah__action button:hover {
  background-color: #6EBD1A;
}
#avatar .avatar__container .ac__avatar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
#avatar .avatar__container .ac__avatar .aca__item {
  background-image: url("/assets/images/avatar-bg-active.png");
  background-size: contain;
  background-position: top;
  background-repeat: no-repeat;
  transition: all 0.3s ease-in-out;
}
#avatar .avatar__container .ac__avatar .aca__item:not(.selected) {
  background-image: url("/assets/images/avatar-bg-inactive.png");
  filter: grayscale(100%);
}

.confirmation__modal .cm__container {
  border-radius: 48px;
  background-color: #fff;
  width: 770px;
  padding: 35px 60px;
}
.confirmation__modal .cm__title {
  text-align: center;
}
.confirmation__modal .cm__title h1 {
  font-size: 40px;
  font-weight: bold;
  color: #4D7B11;
}
.confirmation__modal .cm__title p {
  font-size: 30px;
  font-weight: normal;
  color: #444444;
  width: 65%;
  margin: 0 auto;
}
.confirmation__modal .cm__action {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}
.confirmation__modal .cm__action button {
  border-radius: 50px;
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 40px;
  height: 74px;
  width: 100%;
}
.confirmation__modal .cm__action button.cma--cancel {
  background-color: #DF2828;
}
.confirmation__modal .cm__action button.cma--cancel:hover {
  background-color: #DF2828;
}
.confirmation__modal .cm__action button.cma--confirm {
  background-color: #90DF28;
}
.confirmation__modal .cm__action button.cma--confirm:hover {
  background-color: #90DF28;
}

.name__modal .nm__container {
  position: relative;
  padding: 32px;
  width: 590px;
  border-radius: 48px;
  background-color: #fff;
}
.name__modal .nm__title {
  text-align: center;
}
.name__modal .nm__title h1 {
  font-size: 40px;
  font-weight: bold;
  color: #4D7B11;
}
.name__modal .nm__input p {
  font-size: 18px;
  color: #9A9A9A;
  margin: 0;
  text-align: end;
  margin-right: 22px;
}
.name__modal .nm__input input {
  width: 100%;
  border: 2px solid #C8E6C3;
  border-radius: 50px;
  font-size: 22px;
  padding: 16px 24px;
  outline: none;
  transition: border 0.3s ease-in-out;
  margin-bottom: 10px;
}
.name__modal .nm__input input:focus {
  border-color: #4D7B11;
}
.name__modal .nm__input input.error {
  border-color: #E43C3C;
}
.name__modal .nm__input .error-message {
  font-size: 18px;
  color: #E43C3C;
  text-align: start;
  margin-left: 10px;
}
.name__modal .nm__input ul {
  margin-top: 10px;
  color: #9A9A9A;
}
.name__modal .nm__action button {
  border-radius: 50px;
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 25px;
  height: 74px;
  width: 100%;
  background-color: #4D7B11;
}
.name__modal .nm__close {
  position: absolute;
  top: -92px;
  right: 0;
  cursor: pointer;
  border: none;
  background-color: white;
  border-radius: 50%;
  width: 67px;
  height: 67px;
  font-size: 20px;
}

.box-modal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box-modal.centered .box-modal__content {
  align-self: center;
}

.box-modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.box-modal__content {
  position: relative;
  z-index: 1060;
}

#lobby {
  /* Add this CSS to your styles */
}
#lobby .lobby__profile {
  position: absolute;
  top: 32px;
  left: 56px;
  z-index: 1;
  background-color: white;
  display: flex;
  align-items: flex-end;
  border-radius: 100px;
  height: 85.15px;
  width: 448px;
}
#lobby .lp__info {
  height: 85.15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 14px;
  width: 100%;
}
#lobby .lpi__name {
  font-size: 30px;
  font-weight: 700;
  color: #333333;
  margin: 0;
  margin-bottom: -16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 250px;
}
#lobby .lpi__level {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 95%;
  flex: 1;
}
#lobby .lpil__text {
  color: #333;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  white-space: nowrap;
}
#lobby .lpil__progress-bar {
  width: 100%;
  background-color: #0A0E4F;
  border-radius: 50px;
  position: relative;
  height: 14px;
}
#lobby .lpilp__bar {
  height: 14px;
  border-radius: 50px;
  background-color: #F2A000;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  transition: width 0.3s ease;
}
#lobby .lpilp__icon {
  position: absolute;
  right: -14px;
  top: -12px;
}
#lobby .lpil__number {
  position: relative;
  margin-left: -26px;
  margin-top: -8px;
}
#lobby .lpil__number div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}
#lobby .custom-joystick {
  position: absolute;
  width: 300px;
  height: 300px;
  bottom: 5%;
  right: 5%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#lobby .custom-joystick .arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}
#lobby .custom-joystick .arrow.up {
  border-width: 0 15px 20px 15px;
  border-color: transparent transparent white transparent;
  top: 10px;
  opacity: 0.5;
}
#lobby .custom-joystick .arrow.right {
  border-width: 15px 20px 15px 0;
  border-color: transparent white transparent transparent;
  left: 10px;
  opacity: 0.5;
}
#lobby .custom-joystick .arrow.down {
  border-width: 20px 15px 0 15px;
  border-color: white transparent transparent transparent;
  bottom: 10px;
  opacity: 0.5;
}
#lobby .custom-joystick .arrow.left {
  border-width: 15px 0 15px 20px;
  border-color: transparent transparent transparent white;
  right: 10px;
  opacity: 0.5;
}
#lobby .nipple .front {
  background-color: #FFDA58 !important;
  opacity: 1 !important;
}

.lobby__navigation {
  position: absolute;
  top: 35px;
  right: 56px;
  z-index: 1;
  background-color: #4D7B11;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 32px;
  border-radius: 100px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.04), 0px 8px 16px 0px rgba(0, 0, 0, 0.08);
}
.lobby__navigation .ln__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 8px 16px;
  border-radius: 100px;
  cursor: pointer;
  color: #4D7B11;
  font-size: 20px;
  font-weight: 700;
}
.lobby__navigation .ln__item button {
  border: none;
  background-color: transparent;
  color: #4D7B11;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
}
.lobby__navigation .ln__item .new__map {
  background-color: #DDF0C4;
  color: #41690D;
  padding: 2px 5px;
  border-radius: 20px;
  margin-left: 10px;
}
.lobby__navigation .ln__item:hover {
  background-color: #F2A000;
}

.talking-modal .tm__avatar {
  position: absolute;
  bottom: 0;
  left: 74px;
  z-index: 2;
}
.talking-modal .tm__container {
  position: absolute;
  bottom: 75px;
  left: 269px;
  background-color: #fff;
  z-index: 1;
  width: 1593px;
  height: 287px;
  border-radius: 52px;
  padding: 32px 32px 32px 340px;
}
.talking-modal .tmc__name {
  background-color: #4D7B11;
  padding: 16px 32px;
  border-radius: 16px;
  position: absolute;
  top: -30px;
  left: 339px;
}
.talking-modal .tmc__name h1 {
  margin: 0;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
}
.talking-modal .tmc__message {
  padding-top: 16px;
  padding-right: 36px;
  font-size: 24px;
  font-weight: 400;
  line-height: 42px;
  color: #375114;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.talking-modal .tmc__action {
  position: absolute;
  bottom: 32px;
  right: 32px;
  background-color: #4D7B11;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
}
.talking-modal .tmc__action img {
  width: 22px;
  height: 22px;
}

.tutorial-modal .tm__container {
  width: 1265px;
  border-radius: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}
.tutorial-modal .tm__top {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  padding-top: 50px;
  width: 100%;
}
.tutorial-modal .tmt__title {
  margin-bottom: 20px;
}
.tutorial-modal .tmt__title h1 {
  margin: 0;
  color: #4D7B11;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 60px */
}
.tutorial-modal .tmt__image img {
  width: 100%;
}
.tutorial-modal .tmt__page {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 36px 0;
}
.tutorial-modal .tmt__page div {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #D9D9D9;
}
.tutorial-modal .tmt__page div.tmtp--active {
  background-color: #4D7B11;
}
.tutorial-modal .tm__bottom {
  background-color: #F4F4F4;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 50px 100px;
  margin-top: -1px;
  width: 100%;
}
.tutorial-modal .tm__bottom .tmb__description p {
  font-size: 24px;
  font-weight: 400;
  line-height: 42px;
  text-align: center;
  color: #444;
}
.tutorial-modal .tm__bottom .tmb__button {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
}
.tutorial-modal .tm__bottom .tmb__button button {
  background-color: #4D7B11;
  border-radius: 50px;
  color: #fff;
  cursor: pointer;
  font-size: 24px;
  font-weight: 500;
  padding: 16px 0;
  width: 100%;
  margin-top: 20px;
  border: none;
}
.tutorial-modal .tm__bottom .tmb__button button:hover {
  background-color: #F2A000;
}

.leaderboard__modal .lm__container {
  width: 1777px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  gap: 22px;
  background-color: #F4F4F4;
  padding: 64px;
}
.leaderboard__modal .lmc__left {
  width: 40%;
}
.leaderboard__modal .lmcl__title h1 {
  margin: 0;
  color: #4D7B11;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 60px */
}
.leaderboard__modal .lmcl__content {
  width: 100%;
  height: 617px;
  position: relative;
  background-color: #fff;
  border-radius: 26px;
  margin-top: 32px;
}
.leaderboard__modal .lmclc__podium {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
}
.leaderboard__modal .lmclcp__content {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 24px;
}
.leaderboard__modal .lmclcp__content .lmclcpc__details {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}
.leaderboard__modal .lmclcp__content .lmclcpc__details div {
  color: #444;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 21.186px; /* 88.275% */
}
.leaderboard__modal .lmclcp__content .lmclcpc__details h2 {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 21.186px; /* 66.206% */
  margin: 0;
}
.leaderboard__modal .lmclcp__content .lmclcpc__details span {
  color: #444;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 19.915px;
}
.leaderboard__modal .lmclcp__2 {
  top: 104px;
  left: 50px;
}
.leaderboard__modal .lmclcp__2 .lmclcpc__details h2 {
  color: #1D9AC7;
}
.leaderboard__modal .lmclcp__1 {
  top: 30px;
  left: 230px;
}
.leaderboard__modal .lmclcp__1 .lmclcpc__details h2 {
  color: #FFDA58;
}
.leaderboard__modal .lmclcp__3 {
  top: 144px;
  right: 50px;
}
.leaderboard__modal .lmclcp__3 .lmclcpc__details h2 {
  color: #D44747;
}
.leaderboard__modal .lmc__right {
  width: 60%;
}
.leaderboard__modal .lmcr__header {
  display: flex;
  justify-content: space-between;
}
.leaderboard__modal .lmcrh__tab {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.leaderboard__modal .lmcrh__tab button {
  border: none;
  background-color: white;
  color: #4D7B11;
  border-radius: 100px;
  padding: 16px;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  width: 271px;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.15);
}
.leaderboard__modal .lmcrh__tab button.lmcrht--active {
  background-color: #4D7B11;
  color: white;
}
.leaderboard__modal .lmcrh__action {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.leaderboard__modal .lmcrh__action button {
  border: none;
  background-color: #fff;
  border-radius: 100px;
  padding: 16px;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  width: 67px;
}
.leaderboard__modal .lmcrh__action button:hover {
  background-color: #4D7B11;
  color: white;
}
.leaderboard__modal .lmcr__content {
  height: 617px;
  margin-top: 32px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-right: 42px;
}
.leaderboard__modal .lmcr__content::-webkit-scrollbar {
  width: 14px;
  border-radius: 8px;
}
.leaderboard__modal .lmcr__content::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 8px;
}
.leaderboard__modal .lmcr__content::-webkit-scrollbar-thumb {
  background: #4D7B11;
  border-radius: 8px;
}
.leaderboard__modal .lmcr__content::-webkit-scrollbar-thumb:hover {
  background: #6EBD1A;
}
.leaderboard__modal .lmcrc__item {
  border-radius: 26px;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  min-height: 82px;
}
.leaderboard__modal .lmcrci--header {
  color: #444;
  font-family: "DM Sans";
  font-size: 32.196px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.leaderboard__modal .lmcrci--header div:nth-child(3) {
  width: 300px;
}
.leaderboard__modal .lmcrcc__gainloss i {
  font-size: 24px;
}
.leaderboard__modal .lmcrcc__gainloss .lmcrccg--gain {
  color: #67B600;
}
.leaderboard__modal .lmcrcc__gainloss .lmcrccg--loss {
  color: #E43C3C;
}
.leaderboard__modal .lmcrcc__gainloss .lmcrccg--neutral {
  color: #4D5EFF;
}
.leaderboard__modal .lmcrcc__name {
  color: #444;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: 300px;
}
.leaderboard__modal .lmcrcc__rank {
  color: #444;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.leaderboard__modal .lmcrcc__level {
  color: #444;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.leaderboard__modal .lmcrcc__score {
  color: #444;
  text-align: right;
  font-family: "DM Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.achievement-modal .am__container {
  width: 1448px;
  height: 872px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  overflow: hidden;
  background-color: #F4F4F4;
  padding: 70px;
}
.achievement-modal .am__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.achievement-modal .am__header h1 {
  margin: 0;
  color: #4D7B11;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.4px;
}
.achievement-modal .am__header button {
  display: flex;
  width: 78px;
  height: 74px;
  justify-content: center;
  align-items: center;
  border-radius: 126.35px;
  border: 1.264px solid #4D7B11;
}
.achievement-modal .am__header button i {
  font-size: 20px;
  color: #444;
}
.achievement-modal .am__header button:hover {
  background-color: #4D7B11;
}
.achievement-modal .am__header button:hover i {
  color: white;
}
.achievement-modal .amc__content {
  display: inline-flex;
  height: 628px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  flex-shrink: 0;
  overflow: auto;
  padding-right: 36px;
  position: relative;
}
.achievement-modal .amc__content::-webkit-scrollbar {
  width: 14px;
  border-radius: 8px;
}
.achievement-modal .amc__content::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 8px;
}
.achievement-modal .amc__content::-webkit-scrollbar-thumb {
  background: #4D7B11;
  border-radius: 8px;
}
.achievement-modal .amc__content::-webkit-scrollbar-thumb:hover {
  background: #6EBD1A;
}
.achievement-modal .amcc__item {
  border-radius: 22.921px;
  border: 1px solid rgba(0, 0, 0, 0.6);
  background: #F4F4F4;
  padding: 24px 36px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.achievement-modal .amcci__details {
  display: flex;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.achievement-modal .amccid__description {
  flex: 1;
}
.achievement-modal .amccid__description h2 {
  margin: 0;
  color: #4D7B11;
  font-size: 24.449px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.244px;
}
.achievement-modal .amccid__description p {
  margin-bottom: 22px;
  color: #000;
  font-size: 18.337px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.183px;
}
.achievement-modal .amccidd__progress {
  width: 100%;
  background-color: #B1DD8E;
  border-radius: 12px;
  position: relative;
  height: 38px;
  position: relative;
}
.achievement-modal .amcciddp__bar {
  height: 38px;
  border-radius: 12px;
  background-color: #4D7B11;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  transition: width 0.3s ease;
}
.achievement-modal .amcciddpb__progress {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #000;
  text-align: center;
  font-size: 18.337px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.183px;
}
.achievement-modal .amcci__point {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
.achievement-modal .amcci__point span {
  color: #000;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.36px;
}
.achievement-modal .amcci__action {
  display: flex;
  width: 56px;
  height: 56.538px;
  padding: 12.55px 167.006px;
  justify-content: center;
  align-items: center;
  gap: 9.654px;
  flex-shrink: 0;
  border-radius: 96.535px;
  background: #4D7B11;
  color: #FFF;
  text-align: center;
  font-size: 19.101px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.382px;
  border: none;
}
.achievement-modal .amcci__action:hover {
  background-color: #6EBD1A;
}
.achievement-modal .amcc__overlay {
  position: absolute;
  bottom: 70px;
  left: 70px;
  width: calc(100% - 36px);
  width: 1260px;
  height: 100px;
  opacity: 0.1;
  background: linear-gradient(0deg, #000 0%, rgba(102, 102, 102, 0) 100%);
  pointer-events: none;
}

.hotspot-details__modal .hdm__container {
  width: 1298px;
  min-height: 715px;
  border-radius: 77px;
  display: flex;
  gap: 28px;
  background-color: #F4F4F4;
  padding: 30px;
  position: relative;
}
.hotspot-details__modal .hotspot-open-image {
  position: absolute;
  top: 135px;
  left: -135px;
}
.hotspot-details__modal .hdm__close {
  position: absolute;
  top: -92px;
  right: 0;
  cursor: pointer;
  border: none;
  background-color: white;
  border-radius: 50%;
  width: 67px;
  height: 67px;
  font-size: 20px;
}
.hotspot-details__modal .hdm__image img {
  border-radius: 47px;
}
.hotspot-details__modal .hdm__content {
  color: #375114;
  font-size: 20px;
}
.hotspot-details__modal .hdm__content .hdmc__title {
  margin: 0;
  color: #4D7B11;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 60px */
}
.hotspot-details__modal .hdm__content div h4 {
  margin-top: 40px;
  font-weight: bold;
}

.map__modal .mm__container {
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 1000;
  padding: 60px 90px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.map__modal .mmc__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 100px;
}
.map__modal .mmch__title {
  flex: 1;
  white-space: nowrap;
  color: #4D7B11;
}
.map__modal .mmch__title span {
  font-size: 30px;
}
.map__modal .mmch__title h1 {
  margin: 0;
  font-size: 65px;
  font-weight: 700;
}
.map__modal .mmch__description p {
  color: #375114;
  text-align: justify;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 42px; /* 175% */
}
.map__modal .mmcc__maps {
  display: flex;
  gap: 26px;
}
.map__modal .mmccm__map {
  flex: 1;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  overflow: hidden;
  border-radius: 19px;
  position: relative;
}
.map__modal .mmccm__map img {
  width: 100%;
  height: 623px;
  object-fit: cover;
  object-position: left;
  transition: all 0.3s ease-in-out;
}
.map__modal .mmccm__map img.grayscale {
  filter: grayscale(90%);
}
.map__modal .mmcm__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  pointer-events: none;
}
.map__modal .mmcm__overlay img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 110px;
  width: auto;
  z-index: 1;
}
.map__modal .mmccm__map.selected {
  flex: 2;
  filter: drop-shadow(0px 0px 25px rgba(51, 255, 98, 0.8));
}
.map__modal .mmccm__map.selected img {
  object-position: center;
}
.map__modal .coming-soon-box {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  padding: 15px 20px;
  border-radius: 12px;
  font-size: 26px;
  font-weight: bold;
  color: white;
  text-shadow: 1px 1px 2px black;
  margin: 20px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  text-align: center;
  width: calc(100% - 40px);
  z-index: 2;
}
.map__modal .mmc__action {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  margin-left: auto;
  width: 100%;
}
.map__modal .mmc__action button {
  margin-left: auto;
  display: flex;
  padding: 16.426px 118.586px;
  justify-content: center;
  align-items: center;
  gap: 12.635px;
  flex-shrink: 0;
  color: #FFF;
  text-align: center;
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.5px;
  border-radius: 126.35px;
  background: #4D7B11;
  border: none;
  white-space: nowrap;
}
.map__modal .mmc__action button:hover {
  background-color: #6EBD1A;
}
.map__modal .mmc__action button.mmca--locked {
  opacity: 0.5;
  cursor: not-allowed;
}

.score-modal .sm__container {
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 1000;
  padding: 84px 53px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 50px;
}
.score-modal .smcl__score {
  background-color: #4D7B11;
  border-radius: 50%;
  border: 8px solid #fff;
  outline: 8px solid #4D7B11;
  width: 300px;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 20px;
  color: #FFF;
  text-align: center;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.36px;
}
.score-modal .smcls__score h1 {
  color: #FFF;
  text-align: center;
  font-size: 90px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.9px;
}
.score-modal .smc__right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.score-modal .smcr__title h1 {
  color: #4D7B11;
  font-size: 60.477px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.605px;
}
.score-modal .smcr__stats {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 20px;
}
.score-modal .smcrs__stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #0D3D34;
}
.score-modal .smcrs__stat div:nth-child(1) {
  color: #4D7B11;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 117%; /* 37.44px */
  letter-spacing: 0.64px;
}
.score-modal .smcrs__stat div:nth-child(2) {
  color: #375114;
  text-align: right;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 117%; /* 37.44px */
  letter-spacing: 0.64px;
}
.score-modal .smcrp__container {
  width: 100%;
  border-radius: 12px;
  position: relative;
  height: 38px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.score-modal .smcrpc__progress {
  width: 100%;
  background-color: #B1DD8E;
  border-radius: 8px;
  position: relative;
  height: 30px;
}
.score-modal .smcrpcp__bar {
  height: 30px;
  border-radius: 8px;
  background-color: #375114;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  transition: width 0.3s ease;
}
.score-modal .smcrpc__text {
  color: #375114;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 117%; /* 28.08px */
}
.score-modal .smcr__action {
  display: flex;
  justify-content: space-between;
  max-width: 100%;
  gap: 18px;
}
.score-modal .smcr__action button {
  height: 74px;
  padding: 16.426px 40px;
  justify-content: center;
  align-items: center;
  gap: 12.635px;
  border-radius: 126.35px;
  background: #4D7B11;
  color: #FFF;
  text-align: center;
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.5px;
  border: none;
  white-space: nowrap;
}
.score-modal .smcr__action button:hover {
  background-color: #6EBD1A;
}
.score-modal .smcr__action button:first-child {
  background-color: transparent;
  color: black;
  width: 100%;
  border: 1px solid #4D7B11;
}
.score-modal .smcr__action button:first-child:hover {
  color: #fff;
  background-color: #4D7B11;
}
.score-modal .smcr__action button:last-child {
  background-color: #4D7B11;
  width: 100%;
}
.score-modal .smcr__action button:last-child:hover {
  background-color: #6EBD1A;
}

#module {
  padding: 64px;
  background: #F4F4F4;
  height: 100%;
  position: relative;
}
#module .module__title {
  font-style: normal;
  line-height: 111%;
  color: #4D7B11;
  width: 943px;
}
#module .module__title span {
  font-size: 30px;
  font-weight: 500;
}
#module .module__title h1 {
  font-size: 55px;
  font-weight: 700;
}
#module .module__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 64px;
}
#module .mc__details {
  display: flex;
  gap: 24px;
}
#module .mcd__list {
  flex: 1;
}
#module .mcd__list ol {
  list-style-type: none;
  counter-reset: item;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
#module .mcd__list ol li {
  display: flex;
  align-items: center;
  gap: 16px;
}
#module .mcd__list ol li span {
  font-size: 22px;
  padding-bottom: 8px;
  border-bottom: 1px solid #4D7B11;
  line-height: 111%;
}
#module .mcd__list ol li::before {
  counter-increment: item;
  content: counter(item);
  color: #4D7B11;
  font-size: 24px;
  font-weight: 700;
  margin-right: 16px;
  min-width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #4D7B11;
  border-radius: 50px;
}
#module .mcd__title {
  display: flex;
  margin-bottom: 24px;
}
#module .mcd__title h2 {
  padding: 8px 32px;
  border-radius: 50px;
  background: #ACACAC;
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
}
#module .module__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 64px;
  padding: 64px;
  gap: 128px;
}
#module .mf__progress {
  flex: 1;
}
#module .mfp__progress {
  width: 100%;
  background: #D9D9D9;
  position: relative;
  height: 12px;
}
#module .mfpp__bar {
  height: 12px;
  background: #84CA28;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  transition: width 0.3s ease;
}
#module .mfp__top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
#module .mfp__top span {
  color: #375114;
  font-size: 26px;
  font-weight: 400;
  line-height: 111%; /* 28.86px */
}
#module .mf__action a {
  display: flex;
  padding: 20px 56px;
  justify-content: center;
  align-items: center;
  gap: 12.635px;
  flex-shrink: 0;
  border-radius: 126.35px;
  background: #4D7B11;
  color: #FFF;
  text-align: center;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border: none;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
#module .mf__action a:hover {
  background-color: #3a5819;
}

#topic {
  padding: 64px;
  background: #F4F4F4;
  height: 100%;
  position: relative;
}
#topic .topic__header {
  display: flex;
  justify-content: space-between;
}
#topic .th__timer {
  position: absolute;
  top: 64px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  height: 73px;
  padding: 36px 30px;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  border-radius: 108.5px;
  background: #4D7B11;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.04), 0px 8px 16px 0px rgba(0, 0, 0, 0.08);
  color: #FFF;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
#topic .th__nav {
  background-color: #4D7B11;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 32px !important;
  padding: 0;
  border-radius: 100px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.04), 0px 8px 16px 0px rgba(0, 0, 0, 0.08);
  gap: 16px;
  height: 100%;
}
#topic .topic__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1175px;
  flex-shrink: 0;
  border-radius: 40px;
  background: #FFF;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.04), 0px 8px 16px 0px rgba(0, 0, 0, 0.08);
  max-height: 650px;
}
#topic .tc__header {
  padding: 64px 64px 32px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
#topic .tch__details {
  width: 50%;
}
#topic .tch__details span {
  color: #4D7B11;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 132%; /* 39.6px */
}
#topic .tch__details h1 {
  color: #4D7B11;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 132%;
}
#topic .tch__info {
  width: 25%;
  display: flex;
  align-items: center;
  gap: 34px;
}
#topic .tchi__icon {
  position: relative;
}
#topic .tchi__icon img {
  z-index: 1;
}
#topic .tchi__icon::before {
  content: "";
  width: 71.63px;
  height: 71.63px;
  display: block;
  background: #DDF6D9;
  z-index: -1;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  outline: 1px solid #DDF6D9;
  border: 10px solid #fff;
}
#topic .tchi__content span {
  color: #41690D;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
}
#topic .tchi__content h2 {
  color: #41690D;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 36px */
}
#topic .tc__body {
  padding: 32px 64px 64px 64px;
  display: flex;
  gap: 24px;
  height: 420px;
  overflow: auto;
  margin-bottom: 30px;
}
#topic .tcb__details {
  display: flex;
  gap: 24px;
  max-height: 280px;
  overflow: auto;
}
#topic .tcbd__list {
  flex: 1;
}
#topic .tcbd__list ol {
  list-style-type: none;
  counter-reset: item;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
#topic .tcbd__list ol li {
  display: flex;
  align-items: center;
  gap: 16px;
}
#topic .tcbd__list ol li span {
  font-size: 22px;
  padding-bottom: 8px;
  border-bottom: 1px solid #4D7B11;
  line-height: 111%;
}
#topic .tcbd__list ol li::before {
  counter-increment: item;
  content: counter(item);
  color: #4D7B11;
  font-size: 24px;
  font-weight: 700;
  margin-right: 16px;
  min-width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #4D7B11;
  border-radius: 50px;
}
#topic .tcbd__title {
  display: flex;
  margin-bottom: 24px;
}
#topic .tcbd__title h2 {
  padding: 8px 32px;
  border-radius: 50px;
  background: #ACACAC;
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
}
#topic .tc__footer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
#topic .tc__footer button {
  position: absolute;
  bottom: -165px;
  display: flex;
  padding: 20px 56px;
  justify-content: center;
  align-items: center;
  gap: 12.635px;
  flex-shrink: 0;
  border-radius: 126.35px;
  background: #4D7B11;
  color: #FFF;
  text-align: center;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
#topic .tc__footer button:hover {
  background-color: #3a5819;
}
#topic .topic__footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: absolute;
  gap: 32px;
  bottom: 0;
  left: 0;
  padding: 64px;
  width: 100%;
  background: #fff;
}
#topic .topic__footer button {
  display: flex;
  padding: 20px 56px;
  justify-content: center;
  align-items: center;
  gap: 12.635px;
  flex-shrink: 0;
  border-radius: 126.35px;
  background: #4D7B11;
  color: #FFF;
  text-align: center;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border: none;
  white-space: nowrap;
  height: 70px;
}
#topic .topic__footer button.submit {
  width: 360px;
}
#topic .topic__footer button:hover {
  background-color: #3a5819;
}
#topic .topic__footer.no-bg {
  padding-top: 0;
  background: none;
}

#topic-progress {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -26px;
  margin-left: -13px;
}
#topic-progress .tp__percent {
  background: #F4F4F4;
  border-radius: 50%;
  z-index: 1;
}
#topic-progress .tp__title {
  margin-left: -50px;
  padding: 16px 48px 16px 66px;
  background: #4D7B11;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  max-width: 400px;
  max-height: 75px;
}
#topic-progress .tp__title span {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
#topic-progress .tp__title h1 {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.congratulations-modal .cm__container {
  border-radius: 48px;
  background-color: #fff;
  width: 1167px;
  padding: 35px 60px;
  z-index: 1;
  margin-top: 20%;
}
.congratulations-modal .cm__avatar {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  z-index: -1;
}
.congratulations-modal .cmc__title {
  font-style: normal;
  line-height: normal;
  text-align: center;
}
.congratulations-modal .cmc__title h1 {
  color: #4D7B11;
  font-size: 60.477px;
  font-weight: 700;
  letter-spacing: 0.605px;
}
.congratulations-modal .cmc__title p {
  color: #375114;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.32px;
}
.congratulations-modal .cmc__content p {
  color: #375114;
  text-align: center;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 42px */
}
.congratulations-modal .cmc__actions {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}
.congratulations-modal .cmc__actions button {
  background-color: #4D7B11;
  border-radius: 50px;
  color: #fff;
  cursor: pointer;
  font-size: 24px;
  font-weight: 500;
  padding: 16px 32px;
  margin-top: 20px;
  border: none;
  width: 240px;
}
.congratulations-modal .cmc__actions button:hover {
  background-color: #F2A000;
}
.congratulations-modal .cmc__actions button.white {
  background-color: #fff;
  color: #4D7B11;
  border: 1px solid #4D7B11;
}

.option__button {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

.modal-content {
  border-radius: 20px;
  border: none;
  background-color: #F4F4F4;
}

.modal-header {
  background-color: #B9DDB4;
  color: #375114;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
  padding: 15px;
}
.modal-header .modal-title {
  font-size: large;
  font-weight: bold;
}

.modal-body {
  background-color: #F4F4F4;
  color: #375114;
  margin-bottom: 30px;
  font-size: medium;
}

.modal-footer {
  background-color: #F4F4F4;
  border: none;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
}
.modal-footer .btn.btn-mw {
  display: flex;
  padding: 5px 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 125px;
  text-align: center;
  white-space: nowrap;
  font-size: medium;
  border: 1px solid rgba(77, 123, 17, 0.5882352941);
}
.modal-footer .btn.btn-mw:hover {
  background-color: #3a5819;
}
.modal-footer .btn.btn-mw.btn-primary {
  background-color: #4D7B11;
  color: #FFF;
}
.modal-footer .btn.btn-mw.btn-outline-secondary {
  background-color: #fff;
  color: #4D7B11;
}

.hb__container {
  cursor: pointer;
  position: relative;
}

.hb__container img {
  object-fit: cover;
  object-position: center;
}

.hb__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 27, 27, 0.3);
  pointer-events: none;
}
.hb__overlay i {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  color: #fff;
  pointer-events: none;
  z-index: 1;
}
.hb__overlay::before {
  content: "";
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
}

.loading__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.lw__spinner {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
}

.lw__circle {
  width: 100px;
  height: 100px;
  border: 10px solid rgba(0, 0, 0, 0.1);
  border-top: 10px solid #B1DD8E;
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loading-text {
  margin-top: 20px;
  font-size: 1.9rem;
  color: #41690D;
}

#button-sign-up-google {
  transform: scale(1.5);
}

.v-desktop-large-inline {
  display: none;
}
.v-desktop-large-inline-inline {
  display: none;
}
@media only screen and (min-width: 1440px) {
  .v-desktop-large-inline {
    display: block !important;
  }
  .v-desktop-large-inline-inline {
    display: inline !important;
  }
}

.v-desktop {
  display: none;
}
.v-desktop-inline {
  display: none;
}
@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .v-desktop {
    display: block !important;
  }
  .v-desktop-inline {
    display: inline !important;
  }
}

.v-tablet {
  display: none;
}
.v-tablet-inline {
  display: none;
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) {
  .v-tablet {
    display: block !important;
  }
  .v-tablet-inline {
    display: inline !important;
  }
}

.v-tablet-portrait {
  display: none;
}
.v-tablet-portrait-inline {
  display: none;
}
@media only screen and (max-width: 991.98px) and (min-width: 768px) {
  .v-tablet-portrait {
    display: block !important;
  }
  .v-tablet-portrait-inline {
    display: inline !important;
  }
}

.v-mobile {
  display: none;
}
.v-mobile-inline {
  display: none;
}
@media only screen and (max-width: 767.98px) and (min-width: 480px) {
  .v-mobile {
    display: block !important;
  }
  .v-mobile-inline {
    display: inline !important;
  }
}

.v-mobile-portrait {
  display: none;
}
.v-mobile-portrait-inline {
  display: none;
}
@media only screen and (max-width: 479.98px) and (min-width: 320px) {
  .v-mobile-portrait {
    display: block !important;
  }
  .v-mobile-portrait-inline {
    display: inline !important;
  }
}

.viewport-state {
  position: fixed;
  top: 15px;
  right: 0;
  transform: translateX(78%);
  background: #000;
  color: #fff;
  padding: 7px 7px 7px 25px;
  font-size: 12px;
  opacity: 0.25;
  z-index: 1002;
  box-shadow: 0 0 3px #ff0;
  transition: all linear 0.15s;
}
.viewport-state:hover, .viewport-state.viewport-state--active {
  transform: translateX(0);
  opacity: 1;
}
.viewport-state input[type=checkbox] {
  position: absolute;
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%);
  left: 7px;
  width: auto;
}

.bg-1-game {
  position: relative;
  background-image: url("../images/BG_1.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: left top;
  height: 100vh;
  width: 100vw;
}

.text-blue-1 {
  color: #141975;
}

input:focus, input.form-control:focus {
  outline: none !important;
  outline-width: 0 !important;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}

.chat-ai button {
  border: none;
  border-radius: 50% !important;
  width: 40px;
  height: 40px;
  background-color: white;
  right: 10px;
  top: 4px;
  --bs-btn-color: #104E88;
  --bs-btn-hover-bg: #104E88;
  --bs-btn-active-bg: #104E88;
}

@media only screen and (max-width: 1199.98px) {
  body.modal-open {
    padding-right: 0 !important;
  }
}

.btn.btn-red {
  background-color: #da291c;
  border-color: transparent;
  color: #fff;
}
.btn.btn-red:hover {
  background-color: #f44336;
  border-color: transparent;
  color: #fff;
}
.btn.btn-red:active, .btn.btn-red:focus {
  background-color: #da291c;
  border-color: transparent;
  color: #fff;
}

.btn.btn-red-inverse {
  color: #fff;
  background-color: transparent;
  border-color: #da291c;
  color: #da291c;
}
.btn.btn-red-inverse:focus, .btn.btn-red-inverse:hover {
  background-color: #f44336;
  border-color: transparent;
  color: #fff;
}
.btn.btn-red-inverse:active {
  color: #fff;
  background-color: transparent;
  border-color: #da291c;
  color: #da291c;
}

.btn.btn-red-white {
  color: #fff;
  background-color: #fff;
  border-color: #da291c;
  color: #da291c;
}
.btn.btn-red-white:hover {
  background-color: #f44336;
  border-color: transparent;
  color: #fff;
}
.btn.btn-red-white:active {
  color: #fff;
  background-color: #fff;
  border-color: #da291c;
  color: #da291c;
}

.owl-carousel .owl-item {
  -webkit-backface-visibility: visible;
}
.owl-carousel .owl-item img {
  transform-style: flat;
}