@charset "utf-8";
/* 고객센터 */
.sorting-qna-area {
    overflow-y: hidden;
    overflow-x: scroll;
}
.sorting-qna {
    display: flex;
    justify-content: left;
    align-items: center;
    flex-wrap: nowrap;
    margin-top: 2rem;
    height: 2.6rem;
}
.sorting-qna li {
    flex-shrink: 0;
    margin-right: 0.5rem;
}
.sorting-qna li:last-of-type {
    margin-right: 0;
}
.sorting-qna-area::-webkit-scrollbar,
.sorting-qna-area::-webkit-scrollbar-thumb,
.sorting-qna-area::-webkit-scrollbar-track {
    background: transparent;
}
.sorting-qna-area::-webkit-scrollbar {
    height: 0;
}
@media only screen and (min-width: 1024px) {
    .sorting-qna {
        height: 2.5rem;
        padding-bottom: 0.4rem; /* [D]24.02.20 추가 */
    }
    .sorting-qna-area::-webkit-scrollbar {
        height: 0.4rem; /* [D]24.02.20 수정 */
    }
    .sorting-qna-area::-webkit-scrollbar-thumb {
        background-color: transparent;  /* [D]24.02.20 수정 */
        border-radius: 10px;
    }
    /* [D]24.02.20 추가 s */
    .sorting-qna-area:hover::-webkit-scrollbar-thumb {
        background-color: var(--color-gray200);
    }
    /* [D]24.02.20 추가 e */
    .sorting-qna-area::-webkit-scrollbar-track {
        background-color: #fff;
    }
}
.list-notice-cs {
    margin-top: 2rem;
    border-top: 1px solid var(--color-black);
    border-bottom: 1px solid var(--color-black);
}
.list-notice-cs li {
    overflow: hidden;
    width: 100%;
    padding: 2rem 0;
    border-top: 1px dotted var(--color-gray300);
    text-overflow: ellipsis;
    white-space: nowrap;
}
.list-notice-cs li:first-child {
    border-top: 0;
}

/* 공지사항 목록 */
.list-notice {
    margin-top: 2rem;
}
.list-notice li {
    border-top: 1px solid var(--color-gray200);
}
.list-notice li:first-child {
    border-top: 0;
}
.list-notice li > a {
    display: block;
    padding: 2rem 0;
}
.list-notice li .label-group {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 0.5rem;
}
.list-notice li .notice-tit {
    display: -webkit-box;
    overflow: hidden;
    margin: 1rem 0;
    width: 95%;
    font-size: 1.5rem;
    font-weight: lighter;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.list-notice li .notice-infor {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 0.5rem;
}
.list-notice li .notice-infor dt,
.list-notice li .notice-infor dd {
    color: var(--color-gray500);
    font-size: 1.3rem;
    font-weight: lighter;
}
.list-notice li .notice-infor dd:nth-of-type(1):after {
    display: inline-block;
    margin: 0.1rem  0 0 0.5rem;
    color: var(--color-gray500);
    font-size: 1rem;
    vertical-align: top;
    content: "|";
}

/* 이벤트 목록 */
.list-evt {
    margin-top: 1.5rem;
}
.list-evt li {
    padding: 3rem 0 2rem;
    border-top: 1px dotted var(--color-gray200);
}
.list-evt li:first-child {
    padding-top: 0;
    border-top: 0;
}
.list-evt li > a {
    display: block;
}
.list-evt li > a .evt-thumbnail > img {
    display: block;
    width: 100%;
    height: 18rem;
    border: 1px solid rgba(0,0,0,0.1);
    object-fit: cover;
    border-radius: 15px;
    overflow: hidden;
}
.list-evt li > a .evt-tit {
    display: block;
    overflow: hidden;
    margin: 2rem 0 1rem;
    width: 100%;
    font-size: 1.5rem;
    font-weight: bold;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.list-evt li > a .evt-date {
    color: var(--color-gray500);
    font-size: 1.5rem;
    font-weight: lighter;
}

/* 클래스찾기 - 클래스검색 */
.tab-class-wrap .tab-class-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    height: 9rem;
}
.tab-class-wrap .tab-class-menu li {
    flex: 1 1 20%;
}
.tab-class-wrap .tab-class-menu li [class^="btn-tab"] {
    position: relative;
    padding-top: 5.3rem;
    width: 100%;
    height: 9rem;
    background-position: 50% 1rem;
    background-repeat: no-repeat;
    background-size: 5rem;
    color: var(--color-gray500);
    font-size: 1.5rem;
    font-weight: lighter;
    text-align: center;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.tab-class-wrap .tab-class-menu li [class^="btn-tab"][class*="-all"] {
    background-image: url("../images/contents/ico_class_all.svg");
}
.tab-class-wrap .tab-class-menu li [class^="btn-tab"][class*="-adult"] {
    background-image: url("../images/contents/ico_class_adult.svg");
}
.tab-class-wrap .tab-class-menu li [class^="btn-tab"][class*="-child"] {
    background-image: url("../images/contents/ico_class_child.svg");
}
.tab-class-wrap .tab-class-menu li [class^="btn-tab"][class*="-baby"] {
    background-image: url("../images/contents/ico_class_baby.svg");
}
.tab-class-wrap .tab-class-menu li [class^="btn-tab"][class*="-animal"] {
    background-image: url("../images/contents/ico_class_animal.svg");
}
.tab-class-wrap .tab-class-menu li.active [class^="btn-tab"] {
    color: var(--color-black);
    font-weight: bold;
}
.tab-class-wrap .tab-class-menu li.active [class^="btn-tab"][class*="-all"] {
    background-image: url("../images/contents/ico_class_all_active.svg");
}
.tab-class-wrap .tab-class-menu li.active [class^="btn-tab"][class*="-adult"] {
    background-image: url("../images/contents/ico_class_adult_active.svg");
}
.tab-class-wrap .tab-class-menu li.active [class^="btn-tab"][class*="-child"] {
    background-image: url("../images/contents/ico_class_child_active.svg");
}
.tab-class-wrap .tab-class-menu li.active [class^="btn-tab"][class*="-baby"] {
    background-image: url("../images/contents/ico_class_baby_active.svg");
}
.tab-class-wrap .tab-class-menu li.active [class^="btn-tab"][class*="-animal"] {
    background-image: url("../images/contents/ico_class_animal_active.svg");
}
.tab-class-wrap .tab-class-menu li [class^="btn-tab"]:after {
    -webkit-transition: all 1.0s;
    transition: all 1.0s;
}
.tab-class-wrap .tab-class-menu li.active [class^="btn-tab"]:after {
    display: block;
    position: absolute;
    bottom: -0.6rem;
    width: 100%;
    color: var(--color-gray100);
    font-size: 1.8rem;
    line-height: 1rem;
    text-align: center;
    content: "◆";
}
.tab-class-wrap .tab-class-menu.single li.active [class^="btn-tab"]:after {
    content: none;
}
.tab-class-wrap .tab-category-menu {
    display: none;
    background-color: var(--color-gray100);
    -webkit-transition: all 1.0s;
    transition: all 1.0s;
}
.tab-class-wrap .tab-category-menu.active {
    display: block;
}
.tab-class-wrap .tab-category-menu ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    align-items: center;
    padding: 0.5rem 0.5rem 1rem;
}
.tab-class-wrap .tab-category-menu ul li {
    flex: 0 1 20%;
    height: 4.2rem;
    text-align: center;
}
.tab-class-wrap .tab-category-menu li .btn-category {
    padding: 1.2rem 0 0.2rem;
    font-size: 1.5rem;
    font-weight: lighter;
}
.tab-class-wrap .tab-category-menu li .btn-category .today-class-menu {
    text-indent: -999999px;
    font-size: 0;
    width: 7.2rem;
    height: 2rem;
    background: url('../images/ico/ico_today_class.svg') no-repeat center / 100%;
}
.tab-class-wrap .tab-category-menu li .btn-category.fs-m {
    padding-top: 1.3rem;
}
.tab-class-wrap .tab-category-menu li.active .btn-category {
    border-bottom: 3px solid var(--color-black);
    font-weight: bold;
}
.btn-search-class-detail {
    display: block;
    width: 1.6rem;
    height: 1.6rem;
    background: url("../images/btn/btn_search_class_detail.svg") 50% 50% no-repeat;
    background-size: 100%;
}
.btn-array {
    display: block;
    width: 1.6rem;
    height: 1.6rem;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 100%;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.btn-array.thumbnail {
    background-image: url("../images/btn/btn_array_thumbnail.svg");
}
.btn-array.list {
    background-image: url("../images/btn/btn_array_list.svg");
}
.view-thumbnail,
.view-list {
    -webkit-transition: all .3s;
    transition: all .3s;
}
.view-thumbnail > ul {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3rem 0.5rem;
}
.view-thumbnail > ul > li {
    flex: calc(50% - 0.25rem) 0 0;
    width: calc(50% - 0.25rem);
}
.view-thumbnail .thumbnail-area {
    position: relative;
    margin-bottom: 1rem;
    padding-top: 100%;
    width: 100%;
    height: 0;
}
.view-thumbnail .thumbnail-area [class^="badge"] {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    z-index: 10;
}
.view-thumbnail .thumbnail-area .bottom-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
    padding: 0 0.5rem 0 1rem;
    width: 100%;
    height: 3.5rem;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.04), #000);
}
.view-thumbnail .thumbnail-area .bottom-area > span {
    color: var(--color-white);
    font-size: 1.3rem;
    font-weight: lighter;
}
.view-thumbnail .thumbnail-area > a > img {
    position: absolute;
    top: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
}
.view-thumbnail .text-area {
    display: block;
    padding: 0 0.5rem;
}
.view-thumbnail .text-area .ellipsis2 {
    height: 4.4rem;
    font-size: 1.5rem;
    font-weight: bold;
}
.view-thumbnail .text-area .info-class {
    display: block;
    margin: 0.5rem 0 0.2rem;
    font-size: 1.3rem;
}
.view-thumbnail .text-area .info-class span:before {
    display: inline-block;
    margin: 0 0.5rem;
    width: 0.1rem;
    height: 1rem;
    background-color: var(--color-black);
    content: "";
}
.view-thumbnail .text-area .info-class span:first-child:before {
    content: none;
}
.view-thumbnail .text-area .date {
    color: var(--color-gray500);
    font-size: 1.3rem;
}
.view-thumbnail .text-area .price-area {
    margin: 1rem 0;
    height: 4.5rem;
}
.view-thumbnail .text-area .price-area .price-top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 0.2rem;
    height: 1.8rem;
}
.view-thumbnail .text-area .price-area .price-top del {
    color: var(--color-gray500);
    font-size: 1.3rem;
    line-height: 1;
}
.view-thumbnail .text-area .price-area .price-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 2.7rem;
}
.view-thumbnail .text-area .price-area .price-bottom .discount-rate {
    color: var(--color-primary);
    font-size: 2rem;
    font-weight: bold;
}
.view-thumbnail .text-area .price-area .price-bottom .discount-rate > small {
    font-size: 1.3rem;
    font-weight: bold;
}
.view-thumbnail .text-area .price-area .price-bottom .real-price {
    font-size: 2rem;
    font-weight: bold;
}
.view-thumbnail .text-area .price-area .price-bottom .real-price > small {
    font-size: 1.8rem;
    font-weight: normal;
}
.view-list {
    margin: 0 -2rem;
    padding: 0;
}
.view-list > ul {
    padding: 0 2rem;
}
.view-list > ul > li {
    padding: 2rem 0;
    border-top: 1px dotted var(--color-gray300);
}
.view-list .top-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}
.view-list .top-area .name {
    font-size: 1.3rem;
}
.view-list .ellipsis {
    font-size: 1.5rem;
    font-weight: bold;
}
.view-list .class-time {
    margin: 0.5rem 0;
    font-size: 1.3rem;
    font-weight: lighter;
}
.view-list .class-time span:before {
    display: inline-block;
    margin: 0 0.5rem;
    width: 0.1rem;
    height: 1rem;
    background-color: var(--color-black);
    content: "";
}
.view-list .class-time span:first-child:before {
    content: none;
}
.view-list .information-area {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.view-list .information-area .date {
    color: var(--color-gray500);
    font-size: 1.3rem;
}
.view-list .information-area del {
    color: var(--color-gray500);
    font-size: 1.3rem;
}
.view-list .price-area {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 1rem;
    margin-bottom: 1rem;
}
.view-list .price-area em {
    color: var(--color-primary);
    font-size: 2rem;
    font-weight: bold;
}
.view-list .price-area em > small {
    font-size: 1.3rem;
    font-weight: bold;
}
.view-list .price-area strong {
    font-size: 2rem;
    font-weight: bold;
}
.view-list .price-area strong > small {
    font-size: 1.8rem;
    font-weight: normal;
}
.view-list .bottom-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.view-list .bottom-area .f-sorting {
    width: 16.5rem;
}

/* 클래스찾기 - 수강 금액 내역 */
table.price-table tbody th {
    padding: 0.5rem 0;
    font-size: 1.5rem;
    font-weight: lighter;
    text-align: left;
}
table.price-table tbody td {
    padding: 0.5rem 0;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: right;
}
table.price-table tbody:first-child tr th,
table.price-table tbody:first-child tr td {
    padding-top: 0;
}
table.price-table tbody tr:last-of-type th,
table.price-table tbody tr:last-of-type td {
    padding-bottom: 1.5rem;
}
table.price-table tfoot tr:first-child th,
table.price-table tfoot tr:first-child td {
    border-top: 1px solid var(--color-black);
}
table.price-table tfoot th {
    padding-top: 2rem;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: left;
    vertical-align: middle;
}
table.price-table tfoot td {
    padding-top: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    text-align: right;
    vertical-align: middle;
}
table.price-table .v-top {
    vertical-align: top;
}
table.price-table.line tbody tr:first-child th,
table.price-table.line tbody tr:first-child td {
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-black);
}
table.price-table.line tbody tr:last-of-type th
table.price-table.line tbody tr:last-of-type td {
    border-bottom: 1px solid var(--color-black);
}

/* 클래스찾기 - 수강후기 상세 */
.review-detail-wrap .review-title {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--color-gray200);
}
.review-detail-wrap .review-title > a {
    font-size: 1.9rem;
    font-weight: bold;
    text-decoration: underline;
}
.review-detail-wrap .review-title > p {
    font-size: 1.9rem;
    font-weight: bold;
}
.review-detail-wrap .review-contents {
    margin-bottom: 3rem;
}

/* swiper - 가로,세로100% + 인디케이터 타입 */
.swiper.gallery {
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.12);
}
.swiper.gallery .swiper-slide .img-wrap {
    padding-top: 100%;
    width: 100%;
    height: 0;
}
.swiper.gallery .swiper-slide .img-wrap img {
    position: absolute;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper.gallery .swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    bottom: 2rem;
    height: 0.7rem;
}
.swiper.gallery .swiper-pagination .swiper-pagination-bullet {
    display: block;
    margin: 0 0.35rem;
    width: 0.7rem;
    height: 0.7rem;
    background-color: var(--color-white);
    opacity: 1;
}
.swiper.gallery .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--color-black);
}

/* swiper - 가로100%, 세로224 + 인디케이터 타입 */
.swiper.gallery.multiroom {
    height: 22.4rem;
    border: 0;
}
.swiper.gallery.multiroom .swiper-slide .img-wrap {
    padding-top: 0;
    width: 100%;
    height: 22.4rem;
}
.swiper.gallery.multiroom .swiper-slide .img-wrap img {
    position: relative;
    top: auto;
    height: 22.4rem;
}

/* swiper - 클래스상세 */
.swiper.class {
    margin-top: 1rem;
    height: 20rem;
}
.swiper.class .swiper-slide .img-wrap {
    width: 100%;
    height: 20rem;
}
.swiper.class .swiper-slide .img-wrap img {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 20rem;
    border-radius: 15px;
    object-fit: cover;
}
.swiper.class .swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    bottom: 2rem;
    height: 0.7rem;
}
.swiper.class .swiper-pagination .swiper-pagination-bullet {
    display: block;
    margin: 0 0.35rem;
    width: 0.7rem;
    height: 0.7rem;
    background-color: var(--color-white);
    opacity: 1;
}
.swiper.class .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--color-black);
}

/* 클래스찾기 - 클래스상세 - 달력, 시간 선택 */
.calendar-wrap {
    margin-top: 3rem;
}
.calendar-wrap .calendar-head {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0 1.5rem;
    height: 5rem;
    border-top: 3px solid var(--color-black);
}
.calendar-wrap .calendar-head > strong {
    width: 50%;
    font-size: 2rem;
    font-weight: bold;
    line-height: 4.5rem;
    text-align: center;
}
.calendar-wrap .calendar-head .btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4.7rem;
}
.calendar-wrap .calendar-head .btn > button {
    width: 1.2rem;
    height: 1.2rem;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 1.2rem;
}
.calendar-wrap .calendar-head .btn .btn-prev-month {
    background-image: url("../images/ico/ico_arrow_left.svg");
}
.calendar-wrap .calendar-head .btn .btn-next-month {
    background-image: url("../images/ico/ico_arrow_right3.svg");
}
.calendar-wrap .calendar-head .btn > button:disabled {
    pointer-events: none;
    opacity: 0.2;
}
.calendar-wrap .calendar-body {
    border-top: 1px solid var(--color-black);
}
.calendar-wrap .calendar-body table thead th {
    padding: 2rem 0 0.6rem;
    width: calc(100% / 7);
    font-size: 1.5rem;
    font-weight: normal;
    text-align: center;
}
.calendar-wrap .calendar-body table tbody td {
    padding: 0.5rem 0;
    width: calc(100% / 7);
    height: 3rem;
    font-size: 1.5rem;
    font-weight: lighter;
    text-align: center;
}
.calendar-wrap .calendar-body table tbody td button {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    color: var(--color-black);
    font-size: 1.5rem;
    font-weight: lighter;
    text-align: center;
}
.calendar-wrap .calendar-body table tbody td button.impossibility {
    color: var(--color-gray200);
}
.calendar-wrap .calendar-body table tbody td button.select,
.calendar-wrap .calendar-body table tbody td button.btn-cal-chc.select {
    background-color: var(--color-primary);
    color: var(--color-white);
}
.calendar-wrap.schedule {
    margin-top: 0;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-black);
}
.calendar-wrap.schedule .calendar-head {
    border-top: 0;
}
.calendar-wrap.schedule .calendar-body table tbody td {
    padding: 1.7rem 0;
    height: 6.8rem;
    font-size: 1.5rem;
}
.calendar-wrap.schedule .calendar-body table tbody td button {
    width: 3.4rem;
    height: 3.4rem;
    color: var(--color-gray500);
    font-size: 1.5rem;
    font-weight: lighter;
    line-height: 3.4rem;
}
.calendar-wrap.schedule .calendar-body table tbody td .day {
    display: block;
    position: relative;
    margin: 0 auto;
    width: 3.4rem;
    height: 3.4rem;
    color: var(--color-black);
    font-size: 1.5rem;
    font-weight: lighter;
    line-height: 3.4rem;
    text-align: center;
}
.calendar-wrap.schedule .calendar-body table tbody td .status-attend .day {
    font-weight: bold;
}
.calendar-wrap.schedule .calendar-body table tbody td .status-attend .day:before {
    position: absolute;
    top: 0.7rem;
    right: 0.3rem;
    z-index: 4;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 2.5px;
    background-color: var(--color-black);
    content: "";
}
.calendar-wrap.schedule .calendar-body table tbody td .status-miss .day {
    color: var(--color-gray500);
    font-weight: bold;
}
.calendar-wrap.schedule .calendar-body table tbody td .status-miss .day:before {
    position: absolute;
    top: 0.7rem;
    right: 0.3rem;
    z-index: 4;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 2.5px;
    background-color: var(--color-gray500);
    content: "";
}
.calendar-wrap.schedule .calendar-body table tbody td .status-class .day {
    color: var(--color-primary);
    font-weight: bold;
}
.calendar-wrap.schedule .calendar-body table tbody td .status-class .day:before {
    position: absolute;
    top: 0.7rem;
    right: 0.3rem;
    z-index: 4;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 2.5px;
    background-color: var(--color-primary);
    content: "";
}
.calendar-wrap.schedule .calendar-body table tbody td.active .day:before {
    content: none;
}
.calendar-wrap.schedule .calendar-body table tbody td.active .status-attend .day {
    border-radius: 50%;
    background-color: var(--color-black);
    color: var(--color-white);
}
.calendar-wrap.schedule .calendar-body table tbody td.active .status-miss .day {
    border-radius: 50%;
    background-color: var(--color-gray500);
    color: var(--color-white);
}
.calendar-wrap.schedule .calendar-body table tbody td.active .status-class .day {
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-white);
}
.calendar-wrap .select-time-area {
    overflow-y: hidden;
    overflow-x: scroll;
}
.calendar-wrap .select-time {
    display: flex;
    justify-content: left;
    align-items: center;
    flex-wrap: nowrap;
    margin-top: 2rem; /* [D]24.03.12 수정 */
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 9.3rem;
}
.calendar-wrap .select-time li {
    position: relative; /* [D]24.03.12 추가 */
    flex-shrink: 0;
    margin-right: 0.5rem;
}
.calendar-wrap .select-time li:last-of-type {
    margin-right: 0;
}
/* [D]24.03.12 추가 start */
.calendar-wrap .select-time li.coupon-bubble-badge::before {
    content: 'coupon';
    display: block;
    width: 4.2rem;
    height: 1.9rem;
    background: url('../images/ico/ico_coupon_bubble.svg') no-repeat center / 100%;
    position: absolute;
    top: -0.8rem;
    left: 1rem;
    z-index: 1;
    font-size: 0;
    text-indent: -999999rem;
}
/* [D]24.03.12 추가 end */
.calendar-wrap .select-time-area::-webkit-scrollbar,
.calendar-wrap .select-time-area::-webkit-scrollbar-thumb,
.calendar-wrap .select-time-area::-webkit-scrollbar-track {
    background: transparent;
}
.calendar-wrap .select-time-area::-webkit-scrollbar {
    height: 0;
}
@media only screen and (min-width: 1024px) {
    .calendar-wrap .select-time {
        height: 9.4rem;
    }
    .calendar-wrap .select-time-area::-webkit-scrollbar {
        height: 0.6rem;
    }
    .calendar-wrap .select-time-area::-webkit-scrollbar-thumb {
        background-color: #aaa;
        border-radius: 10px;
    }
    .calendar-wrap .select-time-area::-webkit-scrollbar-track {
        background-color: #fff;
    }
}
.calendar-wrap .select-time li .btn-select-time {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 11rem;
    height: 9.3rem;
    border-radius: 10px;
    border: 1px solid var(--color-gray300);
}
.calendar-wrap .select-time li .btn-select-time .status {
    color: var(--color-gray500);
    font-size: 1.5rem;
    font-weight: lighter;
}
.calendar-wrap .select-time li .btn-select-time .time {
    margin: 0.1rem 0 0.4rem;
    color: var(--color-gray500);
    font-size: 1.5rem;
    font-weight: bold;
}
.calendar-wrap .select-time li .btn-select-time .limit {
    color: var(--color-gray500);
    font-size: 1.3rem;
    font-weight: lighter;
}
.calendar-wrap .select-time li.active .btn-select-time {
    border: 2px solid var(--color-primary);
}
.calendar-wrap .select-time li.active .btn-select-time .status {
    color: var(--color-primary);
    font-weight: bold;
}
.calendar-wrap .select-time li.active .btn-select-time .time {
    color: var(--color-primary);
}
.calendar-wrap .select-time li.active .btn-select-time .limit {
    color: var(--color-primary);
}
.review-list li {
    padding: 2rem 0;
    border-top: 1px solid var(--color-gray200);
}
.review-list li:nth-of-type(1) {
    border-top: 0;
}

