@charset "UTF-8";
main section .swiper-button-prev, main section .swiper-button-next {
  z-index: 3;
  opacity: 1;
  margin-top: calc(var(--swiper-navigation-size) * -1 - 1rem);
  padding: 0;
  border: 0;
  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto var(--swiper-navigation-size);
  overflow: hidden;
  font-size: 0;
  text-indent: -999px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.section-relative-link a, .main-top .main-button > *, main section .more-contents > *, main section .swiper-controls span {
  position: relative;
  z-index: 1;
  border-width: 0;
  border-style: solid;
  border-color: transparent;
}

.section-relative-link a:before, .section-relative-link a:after, .main-top .main-button > *:before, .main-top .main-button > *:after, main section .more-contents > *:before, main section .more-contents > *:after, main section .swiper-controls span:before, main section .swiper-controls span:after {
  content: "";
  position: absolute;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.section-relative-link a:first-of-type, main section .swiper-controls span:first-of-type {
  margin-left: 0;
}

.section-relative-link a:last-of-type, main section .swiper-controls span:last-of-type {
  margin-right: 0;
}

/* 메인섹션공통 */
main#container {
  padding-top: 68px;
}
main section {
  --icon-size: 24px;
  --swiper-navigation-size: 24px;
  --swiper-pagination-size: 20px;
  position: relative;
  border-radius: 8px;
  background: #FFFFFF;
  text-align: left;
}
main section .swiper-controls {
  position: absolute;
  top: 16px;
  right: var(--section-padding-x);
  display: flex;
  --gap: 4px;
  gap: var(--gap);
}
main section .swiper-controls span {
  width: calc(var(--swiper-navigation-size) + 4px);
  margin-inline: 15px;
  border-radius: 4px;
  height: 28px;
  background-color: #F4F4F4;
  line-height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
}
main section .swiper-controls span:before, main section .swiper-controls span:after {
  background-color: #F4F4F4;
  transform: skewX(-12.8deg);
}
main section .swiper-controls span:before {
  left: -15px;
  border-radius: 4px 0 0 4px;
}
main section .swiper-controls span:after {
  right: -15px;
  border-radius: 0 4px 4px 0;
}
main section .swiper-controls span:nth-of-type(odd)::before {
  transform: skewX(12.8deg);
}
main section .swiper-controls span:nth-of-type(even)::after {
  transform: skewX(12.8deg);
}
main section .swiper-controls span:first-of-type {
  padding-left: 12px;
}
main section .swiper-controls span:first-of-type:before {
  display: none;
}
main section .swiper-controls span:last-of-type {
  padding-right: 12px;
}
main section .swiper-controls span:last-of-type:after {
  display: none;
}
main section .swiper-pagination-wrap {
  position: absolute;
  right: 0;
  bottom: 32px;
  z-index: 2;
  padding-inline: 32px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  --gap: 4px;
  gap: var(--gap);
}
main section .swiper-pagination-wrap .swiper-pagination-bullet {
  opacity: 1;
  border-radius: 0;
  width: 48px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.2);
}
main section .swiper-pagination-wrap .swiper-pagination-bullet-active {
  background-color: #FFFFFF;
}
main section .swiper-pagination-wrap .btn-pause, main section .swiper-pagination-wrap .btn-start {
  display: block;
  border-radius: 50%;
  width: var(--swiper-pagination-size);
  height: var(--swiper-pagination-size);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: var(--swiper-pagination-size);
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
}
main section .swiper-pagination-wrap .btn-pause {
  background-image: url(/asquare/images/main/ico_swiper_pause.png);
}
main section .swiper-pagination-wrap .btn-start {
  display: none;
  background-image: url(/asquare/images/main/ico_swiper_start.png);
}
main section .swiper-button-prev, main section .swiper-button-next {
  inset: 0;
  top: auto;
  right: auto;
  left: auto;
  display: inline-block;
  margin-top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
main section .swiper-button-prev:after, main section .swiper-button-next:after {
  display: none;
}
main section .swiper-button-prev {
  background-image: url(/asquare/images/main/ico_chevron_left.png);
}
main section .swiper-button-next {
  background-image: url(/asquare/images/main/ico_chevron_right.png);
}
main section .swiper-button-disabled {
  opacity: 0.4 !important;
  user-select: none;
  pointer-events: none;
}
main section .swiper-pagination {
  position: static;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 4px;
  width: auto !important;
  text-align: left;
}
main section .main-more {
  display: flex;
  justify-content: flex-end;
  padding-block: 16px;
  padding-inline: var(--section-padding-x);
}
main section .more-contents {
  --icon-size: 16px;
  filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.1));
  display: flex;
  gap: 0;
  white-space: nowrap;
}
main section .more-contents > * {
  margin-inline: 10px;
  border-radius: 4px;
  height: 28px;
  background-color: #FFFFFF;
  line-height: 28px;
}
main section .more-contents > *:before, main section .more-contents > *:after {
  background-color: inherit;
  transform: skewX(-13.5deg);
}
main section .more-contents > *:before {
  left: -10px;
  border-radius: 4px 0 0 4px;
}
main section .more-contents > *:after {
  right: -10px;
  border-radius: 0 4px 4px 0;
}
main section .more-contents > *:nth-of-type(odd) {
  margin-left: 0;
  padding-left: 8px;
}
main section .more-contents > *:nth-of-type(odd):before {
  display: none;
}
main section .more-contents > *:nth-of-type(even) {
  margin-right: 0;
  padding-right: 8px;
}
main section .more-contents > *:nth-of-type(even):after {
  display: none;
}
main section .more-contents span {
  border: 1px solid #DCDCDC;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  line-height: 1.25em;
  color: #0C121A;
  font-weight: 500;
}
main section .more-contents.type2 span {
  color: #0C121A;
}
main section .more-contents.type2 span:last-child {
  width: 29px;
}
main section .more-contents.type2 span:last-child img {
  max-width: none;
}
main section .more-contents > *:before, main section .more-contents > *:after {
  top: -1px;
  bottom: -1px;
  border: 1px solid #DCDCDC;
  height: inherit;
}
main section .more-contents > *:before {
  border-right: 0;
}
main section .more-contents > *:after {
  border-left: 0;
}

