:root {
  --body-font-size: 18px;
}

@media (max-width: 1024px) {
  :root {
    --body-font-size: 16px;
  }
}
html {
  overflow-x: hidden;
}

body {
  background: #E4EFFF;
  font-family: "Montserrat", sans-serif;
  font-size: var(--body-font-size);
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  color: black;
}

.main-wrapper {
  width: 100%;
  padding: 52px 47px 52px 132px;
}
@media screen and (max-width: 1024px) {
  .main-wrapper {
    padding: 40px;
  }
}
@media screen and (max-width: 768px) {
  .main-wrapper {
    padding: 30px;
  }
}
@media screen and (max-width: 640px) {
  .main-wrapper {
    padding: 20px;
  }
}

.text-accent {
  color: #FB3F98;
}

.block-md-flex {
  display: flex;
}
@media screen and (max-width: 768px) {
  .block-md-flex {
    display: block;
  }
}

.none-md-block {
  display: block;
}
@media screen and (max-width: 768px) {
  .none-md-block {
    display: none !important;
  }
}

[x-cloak] {
  display: none !important;
}

.blue-link {
  color: #002696;
  transition: all 0.3s ease-in-out;
}
.blue-link:hover {
  color: #FB3F98;
}

.hover-text {
  transition: all 0.3s ease-in-out;
}
.hover-text:hover {
  color: #FB3F98;
}

.section-separator {
  border-bottom: 2px solid;
  border-image: linear-gradient(45deg, #0044FF, #FF1B99) 1;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .mobile-section-separator {
    border-bottom: 2px solid;
    border-image: linear-gradient(45deg, #0044FF, #FF1B99) 1;
  }
}
@media screen and (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-col {
    flex-direction: row !important;
  }
}
.info-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
}

sup:has(.info-icon) {
  top: -0.25em;
  margin-left: 2px;
}
sup > .info-icon {
  width: 1em;
  height: 1em;
  background-size: cover;
  background-repeat: no-repeat;
}

.table-layout-fixed {
  table-layout: fixed;
}

.color-error-text {
  color: #CB0000;
}

.color-red-text {
  color: #FF0000;
}

.pagination-links nav > div:nth-of-type(1) span > button,
.pagination-links nav > div:nth-of-type(1) span > span {
  color: #002696;
  border-width: 1px;
  border-style: solid;
  border-color: #002696;
  height: 40px;
  width: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  font-size: 100%;
  background: white;
}
.pagination-links nav > div:nth-of-type(1) span > button.cursor-default,
.pagination-links nav > div:nth-of-type(1) span > span.cursor-default {
  color: #727272;
  border-color: #727272;
}
.pagination-links nav > div:nth-of-type(1) span > button:not(.cursor-default):hover,
.pagination-links nav > div:nth-of-type(1) span > span:not(.cursor-default):hover {
  color: #FB3F98;
  border-color: #FB3F98;
}
.pagination-links nav > div:nth-of-type(2) p {
  font-size: 12px;
}
.pagination-links nav > div:nth-of-type(2) > div:nth-of-type(2) > span {
  gap: 10px;
  box-shadow: none;
}
.pagination-links nav > div:nth-of-type(2) > div:nth-of-type(2) > span > span > button, .pagination-links nav > div:nth-of-type(2) > div:nth-of-type(2) > span > span > span > span {
  color: #002696;
  border-width: 1px;
  border-style: solid;
  border-color: #002696;
  height: 30px;
  width: 30px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  border-radius: 50%;
  transition: 0.3s ease-in-out;
  font-size: 12px;
  background: white;
}
.pagination-links nav > div:nth-of-type(2) > div:nth-of-type(2) > span > span > button.cursor-default, .pagination-links nav > div:nth-of-type(2) > div:nth-of-type(2) > span > span > span > span.cursor-default {
  color: #727272;
  border-color: #727272;
}
.pagination-links nav > div:nth-of-type(2) > div:nth-of-type(2) > span > span > button:not(.cursor-default):hover, .pagination-links nav > div:nth-of-type(2) > div:nth-of-type(2) > span > span > span > span:not(.cursor-default):hover {
  color: #FB3F98;
  border-color: #FB3F98;
}
.pagination-links nav > div:nth-of-type(2) > div:nth-of-type(2) > span > span > span[aria-current=page] > span {
  color: #FB3F98;
  border-color: #FB3F98;
}