/* swiper - 포토리스트 공통 */
.swiper.review-photo-list {
    margin-top: 2rem;
    height: 9rem;
}
.swiper.review-photo-list .swiper-wrapper {
    height: 9rem;
}
.swiper.review-photo-list .swiper-slide {
    margin-right: 1rem;
    padding: 0;
    border: 0;
    width: auto;
    height: 9rem;
}
.swiper.review-photo-list .swiper-slide:last-of-type {
    margin-right: 0;
}
.swiper.review-photo-list .swiper-slide img {
    display: block;
    width: 9rem;
    height: 9rem;
    border-radius: 8px;
    object-fit: cover;
}

/* swiper - 추천클래스 */
.swiper.recommend-list {
    margin-top: 2rem;
    height: 24.4rem;
}
.swiper.recommend-list .swiper-wrapper {
    height: 24.4rem;
}
.swiper.recommend-list .swiper-slide {
    margin-right: 1rem;
    padding: 2rem 2rem 0;
    width: 22rem;
    height: 24.4rem;
    border: 1px solid var(--color-gray200);
}
.swiper.recommend-list .swiper-slide:last-of-type {
    margin-right: 0;
}
.recommend-list li .label-area {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 0.5rem;
}
.recommend-list li .ellipsis2 {
    margin-top: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    height: 4.5rem;
}
.recommend-list li .date {
    font-size: 1.3rem;
    font-weight: lighter;
}
.recommend-list li .info-class {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    font-weight: lighter;
}
.recommend-list li .price-area {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 1rem;
    height: 5.7rem;
}
.recommend-list li .price-area {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 5.2rem;
}
.recommend-list li .price-area > em {
    color: var(--color-primary);
    font-size: 2rem;
    font-weight: bold;
}
.recommend-list li .price-area > em > small {
    font-size: 1.3rem;
}
.recommend-list li .price-area .real-price {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    height: 5.2rem;
}
.recommend-list li .price-area .real-price > del {
    color: var(--color-gray500);
    font-size: 1.3rem;
    font-weight: lighter;
    line-height: 1.2;
}
.recommend-list li .price-area .real-price > strong {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.2;
}
.recommend-list li .price-area .real-price > strong > small {
    font-size: 1.8rem;
    font-weight: normal;
}
.recommend-list li .bottom-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 1rem 0 2rem;
    width: 100%;
    height: 5rem;
    border-top: 1px dotted var(--color-gray300);
}
.recommend-list li .bottom-area > span {
    font-size: 1.3rem;
}
.turn-information {
    display: flex;
    justify-content: left;
    align-items: stretch;
    flex-wrap: wrap;
    padding-left: 0.3rem;
}
.turn-information dt {
    flex: 4.6rem 0 0;
    position: relative;
    padding-left: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
}
.turn-information dt:before {
    display: block;
    position: absolute;
    top: 0.7rem;
    left: -0.1rem;
    height: 100%;
    border-left: 1px dotted var(--color-black);
    content: "";
}
.turn-information dt:last-of-type:before {
    content: none;
}
.turn-information dt:after {
    display: block;
    position: absolute;
    top: 0.7rem;
    left: -0.3rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: var(--color-black);
    content: "";
}
.turn-information dd {
    position: relative;
    flex: calc(100% - 5rem) 0 1;
    padding: 0 0 2.5rem 1rem;
    font-size: 1.5rem;
}
/* [D]23.04.25 주석처리 */
/* .turn-information dd:last-of-type {
    padding-bottom: 0;
} */
.turn-information dd:before {
    display: block;
    position: absolute;
    top: 0.1rem;
    left: 0;
    color: var(--color-black);
    font-size: 1.3rem;
    content: "⫶";
}
/* [D]23.04.25 추가 start */
.turn-information dd.class-end::after {
    content: '수업이 종료되었습니다.';
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(100% + 14%);
    height: calc(100% - 2.5rem);
    position: absolute;
    top: 0;
    left: -14%;
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: bold;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
}
/* [D]23.04.25 추가 end */
/* [D]25.02.18 추가 start */
.turn-information dd.accept-end::after {
    content: '접수가 마감되었습니다.';
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(100% + 14%);
    height: calc(100% - 2.5rem);
    position: absolute;
    top: 0;
    left: -14%;
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: bold;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
}
/* [D]23.04.25 추가 end */

/* 클래스찾기 - 클래스상세 검색 */
.search-word-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: -2rem -2rem 2rem;
    height: 5.3rem;
    border-bottom: 1px solid var(--color-gray200);
}
.search-word-wrap .search-word-list {
    display: flex;
    justify-content: left;
    align-items: center;
    flex-wrap: nowrap;
    gap: 2rem;
    overflow-y: hidden;
    overflow-x: scroll;
    padding-left: 2rem;
    width: calc(100% - 4rem);
    min-width: calc(100% - 4rem);
    max-width: 100%;
}
.search-word-wrap .search-word-list button.btn-word {
    flex-shrink: 0;
    padding-right: 1.5rem;
    background: url("../images/btn/btn_close_popup.svg") 100% 50% no-repeat;
    background-size: 1rem;
    font-size: 1.5rem;
}
.search-word-wrap .search-word-list::-webkit-scrollbar,
.search-word-wrap .search-word-list::-webkit-scrollbar-thumb,
.search-word-wrap .search-word-list::-webkit-scrollbar-track {
    background: transparent;
}
.search-word-wrap .search-word-list::-webkit-scrollbar {
    height: 0;
}
@media only screen and (min-width: 1024px) {
    .search-word-wrap .search-word-list {
        height: 5.2rem;
    }
    .search-word-wrap .search-word-list::-webkit-scrollbar {
        height: 0.6rem;
    }
    .search-word-wrap .search-word-list::-webkit-scrollbar-thumb {
        background-color: #aaa;
        border-radius: 10px;
    }
    .search-word-wrap .search-word-list::-webkit-scrollbar-track {
        background-color: #fff;
    }
}
.search-word-wrap .btn-reset {
    margin-right: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    background: url("../images/btn/btn_reset.svg") 50% 50% no-repeat;
    background-size: 100%;
}
.select-word {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
}
.select-word li {
    flex: calc(50% - 0.5rem) 0 0;
}
.select-word.three {
    justify-content: flex-start;
}
.select-word.three li {
    flex: calc((100% - 2rem) / 3) 0 0;
}
/* 22.10.17 한유진 추가 start */
.select-word.free li {
    flex: auto;
}
/* 22.10.17 한유진 추가 end */
.select-word li.w-full {
    flex: 100% 0 0;
}
.select-word.weekly {
    gap: 0.4rem; /* [D]24.04.25 수정 */
}
.select-word.weekly li {
    flex: 4.7rem 0 0;
    text-align: center;
}
.select-word.weekly li .f-check-btn > label,
.select-word.weekly li .f-check-btn input[type="checkbox"] + label {
    margin: 0 auto;
    width: 4.7rem;
    height: 4.5rem;
    border-radius: 50%;
    line-height: 4.5rem;
}
.select-word li .w65{
    flex: 65% 0 0;
}
.select-word li .w35{
    flex: 35% 0 0;
}

/* 이용약관, 개인정보 */
.footer-page {
    margin-top: 2rem;
    color: var(--color-gray500) !important;
    font-size: 1.3rem !important;
    font-weight: lighter !important;
    line-height: 2.2rem !important;
}
.footer-page strong {
    color: var(--color-black) !important;
    font-size: 1.5rem !important;
}
.footer-page .contents-common {
    color: var(--color-black) !important;
    line-height: 2.2rem !important;
}
.footer-page .policy-list {
    margin-top: 3rem
}
.footer-page .policy-list li {
    margin-top: 2rem;
}
.footer-page .policy-list li:nth-of-type(1) {
    margin-top: 0;
}
.footer-page .policy-list li > a {
    display: block;
    font-size: 1.3rem !important;
    font-weight: lighter !important;
    line-height: 2.2rem !important;
}
.footer-page .policy-contents {
    margin-top: 3rem;
    border-top: 1px solid var(--color-gray200);
}
.footer-page .policy-contents li {
    padding: 3rem 0;
    border-bottom: 1px solid var(--color-gray200);
    line-height: 2.2rem !important;
}

/* 점검 일정 */
.notice-schedule {
    margin-top: 7rem;
    width: 100%;
    border-top: 2px solid var(--color-black);
    border-bottom: 2px solid var(--color-black);
}
.notice-schedule dt {
    padding: 2rem 0 1rem;
    font-size: 1.3rem;
    font-weight: lighter;
}
.notice-schedule dd {
    padding-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: bold;
}
.notice-schedule dd:nth-of-type(1) {
    border-bottom: 1px dotted var(--color-gray300);
}

/* 주문결제 */
.payment-subject-list {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2rem;
}
.payment-subject-list li {
    flex: calc(50% - 0.25rem) 0 0;
}
.select-group {
    margin: 2rem 0 1.5rem;
}
.select-group li:first-child {
    margin-top: 0;
}
.select-group li {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    padding: 1.5rem 0 1.5rem 2rem;
    height: 5.2rem;
    border-radius: 12px;
    border: 1px solid var(--color-gray200);
    color: var(--color-gray500);
    font-size: 1.5rem;
    font-weight: lighter;
}
.select-group li span {
    font-size: 1.5rem;
    line-height: 2rem;
}
.select-group li .f-check label {
    font-weight: bold;
}
.select-group li .f-check input:checked + label {
    color: var(--color-primary);
}
.select-group li.active {
    border: 2px solid var(--color-secondary);
}
.select-group li.between {
    justify-content: space-between;
    padding-right: 2rem;
}
.select-group li.between .f-select {
    width: 7rem;
}

/* 메인 - 스와이퍼 공통 */
.swiper-wrapper .swiper-slide .img-wrap.round {
    overflow: hidden;
    position: relative;
    border-radius: 15px;
}

/* 메인 - 스와이퍼 영역 */
.main-swiper {
    overflow: hidden;
    position: relative;
    margin-bottom: 2rem;
    width: 100%;
    height: 100%;
}
.main-swiper .txt-wrap {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 0 3rem 2.5rem;
    width: 100%;
    color: var(--color-white);
    background: linear-gradient(transparent, rgba(0,0,0,0.4));
}
.main-swiper .txt-wrap > h3 {
    position: relative;
    z-index: 0;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: bold;
}
.main-swiper .txt-wrap > h3 > i {
    display: inline-block;
    padding: 0 0.5rem 0.3rem;
    line-height: 3.7rem;
    background-color: var(--color-black);
}
.main-swiper .txt-wrap > h3 > i + span {
    display: block;
    margin-top: 0.1rem;
    padding: 0 0.5rem;
    line-height: 3.9rem;
}
.main-swiper .txt-wrap > .btn-link-new.text {
    display: inline-block;
    position: relative;
    padding-left: 0.5rem;
}
.main-swiper .txt-wrap > .btn-link-new.text > span {
    background: url("../images/main/ico_arrow_right_white.svg") 100% 50% no-repeat !important;
}
.main-swiper-control {
    right: 3rem;
    bottom: 2.5rem;
    z-index: 1;
}
.main-swiper-pagination {
    width: 3rem;
    color: var(--color-white);
}
.main-swiper-pagination span {
    font-size: 1.3rem;
    font-weight: lighter;
    color: var(--color-white);
}
.main-swiper .swiper-button-play {
    width: 1.6rem;
    height: 1.6rem;
    background: url("../images/main/btn_play.svg") 100% 50% no-repeat;
    opacity: 0.6;
}
.main-swiper .swiper-button-play.active {
    opacity: 1;
}
.main-swiper .swiper-button-pause {
    width: 1.6rem;
    height: 1.6rem;
    background: url("../images/main/btn_stop.svg") 100% 50% no-repeat;
    opacity: 0.6;
}
.main-swiper .swiper-button-pause.active {
    opacity: 1;
}
.main-swiper .img-wrap {
    position: relative;
    padding-top: 100%;
    width: 100%;
    height: 0;
}
.main-swiper .img-wrap img {
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* [D]23.05.15 기존 contents.css 파일 1488번 라인 ~ 2851 라인 안에 있는 내용에 여기에서 부터 아래 [D]23.05.15 end까지 적혀있는 부분까지 복사해서 붙여넣기 해주세요. */
/* 메인 - 강의 타이틀 영역 - 공통 */


/* [D]23.06.14 삭제 요청 start */
/* [D]23.06.14 삭제 요청 start */
/* [D]23.06.14 삭제 요청 start */
/* [D]23.06.14 삭제 요청 start */
/* .title-before,
.title-after {
    z-index: 1;
}
.title-before::before {
    content: '';
    display: block;
    width: 1.2rem;
    height: 0.1rem;
    background: var(--color-black);
    position: absolute;
    top: 1.2rem;
    left: -2rem;
}*/
/*.title-after i {
    content: '';
    display: block;
    width: 5rem;
    height: 5rem;
    position: absolute;
    z-index: -1;
}
.title-after.after1 i {
    top: -1.5rem;
    right: -2.4rem;
}
.title-after.after2 i {
    bottom: 0;
    right: -2.4rem;
} */
/* [D]23.06.14 삭제 요청 end */
/* [D]23.06.14 삭제 요청 end */
/* [D]23.06.14 삭제 요청 end */
/* [D]23.06.14 삭제 요청 end */
/* [D]23.06.14 삭제 요청 end */


.main_sub_banner_wrap {
    width: 100%;
    height: 48vw;
    border-radius: .8rem;
    overflow: hidden;
    margin: 2.5rem 0 1.5rem;
}
/* [D]23.05.12 추가 start */
@media only screen and (min-width: 1024px) {
    .main_sub_banner_wrap {
        height: 18rem;
    }
}
/* [D]23.05.12 추가 end */
.main_sub_banner_wrap a {
    display: block;
    width: 100%;
    height: 100%;
}
.main_sub_banner_wrap a img {
    width: 100%;
    height: 100%;
}
/* [D]23.05.11 수정 end */

/* [D]23.05.11 수정 start */
/* 메인 - typ1 클래스 영역 */
.typ1-class .swiper-typ1-class {
    margin-right: -2rem;
    padding-right: 2rem;
}
.typ1-class .swiper-slide {
    width: 26rem;
    height: auto;
}
.typ1-class .swiper-slide .img-wrap {
    display: block;
    padding-top: 100%;
    width: 100%;
    height: 0;
}
.typ1-class .swiper-slide .img-wrap img {
    position: absolute;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.typ1-class .btn-add-wish {
    right: 1rem;
    bottom: 1rem;
    z-index: 10; /* [D]24.08.19 수정 */
}
.typ1-class .txt-wrap .d-flex p:nth-of-type(1) {
    color: var(--color-gray500);
}
.typ1-class .txt-wrap .class-title {
    min-height: 4.5rem;
}
.typ1-class .txt-wrap .price-wrap {
    justify-content: flex-end !important;
    align-items: baseline !important;
}
.typ1-class .txt-wrap .price-wrap b {
    color: var(--color-primary);
}
.typ1-class .txt-wrap .price-wrap del {
    color: var(--color-gray500);
    margin-left: auto;
    margin-right: 0.5rem;
}
/* [D]23.05.11 수정 end */

/* 메인 - 프라이빗 클래스 영역 */
.m-wrap > main > section.request-banner {
    padding: 3rem 0 1rem;
}
.request-banner .request-banner-wrap {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    padding: 3.5rem 2rem 3.8rem;
    background: url("../images/temp/banner_main.jpg") 50% 50% no-repeat;
    background-size: cover;
    z-index: 1;
}
.request-banner .request-banner-wrap::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(0,0,0,0.5), transparent);
    z-index: -1;
}
.request-banner .request-banner-wrap p {
    color: var(--color-white);
    font-size: 1.6rem;
}
.request-banner .request-banner-wrap .btn-link-new.text {
    width: 8rem;
    height: 3rem;
    background-color: var(--color-black);
    color: var(--color-white);
}
.request-banner .request-banner-wrap .btn-link-new.text > span {
    display: inline-block;
    height: 3rem;
    background: url("../images/main/ico_arrow_right_white.svg") 100% 50% no-repeat !important;
    line-height: 3rem;
}

