@font-face {
  font-family: "Noto Sans CJK KR";
  src: url("../../fonts/NotoSansKR-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Noto Sans CJK KR";
  src: url("../../fonts/NotoSansKR-ExtraBold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "Noto Sans CJK KR";
  src: url("../../fonts/NotoSansKR-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Noto Sans CJK KR";
  src: url("../../fonts/NotoSansKR-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Noto Sans CJK KR";
  src: url("../../fonts/NotoSansKR-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Noto Sans CJK KR";
  src: url("../../fonts/NotoSansKR-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Noto Sans CJK KR";
  src: url("../../fonts/NotoSansKR-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Noto Sans CJK KR";
  src: url("../../fonts/NotoSansKR-ExtraLight.otf") format("truetype");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: "Noto Sans CJK KR";
  src: url("../../fonts/NotoSansKR-Thin.otf") format("truetype");
  font-weight: 100;
  font-style: normal;
}

:root {
  --primary-color: #4770ff;
  --white-color: #fff;
  --black-color: #000;
  --dark-black-color: #111;
  --light-black-color: #444;
  --message-bg-color: #f6f6f7;
  --hover-primary-color: #3ea1ff;
  --bright-blue-color: #0482f9;
  --grey-color: #B4B4B4;
  --light-grey-color: #bfbfbf;
  --extra-light-grey-color: #f9f9f9;
  --medium-grey-color: #676767;
  --soft-grey-color: #e4e4e4;
  --lighter-grey-color: #f2f2f2;
  --soft-red-color: #ff5f5f;
  --mid-light-grey-color: #999999;
  --pale-grey-color: #bbbbbb;
  --white-gray-loading-animation: #f1f1f1;
  --medium-grey: #7F7F7F;

  /* z-index */
  --modal-level: 1100;
  --modal-level-2: 1200;
  --chatbox-level: 1000;
  --input-level: 900;
  --tab-level: 900;
  --header-level: 1000;

  /* box-shadow */
  --box-shadow-1: 0 4px 10px rgba(0, 0, 0, 0.15);

  /* animation */
  --message-animation-time: 0.4s;
  --chatbox-action-time: 0.4s;
  --item-animate-time: 0.4s;
}

section {
  padding: 120px 0;
  position: relative;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: var(--dark-black-color);
  ;
}

body {
  padding: 0;
  margin: 0;
}

button:hover {
  cursor: pointer;
}

button.normal {
  background-color: var(--white-color);
  padding: 8px 16px;
  border-radius: 5px;
  transition: background-color 0.2s ease;
  border: 1px solid var(--primary-color);
}

button.normal:hover {
  background-color: var(--primary-color);
}

/* temporarily */
button.arrow_right {
  padding: 4px 12px;
  border-radius: 16px;
  line-height: 20px;
  background-color: var(--primary-color);
  color: var(--white-color);
}

button.arrow_right::after {
  content: url("/images/icon/arrow_right_2.svg");
  padding-left: 12px;
}

button.arrow_left {
  padding: 4px 12px;
  border-radius: 16px;
  line-height: 20px;
  color: var(--white-color);
  background-color: #bbbbbb;
}

button.arrow_left::before {
  padding-right: 12px;
  content: url("/images/icon/arrow_left_2.svg");
}

input {
  border: none;
  background-image: none;
  background-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  color: var(--dark-black-color);
}

input:focus {
  outline: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.container__layout {
  max-width: 1280px;
  position: relative;
  margin: 0 auto;
}

/* LOADING SKELETON */
@keyframes shine {
  to {
    background-position-x: -200%;
  }
}

.loading__skeleton {
  background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
  border-radius: 5px;
  background-size: 200% 100%;
  animation: 1.5s shine linear infinite;
  pointer-events: none;
}

.loading__skeleton * {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* END LOADING SKELETON */

.common__btn {
  display: flex;
  align-items: center;
  padding: 7px 24px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 5px;
  justify-content: center;
  width: max-content;
  height: max-content;
  background: none;
  min-width: fit-content;
  min-height: fit-content;
  cursor: pointer;
  transition: all linear 0.3s;
}

.common__btn:hover {
  border: 1px solid #4763f4;
  color: var(--white-color);
  background-color: var(--primary-color);
}

.common__btn:active,
.common__btn:hover:active {
  border: 1px solid #006bcf;
  color: var(--white-color);
  background-color: #006bcf;
}

.common__btn:disabled,
.common__btn:disabled:hover {
  background-color: var(--light-grey-color);
  pointer-events: none;
  cursor: default;
  color: var(--white-color);
  border: 1px solid var(--light-grey-color);
}

.common__square--btn {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  background-color: var(--main-white-color);
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 5px;
  justify-content: center;
  width: max-content;
  height: max-content;
  cursor: pointer;
  transition: all linear 0.3s;
}

.common__square--btn:hover {
  background-color: #d1d8fc;
  transition: all linear 0.3s;
}

.common__square--btn:hover:active,
.common__square--btn:active {
  background-color: #bfdaf3;
  border: 1px solid #006bcf;
  transition: all linear 0.3s;
}

.common__square--blue--btn {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  background-color: var(--primary-color);
  color: var(--main-white-color);
  border-radius: 5px;
  justify-content: center;
  width: max-content;
  height: max-content;
  cursor: pointer;
  transition: all linear 0.3s;
}

.sign_wrapper .common__square--blue--btn {
  min-height: 46px;
  max-height: 46px;
  padding: 12px 24px;
  min-width: 120px;
  border-radius: 30px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  overflow: hidden;
}

.common__square--blue--btn:hover {
  background-color: #3ea1ff;
  transition: all linear 0.3s;
}

.common__square--blue--btn:hover:active,
.common__square--blue--btn:active {
  background-color: #006bcf;
  transition: all linear 0.3s;
}

.common__square--blue--btn:disabled,
.common__square--blue--btn[disabled],
.common__square--blue--btn.disabled {
  background-color: var(--light-grey-color);
  transition: all linear 0.3s;
  cursor: default;
  pointer-events: none;
}

.common__grey--btn {
  display: flex;
  align-items: center;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  border: 1px solid var(--light-grey-color);
  color: var(--main-black-color);
  border-radius: 20px;
  justify-content: center;
  width: max-content;
  height: max-content;
  background: none;
  cursor: pointer;
  transition: all linear 0.3s;
}

.common__grey--btn:hover {
  border: 1px solid #4763f4;
  color: #4763f4;
  background-color: #d1d8fc;
  transition: all linear 0.3s;
}

.common__grey--btn:active,
.common__grey--btn:hover:active {
  border: 1px solid #006bcf;
  color: #006bcf;
  background-color: #bfdaf3;
  transition: all linear 0.3s;
}

/* COMMAM INPUT */

.input__wrapper {
  position: relative;
  width: 100%;
}

.input__wrapper .input__field {
  width: 100%;
  height: 36px;
  padding: 10px 12px;
  color: #111111;
  border-radius: 5px;
  background-color: var(--white-color);
  border: 1px solid var(--light-grey-color);
  font-size: 14px;
  line-height: 22px;
  outline: none;
}

.myprofile_add_payment_layer .input__wrapper .input__field,
.change_password_form .inputWrapper input {
  padding: 10px;
  height: 40px;
  font-size: 16px;
}

.myprofile_add_payment_layer .input__wrapper.input__wrapper__expiration__date .input__field,
.change_password_form .input__wrapper.input__wrapper__expiration__date .input__field,
.myprofile_add_payment_layer .input__wrapper.input__wrapper__state .input__field,
.change_password_form .input__wrapper.input__wrapper__state .input__field {
  width: 238px;
}

.myprofile_add_payment_layer .input__wrapper .input__placeholder,
.change_password_form .inputWrapper .inputWrapper_placeholder {
  top: 10px;
  left: 10px;
  font-size: 16px;
  line-height: 22px;
}

.myprofile_add_payment_layer .blueBtn,
.change_password_form .blueBtn {
  width: 100px;
  min-width: 100px;
  height: 36px;
  font-size: 16px;
  line-height: 20px;
}

.input__wrapper.error__input::after {
  height: 12px;
  transition: all linear 0.3s;
}

.input__wrapper .input__placeholder {
  position: absolute;
  top: 6px;
  left: 12px;
  font-size: 14px;
  line-height: 22px;
  transition: all linear 0.2s;
}

.input__wrapper.active .input__field {
  border: 1px solid var(--primary-color);
}

.input__wrapper.active .input__placeholder {
  position: absolute;
  top: -10px;
  left: 10px;
  transition: all linear 0.2s;
  background-color: var(--white-color);
  width: fit-content;
  padding: 0 5px;
  height: fit-content;
  font-size: 12px;
  font-weight: 400;
  color: var(--primary-color);
}

.input__wrapper .input__placeholder.active {
  position: absolute;
  top: -10px;
  left: 10px;
  transition: all linear 0.2s;
  background-color: var(--white-color);
  width: fit-content;
  padding: 0 5px;
  height: fit-content;
  font-size: 12px;
  font-weight: 400;
}

.myprofile_add_payment_layer .input__wrapper .input__placeholder.active,
.section__pricing--form .input__wrapper .input__placeholder.active {
  top: -7px;
  line-height: 14px;
}

.unselect_common {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.carousel_common {
  position: relative;
}

.carousel_common .list {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  transition: transform 0.3s ease-in-out;
  gap: 12px;
}

@media screen and (max-width: 799px) {
  .carousel_common .list {
    margin-bottom: 70px;
    align-items: flex-start;
    height: fit-content;
  }
}

.carousel_common .list .item {
  width: calc(100vw - 40px);
}

@media screen and (max-width: 799px) {
  .carousel_common .action {
    display: flex;
    align-items: center;
    margin-top: 30px;
  }
}

.carousel_common .process {
  display: none;
  position: relative;
  bottom: 10px;
  transform: translateY(50%);
  width: 20px;
  height: 20px;
  background-color: #e1e1e1;
  flex-grow: 1;
  height: 3px;
  align-items: center;
  margin-right: 8px;
  width: calc(100% - 80px + 13px - 20px + 13px);
}

@media screen and (max-width: 799px) {
  .carousel_common .process {
    display: inline-block;
    position: absolute;
    bottom: 20px;
    transform: translateY(50%);
  }
}

.carousel_common .process .active {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 20px;
  background-color: var(--primary-color);
  transition: width 0.3s ease-out;
}

.carousel_common button {
  position: absolute;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--primary-color);
  z-index: 500;
  outline-style: unset;
}

@media screen and (max-width: 799px) {
  .carousel_common button {
    position: absolute;
    background-color: unset;
    transform: unset;
  }
}

.carousel_common button:hover {
  background-color: rgba(71, 112, 255, 0.8);
}

@media screen and (max-width: 799px) {
  .carousel_common button:hover {
    background-color: unset;
  }
}

.carousel_common button.disable {
  background-color: transparent;
  cursor: default;
}

.carousel_common button.left {
  left: 20px;
}

@media screen and (max-width: 799px) {
  .carousel_common button.left {
    top: unset;
    left: unset;
    bottom: 0;
    right: calc(40px - 13px);
  }
}

.carousel_common button.right {
  right: calc((100vw - 100%) / -2 + 20px);
}

@media screen and (max-width: 799px) {
  .carousel_common button.right {
    top: unset;
    bottom: 0;
    right: -13px;
  }
}

@media screen and (max-width: 799px) {
  .carousel_common button svg path {
    fill: var(--primary-color);
  }
}

.carousel_common button.disable svg path {
  fill: transparent;
}

@media screen and (max-width: 799px) {
  .carousel_common button.disable svg path {
    fill: #e1e1e1;
  }
}

.open_common_policy_layer_privacy,
.open_common_policy_layer_terms_of_use {
  cursor: pointer;
}

.loadingAnisAll {
  position: relative;
  background-color: #f1f1f1;
  overflow: hidden;
  border-radius: 10px;
}

.loadingAnisAll:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #f1f1f1;
  z-index: 10;
}

.loadingAnisAll:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #f1f1f1;
  -webkit-animation-name: loadingAni1;
  animation-name: loadingAni1;
  -webkit-animation-duration: 2.8s;
  animation-duration: 2.8s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  z-index: 10;
}

.product_page_section .loadingAnisAll {
  border-radius: 0;
}

.common__btn.loadingAnisAll {
  border: 1px solid #f1f1f1;
}

@keyframes loadingAni1 {
  34% {
    top: 0;
    left: 100%;
  }

  35% {
    top: -100%;
    left: 100%;
  }

  36% {
    top: -100%;
    left: -200%;
  }

  40% {
    top: 0;
    left: -100%;
    background-color: #a0a0a0;
  }

  80% {
    top: 0;
    left: 100%;
  }

  100% {
    top: 0;
    left: 100%;
  }
}

.animation_template_2,
.animation_template_1 {
  opacity: 0;
  transform: translateY(80px);
  transition: all 0.7s ease;
}

.animation_template_2.active,
.animation_template_1.active {
  opacity: 1;
  transform: translateY(0);
}

.toggle_container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
}

.toggle_container .toggle_label {
  display: block;
  width: 34px;
  height: 16px;
  background-color: #aaaaaa;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
}

.toggle_container .toggle_label::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-color: var(--white-color);
  border-radius: 52%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 2px;
  transition: left 0.3s;
}

.blueBtn:disabled,
.blueBtn.disabled,
.blueBtn[disabled] {
  background-color: #8a8a8a;
  border-color: #8a8a8a;
  color: var(--white-color);
  cursor: default;
}

.blueBtn:disabled,
.blueBtn.disabled,
.blueBtn[disabled] {
  background-color: #8a8a8a;
  border-color: #8a8a8a;
  color: var(--white-color);
  cursor: default;
}

.blueBtn {
  padding: 5px 25px;
}

.blueBtn {
  min-width: 85px;
  min-height: 40px;
  max-height: 46px;
  padding: 12px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 30px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  transition: background-color 0.3s ease;
  cursor: pointer;
  color: var(--white-color);
}

.blueBtn:hover {
  background-color: #214EEB;
  color: var(--white-color);
  border-color: #214EEB;
}

.blueBtn:active {
  background-color: #0D3EDA;
  color: var(--white-color);
  border-color: #0D3EDA;
}

/* SELECTED CSS */

.select__box {
  background: var(--dark-black-color);
  padding: 0 4px;
  border: 1px solid #2c2c2c;
  height: 16px;
  max-width: 100px;
  min-width: 100px;
  min-height: 16px;
  width: 100%;
  color: #dddddd;
  position: relative;
  border-radius: 2px;
  cursor: pointer;
}

.select__box--selected {
  position: relative;
}

.select__box--selected::before {
  content: "";
  width: 4px;
  height: 8px;
  object-fit: cover;
  transform: rotate(-90deg);
  position: absolute;
  top: 3px;
  right: 5px;
  background-image: url("/images/icon/chevron_left.svg");
  background-repeat: no-repeat;
  background-position: 0;
  background-size: cover;
}

.select__list {
  width: 100%;
  position: absolute;
  background: var(--dark-black-color);
  top: -1px;
  left: -1px;
  border: 1px solid #2c2c2c;
  min-width: 100px;
  display: none;
  z-index: 9;
}

.select__list.active {
  display: block;
}

.select__value {
  padding: 4px;
  transition: all linear 0.3s;
  cursor: pointer;
}

.select__value:hover {
  background: var(--primary-color);
  transition: all linear 0.3s;
}

/* Input styles */
.inputWrapper {
  position: relative;
  box-sizing: border-box;
  width: 100%;
}

.inputWrapper .inputWrapper_title {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  margin-bottom: 4px;
}

.inputWrapper .inputWrapper_placeholder {
  position: absolute;
  top: 10px;
  left: 10px;
  transition: all linear 0.2s;
  color: #1f1f1f;
  background-color: transparent;
  font-size: 16px;
  font-weight: 400;
}

.inputWrapper .inputWrapper_placeholder.active {
  position: absolute;
  top: -6px;
  left: 10px;
  transition: all linear 0.2s;
  background-color: var(--white-color);
  width: fit-content;
  padding: 0 5px;
  height: fit-content;
  font-size: 10px;
  font-weight: 400;
  color: #1f1f1f;
}

.inputWrapper input,
.input_wrapper input {
  width: 100%;
  height: 40px;
  padding: 10px;
  color: var(--dark-black-color);
  border-radius: 5px;
  background-color: var(--white-color);
  border: 1px solid #1f1f1f;
  font-size: 11px;
  line-height: 16px;
}

.inputWrapper input:focus,
.input_wrapper input:focus {
  color: var(--dark-black-color);
  border: 2px solid var(--primary-color);
  height: 40px;
}

.myprofile_add_payment_layer .input__wrapper input,
.myprofile_add_payment_layer .inputWrapper input,
.change_password_form .input__wrapper input,
.change_password_form .inputWrapper input {
  border: 1px solid var(--grey-color);
}

.myprofile_add_payment_layer .input__wrapper .input__placeholder,
.change_password_form .inputWrapper .inputWrapper_placeholder {
  color: var(--grey-color);
}

.myprofile_add_payment_layer .input__wrapper.active .input__placeholder,
.change_password_form .inputWrapper.active .inputWrapper_placeholder {
  color: var(--primary-color);
}


body .password_check_strength {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: all linear 0.2s;
  overflow: hidden;
}

body .password_check_strength.active {
  height: fit-content;
  transition: all linear 0.2s;
}

body .password_check_strength.active.show_text {
  opacity: 1;
  visibility: visible;
}

body .password_check_strength .password_check_strength_top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

body .password_check_strength .password_check_strength_top .password_check_strength_title {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: var(--dark-black-color);
}

body .password_check_strength .password_check_strength_top .password_check_strength_status {
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
}

body .myprofile_change_password_layer .password_check_strength .password_check_strength_top .password_check_strength_status {
  font-size: 16px;
}

body .password_check_strength .password_check_strength_top .password_check_strength_status.weak {
  color: #fe1c41;
}

body .password_check_strength .password_check_strength_top .password_check_strength_status.medium {
  color: #FF642E;
}

body .password_check_strength .password_check_strength_top .password_check_strength_status.strong {
  color: var(--primary-color);
}

body .password_check_strength .password_check_strength_line {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  width: 100%;
}

body .password_check_strength .password_check_strength_line .password_check_strength_line_item {
  width: 33.33%;
  height: 5px;
  border-radius: 10px;
  background-color: #aaaaaa;
}

body .password_check_strength .password_check_strength_line .password_check_strength_line_item.weak {
  background-color: #fe1c41;
}

body .password_check_strength .password_check_strength_line .password_check_strength_line_item.medium {
  background-color: #FF642E;
}

body .password_check_strength .password_check_strength_line .password_check_strength_line_item.strong {
  background-color: var(--primary-color);
}

body .password_check_strength .password_check_condition_list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 5px;
}

body .password_check_strength .password_check_condition_list .password_check_condition_item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  width: 100%;
}

body .password_check_strength .password_check_condition_list .password_check_condition_item .password_check_condition_item_icon {
  width: 16px;
  height: 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

body .password_check_strength .password_check_condition_list .password_check_condition_item .password_check_condition_item_text {
  font-size: 16px;
  line-height: 24px;
  width: 100%;
}

body .password_check_strength .password_check_condition_list .password_check_condition_item.weak .password_check_condition_item_icon {
  background-image: url("/images/icon/error_icon.svg");
}

body .password_check_strength .password_check_condition_list .password_check_condition_item.weak .password_check_condition_item_text {
  color: #fe1c41;
}

body .password_check_strength .password_check_condition_list .password_check_condition_item.strong .password_check_condition_item_icon {
  background-image: url("/images/icon/blue_circle_check_icon.svg");
}

body .password_check_strength .password_check_condition_list .password_check_condition_item.strong .password_check_condition_item_text {
  color: #1f1f1f;
}

.right_side_infomation_wrapper .password_check_strength .password_check_condition_list .password_check_condition_item.strong .password_check_condition_item_text {
  color: var(--white-color);
}

.account__menu--layer {
  z-index: 1100;
  position: fixed;
  background-color: var(--main-white-color);
  width: 320px;
  height: 100vh;
  padding-inline: 20px;
  flex-direction: column;
  top: 0;
  right: -320px;
  transition: all linear 0.3s;
  color: var(--dark-black-color);
}

.account__menu--layer.show {
  right: 0;
  transition: right linear 0.3s;
}

.account__menu--layer-bg.show {
  display: block;
}

.account__menu--layer-bg {
  position: fixed;
  z-index: 1099;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}

.account__menu--layer .layer__title {
  display: flex;
  width: 300px;
  height: 60px;
  justify-content: space-between;
  align-items: center;
  padding-inline: 10px;
}

.account__menu--layer .account__item__wrapper {
  display: flex;
  width: 300px;
  min-height: 270px;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  padding-inline-end: 10px;
}

.account__menu--layer .account__item {
  width: 100%;
  min-width: 255px;
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 10px;
  border-radius: 5px;
}

.account__menu--layer .account__item--text {
  font-size: 400;
  font-size: 18px;
  line-height: 24px;
}

.account__menu--layer .account__item.active {
  background-color: var(--bright-blue-color);
}

.account__item.active>.account__item--text {
  color: var(--main-white-color);
}

.account__item:hover {
  background-color: var(--bright-blue-color);
  color: var(--main-white-color);
}

.table-no-data {
  min-height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #aaaaaa;
  font-size: 13px;
  line-height: 20px;
}

.table-no-data.v2_table-no-data {
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-direction: column;
  padding: 12px 0px;
  background: var(--white-color);
  border: 1px solid #e1e2e3;
  color: #aaaaaa;
}

@media screen and (max-width: 990px) {
  section {
    padding: 60px 0;
  }

  .container__layout {
    padding: 0 20px;
  }
}

@media screen and (max-width: 576px) {
  .container__layout {
    gap: 30px;
  }
}

.dropdown_scroll_bar::-webkit-scrollbar {
  width: 10px;
  border-radius: 5px;
}

.dropdown_scroll_bar::-webkit-scrollbar-thumb {
  height: 122px;
  background-color: #B4B4B4;
  border-radius: 5px;
}

.bold {
  font-weight: 700;
}

.heading1 {
  font-size: 45px;
  line-height: 55px;
  font-weight: bold;
}


.body-medium {
  font-size: 16px;
  line-height: 22px;
}

.error_message {
  color: #ff0000;
  font-size: 16px;
  line-height: 22px;
  padding: 0px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-out;
  margin-top: 4px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
}

.error_message.show {
  max-height: 22px;
}