#splash-dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #222;
  z-index: 999999;
  display: none;
}
#splash-dialog .splash-body {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#splash-dialog .splash-body .progress-bar {
  height: 1px;
  margin: 2px 0;
  background: #2187e7;
  position: absolute;
  box-shadow: 0px 0px 10px 1px rgba(0, 198, 255, 0.4);
}
#splash-dialog .splash-body .loading-progress {
  width: 73.6vw;
  animation: loading 1s ease-out;
}
#splash-dialog .splash-body #progress {
  list-style: none;
  padding-top: 30px;
  width: 80vw;
}
#splash-dialog .splash-body #progress li {
  margin-bottom: 70px;
  background: #000;
  height: 5px;
  border-radius: 3px;
  border-left: 1px solid #111;
  border-top: 1px solid #111;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
}
#splash-dialog .splash-body #progress li em {
  position: relative;
  top: -30px;
}

@media (max-width: 749px) {
  #splash-dialog {
    display: block;
  }
}
@keyframes loading {
  0% {
    width: 0px;
  }
  100% {
    width: 73.6vw;
  }
}
.inform-popup.modal.show .modal-dialog {
  max-width: 90%;
  width: auto;
  margin: auto;
  height: 100vh;
}
.inform-popup.modal .modal-content {
  width: 440px;
  margin: auto;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: none;
  background-color: transparent;
}
.inform-popup.modal .modal-container {
  width: 440px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  background-color: #ffffff;
}
.inform-popup.modal .modal-header {
  border-bottom: none;
  justify-content: center !important;
  padding: 50px 50px 14px 50px;
  text-align: center;
}
.inform-popup.modal .modal-title {
  font-size: 24px;
  line-height: 28.64px;
  font-weight: 500;
  color: #222224;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  box-sizing: border-box;
}
.inform-popup.modal .modal-body {
  font-size: 18px;
  padding: 0 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.inform-popup.modal #modal-subtitle:empty {
  margin-bottom: 0;
}
.inform-popup.modal #modal-subtitle {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  box-sizing: border-box;
  margin-bottom: 30px;
  font-size: 20px;
  line-height: 26px;
}
.inform-popup.modal .modal-description {
  max-height: 700px;
  overflow-y: auto;
  width: 100%;
  padding: 0 0 42px 0;
  font-size: 16px;
  line-height: 22px;
}
.inform-popup.modal .modal-url {
  width: 150px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6.5px 34px;
  border: 2px solid;
  border-radius: 34px;
  font-size: 16px;
  line-height: 19.09px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: unset;
  color: #6f6f74;
  margin-bottom: 30px;
}
.inform-popup.modal .modal-footer {
  width: 440px;
  font-size: 16px;
  line-height: 19.09px;
  border-top: none;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  justify-content: space-between;
  background-color: #242424;
  padding: 16px 20px;
}
.inform-popup.modal .btn-secondary,
.inform-popup.modal .btn-primary {
  cursor: pointer;
  color: #fff;
  margin: 0;
}