/* [D]23.05.11 수정 start */
/* 메인 - typ2 클래스 영역 */
.typ2-class .swiper-typ2-class {
    margin-right: -2rem;
    padding-right: 2rem;
    height: 26rem;
}
.typ2-class .swiper-slide {
    width: 14rem;
    height: auto;
}
.typ2-class .txt-wrap .class-title {
    min-height: 4.5rem;
}
.typ2-class .swiper-slide .img-wrap {
    display: block;
    padding-top: 100%;
    width: 100%;
    height: 0;
}
.typ2-class .swiper-slide .img-wrap img {
    position: absolute;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.typ2-class .btn-add-wish {
    right: 0.7rem;
    bottom: 0.7rem;
    z-index: 10; /* [D]24.08.19 수정 */
}
.typ2-class .txt-wrap .d-flex p:nth-of-type(1) {
    color: var(--color-primary);
    margin-left: 0;
}

/* 메인 - typ3 클래스 영역 */
.typ3-class .swiper-typ3-class {
    margin-right: -2rem;
    padding-right: 2rem;
}
.typ3-class .swiper-slide {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    column-gap: 1rem;
    row-gap: 2rem;
    width: 14rem;
    height: auto;
}
.typ3-class .swiper-slide > div {
    position: relative;
    width: calc((100% - 2rem) / 3);
}
.typ3-class .txt-wrap .class-title {
    min-height: 3.5rem;
    font-size: 1.2rem;
}
.typ3-class .swiper-slide .img-wrap {
    display: block;
    padding-top: 100%;
    width: 100%;
    height: 0;
}
.typ3-class .swiper-slide .img-wrap img {
    position: absolute;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.typ3-class .btn-add-wish {
    right: 0.7rem;
    bottom: 0.7rem;
    z-index: 10; /* [D]24.08.19 수정 */
}
.typ3-class .txt-wrap .d-flex p:nth-of-type(1) {
    color: var(--color-primary);
    margin-left: 0;
}
/* [D]23.05.11 추가 start */
.typ3-class .typ3-class-pagination {
    margin-top: 2.5rem;
    text-align: center;
}
.typ3-class .typ3-class-pagination span {
    width: .7rem;
    height: .7rem;
    border-radius: 3.5rem;
}
.typ3-class .typ3-class-pagination span.swiper-pagination-bullet-active {
    background: #000;
}

/* 메인 - typ5 클래스 영역 */
.typ5-class .swiper-typ5-class {
    margin-right: -2rem;
    padding-right: 2rem;
}
.typ5-class .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 2.5rem;
    width: calc(100% - 5.5rem);
    height: auto;
}
.typ5-class .swiper-slide > div {
    position: relative;
    display: flex;
    gap: 1.5rem;
}
.typ5-class .txt-wrap .class-title {
    min-height: 4rem;
    font-size: 1.3rem;
}
.typ5-class .swiper-slide .img-wrap {
    display: block;
    width: 10rem;
    height: 10rem;
}
.typ5-class .swiper-slide .img-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.typ5-class .btn-add-wish {
    right: 0.7rem;
    bottom: 0.7rem;
    z-index: 10; /* [D]24.08.19 수정 */
}
.typ5-class .swiper-slide .txt-wrap {
    width: calc(100% - 11.5rem);
}
.typ5-class .txt-wrap .d-flex p:nth-of-type(1) {
    color: var(--color-primary);
    margin-left: 0;
}

/* 메인 - typ6 클래스 영역 */
.typ6-class .typ6-class-list {
    width: calc(100% - 1rem);
    margin: 1.5rem auto .5rem;
    border-radius: 1.5rem;
    overflow: hidden;
    padding: 1.5rem;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.typ6-class .typ6-class-list li {
    display: flex;
    align-items: flex-start;
    width: 100%;
    height: auto;
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.typ6-class .txt-wrap .class-title {
    min-height: 3.8rem;
    font-size: 1.3rem;
}
.typ6-class .typ6-class-list li .img-wrap {
    position: relative;
    display: block;
    width: 9rem;
    height: 9rem;
}
.typ6-class .typ6-class-list li .img-wrap.round {
    border-radius: .8rem;
    overflow: hidden;
}
.typ6-class .typ6-class-list li .img-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.typ6-class .btn-add-wish {
    right: 0.7rem;
    bottom: 0.7rem;
    z-index: 10; /* [D]24.08.19 수정 */
}
.typ6-class .typ6-class-list li .txt-wrap {
    width: calc(100% - 10.5rem);
}
.typ6-class .typ6-class-list li .txt-wrap .d-flex p:nth-of-type(1) {
    color: var(--color-primary);
    margin-left: 0;
    font-size: 1.2rem;
}
.typ6-class .txt-wrap .price-wrap {
    justify-content: flex-end !important;
    align-items: baseline !important;
}
.typ6-class .txt-wrap .price-wrap b {
    color: var(--color-primary);
}
.typ6-class .txt-wrap .price-wrap b i {
    font-size: 1.3rem;
}
.typ6-class .txt-wrap .price-wrap del {
    color: var(--color-gray500);
    margin-left: auto;
    margin-right: 0.5rem;
    font-size: 1.1rem;
}
.typ6-class .txt-wrap .price-wrap strong {
    font-size: 1.3rem;
}

/* 메인 - typ7 클래스 영역 */
.typ7-class .swiper-typ7-class {
    margin-right: -2rem;
    padding-right: 2rem;
}
.typ7-class .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 2.5rem;
    width: calc(100% - 3rem);
    height: auto;
    border: .1rem solid #eee;
    border-radius: 0.8rem;
    padding: 1.5rem;
}
.typ7-class .swiper-slide > div {
    position: relative;
    display: flex;
    width: 100%;
    gap: 1rem;
}
.typ7-class .txt-wrap .class-title {
    min-height: 3.8rem;
    font-size: 1.3rem;
}
.typ7-class .swiper-slide .img-wrap {
    display: block;
    width: 8rem;
    height: 8rem;
}
.typ7-class .swiper-slide .img-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.typ7-class .btn-add-wish {
    right: 0.7rem;
    bottom: 0.7rem;
    z-index: 10; /* [D]24.08.19 수정 */
}
.typ7-class .txt-wrap {
    width: calc(100% - 9.5rem);
}
.typ7-class .txt-wrap .d-flex p:nth-of-type(1) {
    color: var(--color-primary);
    margin-left: 0;
    font-size: 1.2rem;
}
.typ7-class .txt-wrap .price-wrap {
    justify-content: flex-end !important;
    align-items: baseline !important;
}
.typ7-class .txt-wrap .price-wrap b {
    color: var(--color-primary);
}
.typ7-class .txt-wrap .price-wrap b i {
    font-size: 1.3rem;
}
.typ7-class .txt-wrap .price-wrap del {
    color: var(--color-gray500);
    margin-left: auto;
    margin-right: 0.5rem;
    font-size: 1.1rem;
}
.typ7-class .txt-wrap .price-wrap strong {
    font-size: 1.3rem;
}
/* [D]23.05.11 추가 end */
/* [D]23.05.11 수정 end */

/* 관심키워드 설정 팝업 */
.keyword-pop {
    padding-bottom: 3rem;
}
.keyword-pop fieldset + p {
    margin-top: 3rem;
}
.keyword-pop .d-flex {
    flex-flow: row wrap;
}
.keyword-pop .d-flex + .d-flex {
    margin-top: 0.5rem;
}
.keyword-pop :not(.keyword-wrap) .f-check-icon {
    margin-right: 1.8rem;
}
.keyword-pop :not(.keyword-wrap) .f-check-icon:nth-last-of-type(1) {
    margin-right: 0;
}
.keyword-pop .keyword-wrap .f-check-icon {
    margin-top: 0.5rem;
}
.keyword-pop .f-check-icon input {
    width: 1px;
    height: 1px;
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: -1;
}
.keyword-pop .f-check-icon input + label {
    position: relative;
    color: var(--color-gray200);
    z-index: 1;
}
.keyword-pop .f-check-icon input + label i {
    vertical-align: top;
    margin-left: 0.2rem;
}
.keyword-pop .f-check-icon input:checked + label {
    color: var(--color-black);
}
.keyword-pop .f-check-icon input:checked + label.icon-type01::after {
    content: '';
    display: block;
    width: 2.2rem;
    height: 2.2rem;
    position: absolute;
    bottom: 1.4rem;
    right: -0.8rem;
    z-index: -1;
}
.keyword-pop .f-check-icon input:checked + label.icon-type02::after {
    content:'';
    display: block;
    width: 2.5rem;
    height: 2.5rem;
    position: absolute;
    bottom: 1.3rem;
    right: -1rem;
    z-index: -1;
}
.keyword-pop .f-check-icon input:checked + label.icon-type01.icon01::after {
    background: url("../images/main/ico_popup_input_01.svg") 100% 50% no-repeat;
}
.keyword-pop .f-check-icon input:checked + label.icon-type01.icon02::after {
    background: url("../images/main/ico_popup_input_02.svg") 100% 50% no-repeat;
}
.keyword-pop .f-check-icon input:checked + label.icon-type01.icon03::after {
    background: url("../images/main/ico_popup_input_03.svg") 100% 50% no-repeat;
}
.keyword-pop .f-check-icon input:checked + label.icon-type01.icon04::after {
    background: url("../images/main/ico_popup_input_04.svg") 100% 50% no-repeat;
}
.keyword-pop .f-check-icon input:checked + label.icon-type01.icon05::after {
    background: url("../images/main/ico_popup_input_05.svg") 100% 50% no-repeat;
}
.keyword-pop .f-check-icon input:checked + label.icon-type01.icon06::after {
    background: url("../images/main/ico_popup_input_06.svg") 100% 50% no-repeat;
}
.keyword-pop .f-check-icon input:checked + label.icon-type02.icon01::after {
    background: url("../images/main/ico_popup_input_07.svg") 100% 50% no-repeat;
}
.keyword-pop .f-check-icon input:checked + label.icon-type02.icon02::after {
    background: url("../images/main/ico_popup_input_08.svg") 100% 50% no-repeat;
}
.keyword-pop .f-check-icon input:checked + label.icon-type02.icon03::after {
    background: url("../images/main/ico_popup_input_09.svg") 100% 50% no-repeat;
}
.keyword-pop .f-check-icon input:checked + label.icon-type02.icon04::after {
    background: url("../images/main/ico_popup_input_10.svg") 100% 50% no-repeat;
}
.keyword-pop .f-check-icon input:checked + label.icon-type02.icon05::after {
    background: url("../images/main/ico_popup_input_11.svg") 100% 50% no-repeat;
}
.keyword-pop .f-check-icon input:checked + label.icon-type02.icon06::after {
    background: url("../images/main/ico_popup_input_12.svg") 100% 50% no-repeat;
}
.keyword-pop .f-check-icon input:checked + label.icon-type02.icon07::after {
    background: url("../images/main/ico_popup_input_13.svg") 100% 50% no-repeat;
}
.keyword-pop .f-check-icon input:checked + label.icon-type02.icon08::after {
    background: url("../images/main/ico_popup_input_14.svg") 100% 50% no-repeat;
}
.keyword-pop .f-check-icon input:checked + label.icon-type02.icon09::after {
    background: url("../images/main/ico_popup_input_15.svg") 100% 50% no-repeat;
}
.keyword-pop .f-check-icon input:checked + label.icon-type02.icon10::after {
    background: url("../images/main/ico_popup_input_16.svg") 100% 50% no-repeat;
}

/* 메인 - 스와이퍼 팝업 */
.main-popup-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background: transparent;
}
@media only screen and (min-width: 1024px) {
    .main-popup-wrap {
        width: 375px;
        min-width: 375px;
        max-width: 375px;
    }
}
.main-popup-wrap .inner-wrap {
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: center;
    position: relative;
    z-index: 1050;
    margin-top: -9rem;
    padding: 0 2rem;
    width: 60%;
    min-width: 360px;
    background-color: transparent;
}
@media only screen and (min-width: 1024px) {
    .main-popup-wrap .inner-wrap {
        width: 100%;
    }
}
.main-popup-wrap .btn-set {
    margin-bottom: 1.5rem;
}
.main-popup-wrap .btn-set .btn-close-popup {
    display: block;
    width: 1.6rem;
    height: 1.6rem;
    background: url("../images/btn/btn_close_popup_white.svg") 50% 50% no-repeat;
    background-size: 1.6rem;
}
.main-popup-wrap .btn-set .btn-close-today {
    padding: 0;
    width: auto;
    height: auto;
    /*background: url("../images/btn/btn_check2.svg") 0 50% no-repeat;*/
    background-size: 2rem;
    color: var(--color-white);
    font-size: 1.3rem;
    font-weight: lighter;
    line-height: 1.6rem;
}

/* swiper */
.swiper.main-popup {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
}
.swiper.main-popup .swiper-slide .img-wrap {
    display: block;
    padding-top: 100%;
    width: 100%;
    height: 0;
}
.swiper.main-popup .swiper-slide .img-wrap img {
    position: absolute;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
}
.swiper.main-popup .swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    top: 93%;
    height: 0.7rem;
}
.swiper.main-popup .swiper-pagination .swiper-pagination-bullet {
    display: block;
    margin: 0 0.35rem;
    width: 0.7rem;
    height: 0.7rem;
    background-color: var(--color-white);
    opacity: 1;
}
.swiper.main-popup .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--color-black);
}
.swiper.main-popup .btn-area {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 10;
}
.swiper.main-popup .btn-stop {
    display: block;
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.4) url("../images/btn/btn_swiper_stop.svg") 50% 50% no-repeat;
    background-size: 1.6rem;
}
.swiper.main-popup .btn-stop.active {
    background-image: url("../images/btn/btn_swiper_play.svg");
}

/* 메인 & 클래스검색(푸터 연결 팝업) 강좌 종류 메뉴 */
.class-subject {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.class-subject [class^="ico-"] {
    margin-bottom: 0.2rem
}
/* 마이페이지 - 서브메인 */
.my-link {
    display: block;
    margin-top: 0.5rem;
    font-size: 2.9rem;
    font-weight: bolder;
    line-height: 3.5rem;
}
.btn-view-receipt {
    display: inline-block;
    width: 3.5rem;
    height: 3.5rem;
    background: url("../images/contents/ico_mobile_receipt.svg") 50% 50% no-repeat;
    background-size: 100%;
}
.btn-my-cs,
.btn-my-notice {
    display: block;
    width: 100%;
    height: 5.2rem;
    text-align: center;
}
.btn-my-cs > span {
    display: inline-block;
    padding-left: 2.1rem;
    background: url("../images/contents/ico_headset.svg") 0 50% no-repeat;
    background-size: 1.6;
    font-size: 1.5rem;
    line-height: 5.2rem;
}
.btn-my-notice > span {
    display: inline-block;
    padding-left: 2.1rem;
    background: url("../images/contents/ico_speaker.svg") 0 50% no-repeat;
    background-size: 1.6;
    font-size: 1.5rem;
    line-height: 5.2rem;
}
.my-class-detail {
    margin-top: -9rem;
}
.my-class-detail li {
    padding: 2rem 0;
    border-top: 1px dotted var(--color-gray300);
}
.my-class-detail li:first-child {
    border-top: 0;
}
.swiper.class-schedule-summary {
    position: relative;
    margin: 2rem 0 10rem;
    height: 8.9rem;
    border-bottom: 1px dotted var(--color-gray300);
}
.swiper.class-schedule-summary .swiper-wrapper {
    margin-bottom: 1rem;
    height: 5.2rem;
}
.swiper.class-schedule-summary .swiper-slide {
    height: 5.2rem;
}
.swiper.class-schedule-summary .swiper-button-prev {
    top: 2.5rem;
    left: 0;
    width: 1.6rem;
    height: 1.6rem;
    background: url("../images/ico/ico_arrow_left2.svg") 50% 50% no-repeat;
    background-size: 1.6rem;
}
.swiper.class-schedule-summary .swiper-button-next {
    top: 2.5rem;
    right: 0;
    width: 1.6rem;
    height: 1.6rem;
    background: url("../images/ico/ico_arrow_right4.svg") 50% 50% no-repeat;
    background-size: 1.6rem;
}
.swiper.class-schedule-summary .swiper-slide > table {
    margin: 0 auto;
    width: calc(100% - 3.6rem);
}
.swiper.class-schedule-summary .swiper-slide > table thead th {
    padding-bottom: 0.2rem;
    color: var(--color-gray500);
    font-size: 1.1rem;
    font-weight: lighter;
    line-height: 1;
    text-align: center;
}
.swiper.class-schedule-summary .swiper-slide > table tbody td {
    overflow: hidden;
    padding-top: 0.3rem;
    height: 5.6rem;
    text-align: center;
    vertical-align: top;
}
.swiper.class-schedule-summary .swiper-slide > table tbody td > button {
    display: block;
    width: 100%;
    text-align: center;
}
.swiper.class-schedule-summary .swiper-slide > table tbody td .day {
    display: block;
    position: relative;
    margin: 0 auto;
    width: 3.4rem;
    height: 3.4rem;
    color: var(--color-black);
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 3.4rem;
    text-align: center;
}
.swiper.class-schedule-summary .swiper-slide > table tbody td .status-attend .day:before {
    position: absolute;
    top: 0.7rem;
    right: 0.3rem;
    z-index: 4;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 2.5px;
    background-color: var(--color-black);
    content: "";
}
.swiper.class-schedule-summary .swiper-slide > table tbody td .status-miss .day {
    color: var(--color-gray500);
}
.swiper.class-schedule-summary .swiper-slide > table tbody td .status-miss .day:before {
    position: absolute;
    top: 0.7rem;
    right: 0.3rem;
    z-index: 4;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 2.5px;
    background-color: var(--color-gray500);
    content: "";
}
.swiper.class-schedule-summary .swiper-slide > table tbody td .status-class .day {
    color: var(--color-primary);
}
.swiper.class-schedule-summary .swiper-slide > table tbody td .status-class .day:before {
    position: absolute;
    top: 0.7rem;
    right: 0.3rem;
    z-index: 4;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 2.5px;
    background-color: var(--color-primary);
    content: "";
}
.swiper.class-schedule-summary .swiper-slide > table tbody td.active .day:before {
    content: none;
}
.swiper.class-schedule-summary .swiper-slide > table tbody td.active .status-attend .day {
    border-radius: 50%;
    background-color: var(--color-black);
    color: var(--color-white);
}
.swiper.class-schedule-summary .swiper-slide > table tbody td.active .status-miss .day {
    border-radius: 50%;
    background-color: var(--color-gray500);
    color: var(--color-white);
}
.swiper.class-schedule-summary .swiper-slide > table tbody td.active .status-class .day {
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-white);
}
.legend-color {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
}
.legend-color .color-class,
.legend-color .color-attend,
.legend-color .color-miss {
    font-size: 1.2rem;
}
.legend-color .color-class:before,
.legend-color .color-attend:before,
.legend-color .color-miss:before {
    display: inline-block;
    margin-right: 0.3rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 2.5px;
    vertical-align: middle;
    content: "";
}
.legend-color .color-class:before {
    background-color: var(--color-primary);
}
.legend-color .color-attend:before {
    background-color: var(--color-black);
}
.legend-color .color-miss:before {
    background-color: var(--color-gray500);
}

/* swiper - 마이페이지 - 모바일 수강증 */
.swiper.mobile-receipt {
    margin-bottom: 1.5rem;
    height: 50rem;
}
.swiper.mobile-receipt .swiper-wrapper {
    height: 50rem;
}
.swiper.mobile-receipt .swiper-slide {
    width: 100%;
    height: 50rem;
}

/* 마이페이지 - 모바일 수강증 */
.mobile-receipt li .attend-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-top: 2px solid var(--color-black);
    border-bottom: 2px solid var(--color-black);
}
.mobile-receipt li .attend-wrap .comment {
    width: calc(50% - 0.5rem);
    font-size: 1.3rem;
    text-align: center;
}
.mobile-receipt li .attend-wrap .timer {
    width: calc(50% - 0.5rem);
    font-size: 1.1rem;
    text-align: center;
}
.mobile-receipt li .attend-wrap .timer strong {
    display: block;
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
}
.mobile-receipt li .attend-wrap .btn-attend-condition,
.mobile-receipt li .attend-wrap .btn-attend-check {
    display: block;
    width: calc(50% - 0.5rem);
    height: 5.2rem;
    font-size: 1.5rem;
    line-height: 5.2rem;
    text-align: center;
}
.mobile-receipt li .attend-wrap .btn-attend-condition span,
.mobile-receipt li .attend-wrap .btn-attend-check span {
    display: inline-block;
    padding-left: 2.1rem;
    height: 5.2rem;
    background-position: 0 50%;
    background-repeat: no-repeat;
    background-size: 1.6rem;
    font-size: 1.5rem;
    line-height: 5.2rem;
}
.mobile-receipt li .attend-wrap .btn-attend-condition span {
    background-image: url("../images/ico/ico_calendar_check.svg");
}
.mobile-receipt li .attend-wrap .btn-attend-check span {
    background-image: url("../images/ico/ico_calendar2.svg");
}
.mobile-receipt li .receipt-wrap {
    position: relative;
    margin-bottom: 1.5rem;
    padding: 1.5rem 0 1.5rem 2rem;
    width: 100%;
    height: 42.9rem;
    border-radius: 4px;
    background-color: var(--color-gray100);
}
.mobile-receipt li .receipt-wrap .btn-del-receipt {
    font-size: 1.3rem;
    font-weight: bold;
}
.mobile-receipt li .receipt-wrap .table-wrap {
    overflow-y: auto;
    overflow-x: hidden;
    height: 38rem;
    padding-right: 2rem;
}
.mobile-receipt li .receipt-wrap .table-wrap tr:first-child th,
.mobile-receipt li .receipt-wrap .table-wrap tr:first-child td {
    padding-top: 0;
}
.mobile-receipt li .receipt-wrap .table-wrap tr th,
.mobile-receipt li .receipt-wrap .table-wrap tr td {
    padding: 0.5rem 0;
    font-size: 1.5rem;
    font-weight: normal;
    text-align: left;
    vertical-align: top;
}

/* 마이페이지 - 팝업 내의 레이어 팝업 */
.my-popup-wrap.active {
    visibility: visible;
    top: 0;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
}
.my-popup-wrap {
    visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 45%;
    left: 0;
    z-index: 1050;
    width: 100%;
    height: 0;
    background-color: rgba(0,0,0,0.0);
    -webkit-transition: all .2s;
    transition: all .2s;
}
.my-popup-wrap .inner-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 1100;
    padding: 0 2rem;
    width: 100%;
    background-color: transparent;
}
.my-popup-wrap .btn-set {
    justify-content: flex-end;
    margin-bottom: 1rem;
    height: 1.6rem;
}
.my-popup-wrap .btn-set .btn-close-layer {
    display: block;
    width: 1.6rem;
    height: 1.6rem;
    background: url("../images/btn/btn_close_popup_white.svg") 50% 50% no-repeat;
    background-size: 1.6rem;
}
.my-popup-wrap .contents-wrap {
    padding: 2rem;
    width: 100%;
    border-radius: 15px;
    background-color: var(--color-white);
}
.attend-grid tbody th {
    padding: 2rem 0 1rem !important;
    font-size: 1.3rem !important;
    font-weight: bold !important;
    text-align: center !important;
    vertical-align: middle !important;
}
.attend-grid tbody tr:first-child th {
    padding-top: 0 !important;
}
.attend-grid tbody td {
    padding: 0 0.4rem 0 0.5rem !important;
    font-size: 1.3rem !important;
    font-weight: lighter !important;
    line-height: 3.4rem !important;
    text-align: center !important;
    vertical-align: middle !important;
}
.attend-grid tbody td [class^="badge"] {
    padding: 0 !important;
    width: 100% !important;
    height: 3rem !important;
    border-radius: 15px;
    line-height: 3rem !important;
    font-size: 1.3rem !important;
}

/* 마이페이지 - 나의 수강후기 */
.standby-review-list li {
    padding: 2.5rem 0;
    border-top: 1px dashed var(--color-gray300);
}
.standby-review-list li:first-child {
    padding-top: 0;
    border-top: 0;
}
.standby-review-list .thumbnail {
    flex-shrink: 0;
    width: 9rem;
    height: 9rem;
}
.standby-review-list .thumbnail > img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
}
.standby-review-list .ellipsis2 {
    margin: 0.5rem 0 0 0;
    height: 3.8rem;
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 1.9rem;
}
.title-class-review {
    display: block;
    margin: 1rem 0 0.5rem;
    height: 4.4rem;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: underline;
}
.grading-star {
    margin-top: 3rem;
}
.grading-star li {
    padding-bottom: 3rem;
    font-size: 1.3rem;
}

/* 마이페이지 - 나의문의내역 */
.ask-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--color-gray200);
}
.ask-list li:first-child {
    padding-top: 0;
}
.ask-list li .label-group {
    width: 3.3rem;
    flex-shrink: 0;
}
.ask-list li .label-group [class^="badge"] {
    vertical-align: top;
}
.ask-list li a {
    width: calc(100% - 4.3rem);
    background: url("../images/ico/ico_arrow_right4.svg") 100% 0.3rem no-repeat;
}
.ask-list li a .ellipsis {
    margin-bottom: 0.5rem;
    padding-right: 2rem;
    font-size: 1.5rem;
    font-weight: lighter;
}

/* 마이페이지 - 나의수강내역 */
.register-class-list {
    margin-top: 2rem;
}
.register-class-list li {
    margin-top: 3rem;
    border-bottom: 1px dotted var(--color-gray300);
}
.register-class-list li:first-child {
    margin-top: 0;
}
.register-class-list li.cancel-class *,
.register-class-list li.finish-class * {
    color: rgba(0, 0, 0, 0.4);
}
.register-class-list li.cancel-class .title-d4,
.register-class-list li.finish-class .title-d4 {
    color: var(--color-gray500);
    border-color: var(--color-gray500);
}
.register-class-list li.cancel-class [class^="badge"],
.register-class-list li.finish-class [class^="badge"] {
    color: var(--color-gray500);
    border-color: var(--color-gray500);
}
.register-class-list li.request-class .title-d4 {
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.register-class-list .room-name {
    display: block;
    margin: 1rem 0 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
}
.register-class-list table tbody th,
.register-class-list table tbody td {
    padding: 0.5rem 0;
    font-size: 1.3rem;
    font-weight: lighter;
    vertical-align: top;
}
/* 마이페이지 - 리뷰 */
.bg-circle {
    display: block;
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 50%;
    background-color: var(--color-white);
    text-align: center;
}
.bg-circle .ico-30 {
    margin-top: 0.9rem;
}

/* 파트너 라운지 */
.partner-visual {
    position: relative;
    padding-top: 100%;
    width: 100%;
    height: 0;
    border: 1px solid rgba(0,0,0,0.1);
}
.partner-visual > img {
    display: block;
    position: absolute;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.partner-visual > figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    padding: 1rem;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}
.partner-visual > figcaption > strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-white);
    font-size: 2rem;
    font-weight: bold;
}
.partner-visual > figcaption > p {
    color: var(--color-white);
    font-size: 1.5rem;
    line-height: 1.5;
}
.partner-desc {
    margin-top: 1rem;
    font-size: 1.5rem;
    font-weight: lighter;
}
.partner-slide {
    overflow-y: hidden;
    overflow-x: scroll;
}
.partner-slide::-webkit-scrollbar,
.partner-slide::-webkit-scrollbar-thumb,
.partner-slide::-webkit-scrollbar-track {
    background: transparent;
}
.partner-slide::-webkit-scrollbar {
    height: 0;
}
.partner-slide > ul {
    display: flex;
    justify-content: left;
    align-items: stretch;
    flex-wrap: nowrap;
}
.partner-slide li {
    flex-shrink: 0;
    margin-right: 1rem;
    /* padding: 1rem; */
    border: 1px solid var(--color-gray200);
    width: 24rem;
    border-radius: 15px;
    overflow: hidden;
}
.partner-slide li:last-of-type {
    margin-right: 0;
}
.partner-slide li .img-wrap {
    width: 24rem;
    height: 24rem;
}
.partner-slide li .img-wrap img {
    display: block;
    width: 24rem;
    height: 24rem;
    object-fit: cover;
}
.partner-slide li .txt-wrap {
    padding: 0.5rem 1.5rem 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}
