/********** bg **********/
#canvas-gradient {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.bg-grad {
  background: linear-gradient(
    0deg,
    var(--c-primary) 0%,
    var(--c-secondary) 100%
  );
}

/********** main visual **********/
.main-visual {
  height: 100%;
  min-height: 900px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
}
.evt-wrap {
  text-align: center;
  width: 100%;
  /* position: absolute; */
  /* left: 0; */
  /* top: calc(8rem + 7%); */
}
.evt-title {
  max-width: 604px;
  margin: 0 auto;
  margin-bottom: 3.5vh;
}
.evt-text {
  font-family: "Pretendard";
  font-size: 1.5rem;
  font-weight: 500;
  white-space: nowrap;
  margin-bottom: 3.5vh;
}
.evt-info {
  display: inline-block;
  margin: 0 auto 2.2vh;
}
.evt-info-item {
  text-align: left;
  display: flex;
  align-items: center;
}
.evt-info-item:not(:last-of-type) {
  margin-bottom: 0.625rem;
}
.evt-label {
  background-color: rgba(35, 44, 116, 0.8);
  border-radius: 1.5rem;
  display: block;
  font-weight: 700;
  margin-right: 1.25rem;
  padding: 0.5rem 1.95rem;
}
.evt-detail {
  display: inline-block;
}
.btn-register {
  background-color: var(--c-primary);
  border: 1px solid #fff;
  border-radius: 1.875rem;
  box-shadow: 0 1rem 2.5rem 0 rgba(0, 0, 0, 0.3);
  display: block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -1px;
  width: 21rem;
  margin: 0 auto;
  padding: 0.75rem 0;
}
.main-bg {
  width: 81%;
  height: 95.5%;
  background: url("https://assets.mvn.do/connect/assets/images/illust-main.png")
    no-repeat center bottom / 100% auto;
  margin: 0 auto 4.5%;
}

/********** invite **********/
.invite {
  letter-spacing: -1px;
  text-align: center;
  padding-top: 7.375rem;
}
.invite .inner {
  position: relative;
}
.invite-mail {
  width: 13.125rem;
  height: 13rem;
  margin: 0 auto;
}
.invite-title {
  background: url("https://assets.mvn.do/connect/assets/images/bg-text_invite.png")
    no-repeat center center / 100% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: 3.125rem;
  font-weight: 700;
  margin-top: 3rem;
}
.invite-content {
  background-color: var(--c-opaque);
  border-radius: 0.625rem;
  margin-top: 2rem;
  padding: 2.5rem 5.75rem;
}
.invite-text {
  font-size: 1.125rem;
}

.invite-text-desc {
  font-size: 0.75rem;
}

.invite-text:not(:last-of-type) {
  margin-bottom: 0.5rem;
}

/********** common **********/
.section-title {
  color: #fff;
  font-size: 3.75rem;
  font-weight: 700;
  text-align: center;
}

/********** schedule **********/
.schedule {
  padding-top: 11.25rem;
}
.tbl-schedule {
  margin-top: 1.5rem;
  padding: 0 1.75rem;
  table-layout: auto;
}
.tbl-schedule thead {
  border-bottom: 1px solid var(--c-border);
}
.tbl-schedule tr {
  width: 100%;
}
.tbl-schedule th {
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
}
.tbl-schedule th,
.tbl-schedule td {
  padding: 1rem;
}
.tbl-schedule .tbl-time {
  width: 15%;
  padding-left: 3.125%;
  vertical-align: top;
}
.tbl-schedule .tbl-wrap {
  display: flex;
  width: 100%;
  padding-right: 3.125%;
}
.tbl-schedule .tbl-program {
  width: 68.3%;
  padding-right: 1.5rem;
}
.tbl-schedule .tbl-name {
  width: 8.2%;
}
.tbl-schedule .tbl-affiliation {
  width: 24%;
  word-break: normal;
}
.tbl-schedule tbody .tbl-program {
  font-size: 1.125rem;
  letter-spacing: -0.5px;
}
.tbl-schedule .tr-session td {
  background-color: var(--c-primary);
  color: var(--c-border);
}
.tbl-schedule .tr-session .tbl-time {
  border-radius: 0.625rem 0 0 0.625rem;
}
.tbl-schedule .tr-session .tbl-time span {
  background-color: var(--c-primary);
  display: block;
  font-weight: 700;
  padding: 0.3rem 0;
}
.tbl-schedule .tr-session .tbl-wrap {
  border-radius: 0 0.625rem 0.625rem 0;
  padding-top: 1.3rem;
  padding-bottom: 1.3rem;
}
.tbl-schedule .tr-session .tbl-program {
  font-weight: 700;
}