@media (max-width: 1279px) {
  .inform-popup.modal .modal-content {
    width: 590px;
  }
  .inform-popup.modal .modal-container {
    width: 590px;
  }
  .inform-popup.modal .modal-header {
    padding: 80px 80px 24px 80px;
  }
  .inform-popup.modal .modal-title {
    font-size: 34px;
    line-height: 40px;
  }
  .inform-popup.modal .modal-body {
    padding: 0 80px;
  }
  .inform-popup.modal #modal-subtitle:empty {
    margin-bottom: 0;
  }
  .inform-popup.modal #modal-subtitle {
    margin-bottom: 40px;
    font-size: 26px;
    line-height: 32px;
  }
  .inform-popup.modal .modal-description {
    padding: 0 0 80px 0;
    font-size: 22px;
    line-height: 32px;
  }
  .inform-popup.modal .modal-url {
    width: 270px;
    height: 60px;
    margin-bottom: 60px;
    padding: 12.5px 70px;
    font-size: 26px;
    line-height: 31.03px;
  }
  .inform-popup.modal .modal-footer {
    width: 590px;
    padding: 24px 40px;
    font-size: 26px;
    line-height: 31.03px;
  }
}
@media (max-width: 768px) {
  .inform-popup.modal.show .modal-dialog {
    max-width: 100%;
    width: auto;
    margin: auto;
    padding: 16px;
    display: flex;
    justify-content: center;
  }
  .inform-popup.modal .modal-content {
    max-height: 100vh;
    height: auto;
    margin: auto;
    max-width: 295px;
    width: 100%;
  }
  .inform-popup.modal .modal-container {
    max-width: 295px;
    width: 100%;
  }
  .inform-popup.modal .modal-header {
    padding: 40px 40px 12px 40px;
  }
  .inform-popup.modal .modal-title {
    font-size: 17px;
    line-height: 20px;
  }
  .inform-popup.modal .modal-body {
    font-size: 18px;
    padding: 0px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .inform-popup.modal #modal-subtitle:empty {
    margin-bottom: 0;
  }
  .inform-popup.modal #modal-subtitle {
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 16px;
  }
  .inform-popup.modal .modal-description {
    max-height: calc(100vh - 284px);
    overflow-y: auto;
    padding: 0 0 40px 0;
    font-size: 11px;
    line-height: 16px;
  }
  .inform-popup.modal .modal-url {
    width: 135px;
    height: 30px;
    border-width: 1px;
    margin-bottom: 30px;
    padding: 6.25px 34px;
    font-size: 13px;
    line-height: 15.515px;
  }
  .inform-popup.modal .modal-footer {
    max-width: 295px;
    width: 100%;
    font-size: 13px;
    line-height: 15.515px;
    border-top: none;
    justify-content: space-between;
    padding: 12px 20px;
  }
}
.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
}
.icon--sm {
  width: 16px;
  height: 16px;
}
.icon--md {
  width: 24px;
  height: 24px;
}
.icon--left {
  transform: rotate(-180deg);
}

.svg--inherit {
  width: inherit;
  height: inherit;
}
.svg--arrow-right, .svg--arrow-left {
  width: 8px;
  height: 11px;
}
.svg--arrow-to-right, .svg--arrow-to-left {
  width: 11px;
  height: 11px;
}
.svg--list {
  width: 16px;
  height: 12px;
}
.svg--icon-earth {
  width: 16px;
  height: 16px;
}
.svg--icon-pause {
  width: 7px;
  height: 11px;
}
.svg--icon-btn-more {
  width: 17px;
  height: 13px;
}
.svg--icon-plus {
  width: 10px;
  height: 10px;
}
.svg--apple {
  width: 14px;
  height: 16px;
}
.svg--game-icon {
  width: 20px;
  height: 20px;
}
.svg--icon-download {
  width: 11px;
  height: 14px;
}
.svg--icon-dropdown-down, .svg--icon-dropdown-up {
  width: 12px;
  height: 8px;
}
.svg--icon-skip {
  width: 11px;
  height: 11px;
}