.partner-slide li .title-d3 {
    margin: 1rem 0 1rem !important;
}
.partner-slide li .partner-desc {
    margin: 0 !important;
    font-size: 1.3rem !important;
    font-weight: lighter;
}
@media only screen and (min-width: 1024px) {
    .partner-slide::-webkit-scrollbar {
        height: 0.6rem;
    }
    .partner-slide::-webkit-scrollbar-thumb {
        background-color: #aaa;
        border-radius: 10px;
    }
    .partner-slide::-webkit-scrollbar-track {
        background-color: #fff;
    }
}

/* 파트너 라운지 - 이용안내 */
.swiper.lounge {
    overflow: hidden;
    height: calc(100vh - 17.1rem);
}
.swiper.lounge .swiper-slide {
    height: calc(100vh - 17.1rem);
    z-index: 5;
}
.swiper.lounge .swiper-slide .desc-wrap {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    top: 3rem;
    z-index: 10;
    width: 100%;
}
.swiper.lounge .swiper-slide .desc-wrap > img {
    width: 16rem;
    height: 6.4rem;
}
.swiper.lounge .swiper-slide .desc-wrap .text {
    width: 100%;
    margin: 2.5rem 0 1rem;
    color: #1c8055;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
}
.swiper.lounge .swiper-slide .desc-wrap > small {
    display: block;
    width: 100%;
    font-size: 1.5rem;
    text-align: center;
}
.swiper.lounge .swiper-slide .desc-wrap > .btn-set {
    margin-top: 2rem;
}
.swiper.lounge .swiper-slide .desc-wrap > .btn-set > a {
    margin: 0 auto;
    width: 14rem;
}
.swiper.lounge .swiper-slide .img-wrap {
    position: absolute;
    top: 0;
    z-index: 6;
    width: 100%;
    height: calc(100vh - 17.1rem);
}
.swiper.lounge .swiper-slide .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper.lounge .swiper-slide .btn-down {
    position: absolute;
    bottom: 3rem;
    z-index: 11;
    width: 100%;
    text-align: center;
}
/* fade */
.swiper.lounge .swiper-slide.on .img-wrap img {
    animation: fadein 1.5s;
    -webkit-animation: fadein 1.5s; /* Safari and Chrome */
}
.swiper.lounge .swiper-slide.off .img-wrap img {
    animation: fadeout 0.5s;
    -webkit-animation: fadeout 0.5s; /* Safari and Chrome */
}
.swiper.lounge .swiper-slide.on .desc-wrap .text,
.swiper.lounge .swiper-slide.on .desc-wrap > small {
    animation: fadein 5s;
    -webkit-animation: fadein 5s; /* Safari and Chrome */
}
.swiper.lounge .swiper-slide.off .desc-wrap .text,
.swiper.lounge .swiper-slide.off .desc-wrap > small {
    animation: fadeout 3s;
    -webkit-animation: fadeout 3s; /* Safari and Chrome */
}
@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@-webkit-keyframes fadein { /* Safari and Chrome */
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeout {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
@-webkit-keyframes fadeout { /* Safari and Chrome */
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* 멀티룸 예약 */
.multiroom-infor {
    display: flex;
    justify-content: left;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    padding: 1.5rem;
    border-radius: 8px;
    background-color: var(--color-gray100);
}
.multiroom-infor dt {
    flex-shrink: 0;
    flex-basis: 8rem;
    margin-bottom: 1.5rem;
    padding-left: 2.1rem;
    width: 8rem;
    background-position: 0 50%;
    background-repeat: no-repeat;
    background-size: 1.6rem;
    font-size: 1.3rem;
    font-weight: bold;
}
.multiroom-infor dt:nth-of-type(1) {
    background-image: url("../images/contents/ico_human.svg");
}
.multiroom-infor dt:nth-of-type(2) {
    background-image: url("../images/contents/ico_watch.svg");
}
.multiroom-infor dt:nth-of-type(3) {
    flex-basis: 100%;
    width: 100%;
    background-image: url("../images/contents/ico_wifi.svg");
}
.multiroom-infor dd {
    flex-basis: calc(50% - 8rem);
    margin-bottom: 1.5rem;
    width: calc(50% - 8rem);
    font-size: 1.3rem;
    font-weight: lighter;
}
.multiroom-infor dd:nth-of-type(3) {
    flex-basis: 100%;
    margin: -1rem 0 0 0;
    padding: 0 2.1rem;
    width: 100%;
}
.multiroom-list {
    margin-top: -1.5rem;
}
.multiroom-list li {
    padding: 2.5rem 0;
    border-top: 1px dashed var(--color-gray300);
}
.multiroom-list li:first-of-type {
    border: 0;
}
.multiroom-list li .img-wrap {
    width: 100%;
    height: 20rem;
}
.multiroom-list li .img-wrap img {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 20rem;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    object-fit: cover;
}
.multiroom-list li .multiroom-tit {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    background-color: var(--color-gray100);
}
.multiroom-list li .multiroom-infor {
    margin-top: -1.5rem;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.multiroom-list li .multiroom-infor dt:nth-of-type(3) {
    flex-basis: 8rem;
    margin: 0;
    width: 8rem;
    background-image: url("../images/contents/ico_wifi.svg");
}
.multiroom-list li .multiroom-infor dd:nth-of-type(3) {
    flex-basis: calc(100% - 8rem);
    margin: 0;
    padding: 0 2.1rem 0 0;
    width: calc(100% - 8rem);
}

/* 22.10.24 한유진 - 마이라운지 대기신청내역 추가개발 건
   22.11.03 추가 수정 */
.waiting-class-list {
    margin-top: 3rem;
}

.waiting-class {
    position: relative;
    padding: 2.5rem 0 3rem;
}

.waiting-class {
    border-top: 1px dotted var(--color-gray300);
}

.waiting-class:last-of-type {
    border-bottom: 1px dotted var(--color-gray300);
}
.waiting-class .price-wrap {
    min-height: 5rem;
}

.waiting-class .waiting-time::before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 1rem;
    background: var(--color-black);
    margin: 0 0.5rem;
}

.waiting-class .btn-set [class^="btn"][class*="-medium"] {
    border-radius: 0;
    height: 4.2rem;
    line-height: 4.2rem;
    font-size: 1.3rem;
    border-color: var(--color-gray200);
}

.waiting-class .btn-set [class^="btn"][class*="-disabled"] {
    background-color: var(--color-gray500);
}

.waiting-class .btn-set [class^="btn"][class*="-medium"]:first-child {
    border-radius: 0.4rem 0 0 0.4rem;
    font-weight: bold;
}

.waiting-class .btn-set [class^="btn"][class*="-medium"]:last-child {
    border-radius: 0 0.4rem 0.4rem 0;
    font-weight: 500;
}

.waiting-class .btn-set .question-ico {
    display: inline-block;
    width: 1.6rem;
    height: 1.6rem;
    line-height: 1.3;
    background: url("../images/ico/icon_16_Question.svg") 50% 50% no-repeat;
    margin-left: 0.5rem;
    text-indent: -99999px;
}

.waiting-class [class^="btn-delete"] {
    display: block;
    position: absolute;
    z-index: 5;
    top: 2.5rem;
    right: 0;
    width: 1.6rem;
    height: 1.6rem;
    background: url("../images/btn/btn_close_popup.svg") 50% 50% no-repeat;
    background-size: 100%;
}

/* 22.10.24 한유진 - 신청결제 페이지 헤더 하단 붉은 선 오류 수정  */
/* 23.10.16 한유진 - 재수정  */
@media only screen and (min-width: 320px) and (max-width: 1023px) {
    .m-wrap #frmOderPay::before {
        content: '';
        display: block;
        width: 100%;
        height: 2px;
        background: var(--color-white);
        position: fixed;
        top: 4.8rem;
        left: 0;
        z-index: 110;
    }
}

/* 22.11.09 한유진 마이클래스 상세 추가 */
.go-classDtl {
    position: relative;
    width: auto;
    height: 2rem;
}
.go-classDtl a {
    display: inline-block;
    padding-right: 1.6rem;
    width: auto;
    height: 2rem;
    font-size: 1.3rem;
    line-height: 2rem;
    background: url("../images/ico/ico_arrow_right5.svg") 100% 50% no-repeat;
    background-size: 1.6rem;
    position: absolute;
    top: 0;
    right: 0;
}

/* 22.11.16 한유진 메인페이지 할인가 변경 */
/* [D]23.05.11 수정 start */
.typ2-class .txt-wrap,
.typ3-class .txt-wrap,
.typ5-class .txt-wrap {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: stretch;
    align-content: space-between;
    width: 100%;
    height: calc(100% - 15.5rem);
}
.typ2-class .txt-wrap .price-wrap,
.typ3-class .txt-wrap .price-wrap,
.typ5-class .txt-wrap .price-wrap {
    position: relative;
    justify-content: flex-end !important;
    align-items: flex-end !important;
    flex-flow: row wrap;
    width: 100%;
}
.typ2-class .txt-wrap .price-wrap b,
.typ3-class .txt-wrap .price-wrap b,
.typ5-class .txt-wrap .price-wrap b {
    position: absolute;
    left: 0;
    bottom: 0;
    color: var(--color-primary);
}
.typ2-class .txt-wrap .price-wrap del,
.typ3-class .txt-wrap .price-wrap del,
.typ5-class .txt-wrap .price-wrap del {
    display: inline-block;
    width: 100%;
    text-align: right;
    font-size: 1.1rem;
    color: var(--color-gray500);
}
/* [D]23.05.11 수정 end */
/* [D]23.05.15 end 여기까지 붙여넣어주세요. */

/* 23.02.12 한유진 - 클래스 개설요청 페이지, 팝업 신규 추가 */
.processInfo {
    width: 100%;
    padding-top: 2rem;
}
.processInfo li {
    position: relative;
    width: 100%;
    background: var(--color-gray700);
    padding: 1.5rem;
    border-radius: 0.8rem;
    padding-left: 7.8rem;
}
.processInfo li ~ li {
    margin-top: 3.2rem;
}
.processInfo li::before {
    content: '';
    display: block;
    width: 4.8rem;
    height: 4.8rem;
    position: absolute;
    top: 50%;
    left: 1.5rem;
    transform: translateY(-50%);
}
.processInfo li:nth-of-type(1)::before {
    background: url('../images/ico/icon_process_step1.svg') no-repeat center / 100% 100%;
}
.processInfo li:nth-of-type(2)::before {
    background: url('../images/ico/icon_process_step2.svg') no-repeat center / 100% 100%;
}
.processInfo li:nth-of-type(3)::before {
    background: url('../images/ico/icon_process_step3.svg') no-repeat center / 100% 100%;
}
.processInfo li::after {
    content: '';
    display: block;
    width: 1.2rem;
    height: 1.2rem;
    background: url('../images/ico/icon_shape_down.svg') no-repeat center / 100% 100%;
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
}
.processInfo li:last-of-type:after {
    display: none;
}
.processInfo li h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-black);
}
.processInfo li p {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-black);
    margin-top: 1rem;
}
.processInfo li span {
    position: relative;
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--color-gray500);
    margin-top: 0.5rem;
    padding-left: 0.8rem;
}
.processInfo li span::before {
    content: '·';
    position: absolute;
    top: 0;
    left: 0;
}
.processInfo + p {
    position: relative;
    font-size: 1.3rem;
    color: var(--color-gray500);
    margin-top: 1.5rem;
    padding-left: 1.6rem;
}
.processInfo + p::before {
    content: '※';
    position: absolute;
    top: 0;
    left: 0;
}
.processPop {
    display: inline-block;
    width: calc(100% - 8rem);
    font-size: 1.1rem;
    text-align: right;
    vertical-align: middle;
    margin: 1.5rem 0 0.5rem;
}
.popBtn {
    display: inline-block;
    width: 1.6rem;
    height: 1.6rem;
    background: url('../images/ico/icon_16_Question.svg') no-repeat center / 100% 100%;
    margin-left: 0.5rem;
}

.ctg-example-wrap .list-wrap {
    flex-wrap: wrap;
    width: 100%;
    border-top: 0.1rem solid var(--color-gray800);
    border-bottom: 0.1rem solid var(--color-gray800);
}
.ctg-example-wrap .list-wrap li {
    width: calc(100% / 2);
    background: var(--color-gray700);
    text-align:center;
    padding: 1.5rem 0;
}
.ctg-example-wrap .list-wrap li.bg-white {
    background: var(--color-white);
}
.ctg-example-wrap .list-wrap li span {
    font-size: 1.3rem;
}
.ctg-example-wrap .list-wrap li p {
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 0.2rem;
}

/* 23.02.09 한유진 - 일정보기 버튼, 페이지 신규 추가 */
/* 23.02.10 한유진 - 추가 수정 */
.btn-link-new.text.btn-schedule span {
    padding-right: 2rem;
    white-space: nowrap;
    background: url('../images/ico/icon_caledar.svg') 100% 50% / 1.6rem no-repeat;
    margin-right: -1rem; /* [D]24.04.10 추가 */
}

.class-room-top {
    padding: 2rem 0 1.5rem;
}

.btn-today {
    display: inline-block;
    margin-left: auto;
    font-size: 1.1rem;
    color: var(--color-primary);
    border-bottom: 0.1rem solid var(--color-primary);
}

/* [D]23.02.23 한유진 주석처리 - 별도 css 파일로 분리 */
/* .btn-calendar {
    display: none;
}
.btn-calendar + button.ui-datepicker-trigger {
    display: inline-block;
    width: 1.6rem;
    height: 1.6rem;
    background: url('../images/ico/icon_caledar2.svg') no-repeat center / 1.6rem;
    text-indent: -999999rem;
    font-size: 0;
}
.ui-datepicker {
    width: 32rem;
    height: auto;
    z-index: 11 !important;
}
.ui-datepicker-header {
    height: 6rem;
    line-height: 6rem;
}
.ui-datepicker-header .ui-datepicker-title {
    height: 6rem;
    line-height: 6rem;
    font-size: 1.6rem;
}
.ui-widget-header .ui-datepicker-prev,
.ui-widget-header .ui-datepicker-next {
    top: calc(50% + 0.5rem);
    transform: translateY(-50%);
}
.ui-widget-header .ui-datepicker-prev .ui-icon {
    background: url('../images/ico/ico_arrow_left.svg') no-repeat center / 1.4rem;
}
.ui-widget-header .ui-datepicker-next .ui-icon {
    background: url('../images/ico/ico_arrow_right3.svg') no-repeat center / 1.4rem;
}
.ui-datepicker-week-end:first-of-type a {
    color: var(--color-tertiary);
}
.ui-datepicker-week-end:last-of-type a {
    color: var(--color-secondary);
}
.ui-datepicker th {
    height: 4.4rem;
    font-size: 1.4rem;
}
.ui-datepicker td {
    height: 4.4rem;
    font-size: 1.4rem;
}
.ui-datepicker td a {
    border: none !important;
    width: 4.4rem;
    height: 4.4rem;
    line-height: 4.3rem !important;
    margin: 0;
} */
/* [D]23.02.23 한유진 주석처리 - 별도 css 파일로 분리 end */

.swiperWrap {
    position: relative;
    width: 100%;
}

.swiperWrap .swiperDay {
    display: flex;
    width: calc(100% - 6.6rem);
    height: 2rem;
    margin: 2rem auto 0;
}
.swiperWrap .swiperDay p {
    width: calc(100% / 7);
    font-size: 1.1rem;
    color: var(--color-gray500);
    text-align: center;
}
.class-room-swiper {
    width: calc(100% - 6.6rem);
}
.class-room-swiper ul {
    width: 100%;
}
.class-room-swiper li {
    width: calc(100% / 7);
    height: 3.4rem;
    text-align: center;
}
.class-room-swiper li button {
    display: inline-block;
    font-size: 1.5rem;
    height: 3.4rem;
    line-height: 3.4rem;
    color: var(--color-gray500);
}
.class-room-swiper li.todayMonth button {
    color: var(--color-black);
    font-weight: bold;
}
.class-room-swiper li.todayMonth.today button {
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 50%;
    background: var(--color-pink);
    color: var(--color-white);
    margin: 0 auto;
}
.class-room-swiper li.active button {
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    margin: 0 auto;
}
.class-room-swiper li.todayMonth.today.active button {
    background: var(--color-primary);
}
.swiperWrap .swiper-button-prev,
.swiperWrap .swiper-button-next {
    width: 1.6rem;
    height: 1.6rem;
    bottom: 0.9rem;
    top: initial;
}
.swiperWrap .swiper-button-prev::after,
.swiperWrap .swiper-button-next::after {
    width: 100%;
    height: 100%;
}
.swiperWrap .swiper-button-prev {
    background: url('../images/ico/ico_arrow_left.svg') no-repeat center / 1.6rem;
    left: 1.4rem;
    z-index: 1000;
}
.swiperWrap .swiper-button-next {
    background: url('../images/ico/ico_arrow_right3.svg') no-repeat center / 1.6rem;
    right: 1.4rem;
}

.sorting-qna-area .sorting-qna {
    height: auto;
    scroll-behavior: smooth;
}
.sorting-qna-area::-webkit-scrollbar {
    -webkit-appearance: none;
    /* display: none; */ /* [D]24.02.20 삭제 */
}
.class-time-sorting .sorting-qna li {
    margin-right: 1rem;
}
.class-time-sorting .sorting-qna li:last-of-type {
    margin-right: 0;
}
.class-time-sorting .sorting-qna li span {
    width: auto;
    font-size: 1.2rem;
    height: 3.4rem;
    line-height: 3.2rem !important;
    border-radius: 1.7rem;
}

.class-room-wrap {
    width: 100%;
    padding: 0 2rem;
    margin: 5rem 0;
}
.class-room-wrap:nth-of-type(2) {
    margin: 3.5rem 0 5rem;
}
.class-room-wrap:last-of-type {
    margin-bottom: 0;
    padding-bottom: 5rem;
}
.class-room-wrap h4 {
    position: relative;
}
.class-room-wrap h4::before {
    content: '';
    display: block;
    width: 1.3rem;
    height: 0.1rem;
    background: var(--color-black);
    position: absolute;
    top: 0.9rem;
    left: -2rem;
}
.class-room-wrap .class-room {
    display: block;
    width: 100%;
    padding: 1.5rem 2rem;
    margin-top: 1.5rem;
    background-color: var(--color-gray100);
}
.class-room-wrap .class-room p:first-of-type {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    padding-left: 1rem;
}
.class-room-wrap .class-room p:first-of-type span[class^="badge"] {
    font-size: 1rem;
    height: 1.6rem;
    line-height: 1.6rem;
    margin-left: 0.5rem;
}
.class-room-wrap .class-room p:first-of-type::before {
    content: '';
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    background: var(--color-black);
    border-radius: 50%;
    position: relative;
    top: 50%;
    left: -0.5rem;
    transform: translateY(-50%);
}
.class-room-wrap .class-room p:last-of-type {
    font-size: 1.3rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 0.5rem;
}

/* [D]23.03.16 한유진 신청/결제 신용카드 - 법인카드 영역 추가 */
.corporation-card-form {
    margin-top: 2rem;
}
.corporation-card-form > div:not(:last-of-type) {
    display: flex;
    align-items: center;
    width: 100%;
    height: 4.6rem;
    background: var(--color-gray900); /*[D]23.03.22 수정*/
    border-radius: 0.8rem;
    overflow: hidden;
    padding: 1.3rem 1.5rem 1.1rem;
}
.corporation-card-form > div ~ div {
    margin-top: 1.5rem;
}
.corporation-card-form > div > p {
    font-size: 1.3rem;
    white-space: nowrap;
}
.corporation-card-form > div:last-of-type > p {
    margin-bottom: 0.5rem;
}
.corporation-card-form > div > label {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 73%;
    margin-left: auto;
    font-size: 1.4rem;
}
.corporation-card-form > div > label input {
    width: 3.5rem;
    border: none;
    background: rgba(255,255,255,0);
    text-align: right;
}
.corporation-card-form > div:nth-last-of-type(2) > label input {
    width: 100%;
}
.corporation-card-form > div > label span {
    margin: 0 1rem;
}

/* [D]23.11.16 추가 start */
.corporation-card-form > div > label input.corporation_password {
    letter-spacing: 1rem;
    margin-bottom: 3px;     /* 비밀번호 앞 2자리 높이값 조정 */
}
.corporation-card-form > div > label input.corporation_password::placeholder {
    letter-spacing: 0;
}
.corporation-card-form > div > label input.corporation_password + span {
   margin: 0.6rem 1rem 0 0.2rem;
}

/* IE, Edge password 눈모양 숨기기 추가 */
input::-ms-reveal,
input::-ms-clear {
    display : none;
}
/* [D]23.11.16 추가 end */