/********** speaker **********/
.speaker {
  padding-top: 11.25rem;
}
.speaker-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.375rem;
}
.card {
  aspect-ratio: 3 / 4;
  background-color: transparent;
  perspective: 1000px;
  transform-style: preserve-3d;
}
.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
.card:hover .card-inner {
  transform: rotateY(180deg) translateZ(0);
}
.speaker-img {
  aspect-ratio: 1 / 1;
  background-color: var(--c-primary);
  border: 1px solid var(--c-border);
  border-radius: 50%;
  position: relative;
}
.speaker-img img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transform: translateZ(0);
}
.speaker-name {
  font-weight: 700;
}
.speaker-affiliation {
  font-size: 0.875rem;
  font-weight: 300;
  word-break: normal;
}
.speaker-program {
  border-top: 1px solid var(--c-border);
  font-size: 1rem;
  font-weight: 700;
  width: 100%;
  padding-top: 5%;
}
.card-front,
.card-back {
  background-color: var(--c-opaque);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
}
.card-front {
  justify-content: center;
  align-items: center;
}
.card-front .speaker-img {
  width: 58%;
}
.card-front .speaker-info {
  text-align: center;
  margin-top: 15%;
}
.card-front .speaker-name {
  font-size: 1.375rem;
}
.card-front .speaker-affiliation {
  margin-top: 0.7rem;
}
.card-back {
  justify-content: space-between;
  align-items: flex-start;
  padding: 13.3% 8.7%;
  transform: rotateY(180deg);
}
.card-back-wrap {
  display: flex;
  align-items: center;
  width: 100%;
}
.card-back .speaker-img {
  flex-shrink: 0;
  width: 18%;
  margin-right: 0.5rem;
}
.card-back .speaker-info {
  flex: 1;
}
.card-back .speaker-name {
  font-size: 1.25rem;
}

/*********** Event  Temp ***********/
.draw-event-temp {
  padding-top: 11.25rem;
  padding-bottom: 12.5rem;
  height: fit-content;
  width: 100%;
  min-height: 480px;
}
.event-table-wrapper-temp {
  display: flex;
  justify-content: center;
  align-items: center;
}
.event-table-temp {
  border-radius: 18px;
  background-color: #211c53;
  width: 100%;
}
.description-row-temp {
  padding: 72px 126px;
  display: flex;
  justify-content: space-between;
}
.description-text-stack-temp {
  color: black;
  gap: 10px;
  display: flex;
  flex-direction: column;
  width: 50%;
  padding-top: 24px;
  padding-right: 110px;
}
.description-text-number-temp {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  padding-bottom: 2px;
  border-radius: 24px;
  background-color: #d4af79;
  color: #211c53;
  font-size: 1.3rem; /* 대략 24px 전후 */
  font-weight: bold;
}
.description-text-title-temp {
  font-size: 2.2rem; /* 대략 24px 전후 */
  font-weight: 900; /* bold */
  color: #d4af79;
  line-height: 1.4;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.description-text-sub-temp {
  color: white;
  font-size: 1.5rem; /* 대략 24px 전후 */
  font-weight: 500; /* bold */
}
.description-photo-temp {
  width: 50%;
}
.photo-wall {
  max-width: 100%;
  height: auto;
}
.description-divider-wrapper-temp {
  display: flex;
  align-items: center;
  justify-content: center;
}
.description-divider-temp {
  width: 90%;
  height: 1px;
  border-top: 1px solid #d4af79;
}

.description-footer-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 52px;
}
.description-footer-text-container {
  background-color: #120c45;
  display: flex;
  border-radius: 6px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 90px;
  height: 150px;
  width: 84%;
}
.description-footer-text {
  font-size: 1.5rem;
  color: white;
  font-weight: 500;
}
.description-footer-color-text {
  font-size: 1.5rem;
  color: #d4af79;
  font-weight: 500;
}
.description-footer-caption {
  font-size: 1rem;
  color: white;
  font-weight: 500;
}
/************ Event ************/
.draw-event {
  padding-top: 11.25rem;
  padding-bottom: 12.5rem;
  height: fit-content;
  width: 100%;
  min-height: 480px;
}
.event-table-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.event-table {
  border: 1px solid white;
  border-radius: 6px;
  background-color: #ffffff;
  width: 90%;
}
.description-row {
  padding: 30px;
  display: flex;
  justify-content: space-between;
}
.description-text-stack {
  color: black;
  gap: 10px;
  display: flex;
  flex-direction: column;
  width: 50%;
  padding-right: 20px;
}
.description-text-number {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 24px;
  border-radius: 24px;
  color: white;
  font-weight: bold;
}
.description-text-title {
  font-size: 1.5rem; /* 대략 24px 전후 */
  font-weight: 700; /* bold */
  color: #000;
  line-height: 1.4;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.description-photo {
  width: 50%;
}

.prize-image-wrapper {
  position: relative;
  background-color: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 180px;
  max-height: 180px;
  aspect-ratio: 1 / 1;
}
.prize-image-wrapper img {
  max-width: 90%;
  height: auto;
}
.prize-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 33%;
}
.prize-list {
  padding-top: 64px;
  display: flex;
  gap: 16px;
}
.prize-rank {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #d4af7a;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
}
.prize-name {
  padding-top: 18px;
  font-size: 0.8rem;
  color: grey;
}
.description-divider-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.description-divider {
  width: 95%;
  height: 1px;
  border-top: 1px dashed grey;
}