[type=radio] {
  border-color: #002696;
}
[type=radio]:focus {
  outline: none !important;
  box-shadow: none !important;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.text-ellipsis input {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.coming-soon-wrapper {
  position: relative;
}
.coming-soon-wrapper:before {
  z-index: 11;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  content: "Coming soon...";
  font-size: 30px;
  font-weight: 700;
  color: black;
  display: grid;
  place-items: center;
  border-radius: 20px;
}
.coming-soon-wrapper:after {
  z-index: 10;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background: white;
  opacity: 90%;
  border-radius: 19px;
}

.dropdown .wrapper {
  opacity: 0;
}

.section-title {
  color: #FB3F98;
  max-width: 80%;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media screen and (max-width: 1280px) {
  .section-title {
    font-size: 28px;
  }
}
@media screen and (max-width: 1024px) {
  .section-title {
    font-size: 26px;
  }
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 22px;
  }
}
@media screen and (max-width: 640px) {
  .section-title {
    font-size: 18px;
  }
}

.section {
  margin-left: auto;
  margin-right: auto;
  max-width: 1353px;
}

.bold-text {
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 1280px) {
  .bold-text {
    font-size: 22px;
  }
}
@media screen and (max-width: 1024px) {
  .bold-text {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .bold-text {
    font-size: 18px;
  }
}
@media screen and (max-width: 640px) {
  .bold-text {
    font-size: 16px;
  }
}

.big-text {
  font-size: 24px;
}
@media screen and (max-width: 1280px) {
  .big-text {
    font-size: 22px;
  }
}
@media screen and (max-width: 1024px) {
  .big-text {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .big-text {
    font-size: 18px;
  }
}
@media screen and (max-width: 640px) {
  .big-text {
    font-size: 16px;
  }
}

.block-wrapper {
  padding: 24px;
  border: 2px solid transparent;
  border-radius: 20px;
  background: linear-gradient(white, white) padding-box, linear-gradient(90deg, #0044FF, #FF1B99) border-box;
}
@media screen and (max-width: 1280px) {
  .block-wrapper {
    padding: 22px;
  }
}
@media screen and (max-width: 1024px) {
  .block-wrapper {
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  .block-wrapper {
    padding: 18px;
  }
}
@media screen and (max-width: 640px) {
  .block-wrapper {
    padding: 16px;
  }
}

.block-title {
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: 600;
}
.block-title.mb-0 {
  margin-bottom: 0;
}
@media screen and (max-width: 1280px) {
  .block-title {
    font-size: 18px;
  }
}
.block-title-big {
  font-size: 24px;
  font-weight: 700;
}
.block-title-big.mb-0 {
  margin-bottom: 0;
}
@media screen and (max-width: 1280px) {
  .block-title-big {
    font-size: 22px;
  }
}
@media screen and (max-width: 768px) {
  .block-title-big {
    font-size: 18px;
  }
}
.title-gradient {
  font-weight: 700;
  font-size: 24px;
  width: fit-content;
  background: linear-gradient(90deg, #0044FF, #FF1B99);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 768px) {
  .title-gradient {
    font-size: 20px;
  }
}

.btn {
  height: 60px;
  padding-left: 40px;
  padding-right: 40px;
  width: fit-content;
  display: grid;
  place-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  font-weight: 600;
}
.btn.small {
  height: fit-content;
  padding: 10px 24px;
  font-size: 15px;
}
.btn.w-100 {
  width: 100%;
}
.btn.primary {
  border: 2px solid #002696;
  color: #002696;
}
.btn.primary:hover {
  border-color: #FB3F98;
  color: #FB3F98;
}
.btn.gray-border {
  border: 2px solid #727272 !important;
  color: #727272 !important;
}
.btn.black-border {
  border: 2px solid black !important;
  color: black !important;
}
.btn.secondary {
  background: #002696;
  color: white;
}
.btn.secondary:hover {
  background: #FB3F98;
}
.btn.disabled {
  border: 2px solid #727272 !important;
  color: #727272 !important;
  background: transparent !important;
  cursor: not-allowed !important;
}
.btn.disabled:hover {
  border-color: #727272 !important;
  color: #727272 !important;
}
.btn.gradient {
  border: 2px solid transparent;
  background: linear-gradient(#E4EFFF, #E4EFFF) padding-box, linear-gradient(90deg, #0044FF, #FF1B99) border-box;
  font-weight: 300;
  font-size: 18px;
}
.btn.gradient:hover {
  color: #FB3F98;
  scale: 1.02;
}
.btn.gradient.disabled {
  border-color: #727272;
}
.btn.gradient.disabled:hover {
  color: #727272;
  scale: 1;
}
@media screen and (max-width: 768px) {
  .btn.gradient {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .btn {
    height: 50px;
    padding-left: 30px;
    padding-right: 30px;
    transition: none;
  }
}
.btn.big-mobile {
  height: 60px;
  padding-left: 10px;
  padding-right: 10px;
}

.common-divider-line {
  height: 1px;
  width: 100%;
  background: #F0F0F0;
}

.badge {
  width: 105px;
  max-width: 105px;
  height: 40px;
  transition: all 0.3s ease-in-out;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  display: grid;
  place-items: center;
}
.badge.big {
  width: 145px;
  max-width: 145px;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .badge.big {
    max-width: 100px;
    height: 30px;
    font-size: 11px;
  }
}
.badge.pink {
  border: 2px solid #FB3F98;
  color: #FB3F98;
  background: transparent;
}
.badge.accent-gradient {
  color: black;
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box, linear-gradient(90deg, #0044FF, #FF1B99) border-box;
}
.badge.blue {
  background: #002696;
  color: white;
}
.badge.gray {
  background: #727272;
  color: white;
}

.no-data-in-section {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .no-data-in-section {
    font-size: 20px;
    position: relative;
    min-height: 400px;
  }
}

ul[type=dots] {
  list-style: none;
  padding: 0 0 0 20px;
  gap: 6px;
  display: flex;
  flex-direction: column;
}
ul[type=dots] li {
  position: relative;
}
ul[type=dots] li::before {
  content: "";
  width: 4px;
  height: 4px;
  background: black;
  border-radius: 50%;
  position: absolute;
  left: -20px;
  top: 13px;
}

#nprogress,
.loader-wrapper {
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: grid;
  place-items: center;
  pointer-events: all;
}

#nprogress .bar,
.loader-wrapper:not(.full-loader-wrapper) .loader {
  width: 210px !important;
  height: 210px !important;
  transition: unset !important;
  transform: unset !important;
  position: unset !important;
  top: unset !important;
  left: unset !important;
  background: transparent !important;
  background-image: url("/assets/images/loader.svg") !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}
@media screen and (max-width: 768px) {
  #nprogress .bar,
  .loader-wrapper:not(.full-loader-wrapper) .loader {
    width: 150px !important;
    height: 150px !important;
  }
}

.loader-wrapper:not(.open) {
  display: none;
}

#nprogress .bar .peg {
  display: none;
}

.switch {
  display: inline-block;
  height: 24px;
  position: relative;
  width: 43px;
}

.switch input {
  display: none;
}

.slider {
  background-color: #727272;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.4s;
}

.slider:before {
  background-color: #fff;
  bottom: 4px;
  content: "";
  height: 16px;
  left: 4px;
  position: absolute;
  transition: 0.4s;
  width: 16px;
}

input:checked + .slider {
  background-color: #002696;
}

input:checked + .slider:before {
  transform: translateX(19px);
}

input:disabled + .slider {
  background-color: #E4EFFF;
  cursor: not-allowed;
}

.slider.round {
  border-radius: 24px;
}

.slider.round:before {
  border-radius: 50%;
}

.switch.big {
  width: 60px;
  min-width: 60px;
  height: 34px;
}

.switch.big .slider:before {
  height: 26px;
  width: 26px;
  bottom: 4px;
  left: 4px;
}

.switch.big input:checked + .slider:before {
  transform: translateX(26px);
}

.switch.big .slider.round {
  border-radius: 34px;
}

.dropdown {
  position: relative;
  display: inline-block;
  width: fit-content;
  min-width: 178px;
}
.dropdown .button {
  font-size: 18px;
  font-weight: 500;
}
.dropdown .button:focus-visible {
  outline: none;
}
.dropdown .button .icon {
  margin-left: 5px;
  transition: all 0.3s ease-in-out;
}
.dropdown .wrapper {
  border: 1px solid #727272; /* Border color */
  width: fit-content;
  min-width: 178px;
  position: absolute;
  top: calc(100% + 15px);
  left: 0;
  background-color: white;
  z-index: 10;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  padding: 14px;
  border-radius: 10px;
}
.dropdown .wrapper::after {
  z-index: 2;
  content: "";
  position: absolute;
  top: -13px; /* Outer (border) triangle positioned slightly higher */
  left: 30px;
  transform: translateX(-50%);
  border-left: 13px solid transparent; /* Slightly smaller side widths */
  border-right: 13px solid transparent;
  border-bottom: 13px solid #727272; /* Gray outer triangle for side "border" */
}
.dropdown .wrapper::before {
  z-index: 3;
  content: "";
  position: absolute;
  top: -11.6px; /* Move down 1px to cover the bottom edge of the gray triangle */
  left: 30px;
  transform: translateX(-50%);
  border-left: 12px solid transparent; /* Inner white triangle slightly smaller */
  border-right: 12px solid transparent;
  border-bottom: 12px solid white; /* White fill */
}
@media screen and (max-width: 768px) {
  .dropdown .button {
    font-size: 16px;
  }
}

.custom-checkbox {
  display: block;
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.custom-checkbox .text {
  font-size: 16px;
  font-weight: 400;
}
.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.custom-checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: transparent;
  border: 1px solid #727272;
  border-radius: 4px;
}
.custom-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid #FB3F98;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}
.custom-checkbox:hover input ~ .checkmark {
  background-color: rgba(204, 204, 204, 0.1);
}
.custom-checkbox:hover {
  color: #FB3F98;
}
@media screen and (max-width: 768px) {
  .custom-checkbox {
    font-size: 14px;
  }
  .custom-checkbox .text {
    font-size: 14px;
  }
  .custom-checkbox:hover input ~ .checkmark {
    background-color: transparent;
  }
  .custom-checkbox:hover {
    color: black;
  }
}
.custom-checkbox.big {
  display: flex;
  align-items: center;
  height: 30px;
  padding-left: 54px;
}
.custom-checkbox.big .checkmark {
  width: 30px;
  height: 30px;
  border-radius: 6px;
}
.custom-checkbox.big .checkmark:after {
  left: 10px;
  top: 4px;
  width: 8px;
  height: 16px;
  border-width: 0 4px 4px 0;
}

.input-wrapper {
  width: 100%;
  position: relative;
}
.input-wrapper .error {
  position: absolute;
  top: calc(100% + 2px);
  left: 8px;
  color: #CB0000;
  font-size: 12px;
}
.input-wrapper .label {
  padding-left: 8px;
  margin-bottom: 10px;
  display: block;
  font-size: 16px;
  font-weight: 700;
}
.input-wrapper .input-block {
  display: flex;
  align-items: center;
  padding: 20px 34px;
  border-radius: 10px;
  border: 1px solid #727272;
}
.input-wrapper .input-block .input-text {
  font-size: 16px;
  margin-right: 5px;
  font-weight: 700;
  color: black;
}
.input-wrapper .input-block .input {
  border: none;
  width: 100%;
  background: transparent;
  padding-left: 0;
  padding-right: 0;
  font-size: 16px;
}
.input-wrapper .input-block .input::placeholder {
  font-size: 16px;
  font-weight: 400;
  color: #727272 !important;
}
.input-wrapper .input-block .input.with-text {
  text-align: right;
}
.input-wrapper .input-block .input:focus-visible, .input-wrapper .input-block .input:focus {
  outline: none;
  border: none;
  outline-offset: 0;
  --tw-ring-shadow: none;
}
.input-wrapper .input-block .input {
  /* Hide number input spinners */
}
.input-wrapper .input-block .input[type=number]::-webkit-inner-spin-button, .input-wrapper .input-block .input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.input-wrapper .input-block .input[type=number] {
  -moz-appearance: textfield;
}
.input-wrapper .input-block .input[type=number]::-ms-clear, .input-wrapper .input-block .input[type=number]::-ms-reveal {
  display: none;
}
.input-wrapper.small .input-block {
  padding: 9px 14px;
}
@media screen and (max-width: 1280px) {
  .input-wrapper .label {
    font-size: 14px;
  }
  .input-wrapper .input-block {
    padding: 20px 34px;
  }
  .input-wrapper .input-block .input-text {
    font-size: 14px;
  }
  .input-wrapper.small .input-block {
    padding: 4px 14px;
  }
}
.big-dropdown {
  position: relative;
  z-index: 2;
}
.big-dropdown .button {
  padding: 30px;
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  border: 1px solid #727272;
}
.big-dropdown .button .icon {
  transition: all 0.3s ease-in-out;
  transform: rotate(180deg);
}
.big-dropdown .button .icon.open {
  transform: rotate(0);
}
.big-dropdown .dropdown-menu {
  opacity: 0;
  position: absolute;
  width: 100%;
  top: calc(100% + 15px);
  right: 0;
  border-radius: 10px;
  border: 1px solid #727272;
  padding: 14px 24px;
  background: white;
  max-height: 500px;
  overflow-x: auto;
}
.big-dropdown .dropdown-menu .list .item {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 16px;
  text-align: start;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.big-dropdown .dropdown-menu .list .item:hover {
  scale: 1.05;
  padding-left: 20px;
  color: #FB3F98;
}
.big-dropdown .dropdown-menu .list .item.active {
  color: #FB3F98;
}
.big-dropdown .dropdown-menu .list .item:not(:last-child) {
  border-bottom: 1px solid #F0F0F0 !important;
}
@media screen and (max-width: 1280px) {
  .big-dropdown .button {
    font-size: 14px;
  }
}

/* Minimal, component-scoped styles. You can move them to your SCSS later. */
[x-cloak] {
  display: none !important;
}

.burger-item {
  width: 100%;
}

.burger-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.burger-item__header:focus {
  outline: none;
}

.burger-item__title {
  flex: 1 1 auto;
}

.burger-item__icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
  opacity: 0.8;
}

.burger-item__icon.rotate {
  transform: rotate(180deg);
}

/* Body transitions: smoothly animate height and fade */
.burger-item__body {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}

.custom-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.custom-modal.alert-modal .modal-block {
  width: 100%;
  max-width: 737px;
}
.custom-modal.alert-modal .modal-block .section-title {
  margin-bottom: 30px;
  margin-top: 30px;
}
.custom-modal.alert-modal .modal-container .alert-wrapper {
  padding-top: 50px;
  padding-bottom: 30px;
  width: 90dvw;
  width: 90vw;
  max-width: 737px !important;
}
.custom-modal.alert-modal .modal-container .alert-wrapper .icon {
  margin-left: auto;
  margin-right: auto;
}
.custom-modal.alert-modal .modal-container .block-title {
  width: 100%;
  font-size: 32px;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .custom-modal.alert-modal .modal-container .block-title {
    font-size: 24px;
  }
}

.custom-modal.modal-open {
  opacity: 1;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 24, 39, 0.9);
}

.modal-wrapper {
  display: flex;
  min-height: 100%;
  justify-content: center;
  padding: 24px;
  text-align: center;
  align-items: center;
}

.modal-container {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  overflow-y: hidden;
}

.modal-panel {
  position: relative;
  transform: translateY(16px) scale(0.95);
  overflow: hidden;
  border-radius: 20px;
  background: white;
  text-align: left;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.custom-modal.modal-open .modal-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal-block {
  padding: 45px;
  width: 737px;
  max-width: 737px;
  height: fit-content;
  max-height: 75vh;
}
.modal-block .section-title {
  margin-bottom: 10px !important;
  color: black;
}
@media screen and (max-width: 1024px) {
  .modal-block {
    max-height: 75vh;
    width: fit-content;
  }
}
@media screen and (max-width: 768px) {
  .modal-block {
    padding: 30px;
  }
}
.modal-block {
  border-radius: 20px;
  background: white !important;
}
.modal-block .btn-wrapper {
  display: flex;
  justify-content: center;
}
.modal-block .btn-wrapper .btn-inner {
  width: 100%;
}
.modal-block .btn-wrapper .btn-inner:not(:last-child) {
  padding-right: 20px;
}
.modal-block .btn-wrapper .btn-inner:last-child {
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .modal-block .btn-wrapper {
    flex-wrap: wrap;
  }
  .modal-block .btn-wrapper .btn-inner:not(:last-child) {
    padding-right: 0;
    margin-bottom: 12px;
  }
  .modal-block .btn-wrapper .btn-inner:last-child {
    padding-left: 0;
  }
  .modal-block .desc-text {
    margin-bottom: 10px;
  }
  .modal-block .users-data {
    margin-bottom: 20px;
  }
  .modal-block .users-data .details-wrapper .icon {
    width: 34px;
    margin-right: 10px;
    aspect-ratio: 1/1;
    border-radius: 50%;
  }
  .modal-block .users-data .subscribers .number {
    margin-bottom: 10px;
    font-size: 34px;
  }
}

.modal-content {
  height: fit-content;
  max-height: 60vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.modal-button {
  position: absolute;
  top: 44px;
  right: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .modal-button {
    top: 28px;
    right: 28px;
  }
}
.modal-button .icon {
  stroke: black;
  transition: all 0.3s ease-in-out;
}
.modal-button.white-close .icon {
  stroke: white;
}
.modal-button:hover .icon {
  stroke: #FB3F98;
}
.modal-button.white-close:hover .icon {
  stroke: #e9e9e9;
}

.custom-modal.small-modal .modal-block {
  max-width: 607px;
}

.impersonation-banner-wrapper {
  position: fixed;
  left: 50%;
  top: 0;
  z-index: 999;
  transform: translateX(-50%);
}

.impersonation-banner {
  width: fit-content;
  display: flex;
  align-items: center;
  column-gap: 48px;
  row-gap: 10px;
  border-radius: 0 0 20px 20px;
}
.impersonation-banner > div {
  white-space: nowrap;
}
.impersonation-banner button {
  transition: all 0.3s ease-in-out;
}
.impersonation-banner button:hover {
  color: #FB3F98;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .impersonation-banner {
    flex-direction: column;
    text-align: center;
    max-width: 300px;
    width: min-content;
  }
  .impersonation-banner > div {
    white-space: normal;
    overflow: hidden;
    max-width: 100%;
    text-overflow: ellipsis;
  }
}

.guest-input {
  width: 100%;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.guest-input.with-error {
  margin-bottom: 35px;
}
.guest-input .error {
  top: calc(100% + 5px);
  position: absolute;
  font-size: 12px;
  color: #FF0000;
}
.guest-input .preview-icon {
  width: fit-content;
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}
.guest-input .show-password-icon {
  position: absolute;
  cursor: pointer;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}
.guest-input .input {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 16px 24px;
  border-radius: 10px;
  border: 1px solid black;
  font-size: 16px;
}
.guest-input .input.with-icon {
  padding-left: 60px;
}
.guest-input .input.with-hide {
  padding-right: 60px;
}
.guest-input .input:focus-visible, .guest-input .input:focus {
  outline: none;
  box-shadow: none;
}
@media screen and (max-width: 768px) {
  .guest-input .input {
    font-size: 14px;
  }
}

#youtube-connected-home-modal .section-title {
  width: fit-content;
  margin: 0 !important;
  margin-bottom: 10px !important;
}
#youtube-connected-home-modal .desc-text {
  margin-bottom: 40px;
  text-align: center;
}
#youtube-connected-home-modal .users-data {
  margin-bottom: 40px;
}
#youtube-connected-home-modal .users-data .details-wrapper {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#youtube-connected-home-modal .users-data .details-wrapper .icon {
  width: 54px;
  margin-right: 10px;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
#youtube-connected-home-modal .users-data .subscribers .number {
  margin-bottom: 10px;
  font-size: 64px;
  text-align: center;
  font-weight: 700;
}
#youtube-connected-home-modal .users-data .subscribers .text {
  text-align: center;
  font-weight: 600;
}

#connect-youtube-wrapper .guest-title {
  margin-bottom: 0;
}
#connect-youtube-wrapper .block-wrapper {
  margin-bottom: 24px;
}
#connect-youtube-wrapper .block-wrapper .block-title {
  margin-bottom: 10px;
}
#connect-youtube-wrapper .block-wrapper .list-disc .list-item {
  line-height: 1.5;
  font-size: 16px;
}
#connect-youtube-wrapper .privacy-statement {
  margin-bottom: 24px;
  padding: 24px;
  border: 2px solid white;
  background: white;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
#connect-youtube-wrapper .privacy-statement:hover {
  border-color: #FB3F98;
}
#connect-youtube-wrapper .checkbox-wrapper {
  position: relative;
}
#connect-youtube-wrapper .checkbox-wrapper .error-text {
  font-size: 12px;
  position: absolute;
  bottom: 14px;
}
#connect-youtube-wrapper .modal-block .section-title {
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  color: black;
  text-align: center;
}