/* [D]23.03.28 한유진 추가  */
.main-popup-wrap .img_wrap {
    border-radius: 1.5rem;
    overflow: hidden;
}
/* [D]23.03.31 수정 start */
.together_comment  {
    position: relative;
    text-align: right;
}
.together_comment span {
    position: relative;
    display: inline-block;
    width: auto;
    font-size: 1rem;
    background: var(--color-secondary);
    padding: .1rem .5rem .2rem;
    border-radius: .2rem;
    color: var(--color-white);
    margin-right: 2rem;
    z-index: 1;
}
.together_comment span::before {
    content: '';
    display: block;
    width: 1rem;
    height: 1rem;
    background: var(--color-secondary);
    transform: rotate(45deg);
    position: absolute;
    top: -.3rem;
    right: 1rem;
    z-index: -1;
}
/* [D]23.03.31 수정 end */
.toghter_banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: var(--color-pink200);
    padding: 1.5rem 2rem;
    margin-top: 1rem;
    border-radius: .8rem;
    overflow: hidden;
}
.toghter_banner span {
    display: block;
    color: var(--color-black);
    font-weight: normal;
    margin-top: .5rem;
}
.together_info {
    padding: 2.2rem 0;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: right;
}
.together_pay_info {
    position: absolute;
    top: calc(-100% + -1.4rem);
    right: 2rem;
    padding: 1.4rem 5rem 1.4rem 3rem;
    background: var(--color-blue);
    border-radius: 2.5rem;
    z-index: 1;
}
.together_pay_info::after {
    content: '';
    display: block;
    width: 2rem;
    height: 2rem;
    background: var(--color-blue);
    transform: rotate(45deg) skew(12deg, 12deg);
    position: absolute;
    right: 4.5rem;
    bottom: -.3rem;
    z-index: -1;
}
.together_pay_info p {
    font-size: 1.3rem;
    color: var(--color-white);
    font-weight: bold;
}
.info_close_btn {
    width: 1rem;
    height: 1rem;
    background: url('../images/ico/icon_close_btn.svg') no-repeat center / 100% 100%;
    position: absolute;
    top: 50%;
    right: 3rem;
    transform: translateY(-50%);
}

/* [D]23.05.12 한유진 추가 */
/* [D]23.05.15 한유진 수정 - 여기 하단 전체 영역 다시 복붙 부탁 드립니다. */
.badge_sold_out_day {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    line-height: 1.2;
    background: #143028;
    position: relative;
    border-radius: 0;
    z-index: 1;
    padding: 0.95rem 0;
    color: var(--color-white);
    font-weight: normal;
}
.badge_sold_out_day::before {
    content: '';
    display: inline-block;
    width: 1.6rem;
    height: 1.6rem;
    background: url('../images/ico/ico_badge_img1.svg') no-repeat center / 100%;
    margin-right: 0.5rem;
}
.badge_sold_out_day i {
    display: inline-block;
    color: #fafa45;
    margin: 0 0.2rem 0 0.4rem;
    line-height: 1.4;
}
.badge_sold_out_time {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    height: auto;
    background: #143028;
    position: relative;
    border-radius: 0;
    z-index: 1;
    padding: 0.7rem 0;
    color: var(--color-white);
    font-weight: normal;
}
.badge_sold_out_time::before {
    content: '';
    display: inline-block;
    width: 1.6rem;
    height: 1.6rem;
    background: url('../images/ico/ico_badge_img2.svg') no-repeat center / 100%;
}
.badge_sold_out_time i {
    color: #fafa45;
    font-size: 1.5rem;
    line-height: 1.4;
}
.detail_price {
    margin: 1rem 0;
}

/* [D]23.06.14 메인 추가 */
/* [D]23.06.14 메인 추가 */
/* [D]23.06.14 메인 추가 */
/* [D]23.06.14 메인 추가 */
.title-before > span {
    display: block;
}
.title-before,
.title-after {
    z-index: 1;
}
.title-before::before {
    content: '';
    display: block;
    width: 1.2rem;
    height: 0.1rem;
    background: var(--color-black);
    position: absolute;
    top: 1.2rem;
    left: -2rem;
}
.title-after {
    display: flex;
    flex-flow: row wrap;
    justify-content: left;
}
main > section:nth-of-type(odd) .title-after span:nth-of-type(1) {
    width: 100%;
}
main > section:nth-of-type(odd) .title-after span:nth-of-type(2) {
    margin-right: -2.4rem;
    order: 2;
}
main > section:nth-of-type(odd) .title-after i {
    order: 3;
}
main > section:nth-of-type(odd) .title-after span:only-of-type {
    width: auto;
    margin-right: -2.4rem;
}
main > section:nth-of-type(even) .title-after span:nth-of-type(1) {
    margin-right: -2.4rem;
}
main > section:nth-of-type(even) .title-after span:nth-of-type(2) {
    width: 100%;
    order: 3;
}
main > section:nth-of-type(even) .title-after i {
    order: 2;
}
main > section:nth-of-type(even) .title-after span:only-of-type {
    width: auto;
    margin-right: -2.4rem;
}
.title-after i {
    content: '';
    display: block;
    width: 5rem;
    height: 5rem;
    margin-top: -1.5rem;
    position: relative;
    z-index: -1;
}
.title-after.after1 i {
    top: -1.5rem;
    right: -2.4rem;
}
.title-after.after2 i {
    bottom: 0;
    right: -2.4rem;
}

/* [D]23.06.26 그룹 클래스 신청 페이지 신규 추가 - 한유진 */
/* [D]23.07.10 수정 (밑의 css 전체 다 복사 붙여넣기 해주세요.) */
/* [D]23.07.12 수정 (밑의 css 전체 다 복사 붙여넣기 해주세요.) */
.group_class_cont {
    padding: 0 !important;
}
.group_class_cont h3 {
    font-size: 1.6rem;
    line-height: 1.88;
    text-align: center;
    margin-top: 2.5rem;
}
.group_class_cont p {
    font-size: 1.4rem;
    letter-spacing: -0.028rem;
    text-align: center;
    margin-top: 1rem;
}
.group_class_cont .banner_img_wrap {
    display: flex;
    flex-flow: row wrap;
    gap: 1rem;
    padding: 2rem 2rem 4rem; /* [D]23.07.12 추가수정 */
}
.group_class_cont .banner_img_wrap div {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: calc(100% - 1rem - 53.7%);
}
.group_class_cont .banner_img_wrap div:nth-of-type(2) {
    display: flex;
    flex-flow: row nowrap;
    gap: 1rem;
    width: 100%;
}
.group_class_cont .banner_img_wrap img {
    width: 53.7%;
}
.group_class_cont .banner_img_wrap div:nth-of-type(1) img {
    width: 100%;
}
.group_class_cont .banner_img_wrap div:nth-of-type(2) img:first-child {
    width: 65.636%;
}
.group_class_cont .banner_img_wrap div:nth-of-type(2) img:last-child {
    width: calc(100% - 1rem - 65.636%);
}

/* [D]24.08.13 그룹클래스 요청 페이지 video 추가 */
/* [D]24.08.21 그룹클래스 요청 페이지 video 추가 수정 */
.banner_img_wrap.typ2 {
    width: 100%;
    height: 176.5vw;
    background: url('../images/contents/group_class_cont_bg.png') no-repeat center / cover;
    padding: 4rem 1.75rem;
}
.banner_img_wrap.typ2 .video_wrap {
    width: 100%;
    min-height: 100%;
    background: #fff;
    border: 0.6rem solid #f4f4f4;
    padding: 1.4rem;
}
.banner_img_wrap.typ2 .video_wrap iframe {
    width: 100%;
    height: 100%;
}
@media only screen and (min-width: 1024px) {
    .banner_img_wrap.typ2 {
        height: 65.5rem;
    }
}
@media only screen and (max-width: 700px) {
    .banner_img_wrap.typ2 {
        height: 175vw;
    }
}



/* [D]23.07.24 쿠폰 고도화 css 추가 - 한유진 */
/* 강의 상세 페이지 쿠폰 받기 버튼 */
.btn-set.coupon-btn-set [class^="btn"][class*="-medium"] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.2rem;
    height: 4.2rem !important;
    line-height: 4.2rem !important;
}
.btn-set.coupon-btn-set [class^="btn"][class*="-medium"]:disabled {
    background: var(--color-gray100);
    color: var(--color-gray500);
    border: none;
}
.btn-set.coupon-btn-set [class^="btn"][class*="-medium"]::after {
    content: '';
    display: inline-block;
    width: 1.6rem;
    height: 1.6rem;
    background: url('../images/coupon/coupon_down_icon16.svg') no-repeat center / 100%;
    vertical-align: middle;
    flex: 0 0 1.6rem;
}
.btn-set.coupon-btn-set [class^="btn"][class*="-medium"] span {
    display: inline-block;
    max-width: calc(100% - 1.6rem);
    height: 4.2rem;
    line-height: 4.2rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 쿠폰 팝업 - 풀 typ2 */
.popup-wrap.full.typ2 {
    padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
    width: 100%;
    height: calc(100% - 10rem);
    border-radius: 1.5rem 1.5rem 0 0;
    overflow: hidden;
}
.popup-wrap.full.typ2 header {
    flex-direction: column;
    align-items: center;
    padding: 2rem 2rem 3rem;
    height: auto;
    border-bottom: none;
}
.popup-wrap.full.typ2 header h1 {
    font-size: 2rem;
    padding: 2rem 0 0;
}
.popup-wrap.full.typ2 header .btn-close-popup {
    width: 100%;
    background: url("../images/coupon/icon_up.svg") 50% 50% no-repeat;
}
.popup-wrap.full.typ2 header .btn-set.coupon-btn-set [class^="btn"][class*="-medium"]::after {
    display: none;
}
.popup-wrap.full.typ2 main {
    padding: 0 2rem 0 !important;
    height: calc(100% - 18.8rem);
}
.popup-wrap.full.typ2 main section > p {
    font-size: 1.5rem;
    font-weight: normal;
    margin-bottom: 1.5rem;
}
.popup-wrap.full.typ2 main section > p span {
    display: inline-block;
    font-weight: bold;
    margin: 0 0.2rem 0 0.5rem;
}
.popup-wrap.full.typ2 .coupon-bg {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    min-height: 18rem;
    box-shadow: 0 0 1rem 0 rgba(0,0,0,0.08);
    border-radius: 0.8rem;
}
.popup-wrap.full.typ2 .coupon-bg::before {
    content: '';
    display: block;
    width: 6.1rem;
    height: 2.6rem;
    background: url('../images/coupon/coupon_bg_round_top.png') no-repeat center / 100%;
    position: absolute;
    top: -1.37rem;
    left: calc(100% - 17.9% - 3rem);
    z-index: 2; /* [D]23.11.02 수정 */
}
.popup-wrap.full.typ2 .coupon-bg::after {
    content: '';
    display: block;
    width: 6.1rem;
    height: 2.6rem;
    background: url('../images/coupon/coupon_bg_round_bottom.png') no-repeat center / 100%;
    position: absolute;
    bottom: -1.37rem;
    left: calc(100% - 17.9% - 3rem);
    z-index: 2; /* [D]23.11.02 수정 */
}
.popup-wrap.full.typ2 .coupon-bg + .coupon-bg {
    margin-top: 2.5rem;
}
.popup-wrap.full.typ2 .coupon-bg .coupon-tit {
    position: relative;
    width: calc(100% - 17.9%);
    height: 100%;
    min-height: 18rem;
    padding: 2rem;
}
/* [D]23.11.02 수정 start */
/* [D]23.11.03 coupon-down-btn 추가  */
.popup-wrap.full.typ2 .coupon-bg .down-complete-icon::after,
.popup-wrap.full.typ2 .coupon-bg .coupon-down-btn::after {
    content: '';
    display: block;
    width: 1.2rem;
    height: 100%;
    max-height: 17rem;
    background: url('../images/coupon/coupon_bg_dotted.png') no-repeat center / 100%;
    position: absolute;
    top: 1rem;
    left: -0.4rem;
    z-index: 1;
}
/* [D]23.11.06 css 추가 */
.popup-wrap.full.typ2 .coupon-bg .coupon-down-btn:disabled::after {
	background: none;
}
/* [D]23.11.02 수정 end */
.popup-wrap.full.typ2 .coupon-bg .coupon-tit h4 {
    font-size: 2.8rem;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.042rem;
}
.popup-wrap.full.typ2 .coupon-bg .coupon-tit h4 span {
    display: inline-block;
    font-size: 2rem;
    font-weight: normal;
    letter-spacing: -0.03rem;
    padding-left: 0.2rem;
}
.popup-wrap.full.typ2 .coupon-bg .coupon-tit h4 i {
    vertical-align: middle;
    padding-left: 0.5rem;
}
.popup-wrap.full.typ2 .coupon-bg .coupon-tit p {
    height: 2.1rem;
    font-size: 1.3rem;
    font-weight: bold;
    margin: 1rem 0 1.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.popup-wrap.full.typ2 .coupon-bg .coupon-tit p .badge {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: normal;
    line-height: 2rem;
    padding: 0 0.6rem;
    border: 0.1rem solid var(--color-black);
    border-radius: 1.05rem;
    margin-right: 0.5rem;
    vertical-align: baseline;
}
.popup-wrap.full.typ2 .coupon-bg .coupon-tit > span {
    font-size: 1.1rem;
    color: var(--color-gray500);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow:ellipsis;
}
.popup-wrap.full.typ2 .coupon-bg .coupon-tit > span.coupon-due-date {
    margin-top: 0.5rem;
    line-height: 1.82;
}
.popup-wrap.full.typ2 .coupon-bg .coupon-tit > span.coupon-due-date:nth-last-child(2) {
    margin-bottom: 0.8rem;
}
/* [D]23.08.11 수정 start */
.popup-wrap.full.typ2 .coupon-bg .coupon-tit .coupon-notice-open,
.my-coupon-list .coupon-bg .coupon-tit .coupon-notice-open {
    font-size: 0.9rem;
    color: var(--color-primary);
    line-height: 1.4;
    border-bottom: 0.1rem solid var(--color-primary);
    position: absolute;
    bottom: 1.5rem;
    right: 1.2rem;
    z-index: 1;
}
.popup-wrap.full.typ2 .coupon-bg .coupon-notice,
.my-coupon-list .coupon-bg .coupon-notice {
    position: relative;
    width: 100%;
    padding: 1.5rem;
    border-top: 0.1rem solid var(--color-gray800);
}
.popup-wrap.full.typ2 .coupon-bg .coupon-notice ul,
.my-coupon-list .coupon-bg .coupon-notice ul {
    margin-top: 2.1rem;
}
.popup-wrap.full.typ2 .coupon-bg .coupon-notice li,
.my-coupon-list .coupon-bg .coupon-notice li {
    font-size: 1.1rem;
}
.popup-wrap.full.typ2 .coupon-bg .coupon-notice li:last-of-type,
.my-coupon-list .coupon-bg .coupon-notice li:last-of-type {
    margin-bottom: 0;
}
.popup-wrap.full.typ2 .coupon-bg .coupon-notice .coupon-notice-close,
.my-coupon-list .coupon-bg .coupon-notice .coupon-notice-close {
    width: 1.6rem;
    height: 1.6rem;
    background: url('../images/coupon/icon_up2.svg') no-repeat center / 100%;
    text-indent: -999999rem;
    font-size: 0;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 1;
}
.popup-wrap.full.typ2 .coupon-bg .coupon-down-btn {
    position: relative;
    display: block;
    width: 17.9%;
    z-index: 1;
}
/* [D]23.09.13 신규 추가 start */
.popup-wrap.full.typ2 .coupon-bg .coupon-down-btn b {
    line-height: 1.1rem;
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    zoom: 0.8;
    position: absolute;
    top: 1.4rem;
    left: 50%;
    transform: translateX(-50%);
}
.popup-wrap.full.typ2 .coupon-bg .coupon-down-btn b i {
    display: inline-block;
    width: 2.6rem;
    height: 1.7rem;
    background: var(--color-gray100);
    line-height: 1.7rem;
    margin-top: 0.4rem;
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
}
/* [D]23.09.13 신규 추가 end */
.popup-wrap.full.typ2 .coupon-bg .coupon-down-btn span {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background: url('../images/coupon/down_icon_20.svg') no-repeat center / 100%;
    text-indent: -999999rem;
    font-size: 0;
}
.popup-wrap.full.typ2 .coupon-bg .coupon-down-btn i.badge-fcfs,
.my-coupon-list .coupon-bg .coupon-down-btn i.badge-fcfs,
.my-coupon-list .coupon-bg .coupon-status i.badge-fcfs {
    display: inline-block;
    width: 3.6rem;
    height: 1.7rem;
    line-height: 1.7rem;
    background: var(--color-primary);
    border-radius: 0.2rem;
    text-indent: 0;
    font-size: 0.9rem;
    color: var(--color-white);
    padding: 0;
    text-align: center;
    position: absolute;
    bottom: 1.5rem;
    right: 1.2rem;
    z-index: 1;
}
/* [D]23.08.11 수정 end */
.popup-wrap.full.typ2 .coupon-bg .coupon-down-btn:disabled span {
    background: url('../images/coupon/check_icon20.svg') no-repeat center / 100%;
    opacity: 0.2;
}
.popCoupon .coupon-note.full-width {
    margin: 5rem -2rem 0;
    padding: 2rem;
}
.popCoupon .coupon-note.full-width .list-dot {
    margin-top: 1.5rem;
}
.popCoupon .coupon-note.full-width .list-dot li:last-of-type {
    margin-bottom: 0;
}

/* 강의 일정 선택 - 풀 typ3 */
.scheduleSelectPop ~ .bg-dim.d-block {
    z-index: 899;
}
.popup-wrap.full.typ3 {
    padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
    width: 100%;
    height: calc(100% - 40%);
    border-radius: 1.5rem 1.5rem 0 0;
    overflow: hidden;
}
.popup-wrap.full.typ3.active {
    bottom: 6.4rem;
}
.popup-wrap.full.typ3 header {
    flex-direction: column;
    align-items: center;
    padding: 2rem 2rem 3rem;
    height: auto;
    border-bottom: none;
}
.popup-wrap.full.typ3 header h1 {
    font-size: 2rem;
    padding: 2rem 0 0;
}
.popup-wrap.full.typ3 header .btn-close-popup {
    width: 100%;
    background: url("../images/coupon/icon_up.svg") 50% 50% no-repeat;
}
.popup-wrap.full.typ3 header .btn-set.coupon-btn-set [class^="btn"][class*="-medium"]::after {
    display: none;
}
.popup-wrap.full.typ3 main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0.1rem 2rem 0 !important; /* [D]23.10.19 수정 */
    height: calc(100% - 6.5rem);
}
.popup-wrap.full.typ3 main section:nth-of-type(1) {
    height: 100%;
    max-height: calc(100% - 10rem);
    overflow-y: auto;
}
.popup-wrap.full.typ3 main section .select-box {
    position: relative;
    width: 100%;
    height: 4.6rem;
}
.popup-wrap.full.typ3 main section .select-box ~ .select-box {
    margin-top: 1.5rem;
}
.popup-wrap.full.typ3 main section .select-box .select-btn {
    position: relative;
    width: 100%;
    height: 4.6rem;
    padding: 1.2rem 3rem 1.2rem 1.5rem;
    text-align: left;
    border: 0.1rem solid var(--color-gray200);
    border-radius: 0.8rem;
}
.popup-wrap.full.typ3 main section .select-box .select-btn:disabled {
    background: var(--color-gray100);
    color: var(--color-gray500);
}
.popup-wrap.full.typ3 main section .select-box.is_active .select-btn {
    border-radius: 0.8rem 0.8rem 0 0;
    border-color: var(--color-black);
}
.popup-wrap.full.typ3 main section .select-box .select-btn::after {
    content: '';
    display: block;
    width: 1.2rem;
    height: 1.2rem;
    background: url('../images/coupon/icon_shape_down.svg') no-repeat center / 100%;
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    z-index: 1;
}
.popup-wrap.full.typ3 main section .select-box.is_active .select-btn::after {
    transform: translateY(-50%) rotate(180deg);
}
.popup-wrap.full.typ3 main section .select-list {
    position: relative;
    display: none;
    width: 100%;
    height: auto;
    background: var(--color-white);
    border: 0.1rem solid var(--color-gray200);
    border-top: none;
    border-radius: 0 0 0.8rem 0.8rem;
    padding-bottom: 1rem;
    top: -0.2rem;
    z-index: 10;
}
.popup-wrap.full.typ3 main section .select-box.is_active .select-list {
    display: block;
    border-color: var(--color-black);
}
.popup-wrap.full.typ3 main section .select-list li button {
    width: 100%;
    height: 3.2rem;
    padding: 0.5rem 1.4rem;
    font-size: 1.5rem;
    text-align: left;
}
.popup-wrap.full.typ3 main section .select-list li button:hover {
    background: var(--color-gray100);
}
.popup-wrap.full.typ3 main section .select-list li button[data-selected="selected"] {
    background: var(--color-gray100);
}
.popup-wrap.full.typ3 main section .select-box button span i::before {
    content: '';
    display: inline-block;
    width: 0.15rem;
    height: 1rem;
    background: var(--color-gray200);
    margin: 0 0.5rem 0 0.1rem;
}
.popup-wrap.full.typ3 main section:nth-of-type(2) {
    height: auto;
    max-height: 10rem;
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.1);
}
.popup-wrap.full.typ3 main section.price-wrap {
    padding: 1.5rem 2rem;
}
.popup-wrap.full.typ3 main section.price-wrap > div {
    margin-bottom: 0.5rem;
}
.popup-wrap.full.typ3 main section.price-wrap > div span.left-align {
    margin-right: auto;
}
.popup-wrap.full.typ3 main section.price-wrap > div i::before {
    content: '';
    display: inline-block;
    width: 0.15rem;
    height: 1rem;
    background: var(--color-gray200);
    margin: 0 0.5rem;
}
.popup-wrap.full.typ3 main section.price-wrap > h3 {
    position: relative;
    text-align: right;
}
.popup-wrap.full.typ3 main section.price-wrap .coupon-badge {
    display: inline-block;
    padding: 0.2rem 1.3rem 0.3rem 0.6rem;
    background: url('../images/coupon/coupon_badge_bg.svg') no-repeat center / 100%;
    font-size: 1rem;
    letter-spacing: -0.02rem;
    line-height: 1.7;
    color: var(--color-white);
    vertical-align: text-top;
    margin-right: 0.5rem;
}
.popup-wrap.full.typ3 main section.price-wrap h3 b {
    font-size: 2rem;
}
.popup-wrap.full.typ3 main section.price-wrap h3 i {
    display: inline-block;
    font-size: 1.8rem;
    margin-left: 0.2rem;
}
.popup-wrap.full.typ3 main section.price-wrap > p {
    text-align: right;
    font-size: 1rem;
    line-height: 1.7;
    letter-spacing: -0.02rem;
    margin-top: -0.4rem;
}