@media (max-width: 1279px) {
  .icon {
    width: 30px;
    height: 30px;
  }
  .icon--sm {
    width: 30px;
    height: 30px;
  }
  .icon--md {
    width: 40px;
    height: 40px;
  }
  .icon--mobile-28px {
    width: 28px;
    height: 28px;
  }
  .icon--mobile-28px svg {
    width: 28px;
    height: 28px;
  }
  .icon--mobile-31px {
    width: 31px;
    height: 31px;
  }
  .icon--mobile-32px {
    width: 32px;
    height: 32px;
  }
  .svg--arrow-right, .svg--arrow-left {
    width: 10.54px;
    height: 16.45px;
  }
  .svg--arrow-to-right, .svg--arrow-to-left {
    width: 16.51px;
    height: 16.45px;
  }
  .svg--list {
    width: 30px;
    height: 30px;
  }
  .svg--icon-earth {
    width: 30px;
    height: 30px;
  }
  .svg--icon-pause {
    width: 12px;
    height: 18px;
  }
  .svg--icon-btn-more {
    width: 26px;
    height: 20px;
  }
  .svg--icon-plus {
    width: 20px;
    height: 20px;
  }
  .svg--apple {
    width: 19.6px;
    height: 22.4px;
  }
  .svg--game-icon {
    width: 30px;
    height: 30px;
  }
  .svg--icon-download {
    width: 16.5px;
    height: 21px;
  }
  .svg--icon-dropdown-down, .svg--icon-dropdown-up {
    width: 17px;
    height: 11px;
  }
  .svg--icon-skip {
    width: 18px;
    height: 19px;
  }
}
@media (max-width: 768px) {
  .icon {
    width: 15px;
    height: 15px;
    min-width: 15px;
  }
  .icon--sm {
    width: 30px;
    height: 30px;
  }
  .icon--md {
    width: 20px;
    height: 20px;
  }
  .icon--mobile-28px {
    width: 14px;
    height: 14px;
  }
  .icon--mobile-28px svg {
    width: 14px;
    height: 14px;
  }
  .icon--mobile-31px {
    width: 16px;
    height: 16px;
  }
  .svg--arrow-to-right, .svg--arrow-to-left {
    width: 8.5px;
    height: 8.5px;
  }
  .svg--arrow-right, .svg--arrow-left {
    width: 5.5px;
    height: 8.5px;
  }
  .svg--list {
    width: 15px;
    height: 15px;
  }
  .svg--icon-earth {
    width: 15px;
    height: 15px;
  }
  .svg--icon-pause {
    width: 6px;
    height: 9px;
  }
  .svg--icon-btn-more {
    width: 15px;
    height: 15px;
  }
  .svg--icon-plus {
    width: 10px;
    height: 10px;
  }
  .svg--apple {
    width: 19.6px;
    height: 22.4px;
  }
  .svg--game-icon {
    width: 15px;
    height: 15px;
  }
  .svg--icon-download {
    width: 16.5px;
    height: 21px;
  }
  .svg--icon-dropdown-down, .svg--icon-dropdown-up {
    width: 8.5px;
    height: 5.5px;
  }
  .svg--icon-skip {
    width: 9px;
    height: 9.5px;
  }
}
.app-pagination {
  display: flex;
  justify-content: center;
  gap: 24px;
  width: 100%;
}
.app-pagination__group {
  display: flex;
  gap: 12px;
}
.app-pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #a7a9b1;
  font-weight: 500;
  font-size: 16px;
  line-height: 19.09px;
  cursor: pointer;
  text-decoration: none;
}
.app-pagination__item:hover {
  color: #6f6f74;
}
.app-pagination__item--active {
  color: #000000;
  cursor: default;
}
.app-pagination__item--active:hover {
  color: #000000;
}
.app-pagination__item--disable {
  color: #dcdee4;
  cursor: not-allowed;
}
.app-pagination__item--disable:hover {
  color: #dcdee4;
}
.app-pagination__item--three-dots {
  color: #a7a9b1;
  cursor: default;
}
.app-pagination__item--three-dots:hover {
  color: #a7a9b1;
}