#youtube-connect-error-modal .block-title {
  margin-bottom: 10px;
}

.pending-white-list .logo-wrapper {
  display: flex;
  justify-content: center;
}
.pending-white-list .section-separator {
  max-width: 160px;
  width: 100%;
  margin-top: 22px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .pending-white-list .section-separator {
    margin-top: 12px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 768px) {
  #youtube-connect-error-modal .section-title {
    font-size: 24px;
  }
}

.modal-block {
  max-width: 607px;
  width: 100%;
}

.error-text {
  color: #FF0000;
  font-size: 12px;
  margin-top: 10px;
}

.is-youtube-partner-program-section {
  color: #002696;
  font-size: 16px;
}
.is-youtube-partner-program-section .is-youtube-partner-program-body {
  display: flex;
  gap: 16px;
}
.is-youtube-partner-program-section .is-youtube-partner-program-body .is-youtube-partner-program-item {
  display: flex;
  gap: 6px;
  align-items: center;
}

.layout-guest {
  display: grid;
  place-items: center;
  padding: 40px 120px;
  min-height: 100dvh;
  min-height: 100vh;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%), linear-gradient(112deg, #04F 5.31%, #FF1B99 97.25%);
  position: relative;
}
.layout-guest .guest-divider {
  margin-right: 23px;
  margin-left: 23px;
  width: 100%;
  height: 1px;
  background: black;
}
.layout-guest .guest-wrapper {
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #E4EFFF;
  border-radius: 40px;
  box-shadow: 0 4px 34px 10px rgba(0, 0, 0, 0.05);
  position: relative;
}
.layout-guest .guest-wrapper .guest-image-wrapper {
  padding: 63px;
  border-radius: 20px;
  background: #FB3F98;
  height: 100%;
  display: flex;
  justify-content: center;
}
.layout-guest .guest-wrapper .guest-image-wrapper .guest-image {
  top: 63px;
  position: sticky;
  max-height: calc(100vh - 40px - 40px - 24px - 24px - 63px - 63px);
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}
.layout-guest .guest-wrapper .guest-image-wrapper .guest-image .guest-image-title {
  margin-bottom: 9px;
  font-size: 28px;
  font-weight: 700;
}
.layout-guest .guest-wrapper .guest-image-wrapper .guest-image .desc {
  font-size: 13px;
}
@media screen and (max-width: 1280px) {
  .layout-guest .guest-wrapper .guest-image-wrapper .guest-image .desc {
    margin-bottom: 30px;
  }
}
.layout-guest .auth-content-wrapper {
  height: 100%;
  padding-right: 160px;
  padding-top: 32px;
  padding-left: 42px;
  display: flex;
  flex-direction: column;
}
.layout-guest .auth-content-wrapper .logo {
  width: 200px;
  margin-bottom: 24px;
  flex: 0 0 auto;
}
.layout-guest .auth-content-wrapper .content-block {
  padding-bottom: 72px;
  display: grid;
  align-content: center;
  flex: 1 1 auto;
}
.layout-guest .guest-title {
  margin-bottom: 10px;
  font-size: 40px;
  font-weight: 700;
  color: #002696;
}
.layout-guest .guest-title span.gradient {
  background: var(--Gradient, linear-gradient(93deg, #0543FC 6.3%, #F61C9C 131.74%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.layout-guest .guest-text {
  margin-bottom: 28px;
  font-size: 18px;
  font-weight: 400;
}
.layout-guest .register-account .custom-checkbox {
  height: fit-content;
  min-height: 30px;
  display: flex;
  align-items: center;
}
.layout-guest .register-account .custom-checkbox .checkmark {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.layout-guest .register-account .custom-checkbox.red .checkmark {
  border-color: #FF0000;
}
.layout-guest .register-account .custom-checkbox .text {
  color: #727272;
}
.layout-guest .register-account .custom-checkbox .text a {
  color: #FB3F98;
  text-decoration: underline;
}
.layout-guest #enter-google2fa-login-modal .section-title,
.layout-guest #enter-email2fa-login-modal .section-title,
.layout-guest #enter-email-modal .section-title {
  color: black;
  margin-bottom: 10px;
}
.layout-guest #enter-google2fa-login-modal .text,
.layout-guest #enter-email2fa-login-modal .text,
.layout-guest #enter-email-modal .text {
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .layout-guest #enter-google2fa-login-modal .text,
  .layout-guest #enter-email2fa-login-modal .text,
  .layout-guest #enter-email-modal .text {
    font-size: 14px;
  }
}
.layout-guest.short-guest-wrapper {
  padding: 40px 0;
}
.layout-guest.short-guest-wrapper .auth-content-wrapper {
  padding-right: 42px;
}
.layout-guest.short-guest-wrapper .auth-content-wrapper .content-block {
  padding-bottom: 42px;
}
.layout-guest.short-guest-wrapper .guest-wrapper {
  max-width: 737px;
  display: flex;
  grid-template-columns: unset;
}
.layout-guest.short-guest-wrapper .guest-wrapper .guest-title {
  text-align: center;
}
.layout-guest.short-guest-wrapper .guest-wrapper .guest-text {
  text-align: center;
}
@media screen and (max-width: 1280px) {
  .layout-guest .auth-content-wrapper {
    padding-right: 60px;
    padding-top: 20px;
    padding-left: 0;
  }
  .layout-guest .auth-content-wrapper .content-block {
    padding-bottom: 60px;
  }
  .layout-guest.short-guest-wrapper .auth-content-wrapper {
    padding-right: 0;
  }
}
@media screen and (max-width: 1024px) {
  .layout-guest {
    padding: 40px;
  }
  .layout-guest .guest-wrapper .guest-image-wrapper {
    padding: 20px;
  }
  .layout-guest .guest-wrapper .guest-image-wrapper .guest-image {
    top: unset;
    position: static;
    height: 100%;
    max-height: unset;
  }
  .layout-guest .guest-wrapper .guest-image-wrapper .guest-image .desc {
    margin-bottom: 20px;
  }
  .layout-guest .auth-content-wrapper {
    padding-right: 20px;
  }
  .layout-guest .guest-title {
    font-size: 30px;
  }
  .layout-guest.short-guest-wrapper {
    padding: 40px;
  }
  .layout-guest.short-guest-wrapper .auth-content-wrapper {
    padding-right: 0;
  }
  .layout-guest.short-guest-wrapper .guest-wrapper {
    max-width: unset;
  }
}
@media screen and (max-width: 768px) {
  .layout-guest {
    padding: 24px;
  }
  .layout-guest .guest-wrapper {
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: fit-content;
    border-radius: 20px;
  }
  .layout-guest .auth-content-wrapper {
    padding: 0;
  }
  .layout-guest .auth-content-wrapper .link {
    display: none;
  }
  .layout-guest .auth-content-wrapper .content-block {
    padding: 0;
    margin-bottom: 32px;
  }
  .layout-guest .guest-text {
    margin-bottom: 0;
  }
  .layout-guest.short-guest-wrapper {
    padding: 24px;
  }
  .layout-guest.short-guest-wrapper .guest-wrapper .content-block {
    padding-bottom: 0;
  }
}
.guest-input .preview-icon img {
  width: 30px;
  height: 30px;
}

/*# sourceMappingURL=guest.css.map */