/* [D]23.08.02 쿠폰 고도화 css 추가 - 한유진 */
.order-coupon-wrap > p {
    margin-top: 2rem;
    text-align: right;
}
.order-coupon-wrap > p span {
    display: inline-block;
    margin-left: 1rem;
}
.order-coupon-wrap > .btn-set {
    margin-top: 1rem;
}
.order-coupon-wrap > .btn-set [class^="btn"][class*="-primary"][class*="-line"]:disabled,
.bottom-btn [class^="btn"][class*="-primary"][class*="-line"]:disabled {
    background: var(--color-gray100);
    color: var(--color-gray500);
    border-color: var(--color-gray100);
}
.popCouponPay .coupon-pay {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 2rem;
    border-bottom: 0.1rem dashed var(--color-gray300);
    padding-bottom: 2rem;
}
.popCouponPay .coupon-pay div {
    position: relative;
    width: auto;
    min-width: 10rem;
}
.popCouponPay .coupon-pay div:nth-of-type(2)::before {
    content: '';
    display: block;
    width: 1rem;
    height: 1rem;
    background: url('../images/coupon/ico_minus.svg') no-repeat center / 100%;
    position: absolute;
    left: -0.7rem;
    bottom: 0.7rem;
    z-index: 1;
}
.popCouponPay .coupon-pay div:nth-of-type(2)::after {
    content: '';
    display: block;
    width: 1rem;
    height: 1rem;
    background: url('../images/coupon/ico_equal.svg') no-repeat center / 100%;
    position: absolute;
    right: -0.7rem;
    bottom: 0.7rem;
    z-index: 1;
}
.popCouponPay .coupon-pay div p:first-of-type {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    min-height: 3.4rem;
    font-size: 1.3rem;
    color: var(--color-gray500);
    text-align: center;
}
.popCouponPay .coupon-pay div p:first-of-type span {
    display: inline-block;
    width: 100%;
    font-size: 1.1rem;
    line-height: 1.36;
    color: var(--color-gray500);
}
.popCouponPay .coupon-pay div p:last-of-type {
    font-size: 1.5rem;
    text-align: center;
    margin-top: 0.5rem;
}
.popCouponPay .coupon-pay div p:last-of-type b {
    display: inline-block;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.25;
    margin-right: 0.2rem;
}
.popCouponPay .popup-wrap.full.typ2 header {
    padding: 2rem 2rem 0;
}
.popCouponPay .popup-wrap.full.typ2 main {
    padding: 0 2rem 0 !important;
    height: calc(100% - 14.6rem); /* [D]23.08.23 수정 */
}
.popCouponPay .popup-wrap main .full-width {
    padding: 2rem;
}
.popCouponPay .list-dot > li:last-child {
    margin-bottom: 0;
}
.popCouponPay .bottom-btn [class^="btn"] {
    height: 6rem;
}
.popCouponPay .bottom-btn.border-t-line3 {
    border: none !important;
}
.popCouponPay .bottom-btn [class^="btn"]:disabled {
    background: var(--color-gray500);
    color: var(--color-white);
}


.popCouponPay .popup-wrap.full.typ2 .coupon-bg::before {
    top: -1.4rem;
}
.popCouponPay.popup-wrap.full.typ2 .coupon-bg::after {
    bottom: -1.4rem;
}
.popCouponPay .popup-wrap.full.typ2 .coupon-bg.down-complete.is_active {
    background: #f9f1f3;
    border: 2px solid var(--color-primary); /* [D]23.11.02 수정 */
    box-shadow: none;
}
/* [D]23.11.02 수정 start */
.popCouponPay .popup-wrap.full.typ2 .coupon-bg.down-complete.is_active::before {
    width: 32px;
    height: 14px;
    border: 2px solid var(--color-primary);
    border-radius: 0 0 22px 22px;
    border-top: none;
    background: var(--color-white);
    top: -1.5px;
    left: calc(100% - 17.9% - 1.6rem);
}
/* .popCouponPay .popup-wrap.full.typ2 .coupon-bg.down-complete.is_active:nth-of-type(2n)::before {
    top: -1.55rem;
} */
.popCouponPay .popup-wrap.full.typ2 .coupon-bg.down-complete.is_active::after {
    width: 32px;
    height: 14px;
    border: 2px solid var(--color-primary);
    border-radius: 22px 22px 0 0;
    border-bottom: none;
    background: var(--color-white);
    bottom: -1.5px;
    left: calc(100% - 17.9% - 1.6rem);
}
.popCouponPay .popup-wrap.full.typ2 .coupon-bg.down-complete.is_active.after_none::after {
    bottom: -1.6px;
}
.popCouponPay .popup-wrap.full.typ2 .coupon-bg.down-complete.is_active .coupon-tit::before {
    content: '';
    display: block;
    width: 28px;
    height: 4px;
    background: var(--color-white);
    position: absolute;
    top: -0.4rem;
    right: -1.45rem;
    z-index: 4;
}
.popup-wrap.full.typ2 .coupon-bg.down-complete.is_active.after_none .coupon-notice::after,
.popCouponPay .popup-wrap.full.typ2 .coupon-bg.down-complete.is_active.after_none .coupon-tit::after {
    display: none;
}
.popCouponPay .popup-wrap.full.typ2 .coupon-bg.down-complete.is_active .coupon-tit::after {
    content: '';
    display: block;
    width: 28px;
    height: 4px;
    background: var(--color-white);
    position: absolute;
    top: calc(100% - 0.1rem);
    right: -1.45rem;
    z-index: 4;
}
.popup-wrap.full.typ2 .coupon-bg.down-complete.is_active .coupon-notice::after {
    content: '';
    display: block;
    width: 28px;
    height: 4px;
    background: var(--color-white);
    position: absolute;
    top: calc(100% - 0.1rem);
    left: calc(100% - 15.9rem);
    z-index: 4;
}
.popup-wrap.full.typ2 .coupon-bg.down-complete.is_active .down-complete-icon::after {
    background: url('../images/coupon/coupon_bg_dotted_select.png') no-repeat center / 100%;
}
/* [D]23.11.02 수정 end */
.popCouponPay .popup-wrap.full.typ2 .coupon-bg.down-complete .coupon-down-btn {
    position: absolute;
    width: 1px;
}
/* [D]23.09.13 추가 start */
.popCouponPay .popup-wrap.full.typ2 .coupon-bg.down-complete .coupon-down-btn + b {
    display: inline-block;
    width: 17.9%;
    line-height: 1.1rem;
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    zoom: 0.8;
    position: absolute;
    top: 1.4rem;
    right: 0;
}
.popCouponPay .popup-wrap.full.typ2 .coupon-bg.down-complete .coupon-down-btn + b i {
    display: inline-block;
    width: 2.6rem;
    height: 1.7rem;
    line-height: 1.7rem;
    margin-top: 0.4rem;
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
}
/* [D]23.09.13 추가 end */
.popCouponPay .popup-wrap.full.typ2 .coupon-bg.down-complete .down-complete-icon {
    position: relative;
    display: block;
    width: 17.9%;
    height: 100%;
    min-height: 18rem;
    z-index: 1;
    text-indent: -999999rem;
    font-size: 0;
	background: url('../images/coupon/check_icon20_gray.svg') no-repeat center / 2rem 2rem; /* [D]23.10.18 수정 */
    /* opacity: 0.2; */ /* [D]23.10.18 삭제 */
}
.popCouponPay .popup-wrap.full.typ2 .coupon-bg.down-complete.is_active .down-complete-icon {
    background: url('../images/coupon/check_icon20_red.svg') no-repeat center / 2rem 2rem;
    opacity: 1;
}

.popCouponPay .popup-wrap.full.typ2 .coupon-bg.coupon-disabled {
    background: url('../images/coupon/coupon_180_disable.svg') no-repeat center / 100%;
    box-shadow: none;
}
.popCouponPay .popup-wrap.full.typ2 .coupon-bg.coupon-disabled::before,
.popCouponPay .popup-wrap.full.typ2 .coupon-bg.coupon-disabled::after,
.popCouponPay .popup-wrap.full.typ2 .coupon-bg.coupon-disabled .coupon-tit::after {
    display: none;
}
.popCouponPay .popup-wrap.full.typ2 .coupon-bg.coupon-disabled .coupon-tit {
    opacity: 0.4;
}
.popCouponPay .popup-wrap.full.typ2 .coupon-bg.coupon-disabled .coupon-tit span {
    color: var(--color-black);
}
.popCouponPay .popup-wrap.full.typ2 .coupon-bg.coupon-disabled .coupon-down-btn:disabled span {
    background: url('../images/coupon/disabled_icon20.svg') no-repeat center / 2rem 2rem;
    opacity: 0.4;
}




/* [D]23.08.09 쿠폰 고도화 css 추가 - 한유진 */
.m-wrap > main.my-coupon-list {
    min-height: calc(100vh - 19rem);
}
.m-wrap > main.my-coupon-list > .tab-wrap {
    position: fixed;
    top: 4.9rem;
    left: 0;
    z-index: 20;
    width: 100%;
    background: var(--color-white);
    padding-top: 2rem;
}
@media only screen and (min-width: 1024px) {
    .m-wrap > main.my-coupon-list > .tab-wrap {
        width: 37.5rem;
        left: 50vw;
    }
}
.m-wrap > main.my-coupon-list > section {
    padding-top: 6rem;
    height: calc(100% - 4rem);
    overflow-y: auto;
}
.m-wrap > main.my-coupon-list .coupon-btn-set {
    margin: 0 -2rem;
    padding: 3rem 2rem;
}
.m-wrap > main.my-coupon-list .coupon-btn-set.line {
    border-bottom: 10px solid var(--color-gray100);
}
.m-wrap > main.my-coupon-list .btn-set button {
    height: 4.2rem;
    line-height: 4.2rem;
}
.m-wrap > main.my-coupon-list .coupon-wrap {
    position: relative;
    padding-top: 3rem;
}

/* [D]24.01.18 마이쿠폰 쿠폰 tab 추가 start */
.coupon-sort-tab {
    margin-bottom: 2rem;
}
.coupon-sort-tab ul {
    display: flex;
    justify-content: left;
    align-items: center;
    width: 100%;
}
.coupon-sort-tab ul li {
    width: 33.333%;
}
.coupon-sort-tab ul li button {
    display: block;
    width: 100%;
    height: 4.2rem;
    text-align: center;
    border: 1px solid var(--color-gray200);
    color: var(--color-gray500);
}
.coupon-sort-tab ul li button.is_active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}
.coupon-sort-tab ul li:first-of-type button {
    border-radius: 6px 0 0 6px;
}
.coupon-sort-tab ul li:nth-of-type(2) button {
    border-left: 0;
    border-right: 0;
}
.coupon-sort-tab ul li:last-of-type button {
    border-radius: 0 6px 6px 0;
}
/* [D]24.01.18 마이쿠폰 쿠폰 tab 추가 end */

.m-wrap > main.my-coupon-list .coupon-wrap .sorting-box {
    width: auto;
    min-width: 8rem;
    margin-left: auto;
    position: absolute;
    top: -0.2rem; /* 24.01.18 수정 */
    right: 0;
    z-index: 10;
}
.m-wrap > main.my-coupon-list .coupon-wrap .sorting-box.expiry-date {
    top: 7.7rem;
}
.sorting-box .sorting-btn {
    position: relative;
    width: 100%;
    margin-left: auto;
    border: none;
    padding: 0 1.2rem 0.3rem 1rem;  /* 24.01.18 수정 */
    font-size: 1.3rem;
    text-align: right;
}
.sorting-box .sorting-btn::after {
    content: '';
    display: inline-block;
    width: 0.7rem;
    height: 0.5rem;
    background: url('../images/coupon/icon_shape_down.svg') no-repeat center / 100%;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1;
}
.sorting-box.is_active .sorting-btn::after {
    transform: translateY(-50%) rotate(180deg);
}
.sorting-box .sorting-list {
    display: none;
    width: 100%;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1;
    border: 0.1rem solid var(--color-gray200);
    border-radius: 0.6rem;
    background: var(--color-white);
    overflow: hidden;
}
.sorting-box.is_active .sorting-list {
    display: block;
}
.sorting-box .sorting-list li button {
    width: auto;
    min-width: 100%;
    text-align: left;
    font-size: 1.3rem;
    padding: 0.3rem 1rem;
}
.sorting-box .sorting-list li button:hover {
    background: var(--color-gray100);
}
.sorting-box .sorting-list li button[data-selected="selected"] {
    color: var(--color-primary);
}
.coupon-list-wrap ~ .coupon-list-wrap {
    margin-top: 3rem;
}
.coupon-list-wrap:last-of-type {
    padding-bottom: 2rem;
}
.coupon-list-wrap > p {
    margin: 0 0 1.5rem; /* 24.01.18 수정 */
}
.coupon-list-wrap > p.info-text {
    font-size: 1.3rem;
    color: var(--color-gray500);
    margin-bottom: 3rem;
}
.coupon-list-wrap > p span {
    display: inline-block;
    margin-left: 0.5rem;
}
.coupon-list-wrap .coupon-bg {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    min-height: 18rem;
    box-shadow: 0 0 1rem 0 rgba(0,0,0,0.08);
    border-radius: 0.8rem;
}
.coupon-list-wrap .coupon-bg::before {
    content: '';
    display: block;
    width: 6.1rem;
    height: 2.6rem;
    background: url('../images/coupon/coupon_bg_round_top.png') no-repeat center / 100%;
    position: absolute;
    top: -1.37rem;
    left: calc(100% - 17.9% - 3rem);
    z-index: 1;
}
.coupon-list-wrap .coupon-bg::after {
    content: '';
    display: block;
    width: 6.1rem;
    height: 2.6rem;
    background: url('../images/coupon/coupon_bg_round_bottom.png') no-repeat center / 100%;
    position: absolute;
    bottom: -1.37rem;
    left: calc(100% - 17.9% - 3rem);
    z-index: 1;
}
.coupon-list-wrap .coupon-bg + .coupon-bg {
    margin-top: 2.5rem;
}
.coupon-list-wrap .coupon-bg .coupon-tit {
    position: relative;
    width: calc(100% - 17.9%);
    height: 100%;
    min-height: 18rem;
    padding: 2rem;
}
.coupon-list-wrap .coupon-bg .coupon-tit::after {
    content: '';
    display: block;
    width: 1.2rem;
    height: 100%;
    max-height: 17rem;
    background: url('../images/coupon/coupon_bg_dotted.png') no-repeat center / 100%;
    position: absolute;
    top: 1rem;
    right: -0.6rem;
    z-index: 1;
}
.coupon-list-wrap .coupon-bg .coupon-tit h4 {
    font-size: 2.8rem;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.042rem;
}
.coupon-list-wrap .coupon-bg .coupon-tit h4 span {
    display: inline-block;
    font-size: 2rem;
    font-weight: normal;
    letter-spacing: -0.03rem;
    padding-left: 0.2rem;
}
.coupon-list-wrap .coupon-bg .coupon-tit h4 i {
    vertical-align: middle;
    padding-left: 0.5rem;
}
.coupon-list-wrap .coupon-bg .coupon-tit p {
    height: 2.1rem;
    font-size: 1.3rem;
    font-weight: bold;
    margin: 1rem 0 1.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.coupon-list-wrap .coupon-bg .coupon-tit p .badge {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: normal;
    line-height: 2rem;
    padding: 0 0.6rem;
    border: 0.1rem solid var(--color-black);
    border-radius: 1.05rem;
    margin-right: 0.5rem;
    vertical-align: baseline;
}
.coupon-list-wrap .coupon-bg .coupon-tit > span {
    font-size: 1.1rem;
    color: var(--color-gray500);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow:ellipsis;
}
.coupon-list-wrap .coupon-bg .coupon-tit > span.coupon-due-date {
    margin-top: 0.5rem;
    line-height: 1.82;
}
.coupon-list-wrap .coupon-bg .coupon-tit > span.coupon-due-date:nth-last-child(2) {
    margin-bottom: 0.8rem;
}
.coupon-list-wrap .coupon-bg .coupon-status {
    position: relative;
    display: block;
    width: 17.9%;
    z-index: 1;
}
/* [D]23.09.13 추가 start */
.coupon-list-wrap .coupon-bg .coupon-status b {
    display: inline-block;
    line-height: 1.1rem;
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    zoom: 0.8;
    position: absolute;
    top: 1.4rem;
    left: 50%;
    transform: translateX(-50%);
}
.coupon-list-wrap .coupon-bg .coupon-status b i {
    display: inline-block;
    width: 2.6rem;
    height: 1.7rem;
    line-height: 1.7rem;
    background: var(--color-gray100);
    margin-top: 0.4rem;
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
}
/* [D]23.09.13 추가 end */
.coupon-list-wrap .coupon-bg .coupon-status span {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 1.1rem;
}
.coupon-list-wrap .coupon-bg .coupon-status span::before {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background: url('../images/coupon/check_icon20.svg') no-repeat center / 100%;
    margin-bottom: 0.2rem;
}

.coupon-list-wrap .coupon-bg.coupon-disabled {
    background: url('../images/coupon/coupon_180_disable.svg') no-repeat center / 100%;
    box-shadow: none;
}
.coupon-list-wrap .coupon-bg.coupon-disabled::before,
.coupon-list-wrap .coupon-bg.coupon-disabled::after,
.coupon-list-wrap .coupon-bg.coupon-disabled .coupon-tit::after {
    display: none;
}
.coupon-list-wrap .coupon-bg.coupon-disabled .coupon-tit {
    opacity: 0.4;
}
.coupon-list-wrap .coupon-bg.coupon-disabled .coupon-tit span {
    color: var(--color-black);
}
/* [D]23.09.13 추가 start */
.coupon-list-wrap .coupon-bg.coupon-disabled .coupon-status b {
    opacity: 0.4;
}
/* [D]23.09.13 추가 end */
.coupon-list-wrap .coupon-bg.coupon-disabled .coupon-status span {
    opacity: 0.4;
}
.coupon-list-wrap .coupon-bg.coupon-disabled.expiry .coupon-status span::before {
    background: url('../images/coupon/expiry_icon20.svg') no-repeat center /100%;
}
.no-result-coupon p:before {
    background: url('../images/coupon/nodata_icon.svg') no-repeat center / 100%;
}

.coupon-register-wrap .f-input {
    width: 100%;
    margin-top: 1.5rem;
}
.coupon-register-wrap > p {
    font-size: 1.3rem;
    color: var(--color-gray500);
    margin-top: 1.5rem;
}
.coupon-register-wrap > .btn-set {
    margin-top: 3rem;
}

.m-wrap > main.my-coupon-list #avlblCpnList .coupon-btn-set button:disabled {
    background: var(--color-gray100);
    color: var(--color-gray500);
    border-color: var(--color-gray100);
}
.m-wrap > main.my-coupon-list #avlblCpnList .coupon-wrap {
    padding-top: 0;
}
#avlblCpnList .coupon-wrap .coupon-bg .coupon-down-btn {
    position: relative;
    display: block;
    width: 17.9%;
    z-index: 1;
}
/* [D]23.09.13 신규 추가 start */
#avlblCpnList .coupon-wrap .coupon-bg .coupon-down-btn b {
    line-height: 1.1rem;
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    zoom: 0.8;
    position: absolute;
    top: 1.4rem;
    left: 50%;
    transform: translateX(-50%);
}
#avlblCpnList .coupon-wrap .coupon-bg .coupon-down-btn b i {
    display: inline-block;
    width: 2.6rem;
    height: 1.7rem;
    background: var(--color-gray100);
    line-height: 1.7rem;
    margin-top: 0.4rem;
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
}
/* [D]23.09.13 신규 추가 end */
#avlblCpnList .coupon-wrap .coupon-bg .coupon-down-btn span {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background: url('../images/coupon/down_icon_20.svg') no-repeat center / 100%;
    text-indent: -999999rem;
    font-size: 0;
}
#avlblCpnList .coupon-wrap .coupon-bg .coupon-down-btn:disabled span {
    background: url('../images/coupon/check_icon20.svg') no-repeat center / 100%;
    opacity: 0.2;
}
.m-wrap > main.my-coupon-list #avlblCpnList + section {
    padding: 2rem;
}
.m-wrap > main.my-coupon-list #avlblCpnList + section .list-dot > li:last-child {
    margin-bottom: 0;
}

/* [D]23.08.11 추가 */
.swiperWrap .swiper-button-prev::after, .swiperWrap .swiper-button-next::after {
    font-size: 0;
    text-indent: -999999rem;
}
/* [D]23.10.17 선착순 뱃지 수정 */
.popup-wrap.full.typ2 .coupon-bg .coupon-down-btn ~ i.badge-fcfs,
.popup-wrap.full.typ2 .coupon-bg .down-complete-icon i.badge-fcfs {
    display: inline-block;
    width: 3.6rem;
    height: 1.7rem;
    line-height: 1.7rem;
    background: var(--color-primary);
    border-radius: 0.2rem;
    text-indent: 0;
    font-size: 0.9rem;
    color: var(--color-white);
    padding: 0;
    position: absolute;
    bottom: 1.5rem;
    right: 1.2rem;
    z-index: 1;
    text-align: center;
}
.coupon-complt-txt {
    margin-top: -0.8rem;
}

/* [D]23.06.02 무료클래스 신청 안내 추가 */
.free_class_wrap {
    width: 100%;
    padding: 1.5rem;
    background: #ebffc4;
    border-radius: 0.8rem;
    overflow: hidden;
    margin-top: 1rem;
}
.free_class_wrap h4 {
    font-size: 1.5rem;
    line-height: 2;
    font-weight: bold;
}
.free_class_wrap h4::before {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background: url('../images/ico/icon_free.png') no-repeat center / 100%;
    vertical-align: sub;
    margin-right: .5rem;
}
.free_class_wrap p {
    font-size: 1.1rem;
    letter-spacing: -0.024rem;
    word-break: break-all;
}


/* [D]23.11.02 */
.price_wrap > strong {
    white-space: nowrap;
    line-height: 1.1;
}
.price_wrap > div {
    row-gap: 0 !important;
}
.ingredient_info {
    display: flex;
    justify-content: right;
    align-items: center;
    column-gap: 0.2rem;
    width: 100%;
    text-align: right;
    white-space: nowrap;
}
.ingredient_info > span {
    font-size: 1.1rem;
}