@media (max-width: 1279px) {
  .app-pagination {
    gap: 60px;
  }
  .app-pagination__item {
    width: 30px;
    height: 30px;
    font-size: 28px;
    font-weight: 600;
    line-height: 28px;
  }
  .app-pagination__item__mobile--hide {
    display: none;
  }
  .app-pagination__group {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .app-pagination {
    gap: 30px;
  }
  .app-pagination__item {
    width: 15px;
    height: 15px;
    font-size: 14px;
    line-height: 14px;
  }
  .app-pagination__item__mobile--hide {
    display: none;
  }
  .app-pagination__group {
    gap: 20px;
  }
}
.form {
  width: 100%;
  height: 100%;
}
.form__item-tick {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form__check-input {
  width: 100%;
  height: 100%;
  background-color: #f1f2f6;
  border-radius: 4px;
  appearance: none;
  display: inline-block;
  flex-shrink: 0;
  cursor: pointer;
}
.form__check-input:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-image: url("/images/contact-us/checked.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.ql-editor {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  color: #6f6f74;
  white-space: normal;
}
.ql-editor img {
  max-width: 100%;
  height: 100%;
}
.ql-editor p {
  white-space-collapse: preserve;
}
.ql-editor .ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 20px;
}
.ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 20px;
}
.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 20px;
}
.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 20px;
}
.ql-editor .ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 40px;
}
.ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 40px;
}
.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 40px;
}
.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 40px;
}
.ql-editor .ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 60px;
}
.ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 60px;
}
.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 60px;
}
.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 60px;
}
.ql-editor .ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 80px;
}
.ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 80px;
}
.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 80px;
}
.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 80px;
}
.ql-editor .ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 100px;
}
.ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 100px;
}
.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 100px;
}
.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 100px;
}
.ql-editor .ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 120px;
}
.ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 120px;
}
.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 120px;
}
.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 120px;
}
.ql-editor .ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 140px;
}
.ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 140px;
}
.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 140px;
}
.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 140px;
}
.ql-editor .ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 160px;
}
.ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 160px;
}
.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 160px;
}
.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 160px;
}
.ql-editor .quill-first-paragraph {
  font-size: 16px;
  line-height: 1.4;
}
.ql-editor .quill-first-paragraph + .quill-first-paragraph {
  margin-top: 4px;
}
.ql-editor .quill-table-mt {
  margin-top: 40px;
  line-height: 0;
}
.ql-editor .quill-table-mb {
  margin-bottom: 40px;
  line-height: 0;
}
.ql-editor .quill-section-content-gap {
  margin-top: 20px;
}
.ql-editor .quill-icon img {
  width: 40px;
  height: 40px;
  max-width: 40px;
}
.ql-editor .quill-rounded-table-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.ql-editor .quill-rounded-table-content span:first-child {
  font-size: 18px;
  font-weight: 500;
  line-height: 21.48px;
  color: #222224;
}
.ql-editor .quill-section-title {
  margin-top: 80px;
  font-size: 18px;
  font-weight: 500;
  line-height: 21.48px;
  color: #424244;
}
.ql-editor .quill-target-column {
  width: 525px;
  max-width: 525px;
}
.ql-editor .quill-list-item-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 2px;
}
.ql-editor .quill-list-item-wrapper--indent-1 {
  margin-top: 2px;
  padding-left: 20px;
}
.ql-editor .quill-list-item-wrapper--indent-2 {
  padding-left: 40px;
}
.ql-editor .quill-list-item-wrapper--mt-1 {
  margin-top: 20px;
}
.ql-editor .quill-range-time-policy {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: #424244;
}
.ql-editor .quill-range-time-policy--top {
  margin-top: 80px;
}
.ql-editor .quill-range-time-policy--bottom {
  margin-bottom: 80px;
}

.ql-table-better .ql-cell-focused::after {
  border: none;
  background-color: unset;
}

.ql-format-table-rounded {
  display: none;
}
.ql-format-table-rounded + .ql-table-temporary + .ql-table-better tbody tr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.ql-format-table-rounded + .ql-table-temporary + .ql-table-better tbody tr + tr {
  margin-top: 20px;
}
.ql-format-table-rounded + .ql-table-temporary + .ql-table-better tbody tr td {
  position: relative;
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
  height: 176px;
  border-style: none;
  padding: 0 40px 0 60px;
}
.ql-format-table-rounded + .ql-table-temporary + .ql-table-better tbody tr td * {
  position: relative;
  z-index: 9;
}
.ql-format-table-rounded + .ql-table-temporary + .ql-table-better tbody tr td::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background-color: #f1f2f6;
}