/********** 2023 connect **********/
.connect {
  padding-bottom: 11.25rem;
}
.gallery {
  margin-top: 3.125rem;
}
.swiper-container {
  overflow: hidden;
}
.swiper-slide {
  border: 1px solid var(--c-border);
  border-radius: 0.625rem;
  overflow: hidden;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.navigation-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 96%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.swiper-button-prev,
.swiper-button-next {
  color: #fff;
  position: static;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.6;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 3.5rem;
}
.swiper-thumbs .swiper-wrapper {
  height: auto;
}
.gallery-top {
  aspect-ratio: 1 / 0.6;
  border-radius: 0.625rem;
  width: 73.75%;
  margin: 0 auto;
  overflow: hidden;
}
.gallery-top-wrap {
  margin-bottom: 3.125rem;
  position: relative;
}
.gallery-top .swiper-slide {
  width: 100%;
  height: 100%;
}
.gallery-thumbs .swiper-slide {
  aspect-ratio: 1 / 0.6;
  cursor: pointer;
  height: 116px;
}
.gallery-thumbs .swiper-slide img {
  opacity: 0.5;
}
.gallery-thumbs .swiper-slide-thumb-active img {
  opacity: 1;
}

/********** location **********/
.location {
  background-color: var(--c-bg-location);
  display: flex;
  min-height: 1200px;
}
.location-left,
.location-right {
  flex: 1;
}
.location-left {
  padding-top: 7.25rem;
  padding-bottom: 4.75rem;
}
.location-info {
  width: 72%;
  margin: 3.125rem auto 0;
}
.transportation-wrap,
.airport-wrap {
  margin-top: 2.25rem;
}
.location-info .tit {
  color: var(--c-border);
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  margin-bottom: 0.625rem;
}
.location-info .ico {
  width: 0.95rem;
  height: 0.95rem;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  margin-right: 0.15rem;
}
.ico-address {
  background-image: url("https://assets.mvn.do/connect/assets/images/ico-address.png");
}
.ico-bus {
  background-image: url("https://assets.mvn.do/connect/assets/images/ico-bus.png");
}
.ico-plane {
  background-image: url("https://assets.mvn.do/connect/assets/images/ico-plane.png");
}
.location-info .content {
  background-color: var(--c-opaque);
  border-radius: 1rem;
  display: flex;
  padding: 1.25rem 3.62%;
}
.location-info .vertical-content {
  display: block;
}
.location-info .content:not(:first-of-type) {
  margin-top: 1rem;
}
.location-info .sub-tit {
  flex-shrink: 0;
  font-weight: 700;
  width: 25%;
  min-width: 95px;
}
.location-info .sub-tit + p {
  flex: 1;
}
.location-info .depth {
  flex: 1;
}
.method-wrap {
  display: flex;
  align-items: flex-start;
}
.method-wrap:not(:last-of-type) {
  margin-bottom: 1.85rem;
}
.method-name {
  flex-shrink: 0;
  display: block;
  width: 20%;
}
.method {
  flex: 1;
  color: #ccc;
  font-size: 0.875rem;
}
.method-info:not(:last-of-type) {
  margin-bottom: 0.25rem;
}

.location-right #map {
  width: 100%;
  height: 100%;
}