/* [D]23.12.12 지점변경 팝업 수정 */
/* 지점선택 case1 */
.change-store-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/main/main_blur_bg.png") no-repeat top center / cover;
    padding: 0 !important;
    z-index: 1000;
}
.change-store-wrap .change-store-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(2rem);
    -webkit-backdrop-filter: blur(2rem);
    padding: 1rem 6rem;
}
.change-store-wrap .change-store-inner .change-store-cont {
    width: auto;
    height: auto;
    background: rgba(255,255,255,0) url('../images/main/classkok_bi.svg') no-repeat center bottom / 10rem;
    padding: 0 0 7rem;
    margin: 0 auto;
}
.change-store-inner .change-store-cont h2 {
    font-size: 2rem;
    font-weight: normal;
    color: var(--color-white);
    white-space: nowrap;
    margin-bottom: 0;
    margin-bottom: 3rem;
    text-align: center;
}
.change-store-inner .change-store-cont .store-swiper {
    height: 46rem;
}
.change-store-inner .change-store-cont .store-swiper .swiper-wrapper {
    display: block !important;
}
.change-store-inner .change-store-cont .store-swiper .swiper-slide {
    width: 10rem;
    height: 10rem !important;
    border: 0.1rem solid var(--color-white);
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
}
.change-store-inner .change-store-cont a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--color-white);
    text-align: center;
}
.change-store-inner .change-store-cont a span {
    font-size: 1.3rem;
}
.change-store-inner .change-store-cont .store-swiper-button-prev {
    width: 3rem;
    height: 1.5rem;
    background: url('../images/main/up_icon.svg') no-repeat center / 100%;
    position: relative;
    z-index: 10;
    margin: 3rem auto 2.5rem;
    cursor: pointer;
}
.change-store-inner .change-store-cont .store-swiper-button-next {
    width: 3rem;
    height: 1.5rem;
    background: url('../images/main/up_icon.svg') no-repeat center / 100%;
    position: relative;
    transform: rotate(180deg);
    z-index: 10;
    margin: 2.5rem auto 0;
    cursor: pointer;
}
.change-store-inner .change-store-cont .swiper-button-disabled {
    display: none;
}

@media only screen and (max-height: 700px) {
    .change-store-inner .change-store-cont .store-swiper {
        height: 34rem;
    }
}
@media only screen and (min-width: 1024px) {
    .change-store-wrap {
        width: 375px;
        min-width: 375px;
        max-width: 375px;
        left: 50vw;
    }
}


/* 지점선택 case2 */
.change-store-inner .change-store-cont .store-wrap {
    display: flex;
    flex-flow: row wrap;
    justify-content: left;
    width: 23rem;
    height: auto;
    max-height: 46rem;
    overflow-y: auto;
    gap: 2rem 3rem;
}
.change-store-inner .change-store-cont .store-wrap li {
    width: 10rem;
    height: 10rem !important;
    border: 0.1rem solid var(--color-white);
    border-radius: 50%;
    overflow: hidden;
}

@media only screen and (min-width: 820px) {
    .change-store-inner .change-store-cont .store-wrap {
        justify-content: space-evenly;
        width: 24.7rem;
    }
}
@media only screen and (max-height: 700px) {
    .change-store-inner .change-store-cont .store-wrap {
        max-height: 35rem;
    }
}

/* [D]24.01.16 수강 취소 확인 팝업 */
.cpn-return-info {
    display: inline-block;
    width: 1.6rem;
    height: 1.6rem;
    text-indent: -999999rem;
    background: url('../images/ico/icon_16_Question.svg') no-repeat center / 100%;
}
.cpn-return-tooltip {
    width: 100%;
    background-color: #ffe250;
    padding: 1.5rem 2.8rem;
    border-radius: 6px;
    font-size: 1.3rem;
    position: absolute;
    top: calc(100% - 2rem);
    left: 0;
}
.cpn-return-tooltip .cpn-return-close {
    display: block;
    width: 1rem;
    height: 1rem;
    text-indent: -999999rem;
    background: url('../images/btn/btn_close_popup.svg') no-repeat center / 100%;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1;
}
.cpn-return-tooltip p {
    position: relative;
}
.cpn-return-tooltip p::before {
    content: '';
    width: 3px;
    height: 3px;
    background-color: var(--color-black);
    border-radius: 50%;
    position: absolute;
    top: 0.9rem;
    left: -1rem;
}

/* [D]24.01.21 쿠폰할인가 css 추가 */
.cpn-badge-big {
    letter-spacing: -0.039rem;
    font-weight: bold;
}
.cpn-badge {
    letter-spacing: -0.033rem;
    font-weight: bold;
}
.cpn-disc {
    width: 100%;
}
.cpn-disc p {
    display: flex;
    justify-content: right;
    align-items: center;
}
.cpn-disc p::before {
    content: '';
    display: inline-block;
    width: 1.6rem;
    height: 1.6rem;
    background: url('../images/coupon/icon_coupon.svg') no-repeat center / 100%;
    margin-right: 0.2rem;
}
.cpn-disc p {
    font-size: 1.1rem;
    color: var(--color-primary);
}
.cpn-disc p strong {
    font-size: 2.5rem;
    margin-left: 1rem; /* [D]24.03.12 수정 */
}
.cpn-disc p strong span {
    font-size: 1.5rem;
}

/* [D]24.01.25 목록 쿠폰 팔인가 css 추가 */
.view-thumbnail .text-area .price-area .price-bottom .cpn-badge-big {
    margin-bottom: 0.4rem;
}

/* [D]24.02.29 영상정보 수집 관련 css 추가 */
.inform-tab-wrap {
    width: 100%;
    height: 6.5rem;
    display: flex;
    align-items: center;
}
.inform-tab-wrap button {
    width: 50%;
    height: 100%;
    border: 1px solid var(--color-gray200);
    line-height: 1.47;
    color: var(--color-gray500);
}
.inform-tab-wrap button:first-of-type {
    border-radius: 6px 0 0 6px;
}
.inform-tab-wrap button:last-of-type {
    border-radius: 0 6px 6px 0;
    border-left: 0;
}
.inform-tab-wrap button.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}
.inform-tab-wrap button:first-of-type.active {
    border-right: 0;
}

/* [D]24.03.07 오늘 수강 카테고리 */
.today-class-area {
    width: 100%;
    height: 3.5rem;
    padding: 0 2rem;
    background: var(--color-gray100);
}
.today-class-area p {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 1.1rem;
    line-height: 1.73;
    letter-spacing: -0.022rem;
    color: var(--color-black);
}
.today-class-area p span {
    font-size: 1.1rem;
    line-height: 1.73;
    letter-spacing: -0.022rem;
    color: var(--color-primary);
}
.today-class-area p::before {
    content:'';
    display: inline-block;
    width: 5.5rem;
    height: 2.6rem;
    background: url('../images/ico/ico_today_class.svg') no-repeat center / 100%;
    margin-right: 0.5rem;
}