.ql-format-table-underline {
  display: none;
}
.ql-format-table-underline + .ql-table-temporary + .ql-table-better tbody tr {
  border-bottom: 1px solid #f2f3f5;
}
.ql-format-table-underline + .ql-table-temporary + .ql-table-better tbody tr:first-child {
  border-top: 1px solid #8e8e8f;
}
.ql-format-table-underline + .ql-table-temporary + .ql-table-better tbody tr:first-child td {
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  color: #222224;
  padding-top: 13px;
  padding-bottom: 13px;
}
.ql-format-table-underline + .ql-table-temporary + .ql-table-better tbody tr td {
  border-width: 0 !important;
  padding: 16px 0;
  padding-left: 20px;
}
.ql-format-table-underline + .ql-table-temporary + .ql-table-better tbody tr td:last-child {
  padding-right: 20px;
}
.ql-format-table-underline + .ql-table-temporary + .ql-table-better tbody tr td p + p {
  margin-top: 10px;
}

@media (max-width: 1279px) {
  .ql-editor {
    font-size: 24px;
  }
  .ql-editor .quill-first-paragraph {
    font-size: 24px;
    line-height: 36px;
  }
  .ql-editor .quill-first-paragraph + .quill-first-paragraph {
    margin-top: 40px;
  }
  .ql-editor .quill-table-mt {
    margin-top: 60px;
  }
  .ql-editor .quill-table-mb {
    margin-bottom: 60px;
  }
  .ql-editor .quill-section-content-gap {
    margin-top: 40px;
  }
  .ql-editor .quill-icon img {
    width: 60px;
    height: 60px;
    max-width: 60px;
  }
  .ql-editor .quill-rounded-table-content {
    gap: 8px;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
  }
  .ql-editor .quill-rounded-table-content span:first-child {
    font-size: 28px;
    line-height: 33.41px;
  }
  .ql-editor .quill-section-title {
    margin-top: 120px;
    font-size: 30px;
    line-height: 35.8px;
    color: #222224;
  }
  .ql-editor .quill-target-column {
    width: 210px;
    max-width: 210px;
  }
  .ql-editor .quill-list-item-wrapper--indent-1 {
    margin-top: 20px;
    padding-left: 18px;
  }
  .ql-editor .quill-list-item-wrapper--indent-2 {
    margin-top: 10px;
    padding-left: 33px;
  }
  .ql-editor .quill-list-item-wrapper--mt-1 {
    margin-top: 40px;
  }
  .ql-editor .quill-list-item-wrapper--mobile-indent-0 {
    padding-left: 0;
  }
  .ql-editor .quill-list-item-wrapper--mobile-mt-0-5 {
    margin-top: 20px;
  }
  .ql-editor .quill-list-item-wrapper--mobile-mt-1 {
    margin-top: 40px;
  }
  .ql-editor .quill-range-time-policy {
    font-size: 30px;
    line-height: 35.8px;
  }
  .ql-editor .quill-range-time-policy + .quill-range-time-policy {
    margin-top: 20px;
  }
  .ql-format-table-rounded + .ql-table-temporary + .ql-table-better tbody tr {
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
  }
  .ql-format-table-rounded + .ql-table-temporary + .ql-table-better tbody tr + tr {
    margin-top: 40px;
  }
  .ql-format-table-rounded + .ql-table-temporary + .ql-table-better tbody tr td {
    gap: 50px;
    height: auto;
    padding: 40px 50px;
  }
  .ql-format-table-underline + .ql-table-temporary + .ql-table-better tbody tr:first-child td {
    font-size: 26px;
    line-height: 36px;
    padding-top: 22px;
    padding-bottom: 22px;
  }
  .ql-format-table-underline + .ql-table-temporary + .ql-table-better tbody tr td {
    padding: 23px 0;
    padding-left: 20px;
    font-size: 23px;
    line-height: 34px;
  }
}
@media (max-width: 768px) {
  .ql-editor {
    font-size: 12px;
  }
  .ql-editor .quill-first-paragraph {
    font-size: 12px;
    line-height: 18px;
  }
  .ql-editor .quill-first-paragraph + .quill-first-paragraph {
    margin-top: 20px;
  }
  .ql-editor .quill-table-mt {
    margin-top: 30px;
  }
  .ql-editor .quill-table-mb {
    margin-bottom: 30px;
  }
  .ql-editor .quill-section-content-gap {
    margin-top: 20px;
  }
  .ql-editor .quill-icon img {
    width: 30px;
    height: 30px;
    max-width: 30px;
  }
  .ql-editor .quill-rounded-table-content {
    gap: 4px;
    font-size: 12px;
    line-height: 16px;
  }
  .ql-editor .quill-rounded-table-content span:first-child {
    font-size: 14px;
    line-height: 16.7px;
  }
  .ql-editor .quill-section-title {
    margin-top: 60px;
    font-size: 15px;
    line-height: 17.9px;
  }
  .ql-editor .quill-target-column {
    width: 105px;
    max-width: 105px;
  }
  .ql-editor .quill-list-item-wrapper {
    gap: 1px;
  }
  .ql-editor .quill-list-item-wrapper--indent-1 {
    margin-top: 10px;
    padding-left: 9px;
  }
  .ql-editor .quill-list-item-wrapper--indent-2 {
    margin-top: 5px;
    padding-left: 16.5px;
  }
  .ql-editor .quill-list-item-wrapper--mt-1 {
    margin-top: 20px;
  }
  .ql-editor .quill-list-item-wrapper--mobile-indent-0 {
    padding-left: 0;
  }
  .ql-editor .quill-list-item-wrapper--mobile-mt-0-5 {
    margin-top: 10px;
  }
  .ql-editor .quill-list-item-wrapper--mobile-mt-1 {
    margin-top: 20px;
  }
  .ql-editor .quill-range-time-policy {
    font-size: 15px;
    line-height: 17.9px;
  }
  .ql-editor .quill-range-time-policy--top {
    margin-top: 40px;
  }
  .ql-editor .quill-range-time-policy--bottom {
    margin-bottom: 40px;
  }
  .ql-editor .quill-range-time-policy + .quill-range-time-policy {
    margin-top: 10px;
  }
  .ql-format-table-rounded + .ql-table-temporary + .ql-table-better tbody tr {
    gap: 20px;
  }
  .ql-format-table-rounded + .ql-table-temporary + .ql-table-better tbody tr + tr {
    margin-top: 20px;
  }
  .ql-format-table-rounded + .ql-table-temporary + .ql-table-better tbody tr td {
    gap: 25px;
    padding: 20px 25px;
  }
  .ql-format-table-rounded + .ql-table-temporary + .ql-table-better tbody tr td::before {
    border-radius: 8px;
  }
  .ql-format-table-underline + .ql-table-temporary + .ql-table-better tbody tr:first-child td {
    font-size: 13px;
    line-height: 18px;
    padding-top: 11px;
    padding-bottom: 11px;
  }
  .ql-format-table-underline + .ql-table-temporary + .ql-table-better tbody tr td {
    padding: 11.5px 0;
    padding-left: 10px;
    font-size: 12.5px;
    line-height: 17px;
  }
  .ql-format-table-underline + .ql-table-temporary + .ql-table-better tbody tr td:last-child {
    padding-right: 10px;
  }
  .ql-format-table-underline + .ql-table-temporary + .ql-table-better tbody tr td p + p {
    margin-top: 5px;
  }
}
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Pretendard", sans-serif;
}