body:has(main#container) .header section.section-2 {
  display: none !important;
}

.section-wrap {
  --section-padding-x: 0px;
  position: relative;
  padding-block: 8px;
  display: flex;
  flex-direction: column;
  --gap: 12px;
  gap: var(--gap);
}

/* title */
.main-title {
  position: relative;
  padding-block: 16px;
  padding-inline: var(--section-padding-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  --gap: 12px;
  gap: var(--gap);
}
.main-title h1 {
  font-size: 32px;
  line-height: 1.25em;
  color: #0C121A;
  letter-spacing: -0.02em;
}

.main-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  --gap: 4px;
  gap: var(--gap);
}
.main-top .view-past-webzine {
  display: flex;
  align-items: center;
  --gap: 4px;
  gap: var(--gap);
}
.main-top .view-past-webzine .ui-button {
  flex-shrink: 0;
}
.main-top .view-past-webzine option[disabled] {
  display: none;
}
.main-top select.form-control {
  width: 100%;
  background-color: #FFFFFF;
}
.main-top .main-button {
  justify-content: center;
  display: flex;
  gap: 6px;
  white-space: nowrap;
}
.main-top .main-button > * {
  margin-inline: 28px;
  border-radius: 6px;
  height: 48px;
  background-color: #000;
  line-height: 48px;
}
.main-top .main-button > *:before, .main-top .main-button > *:after {
  background-color: inherit;
  transform: skewX(-12.8deg);
}
.main-top .main-button > *:before {
  left: -28px;
  border-radius: 6px 0 0 6px;
}
.main-top .main-button > *:after {
  right: -28px;
  border-radius: 0 6px 6px 0;
}
.main-top .main-button > *:nth-of-type(odd) {
  margin-left: 0;
  padding-left: 20px;
}
.main-top .main-button > *:nth-of-type(odd):before {
  display: none;
}
.main-top .main-button > *:nth-of-type(even) {
  margin-right: 0;
  padding-right: 20px;
}
.main-top .main-button > *:nth-of-type(even):after {
  display: none;
}
.main-top .main-button span {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  line-height: 1em;
  color: #FFFFFF;
  font-weight: 600;
}
.main-top .main-button span:first-child {
  justify-content: flex-start;
  gap: 10px;
  flex-grow: 1;
}
.main-top .main-button span:last-child {
  background-color: #D6007F;
}
.main-top .search-keyword {
  --icon-size: 30px;
  position: relative;
  margin-left: auto;
  width: 320px;
}
.main-top .search-input {
  padding-inline: 12px calc(12px + var(--icon-size));
  border: 0;
  border-radius: 0.25rem;
  width: 100%;
  color: #FFF;
  height: var(--form-lg, 40px);
  background-color: #0C121A;
}
.main-top .search-submit {
  position: absolute;
  top: calc(50% - var(--icon-size) / 2);
  right: 8px;
  z-index: 3;
  visibility: inherit;
  display: block;
  order: 9;
  border: none;
  width: var(--icon-size);
  height: var(--icon-size);
  color: transparent;
  line-height: var(--icon-size);
  text-align: center;
  cursor: pointer;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: var(--icon-size);
  background-image: url(/asquare/images/common/ico_search_typeB_wh.svg);
}