/* 키즈 클래스 일정 */
.mt70 {
    margin-top: 7rem !important;
}
.kids-schedule .kids-tit {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0.5rem 0 1.5rem;
}
.kids-schedule .kids-tit span {
    position: relative
}
.kids-schedule .kids-tit span::after {
    content: '';
    display: block;
    width: 100%;
    height: 0.5px;
    background: var(--color-black);
    position: absolute;
    bottom: 0.2rem;
    left: 0;
}
.kids-schedule-select {
    margin: 1.5rem -2rem 3rem;
    padding: 1.5rem 1.7rem 1.5rem;
    background: #f1f4f9;
}
.kids-schedule-select .select-top,
.kids-schedule-select .select-btm {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.kids-schedule-select .select-top .view-all span {
    font-size: 1.3rem;
    line-height: 1.77;
}
.kids-schedule-select .select-top .view-all span::after {
    content: '';
    display: inline-block;
    width: 1.6rem;
    height: 1.6rem;
    background: url('../images/ico/ico_check_black.svg') no-repeat center 0.2rem / 100%;
    margin-left: 0.2rem;
}
.kids-schedule-select .select-top .view-all input:checked + span {
    font-weight: bold;
}
.kids-schedule-select .select-top .view-all input:checked + span::after {
    background: url('../images/ico/ico_check_black_active.svg') no-repeat center 0.2rem / 100%;
}
.kids-schedule-select .select-top .view-filter {
    display: inline-block;
    width: 1.6rem;
    height: 1.6rem;
    background: url("../images/btn/btn_search_class_detail.svg") no-repeat center / 100%;
}
.kids-schedule-select .select-top .view-all {
    padding: 0.3rem 0 0.3rem 0.2rem;
}

.kids-schedule-select .select-btm label {
    position: relative;
    display: inline-block;
    padding: 1rem 0.9rem;
}
.kids-schedule-select .select-btm label input {
    position: absolute;
    clip: rect(0 0 0 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
}
.kids-schedule-select .select-btm label span {
    font-size: 1.5rem;
    line-height: 1.53;
}
.kids-schedule-select .select-btm label input:checked + span {
    font-weight: bold;
}
.kids-schedule-select .select-btm label input:checked + span::after {
    content: '';
    display: block;
    width: 0.5rem;
    height: 0.5rem;
    background: var(--color-black);
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.kids-contents .class-room-wrap {
    width: calc(100% + 4rem);
    margin: 0 -2rem;
}
.kids-contents .class-room-wrap ~ .class-room-wrap {
    margin-top: 5rem;
}
.kids-contents .class-room-wrap .kids-class-room ~ .kids-class-room {
    margin-top: 3rem;
}
.kids-contents .class-room-wrap .kids-class-room .kids-class-tit {
    font-size: 1.5rem;
    line-height: 1.4;
    margin: 1.5rem 0 1rem;
}
.kids-contents .class-room-wrap .kids-class-room p {
    font-size: 1.3rem;
    line-height: 1.85;
}

/* 키즈클래스 필터 팝업 */
.kidsClassSearch .select-word {
    justify-content: left;
    gap: 1rem;
}
.kidsClassSearch .select-word li label {
    padding: 0 1rem;
}
.kidsClassSearch .select-word.weekly li {
    flex: 3.4rem 0 0;
}
.kidsClassSearch .select-word.weekly li .f-check-btn input[type="checkbox"] + label {
    width: 3.4rem;
    height: 3.4rem;
    line-height: 3.4rem;
    padding: 0;
}
.kidsClassSearch .select-word.weekly li .f-check-btn input[type="checkbox"]:checked + label {
    line-height: 3.2rem;
}
.kidsClassSearch .select-word.col3 li {
    flex: calc((100% - 2rem) / 3) 0 0;
}
.kidsClassSearch .popup-wrap.full > main .btn-fieldset {
    flex-wrap: wrap;
}
.kidsClassSearch .popup-wrap.full > main .btn-fieldset .f-input {
    width: calc(100% - 9.1rem);
}
.kidsClassSearch .popup-wrap.full > main .btn-fieldset .btn-set [class^="btn"] {
    border-radius: 0.8rem;
}
.kidsClassSearch .popup-wrap.full > main .btn-fieldset .kids-info-txt {
    margin-top: 0.5rem;
}
/* [D]24.03.12 쿠폰가 추가 요청사항 */
.coupon-possibility {
    position: relative;
}
.coupon-possibility::after {
    content: '';
    display: block;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: var(--color-primary);
    /* border: 1px solid var(--color-white); */
    position: absolute;
    top: 0.3rem;
    right: 0.2rem;
    z-index: 1;
}
.info-coupon-possibility {
    display: flex;
    justify-content: right;
    align-items: center;
    font-size: 1.2rem;
}
.info-coupon-possibility::before {
    content:'';
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: var(--color-primary);
    margin-right: 0.3rem;
}
/* [D]24.03.13 공지사항 추가 */
.view-post .post-contents a {
    display: inline-block;
}
.view-post .post-contents a span {
    color: var(--color-primary) !important;
    background: url('../images/ico/ico_arrow_right_red.svg') no-repeat right 0.1rem / 1.6rem;

}

/* [D]24.04.10 클래스보기 상세검색 필터 설정 상태 추가 */
.count-badge {
    position: relative;
}
.count-txt {
    display: flex;
    align-items: center;
    min-width: 1.2rem;
    height: 1.2rem;
    position: absolute;
    top: -0.4rem;
    left: 0.8rem;
    background-color: var(--color-primary);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 0.8rem;
    line-height: 1;
    white-space: nowrap;
    padding: 0 0.33rem;
}
.sch-filter-wrap {
    display: flex;
    width: 100%;
    margin-top: 1.5rem;
}
.sch-filter-reset {
    width: 2.6rem;
    background: var(--color-white) url('../images/ico/ico_reset.svg') no-repeat center left / 1.6rem;
    text-indent: -999999rem;
    font-size: 0;
}
.sch-filter-list {
    display: flex;
    width: calc(100% - 2.6rem);
    overflow-y: hidden;
    overflow-x: auto;
}
.sch-filter-list li {
    display: flex;
    gap: 1rem;
    width: auto;
    height: 3rem;
    align-items: center;
    border: 1px dashed var(--color-gray200);
    padding: 0 1rem;
    border-radius: 1.5rem;
}
.sch-filter-list li ~ li {
    margin-left: 0.5rem;
}
.sch-filter-list li p {
    font-size: 1.2rem;
    white-space: nowrap;
}
.sch-filter-list li .sch-filter-del {
    width: 0.8rem;
    height: 0.8rem;
    background: url('../images/ico/icon_close_btn_black.svg') no-repeat center / 100%;
    text-indent: -999999rem;
    font-size: 0;
}
.sch-filter-list::-webkit-scrollbar {
    appearance: none;
    display: none;
}
@media only screen and (min-width: 1024px) {
    .sch-filter-reset {
        margin-top: -0.4rem;
    }
    .sch-filter-list {
        height: 3.5rem;
        padding-bottom: 0.4rem;
    }
    .sch-filter-list::-webkit-scrollbar {
        appearance: initial;
        display: block;
        height: 0.4rem;
    }
    .sch-filter-list::-webkit-scrollbar-thumb {
        background-color: transparent;
        border-radius: 10px;
    }
    .sch-filter-list:hover::-webkit-scrollbar-thumb {
        background-color: var(--color-gray200);
    }
    .ssch-filter-list::-webkit-scrollbar-track {
        background-color: #fff;
    }
}

/* [D]24.04.25 키즈클래스 상세검색 필터 설정 상태 css 추가 */
.kids-schedule-select + .sch-filter-wrap {
    margin-top: -2rem;
}
.classSearch .search-class-detail section:nth-of-type(2) span:nth-of-type(2) + .select-word li:nth-of-type(3) .f-check-btn input[type="checkbox"]:checked + label {
    font-size: 1.4rem;
}

/* [D]24.05.08, [D]24.05.09 클래스보기 gif badge */
.view-thumbnail .thumbnail-area [class^="badge-gif"] {
    position: absolute;
    top: 1.2rem;
    right: 0.59rem;
    left: unset;
    z-index: 10;
}
.gallery [class^="badge-gif"] {
    position: absolute;
    top: 3rem;
    right: 1.5rem;
    z-index: 10;
    width: 9.5rem;
    height: 9.5rem;
}
.standby-review-list .thumbnail [class^="badge-gif"] {
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
    z-index: 10;
    width: 3rem;
    height: 3rem;
}
.badge-gif {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4.21rem;
    height: 4.17rem;
    background: url('../images/ico/clkok_only_bg.svg') no-repeat center / 100%;
    text-indent: -999999rem;
}
.badge-gif::after {
    content: '';
    display: block;
    width: 2.44rem;
    height: 2.3rem;
    background: url('../images/ico/clkok_only_icon.svg') no-repeat center / 100%;
    margin-top: -0.2rem;
    animation: gifBadge 0.9s infinite;
    -webkit-animation: gifBadge 0.9s infinite;
    position:  absolute;
}
.gallery .badge-gif::after {
    width: 5.5rem;
    height: 5.5rem;
}
.badge-gif.expand {
    width: 12vw;
    height: 12vw;
}
.badge-gif.expand::after {
    width: 6.5vw;
    height: 6.5vw;
}
.gallery .badge-gif.expand {
    width: 24vw;
    height: 24vw;
}
.gallery .badge-gif.expand::after {
    width: 14.5vw;
    height: 14.5vw;
}
@media only screen and (min-width: 1024px) {
    .badge-gif.expand {
        width: 4.21rem;
        height: 4.17rem;
    }
    .badge-gif.expand::after {
        width: 2.44rem;
        height: 2.3rem;
    }
    .gallery .badge-gif.expand {
        width: 9.5rem;
        height: 9.5rem;
    }
    .gallery .badge-gif.expand::after {
        width: 5.5rem;
        height: 5.5rem;
    }
}
@keyframes gifBadge {
    0% { transform: scale(0.95); -webkit-transform: scale(0.95); }
    50% { transform: scale(1.05); -webkit-transform: scale(1.05); }
    100% { transform: scale(1); -webkit-transform: scale(1); }
}

.standby-review-list .badge-gif.expand::after {
    width: 2rem;
    height: 2rem;
}

/* [D]24.05.17 수강 취소 팝업 내 환불 예정 금액 표출 추가 */
.cc-price {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: baseline;
    margin-top: 0.5rem;
    font-size: 2.8rem;
    color:var(--color-primary);
    padding-left: 2.8rem;
}
.cc-price::before {
    content: '';
    display: inline-block;
    width: 2.5rem;
    height: 2.5rem;
    background: url('../images/ico/icon_cc.svg') no-repeat center / 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.cc-price span {
    font-size: 2rem;
    color:var(--color-primary);
}

.class-schedule-summary .swiper-button-prev:after,
.class-schedule-summary .swiper-rtl .swiper-button-next:after {
    display: none !important;
}
.class-schedule-summary .swiper-button-next:after,
.class-schedule-summary .swiper-rtl .swiper-button-prev:after {
    display: none !important;
}

/* [D]24.07.11 이벤트 페이지 css 추가 */
.evt-wrap .img_wrap {
    border-radius: 6% 6% 0 0;
    overflow: hidden;
}
.evt-wrap .progress_wrap {
    position: relative;
    display: flex; /* [D]24.08.01 추가 */
    align-items: center; /* [D]24.08.01 추가 */
    gap: 1rem; /* [D]24.08.01 추가 */
    width: 100%;
    padding: 2rem 2rem 0; /* [D]24.08.01 수정 */
    background: #f9f9f9; /* [D]24.08.01 추가 */
}
.evt-wrap .progress_wrap progress {
    appearance: none;
    width: 100%;
    height: 0.5rem; /* [D]24.08.01 수정 */
    /* margin-top: 0.5rem; */ /* [D]24.08.01 삭제 */
}
.evt-wrap .progress_wrap progress::-webkit-progress-bar {
    background: #e2e2e2; /* [D]24.08.01 수정 */
    border-radius: 1rem;
    overflow: hidden;
}
.evt-wrap .progress_wrap progress::-webkit-progress-value {
    background: #000000; /* [D]24.08.01 수정 */
    border-radius: 1rem;
    overflow: hidden;
}
.evt-wrap .progress_wrap i {
    font-size: 0.9rem !important;
    letter-spacing: -0.27px;
    white-space: nowrap; /* [D]24.08.01 추가 */
    color: #888888 !important; /* [D]24.08.01 추가 */
    /* [D]24.08.01 삭제 */
    /* position: absolute;
    bottom: 1.95rem;
    left: 3rem;  */
}
.evt-wrap .progress_wrap i span { /* [D]24.08.01 위치변경, 내용 수정 */
    font-size: 0.9rem !important;
    letter-spacing: -0.27px;
    white-space: nowrap; /* [D]24.08.01 추가 */
    color: #000000; /* [D]24.08.01 추가 */
}
.evt-wrap .progress_wrap i:last-of-type {
    left: initial;
    right: 3rem;
}

.evt-wrap .event_btm > div {
    position: relative;
    padding: 2rem 2rem 2.5rem; /* [D]24.08.01 수정 */
    background: #f9f9f9;
    text-align: center;
    border-radius: 0 0 6% 6%;
}
/* [D]24.08.01 삭제 */
/* .evt-wrap .event_btm > div::before {
    content: '';
    display: block;
    width: 100%;
    height: 2.7rem;
    position: absolute;
    top: 0;
    left: 0;
    background: url('../images/contents/event_vote_shadow.png') no-repeat center / 100%;
} */
/* [D]24.08.01 삭제 */

.evt-wrap .event_btm .event_vote_tit {
    display: inline-block;
    width: auto;
    padding: 0.8rem 3rem;
    box-shadow: 0 0.2rem 0.6rem 0 rgba(0, 0, 0, 0.1);
    border-radius: 1.9rem;
    font-size: 1.5rem !important;
    font-weight: bold !important;
    color: #d60a36 !important;
    white-space: nowrap;
    letter-spacing: -0.45px;
}
.evt-wrap .event_btm .event_vote_tit.typ2 {
    display: block;
    width: 100%;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
    font-size: 1.3rem !important;
    font-weight: bold !important;
    color: #000 !important;
    white-space: nowrap;
    letter-spacing: -0.39px;
    text-align: left;
}

.evt-wrap .event_btm .event_step_form {
    display: flex;
    flex-flow: row wrap;
    gap: 3rem 1.5rem;
    margin-top: 2.5rem;
}
.evt-wrap .event_btm .event_step_form label {
    position: relative;
    display: block;
    width: calc(50% - 0.75rem);
    background: #fff;
    border-radius: 2.5rem;
    overflow: hidden;
}
.evt-wrap .event_btm .event_step_form label.dim {
    opacity: 0.6;
}
.evt-wrap .event_btm .event_step_form .check_wrap {
    width: 100%;
    height: 100%;
    padding: 1.1rem 1.1rem 3.2rem;
    border: 0.4rem solid #fff;
    border-radius: 2.5rem;
}
.evt-wrap .event_btm .event_step_form .check_wrap .img_wrap {
    width: 100%;
    border-radius: 1.5rem;
}
.evt-wrap .event_btm .event_step_form .check_wrap p {
    height: auto;
    min-height: 3.9rem;
    max-height: 7.9rem;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    font-size: 1.3rem !important;
    letter-spacing: -0.2px;
    line-height: 2rem;
    margin-top: 1rem;
    text-align: left;
}

.evt-wrap .event_btm .event_step_form label input:checked + .check_wrap {
    border-style: inset;
    border: 0.4rem solid #d60a36;
}
.evt-wrap .event_btm .event_step_form label input:checked + .check_wrap::after {
    content: '';
    display: block;
    width: 2rem;
    height: 2rem;
    background: url('../images/contents/ico_vote_checked.png') no-repeat center / 100%;
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}

.evt-wrap .event_btm .event_step_form ul {
    width: 100%;
    margin-top: -1rem;
}
.evt-wrap .event_btm .event_step_form ul li {
    width: 100%;
    padding: 1.5rem 1.5rem 2rem;
    background: #e9eaec;
    border-radius: 1.5rem;
    text-align: left;
}
.evt-wrap .event_btm .event_step_form ul li ~ li {
    margin-top: 1rem;
}
.evt-wrap .event_btm .event_step_form ul li span {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: #fff;
    border-radius: 1.2rem;
    font-size: 1.1rem !important;
    font-weight: bold !important;
    letter-spacing: -0.33px;
}
.evt-wrap .event_btm .event_step_form ul li p {
    font-size: 1.1rem !important;
    line-height: 2rem;
    letter-spacing: -0.17px;
    margin-top: 0.5rem;
}

.evt-wrap .event_btm .event_step_form .event_reset {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    margin-top: -1.5rem;
    font-size: 1.3rem !important;
    font-weight: bold !important;
    line-height: 1.7rem;
}
.evt-wrap .event_btm .event_step_form .event_reset::before {
    content: '';
    display: inline-block;
    width: 1.6rem;
    height: 1.6rem;
    background: url('../images/ico/ico_reset_reflection.svg') no-repeat center / 100%;
    margin-right: 0.2rem;
}

.evt-wrap .event_btm .event_step_form .event_vote_complete {
    margin: -2.5rem auto 0;
}
.evt-wrap .event_btm .event_step_form .event_vote_complete .img_wrap {
    width: 5rem;
    margin: 0 auto;
}
.evt-wrap .event_btm .event_step_form .event_vote_complete h4 {
    font-size: 1.8rem !important;
    font-weight: bold !important;
    letter-spacing: -0.54px;
    margin: 1.5rem 0;
}
.evt-wrap .event_btm .event_step_form .event_vote_complete p {
    font-size: 1.3rem !important;
    letter-spacing: -0.39px;
}

.evt-wrap .event_btm .event_step_form .btn_set {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 4.5rem;
}
.evt-wrap .event_btm .event_step_form .event_btn {
    width: 100%;
    height: 4.5rem;
    background: #000;
    font-size: 1.5rem !important;
    line-height: 2.9rem;
    color: #fff !important;
    border-radius: 2.25rem;
}
.evt-wrap .event_btm .event_step_form .event_btn.line {
    background: #fff;
    border-style: inset;
    border: 1px solid #000;
    color: #000 !important;
}
.evt-wrap .event_btm .event_step_form .event_btn.primary {
    background: #d60a36;
}
.evt-wrap .event_btm .event_step_form .event_btn:disabled {
    background: #888888;
}
.evt-wrap .event_btm .event_step_form .event_btn ~ .event_btn {
    margin-left: 0.5rem;
}
.evt-wrap .event_btm .event_step_form .event_counter {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    margin-top: -1rem;
}
.evt-wrap .event_btm .event_step_form .event_counter span {
    font-size: 1.4rem !important;
    letter-spacing: -0.42px;
    line-height: 1.3;
}
.evt-wrap .event_btm .event_step_form .event_counter span:last-of-type {
    font-size: 1rem !important;
    letter-spacing: -0.3px;
    color: #888888 !important;
}
.evt-wrap .event_btm .event_step_form .event_counter span:last-of-type::before {
    content: '/';
    display: inline-block;
    margin: 0 0.4rem;
}

.evt-wrap .event_btm .event_vote_list {
    width: 100%;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: 1.5rem;
    margin-top: 3rem;
}
.evt-wrap .event_btm .event_vote_list h4 {
    font-size: 1.3rem !important;
    font-weight: bold !important;
    letter-spacing: -0.39px;
    text-align: left;
}
.evt-wrap .event_btm .event_vote_list div {
    display: flex;
    align-items: flex-start;
    margin-top: 1.3rem;
}
.evt-wrap .event_btm .event_vote_list div ~ div {
    margin-top: 2.3rem;
}
.evt-wrap .event_btm .event_vote_list div b {
    font-size: 1.1rem !important;
    letter-spacing: -0.33px;
    line-height: 2rem;
    white-space: nowrap;
}
.evt-wrap .event_btm .event_vote_list div span {
    font-size: 1.1rem !important;
    letter-spacing: -0.17px;
    line-height: 2rem;
    margin-left: 1rem;
    text-align: left;
}

.evt-wrap .event_btm .event_notice {
    text-align: left;
    background: #f4f4f4;
    margin: 5rem -2rem -2.5rem;
    padding: 2rem;
    border-radius: 0 0 6% 6%;
}
.evt-wrap .event_btm .event_notice h3 {
    font-size: 1.5rem !important;
    font-weight: bold !important;
    line-height: 2.2rem;
}
.evt-wrap .event_btm .event_notice .list-dot {
    margin-top: 1.5rem;
}
.evt-wrap .event_btm .event_notice .list-dot li {
    font-size: 1.3rem !important;
    line-height: 1.9rem;
    color: #888888 !important;
}

/* [D]24.08.19 썸네일 프레임 css추가 */
.thumbnail-frame {
    width: 50%; /* [D]24.09.01 수정 */
    height: 50%; /* [D]24.09.01 수정 */
    position: absolute;
    top: 0;
    right: 0; /* [D]24.09.01 수정 */
    z-index: 2;
    border-radius: 0 15px 0 0; /* [D]24.10.07 추가 */
    overflow: hidden;
}
.thumbnail-frame img {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    max-width: 200%;
    object-fit: contain;
}

/* [D]24.09.25, [D]24.09.29 파트너사, 찜버튼 하단으로 이동 */
.view-thumbnail .thumbnail-area + .bottom-area {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}
.view-thumbnail .thumbnail-area + .bottom-area > span {
    display: inline-flex;
    align-items: center;
    width: auto;
    height: 2.2rem;
    border: 1px solid var(--color-gray200);
    border-radius: 0.4rem;
    font-size: 1rem;
    padding: 0 0.6rem;
}
.view-thumbnail .thumbnail-area + .bottom-area .btn-add-wish {
    margin-left: auto;
    width: 2.2rem;
    height: 2.2rem;
    background: url('../images/ico/ico_wish2.svg') no-repeat center / 100%;
}
.view-thumbnail .thumbnail-area + .bottom-area .btn-add-wish.active {
    background: url('../images/ico/ico_wish2_active.svg') no-repeat center / 100%;
}

/* [D]24.10.07 팝업 카테고리 말풍선 추가 */

.tab-class-wrap .tab-category-menu li.popup-cate.active {
    position: relative;
}
.popup-cate-bubble {
    display: none;
    position: absolute;
    top: 2.92rem;
    left: calc(50% - 22.7rem);
    z-index: 10;
    transform: translateX(50%);
}
.popup-cate-bubble.active {
    display: block;
    z-index: 999;
}
.bubble-wrap {
    width: 21.4rem;
    height: 15.6rem;
    background: url('../images/ico/popup_bubble_bg.png') no-repeat center / 100%;
    padding: 2.7rem 2.5rem 0;
    text-align: left;
}
.bubble-wrap h2 {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--color-primary);
    letter-spacing: -0.24px;
}
.bubble-wrap p {
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: -0.22px;
    margin-top: 0.2rem;
}
.bubble-wrap span {
    display: inline-block;
    font-size: 1rem;
    font-weight: lighter;
    letter-spacing: -0.3px;
    margin-top: 0.4rem;
}
.bubble-wrap span + span {
    margin-top: 0.6rem;
}
.bubble-wrap .bubble-close {
    width: 1.4rem;
    height: 1.4rem;
    display: block;
    position: absolute;
    top: 3.1rem;
    right: 2.1rem;
    text-indent: -999999rem;
}

/* [D]24.10.10 QR 코드 추가 */
.qrcode-wrap {
    width: 21.336vw;
    height: 21.336vw;
    background: var(--color-white);
    border-radius: 8px;
    padding: 0.5rem;
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 2;
}
.qrcode-wrap img {
    width: 100%;
    height: 100%;
}
@media only screen and (min-width: 1024px) {
    .qrcode-wrap {
        width: 8rem;
        height: 8rem;
    }
}

/* [D]24.11.14 자녀회원 확인 본인인증 추가 */
.certi-count {
    display: flex;
    align-items: center;
}
.certi-count button {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
    font-weight: bold;
}
.certi-count button::before {
    content: '';
    display: inline-block;
    width: 1.6rem;
    height: 1.6rem;
    background: url('../images/ico/ico_reset.svg') no-repeat center / 100%;
    margin-right: 0.3rem;
}

/* 제휴 추가 */
.allance_class_wrap {
    width: 100%;
    padding: 1.5rem;
    background: #efe6ff;
    border-radius: 0.8rem;
    overflow: hidden;
    margin-top: 3rem;
}
.allance_class_wrap h4 {
    font-size: 1.5rem;
    line-height: 2;
    font-weight: bold;
}
.allance_class_wrap h4::before {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background: url('../images/ico/icon_free.png') no-repeat center / 100%;
    vertical-align: sub;
    margin-right: .5rem;
}
.allance_class_wrap p {
    font-size: 1.2rem;
    letter-spacing: -0.024rem;
    word-break: break-all;
}


.wrap.v2 { width: 100%; height: 100%; overflow: hidden; }
.v2 .header { position: relative; width: 100%; height: 86rem; box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.1); background-color: var(--color-white);  padding: 25rem 30rem; z-index: 10; }
.v2 .header h1 { font-size: 25rem; font-weight: 600; letter-spacing: -0.075rem; color: #424d53; }

.v2 .container { position: relative; display: flex; flex-flow: row nowrap; justify-content: left; align-items: flex-start; width: 100%; height: calc(100vh - 86rem); }

.v2 .contents { position: relative; width: 100%; min-width: calc(100% - 310rem); height: 100%; overflow: auto; }

.v2 .contents::-webkit-scrollbar { height: 6rem; width: 6rem; }
.v2 .contents::-webkit-scrollbar-thumb { background-color: var(--color-gray300); border-radius: 10px; }
.v2 .contents::-webkit-scrollbar-track { background-color: var(--color-gray400); border-radius: 10px; box-shadow: inset 0px 0px 5px white; }

.v2 .loading_wrap { position: fixed; top: 0; left: 0; display: none; justify-content: center; align-items: center; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); z-index: 100; }
.v2 .loading_wrap.active { display: flex; }
.v2 .loading_wrap .loading { font-size: 13rem; color: var(--color-white); }
.v2 .loading_wrap .loading::before { content: ''; display: block; width: 90rem; height: 90rem; background: url('../images/icon_loading.svg') no-repeat center / 100%; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); animation: loading 1.5s linear infinite; }
@keyframes loading {
    from { transform: translate(-50%, -50%) rotate(360deg); }
    to { transform: translate(-50%, -50%) rotate(0deg); }
}

.v2 col { width: 126px !important; }

.v2 #calendar { width: 100%; height: calc(100% - 108rem); max-height: 100%; padding: 15rem 30rem 30rem; font-size: 14px; }

#calendar *::-webkit-scrollbar { height: 6rem; width: 6rem; }
#calendar *::-webkit-scrollbar-thumb { background-color: var(--color-gray300); border-radius: 10px; }
#calendar *::-webkit-scrollbar-track { background-color: var(--color-gray400); border-radius: 10px; box-shadow: inset 0px 0px 5px white; }

.v2 .fc thead .fc-scroller-harness .fc-scroller { overflow: visible !important; }

.v2 .fc-theme-standard td, .v2 .fc-theme-standard th { border-color: var(--color-blue500); }

.v2 .fc-view-harness.fc-view-harness-active { height: 100vh !important; }

.v2 .fc .fc-timegrid-body { width: 100% !important; min-height: auto; } /* [D]25.03.04 추가 */
.v2 .fc .fc-scrollgrid-section-body table, .fc .fc-scrollgrid-section-footer table { width: 100% !important; } /* [D]25.03.04 추가 */

.v2 thead .fc-scroller-harness { border-top: 2px solid var(--color-blue400); }
.v2 thead .fc-scroller-harness > div { border-bottom: 2px solid var(--color-blue500); }
.v2 tbody .fc-scroller-harness > div { border-bottom: 2px solid #e7ebf2; }
.v2 .fc-scroller-harness thead th { border-bottom: none; border-top: none; }

.v2 .fc .fc-timegrid-axis { position: relative; vertical-align: middle; border-right: 2px solid #e7ebf2; background-color: #f5f8fe; }
.v2 .fc-timegrid-axis::after { content: ''; display: block; width: 2px; height: 2px; background: #e7ebf2; position: absolute; bottom: -2px; right: -2px; z-index: 1; }
.v2 .fc .fc-timegrid-axis-frame { justify-content: center; }
.v2 .fc .fc-timegrid-axis-frame span { font-weight: 400; }

.v2 .fc-scrollgrid-sync-inner { display: flex; align-items: center; justify-content: center; min-height: 40rem; font-size: 16rem; font-weight: 500; }

.v2 .fc-direction-ltr .fc-timegrid-col-events { margin: 0 2rem; }

.v2 .fc .fc-timegrid-slot { height: 40rem; }
.v2 .fc-timegrid-slot.fc-timegrid-slot-label.fc-scrollgrid-shrink { position: relative; border-right: 2px solid #e7ebf2; }
.v2 .fc-direction-ltr .fc-timegrid-slot-label-frame { position: absolute; top: 0; left: 0; width: 100%; height: 120rem; background-color: #f5f8fe; display: flex; align-items: center; justify-content: center; }
.v2 .fc-timegrid-slot.fc-timegrid-slot-label.fc-timegrid-slot-minor { border-right: none;}
/* .fc-timegrid-slot.fc-timegrid-slot-lane { border-top-style: dashed; } */ /* [D]25.03.04 주석처리 */
.v2 .fc-timegrid-slot.fc-timegrid-slot-lane.fc-timegrid-slot-minor { border-left: none; border-top: none; }

.v2 .fc .fc-timegrid-col.fc-day-today { background-color: rgba(255, 255, 255, 0); }

.v2 .fc-v-event { border: none; border-radius: 8rem; margin: auto; }
.v2 .fc-v-event .fc-event-main { color: #333; padding: 7rem 10rem; }

.v2 .fc-timegrid-event .fc-event-time, .fc-event-title { font-size: 12rem; white-space: unset; }
.v2 .fc-timegrid-event .fc-event-time { margin-bottom: 0; }

.v2 .fc-timegrid-event.end { background-color: #f3f3f3; }
.v2 .fc-timegrid-event.open { background-color: #fcf0ff; }
.v2 .fc-timegrid-event.inProgress { background-color: #ebf1fc; }
.v2 .fc-timegrid-event.before { background-color: #f1f9f1; }
.v2 .fc-timegrid-event.addition { background-color: #fcf0ff; }

.v2 .fc-event-title { overflow: auto !important; font-size: 13rem; }

.v2 .fc-day.fc-day-past.fc-timegrid-col { position: relative; z-index: 5; }

.v2 .fc-col-header { width: calc(100% - 6rem) !important; }

.v2 .fc .fc-toolbar.fc-header-toolbar { margin-bottom: 0; }

.v2 .toolbar_wrap { max-width: 300rem; display: flex; justify-content: flex-start; align-items: center; margin: 20rem 30rem 16rem; }
.v2 .toolbar_wrap .btn { display: flex; justify-content: center; align-items: center; width: 16rem; height: 16rem;}
.v2 .toolbar_wrap .btn.btn_left::after { content: ''; display: block; width:100%; height: 100%; background: url('/static/images/icon_left.svg') no-repeat center / 100%; }
.v2 .toolbar_wrap .btn.btn_right::after { content: ''; display: block; width:100%; height: 100%; background: url('/static/images/icon_right.svg') no-repeat center / 100%; }

.v2 .toolbar_wrap .btn_today { width: 48rem; height: 30rem; border: 1px solid #bac4d5; border-radius: 4rem; font-size: 13rem; font-weight: 400; color: #000000; margin-left: 20rem; }
.v2 .toolbar_wrap .toolbar_title { font-size: 24rem; font-weight: 600; color: #424d53; margin-left: 20rem !important; margin-right: 20rem; }

.v2 .fc .fc-button-primary:not(:disabled).fc-button-active, .v2 .fc .fc-button-primary:not(:disabled):active { border: 1px solid #bac4d5; color: #000000; }
.v2 .fc .fc-button-primary:disabled { background-color: rgba(255, 255, 255, 0); border-color: #bac4d5; color: #000000; }
.v2 .fc-direction-ltr .fc-toolbar > * > .fc-button-primary { margin-left: 0; }

.v2 .btn_wrap { width: 100%; overflow: hidden; padding: 0 30rem; }
.v2 .btn_wrap ul { display: flex; width: 100%; overflow-x: auto; }
.v2 .btn_wrap button { display: block; width: auto; height: 30rem; margin-right: 8rem; background-color: #f4f5f9; color: #424d53; border: none; border-radius: 4rem; padding: 6rem 12rem 5rem; font-size: 13rem; white-space: nowrap; }
.v2 .btn_wrap button.active { background-color: #0e5af5; color: #ffffff; }

.v2 .btn_wrap ul::-webkit-scrollbar { height: 6rem; width: 6rem; }
.v2 .btn_wrap ul::-webkit-scrollbar-thumb { background-color: var(--color-gray300); border-radius: 10px; }
.v2 .btn_wrap ul::-webkit-scrollbar-track { background-color: var(--color-gray400); border-radius: 10px; box-shadow: inset 0px 0px 5px white; }


.v2 .fc-col-header-cell.fc-day.fc-day-today { background-color: #f5f8fe; }
.v2 .fc .fc-timegrid-col.fc-day-today { background-color: #f5f8fe; }

.v2 .fc .fc-scrollgrid-liquid { border-top: none; border-left: none; }
.v2 .fc-theme-standard td, .fc-theme-standard th { border: none; }
.v2 .fc-timegrid-slot.fc-timegrid-slot-label.fc-timegrid-slot-minor { border: none; }

.v2 .fc-timegrid-event-harness-inset .fc-timegrid-event, .fc-timegrid-event.fc-event-mirror, .fc-timegrid-more-link { box-shadow: none; }

.v2 .fc-timegrid-event-harness { width: calc(100% - 16rem); margin: auto; }

.v2 .class_popup { display: none; position: fixed; top: 0; left: 0; z-index: 10; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); }
.v2 .class_popup.active { display: block; }
.v2 .class_popup .popup_inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 30rem; width: 1040rem; height: 370rem; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: #ffffff; padding: 30rem; border-radius: 40rem; }
.v2 .img_wrap { position: relative; width: 310rem; height: 310rem; border-radius: 24rem; overflow: hidden; }
.v2 .img_wrap div { width: 100%; height: 0; padding-top: 100%; }
.v2 .img_wrap img { display: block; width: 100%; max-width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; vertical-align: middle; }

.v2 .txt_wrap { position: relative; display: flex; flex-direction: column; justify-content: flex-start; width: calc(100% - 310rem); height: 100%; padding: 10rem 0; }
.v2 .txt_wrap b { font-size: 24rem; font-weight: 600; color: #ff3762; }
.v2 .txt_wrap .popup_title { width: 100%; height: 141rem; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; font-size: 34rem; font-weight: 600; line-height: 1.35; letter-spacing: -0.068rem; color: #000000; margin: 10rem 0; }
.v2 .txt_wrap p { font-size: 30rem; font-weight: 600; color: #000000; margin-bottom: 14rem; padding-right: 120rem; }
.v2 .txt_wrap .popup_txt { display: inline-block; font-size: 26rem; font-weight: 400; color: #000000; padding-right: 120rem; margin-bottom: 0; }
.v2 .qr_wrap { width: 110rem; height: 110rem; background-color: #ffffff; border: 7rem solid #f4f4f4; border-radius: 12rem; position: absolute; bottom: 0; right: 0; z-index: 1; padding: 3rem; }
.v2 .popup_close { width: 50rem; height: 50rem; border-radius: 50%; background-color: #ffffff; padding: 13rem; position: absolute; bottom: -70rem; right: 0; z-index: 1; }



/* [D]25.06.02 크리덴셜 스터핑 추가 */
.certi-count {
    display: flex;
    align-items: center;
}
.certi-count button {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
    font-weight: bold;
}
.certi-count button::before {
    content: '';
    display: inline-block;
    width: 1.6rem;
    height: 1.6rem;
    background: url('../images/ico/ico_reset.svg') no-repeat center / 100%;
    margin-right: 0.3rem;
}

.btn-set.typ2 {
    width: 12.6rem  !important;
}
.btn-set.typ2 button {
    width: 100% !important;
    border-radius: 8px !important;
}

.popup-wrap.full > main.second-certi-wrap > section.line {
    position: relative;
    padding-bottom: 5rem;
}
.popup-wrap.full > main.second-certi-wrap > section.line::after {
   content: '';
   display: block;
   width: calc(100% + 40px);
   height: 10px;
   background-color: var(--color-gray100);
   position: absolute;
   bottom: 2rem;
   left: -20px;
}

.overseas_login_set a {
    font-size: 1.3rem;
    text-decoration: underline;
}
.overseas_login_set a::before {
    content: '';
    display: inline-block;
    width: 1.6rem;
    height: 1.6rem;
    background: url(../images/ico/ico_lock.svg) no-repeat center / 100%;
    margin-right: 0.2rem;
    vertical-align: middle;
}

.f-check.typ3 > input[type="checkbox"]:checked + label:before {
    background: url("../images/btn/btn_check_active3.svg") no-repeat center / 100%;
}
.overseas_login_wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 40vh;
    min-height: 60rem;
}
.overseas_login_wrap h3 {
    font-size: 2rem;
    font-weight: bold;
    line-height: 3rem;
    text-align: center;
}
.overseas_login_wrap h3::before {
    content: '';
    display: block;
    width: 12rem;
    height: 12rem;
    background: url(../images/ico/ico_overseaslogin.svg) no-repeat center / 100%;
    margin: 0 auto 1rem;
}