a {
  text-decoration: none !important;
}

:root {
  /* fonts */
  --pc-kr-p-m-14: "Pretended";
  /* font sizes */
  --pc-kr-p-m-14-size: 14px;
  --pc-kr-p-m-16-size: 16px;
  --pc-kr-p-r-24-size: 24px;
  --font-size-lgi: 19px;
  --pc-kr-p-m-34-size: 34px;
  --font-size-8xl: 27px;
  --font-size-xl: 20px;
  --pc-kr-p-l-22-size: 22px;
  --pc-kr-p-l-18-size: 18px;
  --pc-kr-p-r-21-size: 21px;
  --font-size-mid: 17px;
  /* Colors */
  --grey-222224: #222224;
  --grey-0f0f10: #0f0f10;
  --grey-060606: #060606;
  --color-gray-100: rgba(255, 255, 255, 0.1);
  --grey-dcdee4: #dcdee4;
  --grey-6f6f74: #6f6f74;
  --grey-a7a9b1: #a7a9b1;
  --white-ffffff: #ffffff;
  --grey-424244: #424244;
  --grey-2d2d2f: #2d2d2f;
  --guide: #ff00c7;
  /* Gaps */
  --gap-9xl: 28px;
  --gap-xl: 20px;
  --gap-sm: 14px;
  --gap-3xs: 10px;
  --gap-xs: 12px;
  --gap-base: 16px;
  --gap-5xs: 8px;
  --gap-7xl: 26px;
  --gap-31xl: 50px;
  --gap-6xl: 25px;
  --gap-11xl: 30px;
  --gap-7xs: 6px;
  /* Paddings */
  --padding-xl: 20px;
  --padding-xs: 12px;
  --padding-4xl: 23px;
  --padding-78xl: 97px;
  --padding-176xl: 195px;
  --padding-5xs: 8px;
  --padding-5xl: 24px;
  --padding-7xl: 26px;
  --padding-11xl: 30px;
  --padding-7xs: 6px;
  --padding-3xl: 22px;
  --padding-6xs-5: 6.5px;
  --padding-sm: 14px;
  --padding-6xl: 25px;
  --padding-31xl: 50px;
  --padding-26xl: 45px;
  --padding-12xs: 1px;
  --padding-9xl: 28px;
  --padding-mid-5: 17.5px;
  --padding-21xl: 40px;
  --padding-19xl: 38px;
  /* Border radiuses */
  --br-15xl: 34px;
  --br-21xl: 40px;
  --br-base: 16px;
  /* Effects */
  --blur: blur(20px);
  /* Height */
  --footer-desktop-height: 186px;
  --header-desktop-height: 93px;
  --footer-mobile-height: 410px;
  --header-mobile-height: 118px;
}