.marker-group {
  position: relative;
}
.marker-image {
  width: 4rem;
}
.marker-text {
  width: 15rem;
  position: absolute;
  left: 50%;
  top: calc(100% - 1rem);
  transform: translateX(-50%);
}
.marker-text img {
  width: 100%;
}

/********** register **********/
.register {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1020;
}
.register.show {
  display: block;
  animation: fadeIn 0.4s alternate;
}
.register .modal {
  background-color: #fff;
  border-radius: 0.625rem;
  color: #000;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 45rem;
  max-height: 90%;
  padding: min(3vw, 80px);
  padding-right: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}
.btn-close {
  background: url("https://assets.mvn.do/connect/assets/images/ico-close.png")
    no-repeat center center / contain;
  text-indent: -9999em;
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  right: 3%;
  top: 1.5rem;
  transition: opacity 0.2s;
}
.btn-close:hover {
  opacity: 0.7;
}
.modal-inner {
  height: 100%;
  overflow-y: auto;
}
.modal-inner::-webkit-scrollbar {
  width: 6px;
  background-color: transparent;
}
.modal-inner::-webkit-scrollbar-thumb {
  background-color: #616061;
  border-radius: 20px;
  max-height: 20px;
}
.modal-inner::-webkit-scrollbar-track {
  background-color: #cecece;
  border-radius: 20px;
}
.modal-scroll {
  padding-right: min(3vw, 80px);
}
.modal-scroll .tit-wrap h4 {
  font-size: 2.15rem;
  font-weight: 700;
}
.modal-scroll .tit-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.25rem;
}
.modal-scroll .tit-bot > p {
  color: #616061;
}

#register-form {
  margin-top: 2rem;
}
#register-form .user-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#register-form .input-wrap {
  width: 48.5%;
}
#register-form .input-wrap:not(:first-of-type) {
  margin-top: 0.5rem;
}
#register-form .input-wrap label {
  font-size: 0.75rem;
  font-weight: 500;
  display: block;
  margin-bottom: 0.3rem;
}
#register-form .input-wrap input,
#register-form .selected-option {
  background-color: #fafafa;
  border: 1px solid #cdced6;
  border-radius: 0.3rem;
  color: #333;
  width: 100%;
  height: 2.75rem;
}
#register-form .input-wrap input::placeholder {
  color: #989898;
}
#register-form .input-wrap input::-webkit-placeholder {
  color: #989898;
}
#register-form .input-wrap input::-moz-placeholder {
  color: #989898;
}
#register-form .input-name {
  width: 100%;
}
#register-form .input-business,
#register-form .input-department {
  margin-right: 2.5%;
}
#register-form .custom-select {
  position: relative;
}
#register-form .selected-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.75rem;
}
#register-form .selected-option .ico-chevron {
  background-size: 100% 100%;
  width: 1rem;
  height: 0.5625rem;
}
.business-options,
.countryCode-options {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease-out;
  width: 100%;
  position: absolute;
  left: 0;
  top: 3.25rem;
  z-index: 10;
}
.business-inner,
.countryCode-inner {
  overflow: hidden;
}
.business-list,
.countryCode-list {
  background-color: #fafafa;
  color: #333;
  padding: 0.75rem;
}
.business-item,
.countryCode-item {
  cursor: pointer;
}
.business-item:not(:last-child),
.countryCode-item:not(:last-child) {
  margin-bottom: 0.8rem;
}
.business-item:hover,
.business-item.active,
.countryCode-item:hover,
.countryCode-item.active {
  color: #3db3e3;
}
#register-form .input-phone {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
#register-form .input-phone label {
  width: 100%;
}
#register-form .select-countryCode {
  width: 6.875rem;
  margin-right: 0.5rem;
}
#register-form #phone {
  flex: 1;
}
.business-list {
  border: 1px solid #cdced6;
  border-radius: 0.3rem;
}
.countryCode-overflow {
  border: 1px solid #cdced6;
  max-height: 12rem;
  overflow-y: auto;
}
.countryCode-list {
  height: 100%;
  position: relative;
}
.select-business.open .ico-chevron,
.select-countryCode.open .ico-chevron {
  transform: scaleY(-1);
  filter: invert(75%) sepia(34%) saturate(3753%) hue-rotate(166deg)
    brightness(91%) contrast(96%);
}
.select-business.open .business-options,
.select-countryCode.open .countryCode-options {
  grid-template-rows: 1fr;
}