/* ----- 메인비주얼 */
.section-main-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
  color: #FFFFFF;
}
.section-main-visual .visual-swiper {
  width: 100%;
  max-width: 100%;
  height: 400px;
  background-color: #202020;
  overflow: hidden;
}
.section-main-visual .visual-swiper .swiper-wrapper {
  transition-timing-function: cubic-bezier(0.77, 0.3, 0.14, 1);
}
.section-main-visual .visual-swiper .item {
  border-radius: 8px;
  height: inherit;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.section-main-visual .visual-swiper .imgbox {
  position: absolute;
  inset: 0;
  z-index: 0;
  height: inherit;
}
.section-main-visual .visual-swiper .imgbox .img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.section-main-visual .visual-swiper .imgbox .img.desktop {
  aspect-ratio: 16/5;
}
.section-main-visual .visual-swiper .imgbox .img.tablet-mobile {
  display: none;
  aspect-ratio: 4/3;
}
.section-main-visual .visual-swiper .imgbox img {
  width: 100%;
  height: 100%;
  aspect-ratio: inherit;
  object-fit: cover;
}
.section-main-visual .visual-swiper .title-xs {
  --bg-size: 10px;
  position: absolute;
  top: 32px;
  right: 32px;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-inline: var(--bg-size);
  margin-bottom: 0;
  height: 2.5rem;
  background-color: #0084FF;
  color: #FFFFFF;
  font-size: 13px;
  line-height: 1.25em;
}
.section-main-visual .visual-swiper .title-xs:before, .section-main-visual .visual-swiper .title-xs:after {
  content: "";
  position: absolute;
  width: var(--bg-size);
  height: calc(100% - var(--bg-size));
  height: 100%;
}
.section-main-visual .visual-swiper .title-xs:before {
  top: 0;
  left: calc(var(--bg-size) * -1);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: var(--bg-size) auto;
  background-image: url(/asquare/images/main/bg_cornered_l.png);
}
.section-main-visual .visual-swiper .title-xs:after {
  right: calc(var(--bg-size) * -1);
  bottom: 0;
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: var(--bg-size) auto;
  background-image: url(/asquare/images/main/bg_cornered_r.png);
}
.section-main-visual .visual-swiper .textbox {
  position: relative;
  z-index: 2;
  padding: 32px;
  max-width: 900px;
  height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  --gap: 12px;
  gap: var(--gap);
}
.section-main-visual .visual-swiper .textbox .title {
  font-size: 36px;
  line-height: 1.25em;
  color: #0084FF;
  letter-spacing: -0.03em;
  font-weight: 800;
}
.section-main-visual .visual-swiper .textbox .description {
  color: #0084FF;
  font-size: 1.25rem;
  line-height: 1.5em;
  letter-spacing: -0.01em;
}
.section-main-visual .swiper-controls {
  display: none;
}
.section-main-visual *:focus {
  outline-width: 3px;
  outline-color: #066fef;
}
.section-main-visual .item:focus {
  outline-offset: -4px;
}

/* ----- 관련링크 */
.section-relative-link {
  --icon-size: 24px;
  position: relative;
  background-color: transparent;
  display: flex;
  align-items: center;
  --gap: 12px;
  gap: var(--gap);
}
.section-relative-link a {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  --gap: 4px;
  gap: var(--gap);
  margin-inline: 48px;
  border-radius: 8px;
  height: 80px;
  background-color: white;
  line-height: 80px;
}
.section-relative-link a:before, .section-relative-link a:after {
  background-color: white;
  transform: skewX(-12.8deg);
}
.section-relative-link a:before {
  left: -48px;
  border-radius: 8px 0 0 8px;
}
.section-relative-link a:after {
  right: -48px;
  border-radius: 0 8px 8px 0;
}
.section-relative-link a:nth-of-type(odd)::before {
  transform: skewX(12.8deg);
}
.section-relative-link a:nth-of-type(even)::after {
  transform: skewX(12.8deg);
}
.section-relative-link a:first-of-type {
  padding-left: 24px;
}
.section-relative-link a:first-of-type:before {
  display: none;
}
.section-relative-link a:last-of-type {
  padding-right: 24px;
}
.section-relative-link a:last-of-type:after {
  display: none;
}
.section-relative-link a:before, .section-relative-link a:after {
  background-color: inherit;
}

.section-relative-link a:hover {
    background-color:#3B82FC;
}

.section-relative-link a:hover * {
    color:#fff;
}

.section-relative-link a:hover .ico {
    filter:invert(100%);
}


.section-relative-link a h1 {
  font-size: 24px;
  line-height: 1.5em;
  color: #000;
  letter-spacing: -0.02em;
  font-weight: 700;
  line-height: 1.375em;
}
.section-relative-link a p {
  opacity: 0.5;
  font-size: 14px;
  line-height: 1.25em;
  color: #000;
  letter-spacing: -0.02em;
  font-weight: 400;
}
.section-relative-link a .ico {
  position: absolute;
  top: calc(50% - var(--icon-size) / 2);
  display: block;
  width: var(--icon-size);
  height: var(--icon-size);
  line-height: 0;
}
.section-relative-link .link-asquare {
  background-color: #D3D7DF;
}
.section-relative-link .link-asquare .ico {
  right: 0;
}
.section-relative-link .link-squaretalk {
  background-color: #D3D7DF;
}
.section-relative-link .link-squaretalk .ico {
  right: calc(var(--icon-size));
}

/* ----- 웹진 */
.section-webzine {
  position: relative;
  padding-block: 8px;
}
.section-webzine .swiper-controls {
  display: flex;
  align-items: center;
  height: 78px;
}
.section-webzine .main-title {
  margin-bottom: 8px;
  padding-right: 100px;
}
.section-webzine .main-title h1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px 32px;
}
.section-webzine .main-title h1 .corned-box {
  padding: 16px 44px;
  text-align: center;
}
.section-webzine .main-title h1 .num {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25em;
}
.section-webzine .swiper-area {
  position: relative;
  padding-left: var(--section-padding-x);
  overflow: hidden;
}
.section-webzine .webzine-nav-swiper {
  position: relative;
  overflow: hidden;
  line-height: 0;
}
.section-webzine .webzine-nav-swiper .swiper-slide {
  position: relative;
  margin-right: 8px;
  border: 0.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  width: auto;
  height: 40px;
  transition: 0.2s ease-in-out;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-webzine .webzine-nav-swiper .swiper-slide button {
  position: relative;
  padding-block: 6px;
  padding-inline: 12px;
  min-width: 40px;
  height: inherit;
  font-family: "Anonymous Pro", "Pretendard";
  white-space: nowrap;
  transition: 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  line-height: 1.25em;
  color: #000;
  letter-spacing: -0.025em;
  font-weight: 700;
  line-height: 20px;
}
.section-webzine .webzine-nav-swiper .swiper-slide:where(:hover, :focus, .on) {
  border-color: #000;
}
.section-webzine .webzine-nav-swiper .swiper-slide.on {
  background-color: #000;
}
.section-webzine .webzine-nav-swiper .swiper-slide.on button {
  color: #FFFFFF;
}
.section-webzine .webzine-nav-swiper .swiper-slide.on button .month {
  opacity: 1;
  color: #FFFFFF;
}
.section-webzine .webzine-nav-swiper .swiper-slide.on button:before {
  background-color: #FFFFFF;
}
.section-webzine .webzine-swiper {
  padding-block: 12px;
}
.section-webzine .webzine-swiper .swiper-slide {
  padding-right: 24px;
}
.section-webzine .webzine-swiper a {
  text-decoration: none;
}
.section-webzine .webzine-swiper a:where(:hover, :focus) .title {
  text-decoration: underline;
}
.section-webzine .webzine-swiper a:where(:hover, :focus) .thumb .default {
  position: absolute;
  visibility: hidden;
  opacity: 0;
}
.section-webzine .webzine-swiper a:where(:hover, :focus) .thumb .hover {
  position: relative;
  visibility: inherit;
  opacity: 1;
}
.section-webzine .webzine-swiper .thumb {
  width: 100%;
  aspect-ratio: 37/34;
}
.section-webzine .webzine-swiper .thumb img {
  transition: all 0.3s ease-in-out;
  aspect-ratio: inherit;
}
.section-webzine .webzine-swiper .thumb .default {
  position: relative;
  visibility: inherit;
  opacity: 1;
}
.section-webzine .webzine-swiper .thumb .hover {
  position: absolute;
  visibility: hidden;
  opacity: 0;
}
.section-webzine .webzine-swiper .badge {
  position: absolute;
  top: 4px;
  left: 4px;
  z-index: 2;
  border-radius: 3px;
}
.section-webzine .webzine-swiper .title {
  margin-block: 12px 8px;
  max-height: 3em;
  font-size: 18px;
  line-height: 1.25em;
  color: #0C121A;
  font-weight: 700;
  line-height: 1.5em;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  word-break: break-all;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.section-webzine .webzine-swiper p ~ p {
  margin-top: 8px;
}
.section-webzine .webzine-swiper .writer {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.25em;
  color: #0C121A;
  font-weight: 400;
}
.section-webzine .webzine-swiper .info {
  font-size: 14px;
  line-height: 1.25em;
  color: #0C121A;
  font-weight: 400;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  --gap: 8px;
  gap: var(--gap);
}
.section-webzine .webzine-swiper .info span {
  display: inline-block;
}
.section-webzine .webzine-swiper .hashtags {
  margin-top: 8px;
  line-height: 0;
  display: flex;
  flex-wrap: wrap;
  --gap: 2px 12px;
  gap: var(--gap);
}
.section-webzine .webzine-swiper .hashtags span {
  position: relative;
  display: inline-block;
  align-items: center;
  white-space: nowrap;
  font-size: 12px;
  line-height: 1.25em;
  color: #7A7A7A;
  letter-spacing: 0.01em;
  font-weight: 300;
}
.section-webzine .webzine-swiper .hashtags span:before {
  content: "# ";
  font-size: 0.85em;
  vertical-align: 1px;
}

/* ----- 공지사항 */
.section-notice {
  position: relative;
  padding-block: 8px;
}
.section-notice .main-board-list {
  --icon-size: 20px;
}
.section-notice .main-board-list ul {
  position: relative;
}
.section-notice .main-board-list ul li {
  padding: 12px var(--section-padding-x);
  border-bottom: 1px solid #F4F4F4;
}
.section-notice .main-board-list ul li a {
  text-decoration: none;
  display: flex;
  flex-wrap: wrap;
  --gap: 6px;
  gap: var(--gap);
}
.section-notice .main-board-list ul li a:where(:hover, :focus) .title {
  text-decoration: underline;
}
.section-notice .main-board-list ul li .new {
  display: inline-block;
  padding-inline: 8px;
  border-radius: 2px;
  height: 20px;
  background-color: #066fef;
  font-family: "Anonymous Pro", "Pretendard";
  text-align: center;
  font-size: 12px;
  line-height: 1.25em;
  color: #FFFFFF;
  font-weight: 300;
  line-height: 20px;
}
.section-notice .main-board-list ul li .title {
  width: 100%;
  font-size: 18px;
  line-height: 1.25em;
  color: #0C121A;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  white-space: nowrap;
}
.section-notice .main-board-list ul li .title span {
  line-height: inherit;
}
.section-notice .main-board-list ul li .info {
  display: flex;
  align-items: center;
}
.section-notice .main-board-list ul li .info span {
  position: relative;
  display: inline-block;
  padding-inline: 12px;
}
.section-notice .main-board-list ul li .info span:first-child {
  padding-left: 0;
}
.section-notice .main-board-list ul li .info span:not(:first-child):before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -4px;
  width: 1px;
  height: 8px;
  background-color: rgba(0, 0, 0, 0.1);
}
.section-notice .main-board-list ul li .info .writer {
  font-size: 14px;
  line-height: 1.25em;
  color: #0C121A;
  font-weight: 400;
}
.section-notice .main-board-list ul li .info .date {
  font-family: "Anonymous Pro", "Pretendard";
  font-size: 12px;
  line-height: 1.25em;
  color: #0C121A;
  font-weight: 400;
}
.section-notice .main-board-list ul li .info .hit {
  font-size: 12px;
  line-height: 1.25em;
  color: #B1B1B1;
  font-weight: 300;
}

/* modal popup */
#main-banner-modal .btn-popup-close.ico {
  top: 0;
  right: 0;
  width: 2rem;
  height: 2.5rem;
  background-image: url(/asquare/images/common/btn_close_popup_wh.png);
}
#main-banner-modal .modal-popup {
  padding-top: 2.5rem;
  border-radius: 0;
  width: auto !important;
  max-width: 1236px !important;
  background-color: transparent;
  text-align: center;
}
#main-banner-modal .modal-popup-header {
  padding-inline: 0;
  background-color: transparent;
}
#main-banner-modal .modal-popup-header .title {
  padding-block: 0;
  padding-right: 0;
  width: 100%;
  min-height: 0;
  text-align: left;
}
#main-banner-modal .modal-popup-body {
  padding-block: 0;
  padding-inline: 0;
  max-height: unset;
  background-color: transparent;
  overflow-y: unset;
}
#main-banner-modal .modal-popup-body .body-area {
  display: flex;
  flex-direction: column;
  justify-content: center !important;
  padding-inline: 0;
  height: auto !important;
  max-height: 100% !important;
  overflow-y: unset;
  color: #444;
  font-size: 0.813rem;
  line-height: 1.875em;
}
#main-banner-modal .modal-popup-footer {
  position: static;
  display: none;
  background-color: transparent;
}
#main-banner-modal .buttons {
  align-items: center;
  gap: 0;
  padding-block: 0;
  padding-inline: 0;
}
#main-banner-modal .buttons .ui-button {
  border-radius: 0;
  border-top-width: 2px;
  font-size: 0.75rem;
}
#main-banner-modal button.today-close {
  margin-top: 0.75rem;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5em;
  text-align: left;
}
#main-banner-modal .today-close.ui-check[type=checkbox i].lg-bl ~ label {
  margin-top: 0.75rem;
  padding-left: 28px;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5em;
  text-align: left;
}
#main-banner-modal .today-close.ui-check[type=checkbox i].lg-bl ~ label:before {
  border-radius: 4px;
  background-color: #FFFFFF;
}
#main-banner-modal .modal-img-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  max-height: 80vh;
  overflow-x: hidden;
  overflow-y: auto;
}
#main-banner-modal .modal-img-list > a,
#main-banner-modal .modal-img-list > img,
#main-banner-modal .modal-img-list > div {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 400px;
  background-color: #fff;
  object-fit: contain;
  aspect-ratio: 1;
}
#main-banner-modal .modal-img-list > a img,
#main-banner-modal .modal-img-list > img img,
#main-banner-modal .modal-img-list > div img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}