.content-block-container {
  min-height: calc(100vh - 93px - 186px);
}

.content-block-container-kr {
  min-height: calc(100vh - 93px - 213px);
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0;
}

.btn-scroll-to-top {
  z-index: 100;
  position: fixed;
  bottom: 223px;
  display: none;
  width: 50px;
  height: 50px;
  color: #dcdee4;
  background-color: #6f6f74;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  padding: 15px;
}
.btn-scroll-to-top:hover {
  color: #ffffff;
  background-color: #424244;
}
.btn-scroll-to-top--home-page {
  background-color: #424244;
}
.btn-scroll-to-top--home-page:hover {
  background-color: #6f6f74;
}

.common-title {
  font-size: 34px;
  font-weight: 500;
  line-height: 40px;
  color: #222224;
}

@media (max-width: 1279px) {
  .btn-scroll-to-top {
    display: none !important;
  }
  .content-block-container {
    min-height: calc(100vh - 118px - 410px);
  }
  .content-block-container-kr {
    min-height: calc(100vh - 118px - 555px);
  }
  .common-title {
    font-size: 48px;
    line-height: 57px;
  }
}
@media (min-width: 1280px) and (max-width: 1400px) {
  .btn-scroll-to-top {
    right: 20px !important;
  }
}
.custom-scrollbar::-webkit-scrollbar {
  width: 3px;
  height: 50px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  border-radius: 1.5px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #a7a9b1;
  border-radius: 1.5px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #a7a9b1;
}

.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

.toast {
  display: flex;
  align-items: center;
  min-width: 300px;
  margin-bottom: 15px;
  padding: 10px 20px;
  border-radius: 5px;
  color: #424244;
  font-size: 16px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  background-color: #f1f2f6;
  border: 1px solid transparent;
}

.toast .icon {
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.toast .icon.success {
  background-color: #4caf50;
  color: #fff;
}

.toast .icon.error {
  background-color: #f44336;
  color: #fff;
}

@media (max-width: 768px) {
  .content-block-container {
    min-height: calc(100vh - 59px - 205px);
  }
  .content-block-container-kr {
    min-height: calc(100vh - 59px - 307px);
  }
  .common-title {
    font-size: 24px;
    line-height: 28.5px;
  }
}