input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  background: #fafafa;
  border: 1px solid #cdced6;
  margin-right: 0.45rem;
}
input[type="checkbox"]:checked {
  background: var(--c-point)
    url("https://assets.mvn.do/connect/assets/images/ico-check.png") no-repeat
    center center / 75% auto;
  border-color: var(--c-point);
}
#register-form .agree-info {
  font-size: 0.75rem;
  margin-top: 2rem;
}
#register-form .agree-info label {
  display: block;
  width: 100%;
}
#register-form .agree-info .content {
  display: flex;
  align-items: center;
  width: 100%;
}
.lbl-all .content {
  border-bottom: 1px solid #cdced6;
  color: var(--c-point);
  font-size: 0.875rem;
  font-weight: 700;
  padding-bottom: 0.75rem;
}
.lbl-personal,
.lbl-marketing {
  position: relative;
  padding: 1rem 0;
}
.lbl-personal .con-top,
.lbl-marketing .con-top {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lbl-personal .detail,
.lbl-marketing .detail {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease-out;
}
.lbl-personal .detail-inner,
.lbl-marketing .detail-inner {
  overflow: hidden;
}
.lbl-personal .detail-content,
.lbl-marketing .detail-content {
  background-color: #fafafa;
  border: 1px solid #cdced6;
  border-radius: 0.3rem;
  color: #333;
  font-weight: 300;
  letter-spacing: -0.5px;
  margin-top: 0.75rem;
  padding: 1rem 0.875rem;
}
.lbl-marketing {
  border-bottom: 1px solid #cdced6;
}
.btn-more {
  display: flex;
  align-items: center;
}
.btn-more .ico-chevron {
  width: 0.75rem;
  height: 0.4rem;
  margin-left: 0.2rem;
}
.lbl-personal.open .detail,
.lbl-marketing.open .detail {
  grid-template-rows: 1fr;
}
.lbl-personal.open .btn-more .ico-chevron,
.lbl-marketing.open .btn-more .ico-chevron {
  transform: scaleY(-1);
  filter: invert(75%) sepia(34%) saturate(3753%) hue-rotate(166deg)
    brightness(91%) contrast(96%);
}

.btn-submit {
  background-color: var(--c-point);
  border-radius: 0.625rem;
  color: #fff;
  font-size: 1.5rem;
  height: 56px;
  font-weight: 700;
  width: 100%;
  margin-top: 1.25rem;
}

.popup {
  display: none;
  position: fixed;
  z-index: 9999 !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  background: white;
  padding: 0;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  max-width: 500px;
  width: 90%;
  overflow: hidden;
  animation: popupFadeIn 0.3s ease-out;
}

@keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -48%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.popup-image {
  width: 100%;
  height: auto;
  display: block;
}

.popup-footer {
  padding: 20px;
  background: #f8f9fa;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.custom-checkbox input {
  display: none;
}

.checkbox-icon {
  width: 18px;
  height: 18px;
  border: 2px solid #ddd;
  border-radius: 4px;
  margin-right: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.custom-checkbox input:checked + .checkbox-icon {
  background: #4a90e2;
  border-color: #4a90e2;
}

.custom-checkbox input:checked + .checkbox-icon:after {
  content: "✓";
  color: white;
  font-size: 12px;
}

.close-btn {
  background: #4a90e2;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.2s;
}

.close-btn:hover {
  background: #357abd;
}

.popup-bg {
  display: none;
  position: fixed;
  z-index: 9998 !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  backdrop-filter: blur(3px);
  animation: bgFadeIn 0.3s ease-out;
}

@keyframes bgFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .popup {
    width: 95%;
  }

  .popup-footer {
    flex-direction: column;
    gap: 15px;
  }

  .close-btn {
    width: 100%;
    padding: 12px;
  }
}

.checkbox-text {
  color: black;
}
