/* -------------------- 기본 정의 --------------------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: inherit;
}

a:active {
    text-decoration: none;
}

ol,
ul
/*,	li*/

{
    list-style-type: none;
}

html,
body {
    padding: 0;
    margin: 0;
    height: 100%;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    -webkit-text-size-adjust: none;
    font-family: 'Pretendard Variable', 'Noto Sans', sans-serif;
    font-weight: Regular;
    font-weight: 300;
    word-spacing: 0;
    letter-spacing: -0.5px;
    font-size: 14px;
    background: #f4f6f8;
    /* background-color: #fff; */
    overflow-x: hidden !important;
}


/* 모든 폼 요소에 폰트 적용 */

input,
textarea,
select,
button {
    font-family: 'Pretendard Variable', 'Noto Sans', sans-serif;
}


/*폰트사이즈*/

.f12 {
    font-size: 12px !important;
}

.f16 {
    font-size: 16px !important;
}

.f24 {
    font-size: 24px !important;
}

.f30 {
    font-size: 30px !important;
}

.fs-12 {
    font-size: 1.2rem !important;
}

.fs-11 {
    font-size: 1.1rem !important;
}

.fs-10 {
    font-size: 1rem !important;
}

.fs--9 {
    font-size: 0.9rem !important;
}

.fs--8 {
    font-size: 0.8rem !important;
}

.fs--75 {
    font-size: 0.75rem !important;
}

.fs--7 {
    font-size: 0.7rem !important;
}

.fs--6 {
    font-size: 0.6rem !important;
}

.fs--5 {
    font-size: 0.5rem !important;
}

.input-float-msg {
    position: absolute;
    top: 50%;
    right: 0;
    height: fit-content;
    padding-right: 20px;
    transform: translate(0, -35%);
}

.input-float-msg2 {
    position: absolute;
    top: 50%;
    right: 40px;
    height: fit-content;
    padding-right: 20px;
    transform: translate(0, -35%);
}

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.position-fixed {
    position: fixed;
}

.contents {
    width: 100%;
    min-width: 315px;
    height: 100%;
    margin: 0 auto;
    /* background-color: #f4f6f8; */
    background-color: #fff;
    position: relative;
    /* overflow-y: auto; */
}


/*기본 padding margin 규칙*/

.lrp {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
}

.mt40 {
    margin-top: 40px;
}

.mt20 {
    margin-top: 20px;
}

.mt10 {
    margin-top: 10px;
}

.fleft {
    float: left;
}

.fright {
    float: right;
}

.hand {
    cursor: pointer !important;
}


/* ---------------------- 입력요소 정의 -----------------------*/

input[type='text'],
input[type='tel'],
input[type='email'],
input[type='number'],
[type='password'] {
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    background: #f9fafb;
    height: 48px;
    width: 100%;
    font-weight: 500;
    border: 0px;
    margin-top: 8px;
}

input::placeholder {
    font-size: 16px;
    color: #6b7280;
    font-weight: normal;
}

.password-wrapper {
    position: relative;
    /* 부모 요소에 상대 위치 지정 */
}


/* .password-wrapper::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 20px;
    width: 24px;
    height: 24px;
    background-image: url('/imgs/eye-slash.png');
    background-size: cover;
    pointer-events: none;
} */

.eye-slash {
    content: '';
    position: absolute;
    right: 16px;
    z-index: 10;
    /* 입력 필드 우측 여백 */
    top: 20px;
    width: 24px;
    /* 아이콘 너비 */
    height: 24px;
    /* 아이콘 높이 */
    background-image: url('/imgs/eye-off.svg');
    /* 아이콘 이미지 경로 */
    background-size: cover;
    /* 아이콘 크기 조정 */
    opacity: 0.5;
    cursor: pointer;
    display: none;
}

.eye {
    content: '';
    position: absolute;
    z-index: 10;
    right: 16px;
    /* 입력 필드 우측 여백 */
    top: 20px;
    width: 24px;
    /* 아이콘 너비 */
    height: 24px;
    /* 아이콘 높이 */
    background-image: url('/imgs/eye.svg');
    /* 아이콘 이미지 경로 */
    background-size: cover;
    /* 아이콘 크기 조정 */
    opacity: 0.5;
    cursor: pointer;
    display: none;
}

button {
    width: 100%;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #0d9488;
    color: #14b8a6;
    padding: 8px 16px;
    font-size: 16px;
    height: 48px;
    font-weight: 700;
}

button.disabled {
    background-color: #fff !important;
    border: 1px solid #cccccc !important;
    color: #cccccc !important;
}

a.disabled {
    opacity: 0.3;
}

img.disabled {
    opacity: 0.3;
}

.select {
    display: inline-block;
    position: relative;
    padding: 0;
    height: 48px;
    line-height: 48x;
    border: 0px solid #ddd;
    width: 100%;
    border-radius: 8px;
    background: #f9fafb;
    margin-top: 8px;
}

.select:after {
    content: '';
    display: block;
    position: absolute;
    right: 16px;
    top: 50%;
    margin-top: -6px;
    width: 14px;
    height: 14px;
    background: #f9fafb url('/imgs/select_arrow.png') no-repeat center center;
}

.select label {
    position: absolute;
    top: 8px;
    right: 16px;
    bottom: 0;
    left: 16px;
    color: #6b7280;
    font-size: 16px;
    text-align: left;
    line-height: 36px;
    font-weight: 500;
}

.select select {
    position: relative;
    z-index: 1;
    padding: 0 4px;
    width: 100%;
    height: 36px;
    line-height: 36px;
    vertical-align: top;
    opacity: 0;
    filter: alpha(opacity=0);
    background: #f5f5f5;
}


/*-- 라디오 라벨 --*/

.radio-label {
    font-size: 18px;
    line-height: 2rem;
}

[type='radio'],
.pay-point {
    vertical-align: middle;
    color: #0d9488;
    font-size: 16px;
    font-weight: 600;
}

[type='radio'] {
    appearance: none;
    border: max(2px, 0.1em) solid #e5e7eb;
    border-radius: 50%;
    width: 1.5em;
    height: 1.5em;
    transition: border 0.5s ease-in-out;
}

[type='radio']:checked {
    border: 0.4em solid #14b8a6;
}

[type='radio']:focus-visible {
    outline-offset: max(2px, 0.1em);
    outline: max(2px, 0.1em) dotted #e5e7eb;
}

[type='radio']:hover {
    box-shadow: 0 0 0 max(4px, 0.2em) lightgray;
    cursor: pointer;
}

[type='radio']:hover+span {
    cursor: pointer;
}

[type='radio']:disabled {
    background-color: lightgray;
    box-shadow: none;
    opacity: 0.7;
    cursor: not-allowed;
}

[type='radio']:disabled+span {
    opacity: 0.7;
    cursor: not-allowed;
}


/* Global CSS */

fieldset {
    display: flex;
    justify-content: center;
    border: none;
    margin: 0;
    padding: 40px 20px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}


/*-- //라디오 라벨 --*/

button.on {
    background: #14b8a6;
    color: #fff;
    border: 1px solid #0d9488;
}

textarea {}

select {}

.warn-info-border {
    border: 1px solid #dc2626;
}

.warn-info {
    color: #dc2626;
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    padding: 8px 16px;
}


/* ------------------------  공용 컨텐츠 ------------------------------*/

.contents-wrap {
    width: 100%;
    min-height: 100%;
    margin: 0 auto;
    padding-top: 10px;
    background: #fff;
}

.contents-wrap-modal {
    margin-top: 60px;
}

.contents-wrap-modal-top {
    margin-top: 110px;
}

.modal-alert {
    position: absolute;
    left: 50%;
    margin-left: -167px;
    margin-top: 50%;
    padding: 40px 20px 20px 20px;
    background: #fff;
    width: 334px;
    z-index: 500;
    border-radius: 28px;
    color: #4b5563;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.modal-alert p {
    width: 100%;
    text-align: center;
    line-height: 27px;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
}

#ivMsgDialog .modal-content {
    border-radius: 18px;
    width: 95%;
    margin: auto;
}

#ivMsgDialog .modal-body {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

#ivMsgDialog .modal-body p {
    width: 100%;
    text-align: center;
    line-height: 27px;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
}

.item_title {
    width: 100%;
    height: 59px;
    line-height: 59px;
    padding: 0px 16px;
    color: #4b5563;
}

.item_left {
    font-size: 24px;
    font-weight: 700;
    float: left;
}

.item_right {
    float: right;
    font-size: 20px;
    font-weight: 600;
    color: #4b5563;
}

.item_right img {
    vertical-align: middle;
    margin-bottom: 3px;
}

.week-nav {
    /* width: 375px; */
    width: 100%;
    height: 59px;
    line-height: 59px;
    padding: 0px 16px;
    color: #4b5563;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-wrap: nowrap;
}

.week-nav div:nth-child(1) {
    font-size: 20px;
    font-weight: 700;
    flex: 1;
}

.main-menu {
    position: fixed;
    bottom: 0px;
    height: 66px;
    padding: 8px 0px 0px 0px;
    width: 375px;
    left: 50%;
    margin-left: -187.5px;
    background: #fff;
    border-top: 1px solid #e5e7eb;
}

.menu-item {
    width: 25%;
    text-align: center;
    float: left;
}

.menu-title {
    line-height: 48px;
    padding: 0px 16px;
    font-size: 24px;
    font-weight: 700;
    overflow: hidden;
}

.menu-title .fright img {
    padding: 12px 0px;
}

.div-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.div-center-justify {
    display: flex;
    justify-content: space-between;
    /* 내부 요소들을 양쪽 끝에 정렬 */
    align-items: center;
    /* 내부 요소들을 수직 중앙에 정렬 */
    width: 100%;
    /* 컨테이너의 너비를 100%로 설정 */
}

.div-center-justify>div {
    flex: 1;
    /* 내부 요소들을 flex 컨테이너로 설정 */
}


/* ------------------------  로그인 회원가입 아이디 비번 찾기 ---------------------------*/

#global-ico {
    height: 51px;
    width: 100%;
    text-align: right;
    padding: 12px 16px;
}

.login-adbox {
    height: 240px;
    padding: 0px 20px 20px 20px;
}

.login-adbox h1 {
    font-size: 24px;
    font-weight: 800;
    margin-top: 8px;
    line-height: 34px;
    color: #14b8a6;
}

.login-adbox p {
    font-size: 16px;
    font-weight: 600;
    margin-top: 8px;
    line-height: 24px;
    color: #4b5563;
}

.login-adbox span {
    color: #14b8a6;
}

#find-menu {
    height: 53px;
    margin-top: 12px;
}

#find-menu div {
    width: 50%;
    float: left;
    padding: 16px;
    text-align: center;
    font-size: 18px;
    color: #6b7280;
    font-weight: 600;
}

#copyright {
    margin-top: 40px;
    width: 100%;
    text-align: center;
    color: #6b7280;
    font-size: 12px;
    font-weight: 500;
}

#blank_area {
    padding: 5vw;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    text-align: center;
    z-index: 498;
    opacity: 0.65;
}

.nation-sel {
    list-style: none;
    margin: 0;
    padding: 8px 0px;
    background-color: #fff;
    /* min-width: 240px;
    max-width: 365px; */
    /* z-index: 1000;
    border-radius: 8px;
    position: absolute;
    top: 47px;
    right: 5px; */
}

.nation-sel>li {
    position: relative;
}

.nation-sel>li>span {
    display: block;
    padding: 8px 16px;
    color: #000;
    text-decoration: none;
    height: 40px;
    font-size: 16px;
    font-weight: 600;
}

.nation-sel>.sel ::after {
    content: '';
    position: absolute;
    right: 16px;
    /* 입력 필드 우측 여백 */
    top: 8px;
    width: 24px;
    /* 아이콘 너비 */
    height: 24px;
    /* 아이콘 높이 */
    background-image: url('/imgs/check_icon.png');
    /* 아이콘 이미지 경로 */
    background-size: cover;
    /* 아이콘 크기 조정 */
    pointer-events: none;
    /* 아이콘 클릭 방지 */
}

.page-title {
    width: 100%;
    min-height: 60px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    text-align: center;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 499;
    box-shadow: 0 0 10px 0 #a0a0a0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page-title .title-text {
    position: relative;
    width: 100%;
    min-height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-title .lf {
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translate(0, -50%);
    margin-left: 10px;
    background: #fff;
}

.page-title .rf {
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translate(0, -50%);
    margin-right: 10px;
    background: #fff;
}


/* .page-title a img {
    vertical-align: middle;
    position: absolute;
    top: 12px;
    left: 16px;
    background: #fff;
} */


/* .page-title div {
    position: absolute;
    top: 0px;
    right: 16px;
    background: #fff;
    z-index: 388;
    line-height: 45px;
} */


/* .page-title img {
    vertical-align: middle;
} */

.agree-wrap {
    margin-top: 12px;
    padding-left: 16px;
    font-size: 14px;
    font-weight: 500;
    color: #14b8a6;
}

.join-left {
    width: 60%;
    float: left;
    margin-top: 8px;
}

.join-right {
    width: 40%;
    float: right;
    margin-top: 8px;
    padding-left: 5px;
}

div.fl {
    width: 65%;
    float: left;
}

div.fl-40 {
    width: 40%;
}

div.fl-45 {
    width: 45%;
}

div.fl-50 {
    width: 50%;
}

div.fl-55 {
    width: 55%;
}

div.fl-60 {
    width: 60%;
}

div.fl-60 {
    width: 65%;
}

div.fr {
    width: 35%;
    float: right;
    padding-left: 5px;
}

div.fr-35 {
    width: 35%;
}

div.fr-40 {
    width: 40%;
}

div.fr-45 {
    width: 45%;
}

div.fr-50 {
    width: 50%;
}

div.fr-60 {
    width: 60%;
}

div.clear {
    clear: both;
}

.guide-title {
    padding: 16px 0px;
}

.guide-title p {
    line-height: 24px;
    font-size: 16px;
    font-weight: 700;
}

.guide-title span {
    line-height: 21px;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
}

.gubun {
    border-bottom: 8px solid #f9fafb;
    margin-top: 20px;
}


/* ----------------------------- 메인페이지 ------------------------------------- */

.overflow-wrap {
    /* -webkit-overflow-scrolling: touch; */
    /* width: 100%; */
    overflow: auto;
    white-space: nowrap;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    border-bottom: 8px solid #f9fafb;
}

.overflow-wrap::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.main-ico {
    /* height: 116px; */
    padding: 12px 16px;
    font-weight: 600;
    font-size: 12px;
    line-height: 18px;
    color: #4b5563;
    letter-spacing: -1px;
}

.main-ico .ico-txt {
    margin-top: -10px;
    padding-top: 5px;
    /* padding-bottom: 2px; */
}

.ico-box {
    text-align: center;
    width: 73.1px;
    display: inline-block;
    margin-right: 6px;
}

.rsv-contents {
    margin-left: 16px;
    height: 131px;
    width: 310px;
    border-radius: 20px;
    padding: 20px;
    display: inline-block;
    border: 1px solid #e5e7eb;
    line-height: 30px;
    background-image: url('/imgs/reservation card.png');
}

.rsv_time {
    color: #111827;
    font-size: 18px;
    font-weight: 800;
}

.rsv_shop {
    color: #111827;
    font-size: 16px;
    font-weight: 600;
}

.rsv_client {
    color: #4b5563;
    font-size: 12px;
    font-weight: 600;
}

.rsv-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 32px;
    padding-top: 16px;
}

.rsv-nav .nav-off {
    border-radius: 4px;
    width: 8px;
    height: 8px;
    background: #d1d5db;
    margin: 3px;
}

.rsv-nav .nav-on {
    border-radius: 4px;
    width: 16px;
    height: 8px;
    background: #2dd4bf;
    margin: 3px;
}

.level-top {
    border-radius: 20px 20px 0px 0px;
    height: 134px;
    background: #5eead4;
    border: 1px solid #5eead4;
    padding: 20px;
}

.level-bottom {
    border-radius: 0px 0px 20px 20px;
    height: 161px;
    border: 1px solid #e5e7eb;
    padding: 20px;
    background: url('/imgs/level_bg.png') no-repeat 50% -30px;
}

.level-1 {
    height: 62px;
}

.level-left {
    line-height: 31px;
    float: left;
}

.level-left span {
    padding: 2px 8px;
    border-radius: 8px;
    background: #fff;
    color: #0d9488;
    font-size: 14px;
    font-weight: 600;
}

.level-left div {
    font-size: 18px;
    font-weight: 700;
}

.level-right {
    height: 62px;
    float: right;
    display: flex;
    align-items: center;
}

.level-right img {
    vertical-align: middle;
    margin-bottom: 3px;
}

.level-right span:nth-of-type(1) {
    color: #dc2626;
    font-size: 14px;
    font-weight: 600;
}

.level-right span:nth-of-type(2) {
    font-size: 44px;
    font-style: italic;
    font-weight: 700;
    color: #134e4a;
}

.level-right span:nth-of-type(3) {
    margin-left: 10px;
    font-size: 18px;
    font-style: italic;
    font-weight: 600;
    color: #14b8a6;
}

.level-2 {
    height: 24px;
    line-height: 24px;
}

.level-2 .fleft {
    font-size: 14px;
    font-weight: 600;
    color: #115e59;
}

.level-2 .fright {
    font-size: 14px;
    font-weight: 600;
    color: #0d9488;
}

.level-bar {
    clear: both;
    background: #14b8a6;
    height: 4px;
    width: 100%;
    border-radius: 4px;
    margin: 5px 0px 5px 0px;
}

.level-bar div {
    height: 4px;
    border-radius: 4px 0px 0px 4px;
    background: #115e59;
    float: left;
}

.level-3 {
    height: 71px;
    line-height: 71px;
}

.level-3 .fleft {
    font-size: 14px;
    font-weight: 600;
    color: #4b5563;
}

.rank-right {
    float: right;
    display: flex;
    align-items: center;
}

.rank-right span.up,
.level-right span.up {
    color: red;
}

.rank-right span.down,
.level-right span.down {
    color: #2563eb;
}

.rank-right span:nth-of-type(1) {
    /* color: #2563eb; */
    font-size: 14px;
    font-weight: 600;
}

.rank-right span:nth-of-type(2) {
    font-size: 30px;
    font-style: italic;
    font-weight: 700;
    color: #4b5563;
}

.rank-right span:nth-of-type(3) {
    margin-left: 10px;
    font-size: 18px;
    font-style: italic;
    font-weight: 600;
    color: #d1d5db;
}

.list-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0px;
}

.title {
    text-align: left;
    flex: 1;
    line-height: 21px;
    color: #4b5563;
    font-size: 14px;
    font-weight: 600;
}

.title img {
    vertical-align: middle;
    margin-bottom: 3px;
}

.date {
    text-align: right;
    flex: 0 0 60px;
    line-height: 21px;
    color: #d1d5db;
    font-size: 12px;
    font-weight: 600;
}

.uprank span {
    padding: 2px 4px;
    border-radius: 2px;
    background: #fef2f2;
    color: #991b1b;
    font-size: 12px;
    font-weight: 600;
}


/* .rank-info {
    position: absolute;
    bottom: 0px;
    width: 375px;
    height: 464px;
    z-index: 500;
    border-radius: 20px 20px 0px 0px;
    color: #6b7280;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    left: 50%;
    margin-left: -187.5px;
    background: #f3f4f6;
} */

.rank-info {
    width: 375px;
    height: 464px;
    border-radius: 20px 20px 0px 0px;
    color: #6b7280;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    background: #f3f4f6;
}

.rank-info .tit {
    margin-top: 20px;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    color: #6b7280;
    line-height: 48px;
    padding: 0px 16px;
}

.rank-info .info {
    background: #fff;
    height: 396px;
    padding: 0px 16px;
}

.rank-table {
    clear: both;
}

.rank-table div {
    width: 114.33px;
    line-height: 21px;
    margin: 16px 0px;
    float: left;
    border-right: 1px solid #e5e7eb;
}


/* ---------------- 스마트 로그인 -------------------------- */

.smart-guide {
    padding-top: 8px;
    height: 74px;
    line-height: 74px;
}

.smart-guide .fleft {
    padding: 10px 0px;
    color: #4b5563;
    font-size: 18px;
    font-weight: 600;
}

.smart-guide .fleft,
.fright {
    line-height: 27px;
}

.smart-input {
    background: #fff !important;
    /* width: 50px !important; */
    height: 50px !important;
    float: left !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #0d9488;
    text-align: center;
    margin-right: 8px;
    padding: 0px !important;
}

.smart-ready {
    background: #e5e7eb !important;
}

.smart-on {
    background: #fff !important;
    border: 1px solid #0d9488 !important;
}

.smart-end {
    background: #f0fdfa !important;
}

.smart-input:last-of-type {
    margin-right: 0px !important;
}

.smart-warn-info {
    color: #dc2626;
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
    padding: 20px 0px;
}

.day-title {
    padding: 12px 0px;
    line-height: 45px;
    color: #6b7280;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
}

.rsv-box {
    background: #fff;
    border-radius: 16px;
    /* height: 167px; */
    padding: 20px 12px;
    margin-bottom: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.rsv-box.cancel {
    background: #fff;
    border-radius: 16px;
    /* height: 167px; */
    padding: 20px 12px;
    margin-bottom: 16px;
    opacity: 0.6;
}

.rsv-status {
    font-size: 24px;
    font-weight: 600;
}

.rsv-status.completed {
    color: #0d9488;
}

.rsv-status.confirmed {
    color: #2563eb;
}

.rsv-status.reserved {
    color: #2563eb;
}

.rsv-status.cancelled {
    color: #dc2626;
}

.rsv-datetime {
    line-height: 30px;
    color: #111827;
    font-size: 24px;
    font-weight: 700;
    padding: 5px 0;
    border-bottom: 1px solid #e5e7eb;
}

.clear {
    clear: both;
}

.rsv-info {
    line-height: 23px;
    padding: 12px 0px 0px 0px;
    color: #6b7280;
}

.rsv-info .fleft {
    font-size: 22px;
    line-height: 28px;
    font-weight: 500;
}

.rsv-info .fleft span {
    color: #111827;
}

.rsv-info .fright {
    line-height: 46px;
}

.rsv-info .fright span {
    border-radius: 8px;
    padding: 2px 8px;
    background: #f9fafb;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
}

.rsv-info .reserveCancelBtn {
    font-size: 20px !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    padding: 2px 8px !important;
    color: #f55252 !important;
}


/* ---------------------------- 게임 메뉴 --------------------------------*/

.sub-menu {
    min-height: 50px;
    padding: 0px 16px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    /* 내부 요소들을 양쪽 끝에 정렬 */
    align-items: center;
    /* 내부 요소들을 수직 중앙에 정렬 */
    width: 100%;
    /* 컨테이너의 너비를 100%로 설정 */
}

.tab-menu {
    /*width:171.5px;
	float:left;*/
    display: flex;
    justify-content: center;
    width: 100%;
    text-wrap: nowrap;
}

.tab-menu div {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: #d1d5db;
    line-height: 49px;
}

.tab-menu .on {
    color: #111827;
    border-bottom: 2px solid #111827;
}

.my_round1 {
    background: url('/imgs/cc_sample1.png');
    background-size: cover;
    height: 192px;
    border-radius: 8px;
    margin-bottom: 8px;
    position: relative;
}

.my-round-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(167.5px, 1fr));
    gap: 10px;
}

.my-round:nth-child(odd) {
    background: url('/imgs/cc_sample2.png');
    background-size: cover;
    height: 168px;
    border-radius: 8px;
    /* margin-bottom: 8px; */
    position: relative;
}

.my-round:nth-child(even) {
    background: url('/imgs/cc_sample3.png');
    background-size: cover;
    height: 168px;
    border-radius: 8px;
    /* margin-bottom: 8px; */
    position: relative;
}

.my_round2 {
    background: url('/imgs/cc_sample2.png');
    background-size: cover;
    height: 168px;
    border-radius: 8px;
    margin-bottom: 8px;
    position: relative;
}

.my_round3 {
    background: url('/imgs/cc_sample3.png');
    background-size: cover;
    width: 167.5px;
    height: 168px;
    border-radius: 8px;
    margin-bottom: 8px;
    position: relative;
}

.my_round4 {
    background: url('/imgs/cc_sample4.png');
    background-size: cover;
    width: 167.5px;
    height: 168px;
    border-radius: 8px;
    float: left;
    margin-bottom: 8px;
    position: relative;
}

.my_round5 {
    background: url('/imgs/cc_sample5.png');
    background-size: cover;
    width: 167.5px;
    height: 168px;
    border-radius: 8px;
    float: right;
    margin-bottom: 8px;
    position: relative;
}

.score-txt {
    font-size: 44px;
    font-style: italic;
    font-weight: 700;
    color: #fff;
    position: absolute;
    top: 0px;
    right: 16px;
    text-shadow: -1px -1px 0 #6d6c6c, 1px -1px 0 #6d6c6c, -1px 1px 0 #6d6c6c, 1px 1px 0 #6d6c6c;
    /* text-align: right; */
}

.score-txt .my-score-txt {
    font-size: 20px;
    font-weight: 500;
    border: 2px solid #fff;
    border-radius: 40px;
    padding: 2px 10px !important;
    min-width: 50px;
    text-align: center;
}

.rounding-info-blur {
    color: #fff;
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    border-radius: 0px 0px 8px 8px;
    height: 80px;
    backdrop-filter: blur(5px);
    /* 블러 효과 적용 */
    -webkit-backdrop-filter: blur(5px);
    /* 사파리 지원 */
}

.rounding-info {
    position: absolute;
    left: 12px;
    bottom: 12px;
    color: #fff;
    letter-spacing: -1px;
}

.best-ico {
    position: absolute;
    bottom: 60px;
    font-size: 16px;
    font-weight: 600;
    background: #278eff;
    border-radius: 4px;
    padding: 2px 8px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
}

.rounding-info span:nth-of-type(1) {
    font-size: 24px;
    font-weight: 700;
    text-shadow: -1px -1px 0 #6d6c6c, 1px -1px 0 #6d6c6c, -1px 1px 0 #6d6c6c, 1px 1px 0 #6d6c6c;
}

.rounding-info span:nth-of-type(2) {
    font-size: 16px;
    font-weight: 500;
    text-shadow: -1px -1px 0 #6d6c6c, 1px -1px 0 #6d6c6c, -1px 1px 0 #6d6c6c, 1px 1px 0 #6d6c6c;
}

.gm-summary-wrap {
    width: 85%;
    height: 276px;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 20px;
    box-shadow: 2px 2px 5px #dfdfdf;
}

.gm-summary-top {
    width: 100%;
    height: 81px;
    background: url('/imgs/gm_title_bg.png');
    background-size: cover;
    border-radius: 20px 20px 0px 0px;
    line-height: 30px;
    text-align: center;
    background-position: 0px -70px;
    padding-top: 12px;
    color: #ffffff;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.gm-summary-top .transparent {
    opacity: 0;
}

.gm-summary-month {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    line-height: 36px;
}

.gm-summary-top .subtitle {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}


/* .gm-summary-top span:nth-of-type(1) {
    text-align: center;
    border-radius: 4px;
    background: #14b8a6;
    color: #fff;
    padding: 2px 8px;
}

.gm-summary-top span:nth-of-type(2) {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
} */

.gm-summary-foot {
    width: 100%;
    height: 73px;
    padding: 8px 0px;
    border-bottom: 1px solid #e5e7eb;
}

.gm-summary-box {
    float: left;
    width: 33.3%;
    text-align: center;
    position: relative;
}

.gm-summary-num {
    line-height: 39px;
    font-size: 32px;
    font-style: italic;
    font-weight: 700;
    color: #0d9488;
}

.gm-summary-txt {
    line-height: 18px;
    font-size: 16px;
    font-weight: 600;
    color: #6b7280;
}

.summary-gubun {
    position: absolute;
    width: 1px;
    height: 16px;
    background: #e5e7eb;
    right: 0px;
    top: 20px;
}

.gm-summary-list {
    padding: 8px 16px;
    line-height: 34px;
}

.gm-summary-list-item {
    clear: both;
}

.gm-summary-list-item .fleft {
    font-size: 18px;
    font-weight: 600;
    color: #6b7280;
}

.gm-summary-list-item .fright {
    font-size: 18px;
    font-weight: 600;
    color: #4b5563;
}

.gm-summary-list-item span {
    color: #0d9488;
    font-size: 20px;
    font-weight: 600;
}

.vdo-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(167.5px, 1fr));
    gap: 10px;
}

.vdo-list .vdo-list-item {
    /* width: 100%; */
    /* height: 210px; */
    margin-bottom: 10px;
}

.vdo-list .vdo-list-item .vdo-img {
    width: 100%;
    height: 100%;
    max-height: 122px;
    object-fit: cover;
    aspect-ratio: 168 / 122;
}

.vdo-box {
    width: 167.5px;
    height: 210px;
    margin-right: 7px;
    float: left;
    margin-bottom: 24px;
    overflow: hidden;
}

.vdo-box:nth-child(even) {
    margin: 0px !important;
}

.vdo-box img {
    border-radius: 4px;
}

.vdo-date {
    margin-top: 3px;
    font-size: 18px;
    font-weight: 600;
    line-height: 21px;
    text-align: left;
}

.vdo-drv {
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    text-align: left;
    color: #6b7280;
}

.vdo-icos {
    margin-top: 5px;
}

.txt-ico {
    padding: 2px 8px;
    border-radius: 4px;
}

.txt-drv {
    border: 1px solid #0d9488;
    background: #f0fdfa;
    color: #0d9488;
    font-weight: 600;
}

.txt-long {
    border: 1px solid #e5e7eb;
    color: #000;
    /* margin-left: 2px; */
    font-weight: 600;
    font-size: 16px;
}

.txt-ico img {
    vertical-align: middle;
    margin-bottom: 3px;
}


/* ------------------------------- 스코어 카드 -----------------------------*/

.styled-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0px;
    font-size: 12px;
    text-align: left;
    table-layout: fixed;
}

.styled-table th,
.styled-table td {
    padding: 15px 0px;
    /*border: 1px solid #dddddd;*/
    word-wrap: break-word;
    text-align: center;
}

.styled-table tr:nth-of-type(even) {
    background-color: #f0fdfa;
    color: #111827;
}

.styled-table tr:nth-of-type(odd) {
    background-color: #ffffff;
}

.styled-table th {
    background-color: #14b8a6;
    color: #ffffff;
    font-weight: 600;
}

.card-wrap {
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 2px 2px 2px #dfdfdf;
    text-align: center;
    margin-top: 16px;
    padding-top: 4px;
}

.card-info-box {
    width: 100%;
    padding: 0px 16px;
    margin-top: 20px;
}

.card-info-box .fright {
    color: #4b5563;
    font-size: 16px;
    font-weight: 500;
    line-height: 21px;
    text-align: right;
}

.hd-ico {
    background: #14b8a6;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.date-ico {
    border: 1px solid #4b5563;
    color: #4b5563;
    font-size: 16px;
    font-weight: 500;
}

.score-sum {
    height: 56px;
    clear: both;
    padding: 16px;
}

.score-sum .fleft {
    text-align: left;
}

.score-sum .fleft span:nth-of-type(1) {
    line-height: 30px;
    font-size: 28px;
    font-weight: 700;
    color: #111827;
}

.score-sum .fleft span:nth-of-type(2) {
    font-size: 18px;
    font-weight: 300;
    line-height: 24px;
    color: #111827;
}

.score-sum .fright {
    line-height: 56px;
    display: flex;
    align-items: center;
}

.score-sum .fright span:nth-of-type(1) {
    font-size: 50px;
    font-style: italic;
    font-weight: 700;
    color: #111827;
}

.score-sum .fright span:nth-of-type(2) {
    color: #0d9488;
    font-size: 24px;
    font-style: italic;
    font-weight: 600;
    padding-left: 5px;
}

.scorebox {
    font-size: clamp(16px, 1.2vw, 18px);
    text-wrap: nowrap;
}


/* .scorebox-score {
    font-weight: 400;
} */

.scorebox td:nth-of-type(1) {
    font-size: 14px;
}

.scorebox tr:not(:first-child) {
    font-weight: 500;
}

.scorebox-score {
    /* font-size: 18px; */
    width: 26px;
    height: 26px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scorebox-circle {
    border: 1px solid red;
    border-radius: 28px;
}

.scorebox-fill-circle {
    color: #fff;
    background: #ff0000;
    border-radius: 28px;
}

.scorebox-square {
    border: 1px solid #14b8a6;
}

.scorebox-db-square {
    border: 3px solid #14b8a6;
    border-style: double;
}

.scorebox-fill-square {
    color: #fff;
    background: #14b8a6;
}

.scorebox-holeinone {
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffeda7, #d4af37), repeating-conic-gradient(#d4af37 0deg 10deg, #b8860b 10deg 20deg);
    background-blend-mode: overlay;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    /* margin: 50px auto; */
}


/* 반짝이는 애니메이션 효과 */

.scorebox-holeinone::before {
    content: '';
    position: absolute;
    top: -150%;
    left: -150%;
    width: 300%;
    height: 300%;
    background: linear-gradient( 135deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0) 70%);
    transform: translate(0, 0);
    animation: diagonal-shine 2.5s infinite ease-in-out;
    z-index: 2;
    pointer-events: none;
}

@keyframes diagonal-shine {
    0% {
        transform: translate(-100%, -100%);
    }
    100% {
        transform: translate(100%, 100%);
    }
}

.score-type1 {
    width: 28px;
    height: 28px;
    line-height: 28px;
    border: 1px solid #14b8a6;
}

.score-type2 {
    width: 28px;
    height: 28px;
    line-height: 28px;
    background: #14b8a6;
}

.score-type3 {
    width: 28px;
    height: 28px;
    line-height: 28px;
    border: 1px solid red;
    border-radius: 28px;
}

.round-data-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.round-data-box {
    width: auto;
    /* height: 110px; */
    border-radius: 16px;
    box-shadow: 2px 2px 5px #dfdfdf;
    border: 1px solid #e5e7eb;
    margin: 5px 5px;
    position: relative;
    text-align: center;
    text-wrap: nowrap;
    padding: 20px 10px;
}

.round-data-box span:nth-of-type(1) {
    font-size: 28px;
    font-style: italic;
    font-weight: 700;
    line-height: 33.6px;
    color: #4b5563;
}

.round-data-box span:nth-of-type(2) {
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
    color: #4b5563;
}

.round-wrap {
    border-radius: 20px 20px 20px 20px;
    box-shadow: 2px 2px 2px #dfdfdf;
    text-align: center;
    background: #374151;
    padding: 0px;
    background-color: #fff;
}

.round-wrap-top {
    border-radius: 20px 20px 0px 0px;
    box-shadow: 2px 2px 2px #dfdfdf;
    text-align: center;
    background: #374151;
    padding: 20px;
}

.round-wrap-bottom {
    border-radius: 0px 0px 20px 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 2px 2px 2px #dfdfdf;
    margin-bottom: 20px;
    padding: 10px 19px 20px 19px;
    overflow: hidden;
}

.score-wrap-bottom {
    border-radius: 0px 0px 20px 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 1px 1px 2px #dfdfdf;
    margin-bottom: 20px;
    padding: 5px 5px 5px 5px;
    overflow: hidden;
}

.score-wrap-bottom>div:not(:last-child) {
    border-bottom: 1px solid #e5e7eb;
}

.profile-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px;
}

.profile-info-name {
    flex: 1;
}

.profile-img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-size: cover;
    position: relative;
    margin: 0 auto;
}

.profile-img img {
    position: absolute;
    bottom: -5px;
    right: -5px;
}

.player-box {
    width: 126px;
}

.player-box-between {
    width: 101px;
    font-size: 32px;
    /* font-style: italic; */
    font-weight: 700;
    line-height: 44.8px;
    color: #fff;
}

.player-name {
    line-height: 27px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-top: 8px;
}

.player-score {
    font-size: 30px;
    /* font-style: italic; */
    font-weight: 700;
    line-height: 39.2px;
    color: #fff;
}

.player-item {
    height: 55px;
    line-height: 55px;
    /* float: left; */
    width: 126px;
    /* border-bottom: 1px solid #e5e7eb; */
    text-align: center;
    font-size: 20px;
    font-weight: 600;
}

.playerC {
    height: 55px;
    line-height: 20px;
    /* float: left; */
    width: 101px;
    /* border-bottom: 1px solid #e5e7eb; */
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    /* padding-top: 8px; */
    color: #6b7280;
}

.lastest-wrap {
    width: 57.17px;
    height: 125px;
    text-align: center;
    position: relative;
}

.lastest-item-wrap {
    height: 90px;
}

.lastest-grp-wrap {
    height: 59px;
    position: relative;
}

.lastest-grp {
    position: absolute;
    bottom: 0px;
    width: 8px;
    border-radius: 4px;
}

.lastest-num {
    line-height: 21px;
    font-size: 18px;
}

.lastest-tit {
    color: #4b5563;
    font-size: 18px;
    font-weight: 600;
    line-height: 35px;
}

.lastest-right {
    padding-top: 10px;
    margin-left: 3px;
}

.lastest-gubun {
    position: absolute;
    width: 1px;
    height: 50px;
    background: #e5e7eb;
    right: 0px;
    top: 40px;
}


/*---------------------- 연습메뉴 -------------------------*/

.tab-menu-3 {
    width: 33%;
    float: left;
    display: flex;
    justify-content: center;
}

.tab-menu-3 div {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: #d1d5db;
    line-height: 49px;
}

.tab-menu-3 .on {
    color: #111827;
    border-bottom: 2px solid #111827;
}

.date-nav {
    line-height: 56px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
}

.date-nav img {
    vertical-align: middle;
    margin-bottom: 3px;
    padding: 0px 10px;
}

.ai-wrap {
    width: 100%;
    padding: 12px 0px 16px 0px;
    border-bottom: 1px solid #efefef;
    position: relative;
    clear: both;
    overflow: hidden;
}

.ai-wrap .vdo-mark {
    position: absolute;
    right: 0px;
    top: 21px;
}

.ai-wrap img {
    border-radius: 4px;
}

.ai-wrap .vdo-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.ai-wrap .vdo-img-wrap .left-img,
.ai-wrap .vdo-img-wrap .right-img {
    position: relative;
    flex: 1;
}

.ai-wrap .vdo-img-wrap img {
    display: block;
    margin: 0;
    padding: 0;
    object-fit: cover;
    aspect-ratio: 168 / 122;
    width: 100%;
    height: auto;
}

.ai-tag {
    position: absolute;
    bottom: 0px;
    left: 0px;
    border-radius: 0px 8px 0px 4px;
    height: 26px;
    line-height: 26px;
    width: auto;
    text-align: center;
    background: #14b8a6;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 0 4px;
}


/* -------------------------------------- 매장랭킹 -------------------------------*/

.ranking-top {
    width: 100%;
    height: 117px;
    background: #14b8a6;
    border-radius: 16px;
    color: #fff;
    padding: 16px;
}

.ranking-top .fleft span:nth-of-type(1) {
    font-size: 18px;
    font-weight: 700;
    line-height: 32px;
}

.ranking-top .fleft span:nth-of-type(2) {
    color: #0d9488;
    font-size: 4px;
    line-height: 32px;
    vertical-align: middle;
}

.ranking-top .fleft span:nth-of-type(3) {
    line-height: 32px;
    font-size: 12px;
    font-weight: 600;
}

.shop-select {
    border-radius: 8px;
    padding: 0px 12px;
    background: #f0fdfa;
    line-height: 32px;
    text-align: center;
    color: #0d9488;
    font-size: 14px;
    font-weight: 600;
}

.select-arrow {
    font-size: 10px;
    vertical-align: middle;
    color: #2dd4bf;
}

.rank-sum {
    clear: both;
}

.rank-sum span {
    line-height: 53px;
    vertical-align: middle;
}

.rank-sum span:nth-of-type(1) {
    font-size: 32px;
    font-style: italic;
    font-weight: 700;
}

.rank-sum span:nth-of-type(2) {
    font-size: 14px;
    font-weight: 600;
    padding-left: 5px;
}

.rank-sum span:nth-of-type(3) {
    color: #0d9488;
    font-size: 4px;
    padding-left: 5px;
}

.rank-sum span:nth-of-type(4) {
    font-size: 32px;
    font-style: italic;
    font-weight: 700;
}

.rank-sum span:nth-of-type(5) {
    padding-left: 5px;
    font-size: 14px;
    font-weight: 600;
}

.top-rank-box {
    width: 109px;
    height: 140px;
    border-radius: 20px;
    padding: 8px 16px;
    background: #fffae6;
    text-align: center;
    margin-bottom: 16px;
}


/* .top-rank-box:not(:first-child) {
    margin-left: 8px;
} */

.top-rank-box img {
    vertical-align: middle;
    margin-bottom: 3px;
}

.top-rank-up {
    color: #dc2626;
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
}

.rank-up {
    color: #dc2626;
    font-weight: 600;
    font-size: 14px;
}

.top-rank-down {
    color: #2563eb;
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
}

.rank-down {
    color: #2563eb;
    font-weight: 600;
    font-size: 14px;
}

.top-rank-id {
    color: #dc2626;
    font-size: 14px;
    font-weight: 500;
    color: #4b5563;
    line-height: 21px;
}

.top-rank-score {
    font-size: 20px;
    font-weight: 700;
    color: #ff4fb8;
    line-height: 30px;
}

.ranking-list {
    /* height: 54px; */
    /* line-height: 54px; */
    width: 100%;
}

.ranking-list-row {
    /* overflow: hidde; */
    border-bottom: 1px solid #f3f4f6;
}

.ranking-list img {
    vertical-align: middle;
    margin-bottom: 3px;
    clear: both;
}

.ranking-list>.ranking-list-row,
.ranking-list>.ranking-list-row>div {
    height: 54px;
    line-height: 54px;
}

.ranking-list .fleft span:nth-of-type(1) {
    /* color: #dc2626; */
    font-weight: 600;
    font-size: 14px;
}

.ranking-list .fleft span:nth-of-type(2) {
    color: #0d9488;
    font-size: 20px;
    font-weight: 700;
    padding: 0px 10px;
}

.ranking-list .fleft span:nth-of-type(3) {
    font-size: 14px;
    font-weight: 500;
    color: #4b5563;
}

.ranking-list .fright span:nth-of-type(1) {
    color: #4b5563;
    font-size: 20px;
    font-weight: 700;
    padding: 0px 5px;
}

.ranking-list img {
    vertical-align: middle;
    margin-bottom: 3px;
}

.rsv-gubun-box {
    overflow: hidden;
    padding-bottom: 16px;
    background: #f9fafb;
    clear: both;
}


/* ---------------------------- 예약 상세 -------------------------- */

.item-sel-txt {
    line-height: 40px;
    padding: 8px 16px 0px 16px;
    text-align: left;
    font-size: 20px;
    font-weight: 600;
    color: #6b7280;
}

.rsv-option {
    overflow: hidden;
    padding-bottom: 16px;
}

.item-sel-txt-gubun {
    margin-top: 20px;
    border-top: 4px solid #f9fafb;
}

.item-left {
    width: 40%;
    padding-left: 16px;
}

.item-right {
    width: 55%;
    padding-right: 16px;
}

.rsv-info-detail-wrap {
    padding: 12px 12px 18px 12px;
    display: flex;
}

.rsv-info-detail {
    line-height: 30px;
    padding-left: 12px;
    flex: 1;
}

.rsv-info-detail>div:nth-of-type(1) {
    line-height: 30px;
    font-size: 22px;
    font-weight: 800;
    color: #0d9488;
    text-align: left;
}

.rsv-info-detail>div:nth-of-type(1)>div:nth-of-type(1) {
    margin-right: 4px;
}

.rsv-info-detail>div:nth-of-type(2) {
    line-height: 30px;
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    text-align: left;
}

.rsv-info-detail>div:nth-of-type(3) {
    line-height: 30px;
    font-size: 20px;
    font-weight: 600;
    color: #6b7280;
    text-align: left;
}

.point-row {
    padding: 0px 12px;
}

.point-row .fleft {
    color: #6b7280;
    font-size: 12px;
    font-weight: 600;
}

.point-row .fright {
    color: #111827;
    font-size: 16px;
    font-weight: 700;
}

.point-row span {
    color: #6b7280;
}

.point-row .fleft,
.point-row .fright {
    line-height: 30px;
}

.total-point {
    padding: 10px 12px;
    border-top: 1px dashed #e5e7eb;
    margin-top: 20px;
}

.rsv-guide {
    padding: 12px 16px;
    line-height: 24px;
    text-align: left;
    color: #4b5563;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -1px;
}

.rsv-guide-title {
    color: #4b5563;
    font-size: 20px;
    font-weight: 600;
}


/*-- 체크박스 스타일시트 --*/

.custom-checkbox {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 20px;
    user-select: none;
    color: #000;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    left: 16px;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.custom-checkbox:hover input~.checkmark {
    background-color: #eee;
}

.custom-checkbox input:checked~.checkmark {
    background-color: #2dd4bf;
}

.custom-checkbox .checkmark:after {
    content: '';
    position: absolute;
    display: none;
}

.custom-checkbox input:checked~.checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.custom-checkbox input:checked~.text {
    color: #0d9488;
    font-size: 16px;
    font-weight: 700;
    transition: color 0.3s;
}

.text {
    margin-left: 20px;
    font-size: 16px;
    font-weight: 700;
    color: #4b5563;
}


/*---------------------- 영상플레이어 ----------------------------------*/

.l-time {
    position: absolute;
    bottom: 5px;
    right: 10px;
    color: #6b7280;
    font-size: 12px;
    font-weight: 500;
}

.r-time {
    position: absolute;
    bottom: 5px;
    left: -35px;
    color: #6b7280;
    font-size: 12px;
    font-weight: 500;
}

.item-left-video {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}

.vdo-btn {
    width: 20%;
    border-right: 1px solid #f3f4f6;
    text-align: center;
}

.l-talk {
    clear: both;
    overflow: hidden;
}

.r-talk {
    clear: both;
    overflow: hidden;
}

.talk-box {
    max-width: 60%;
    background: #f0fdfa;
    border-radius: 8px;
    padding: 8px 12px;
    padding-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 21px;
    color: #111827;
    margin-left: 5px;
    margin-bottom: 20px;
    letter-spacing: -0.7px;
    position: relative;
}

.talk-input-wrap {
    position: fixed;
    bottom: 0px;
    left: 0;
    height: 69px;
    /* line-height: 69px; */
    width: 100%;
    padding: 0px 5px;
    display: flex;
    align-items: center;
    box-shadow: 0 0 10px 0 #a0a0a0;
    z-index: 499;
}

.talk-input-wrap input {
    margin-top: 0;
}

.talk-input-wrap img {
    /* margin-top: 14px; */
}


/*--------------------------- 연습 : 연습기록 -------------------------------*/

.exist-icon {
    position: absolute;
    background: #2dd4bf;
    width: 8px;
    height: 8px;
    border-radius: 4px;
    top: -14px;
    left: 18px;
}

.ex-record-date {
    font-size: 16px;
    font-weight: 600;
    color: #0d9488;
    width: 100%;
    text-align: right;
}

.ex-record-shop {
    font-size: 16px;
    font-weight: 600;
    color: #134e4a;
    width: 100%;
    text-align: left;
}

.ex-record-sum {
    height: 56px;
    line-height: 56px;
    text-align: left;
}

.ex-record-sum div:nth-child(odd) {
    color: #134e4a;
    font-size: 40px;
    font-style: italic;
    font-weight: 700;
    float: left;
}

.ex-record-sum div:nth-child(even) {
    color: #0d9488;
    font-size: 26px;
    font-weight: 700;
    float: left;
    margin-left: 10px;
}

.ex-subtitle {
    height: 59px;
    line-height: 59px;
    font-size: 20px;
    font-weight: 700;
    color: #6b7280;
    padding: 0px 16px;
}

.ex-subtitle .s1 {
    font-size: 20px;
    font-weight: 700;
    color: #134e4a;
}

.ex-subtitle .s2 {
    font-size: 20px;
    font-weight: 700;
    color: #0d9488;
}

.ex-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0px;
    font-size: 18px;
    text-align: left;
    table-layout: fixed;
}

.ex-table th,
.ex-table td {
    padding: 15px 0px;
    word-wrap: break-word;
    text-align: center;
}

.ex-table th {
    background-color: #f0fdfa;
    color: #0d9488;
    font-weight: 600;
    font-size: 16px;
    text-wrap: nowrap;
}

.ex-table td {
    color: #111827;
    font-weight: 600;
    font-size: 16px;
    border-bottom: 1px solid #efefef;
}

.ex-time {
    font-size: 16px;
}

.ex-sum {
    font-size: 16px;
}

.ex-hit {
    font-size: 16px;
}

.grade-btn {
    border-radius: 0px;
    color: #fff;
    width: 82px;
    height: 16px;
    background: url(/imgs/star_0_.png);
    background-size: 16px 16px;
}

.grade-btn-over {
    border-radius: 0px;
    color: #fff;
    height: 16px;
    background: url(/imgs/star_1_.png);
    background-size: 16px 16px;
}

.none-data-txt {
    color: #d1d5db;
    font-size: 16px;
    font-weight: 500;
}


/*--------------------------- 연습 : 비거리 -------------------------------*/

.distance-subtitle {
    line-height: 56px;
    height: 56px;
    padding: 0px 16px;
    font-size: 22px;
    font-weight: 700;
    color: #4b5563;
}

.distance-wrap {
    background: #f9fafb;
    overflow: hidden;
}

.distance-times {
    height: 37px;
    line-height: 37px;
    font-size: 18px;
    font-weight: 600;
    color: #d1d5db;
    text-align: center;
    border-top: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.distance-tabon {
    color: #0d9488 !important;
    background: #fff;
    border: 1px solid #0d9488 !important;
}

.distance-times:nth-of-type(1) {
    border: 1px solid #e5e7eb;
    border-radius: 20px 0px 0px 20px;
}

.distance-times:nth-of-type(4) {
    border-radius: 0px 20px 20px 0px;
}

.stick-wrap {
    overflow: hidden;
    clear: both;
}

.stick-wrap div {
    float: left;
    font-weight: 600;
    font-size: 16px;
}

.stick-wrap div:nth-of-type(1) {
    text-align: center;
    width: 12%;
}

.graph-wrap {
    background: #f3f4f6;
    height: 29px;
    border-radius: 15px;
    width: 88%;
    margin-top: 8px;
    position: relative;
}

.graph-percent {
    background: #14b8a6;
    height: 29px;
    line-height: 29px;
    border-radius: 15px;
    position: absolute;
    text-align: center;
    color: #fff;
}


/*----------------------- 굿샷 영상플레이어 -------------------------------*/

.item-goodshot-shop {
    float: left;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: #6b7280;
}

.item-cc-tit {
    color: #111827;
    font-size: 32px;
    font-weight: 700;
    clear: both;
    text-align: left;
    line-height: 40px;
    /* height: 34px; */
}

.goodshot-top {
    background: #fff;
    border: 1px solid #e5e7eb;
    margin-top: 16px;
    border-bottom: 0px;
    overflow: hidden;
}

.goodshot-top .item_left {
    font-size: 20px !important;
}

.goodshot-bottom {
    background: #fff;
    border-top: 0px;
    padding-top: 0px;
}

.goodshot-row {
    clear: both;
}

.goodshot-row-wrap {
    border-radius: 8px;
    background: #f9fafb;
    width: 100%;
    margin-top: 20px;
    overflow: hidden;
    padding: 8px 16px;
}

.goodshot-row div:nth-of-type(1) {
    float: left;
    color: #6b7280;
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
}

.goodshot-row div:nth-of-type(2) {
    float: right;
    color: #4b5563;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
}

.ball-type-wrap {
    border-radius: 4px;
    border: 1px solid #e5e7eb;
    padding: 0px 5px;
}

.go-scorecard {
    color: #4b5563;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    text-align: center;
    margin-top: 20px;
}


/*------------------------------- 게임설정 ------------------------*/

.detail-guide {
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
}

.detail-unit {
    color: #4b5563;
    font-size: 16px;
    font-weight: 600;
}

.default-button {
    border-radius: 8px;
    padding: 4px 8px;
    background: #14b8a6;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.setting-row {
    height: 64px;
    line-height: 64px;
    clear: both;
}

.setting-row div:nth-child(odd) {
    text-align: center;
    width: 15%;
    float: left;
    color: #6b7280;
    font-size: 16px;
    font-weight: 500;
}

.setting-row div:nth-child(even) {
    width: 35%;
    float: left;
}

.setting-subtitle {
    line-height: 45px;
    font-size: 16px;
    font-weight: 700;
    color: #6b7280;
}

.setting-guide {
    line-height: 45px;
    text-align: right;
}

.setting-select {
    font-size: 14px !important;
    font-weight: 600 !important;
}

.setting-guide-btn {
    border: 1px solid #9ca3af;
    padding: 4px 8px;
    border-radius: 4px;
    color: #6b7280;
    font-weight: 600;
    font-size: 14px;
}

.guide-wrap {
    top: 200px;
    padding: 12px;
}

.guide-top {
    line-height: 21px;
    font-size: 14px;
    font-weight: 600;
    color: #0d9488;
}

.guide-bottom {
    line-height: 21px;
    font-size: 14px;
    font-weight: 600;
    color: #4b5563;
    padding-top: 10px;
    letter-spacing: -0.5px;
}

.gubun-dot {
    font-size: 5px;
    padding: 0px 10px 5px 10px;
    vertical-align: middle;
    color: #4b5563;
}

.join-mems {
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    padding: 4px 4px;
    font-size: 16px;
}

.match-info {
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 12px #efefef, 0 2px 2px #dfdfdf;
    border-radius: 10px;
    overflow: hidden;
}

.match-top {
    padding: 16px 16px 5px 16px;
    background: #fff;
    /* border: 1px solid #e5e7eb; */
    margin-top: 16px;
    border-bottom: 0px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
}

.match-info-title {
    font-weight: 600;
    font-size: 24px;
    color: #0d9488;
    text-align: left;
}

.match-info-lock {
    line-height: 30px;
    vertical-align: middle;
}

.match-item-left {
    float: left;
    width: 80px;
    line-height: 40px;
    font-size: 18px;
    font-weight: 600;
    color: #6b7280;
}

.match-item-right {
    float: left;
    line-height: 40px;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
}

.match-bottom {
    background: #fff;
    border-top: 0px;
    padding-top: 0px;
    padding: 8px 16px 5px 16px;
}

.match-info-wrap {
    height: 115px;
}

.match-info-box {
    width: 100%;
    height: 73.75px;
    /* line-height: 73.75px; */
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #4b5563;
    display: flex;
    align-items: center;
    justify-content: center;
    text-wrap: pretty;
}

.match-info-txt {
    /* line-height: 30px; */
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #6b7280;
    text-wrap: pretty;
}

.mbox-on {
    background: #f0fdfa;
}

.mbox-off {
    background: #f3f4f6;
}

.match-round-box {
    width: 100%;
    box-shadow: 0 2px 12px #efefef, 0 2px 2px #dfdfdf;
    border-radius: 8px;
    min-height: 50px;
    background: #fff;
    line-height: 28px;
    padding: 12px;
    overflow: hidden;
    clear: both;
    margin: 5px 0px;
}

.match-score-item-title {
    color: #111827;
    font-size: 18px;
    font-weight: 700;
}

.match-score-item-txt {
    color: #4b5563;
    font-size: 18px;
    font-weight: 500;
}

.match-rank-row {
    clear: both;
}

.match-rank-row img {
    vertical-align: middle;
    margin-bottom: 3px;
}

.match-score-item-subtitle {
    color: #0d9488;
    font-size: 22px;
    font-weight: 600;
}

.match-rank-row div:nth-of-type(1) {
    line-height: 46px;
    width: 30px;
    color: #4b5563;
    font-size: 18px;
    font-weight: 600;
}

.match-rank-row div:nth-of-type(2) {
    line-height: 46px;
    width: 30px;
}

.match-rank-row div:nth-of-type(3) {
    line-height: 46px;
    color: #4b5563;
    font-size: 18px;
    font-weight: 500;
}

.match-rank-row div:nth-of-type(4) {
    line-height: 46px;
    color: #111827;
    font-size: 18px;
    font-weight: 700;
}

.newperio-rank-row {
    margin-top: 10px;
    clear: both;
    border-radius: 8px;
    border: 1px solid #0d9488;
    overflow: hidden;
    padding: 0px 16px;
}

.newperio-rank-row img {
    vertical-align: middle;
    margin-bottom: 3px;
}

.newperio-rank-row div:nth-of-type(1) {
    line-height: 46px;
    width: 30px;
}

.newperio-rank-row div:nth-of-type(2) {
    line-height: 46px;
    color: #4b5563;
    font-size: 18px;
    font-weight: 500;
}

.newperio-rank-row div:nth-of-type(3) {
    line-height: 46px;
    color: #111827;
    font-size: 18px;
    font-weight: 700;
}

.ln-box {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    padding: 12px 8px;
}

.ln-box div img {
    vertical-align: middle;
    margin-bottom: 3px;
}

.ln-box div span {
    color: #0d9488;
    font-size: 18px;
    font-weight: 600;
    background: #f0fdfa;
    border-radius: 10px;
    padding: 0px 8px;
}

.ln-box div:nth-of-type(1) {
    float: left;
    line-height: 22px;
    font-size: 18px;
}

.ln-box div:nth-of-type(2) {
    float: right;
    line-height: 22px;
}

.ln-box div:nth-of-type(3) {
    clear: both;
    line-height: 30px;
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    text-align: right;
}

.ln-box div:nth-of-type(4) {
    color: #6b7280;
    font-size: 18px;
    font-weight: 500;
    text-align: right;
}

.match-none {
    color: #6b7280;
    font-size: 20px;
    font-weight: 500;
    margin-top: 8px;
}

.no-record {
    color: #6b7280;
    font-size: 20px;
    font-weight: 500;
    margin-top: 8px;
}


/*----------------------------------- 알림 --------------------------------*/

.push-box {
    clear: both;
    padding-top: 10px;
    padding-bottom: 20px;
    overflow: hidden;
}

.push-top {
    position: relative;
    width: 100%;
}

.push-top-title {
    color: #2563eb;
    padding: 4px 8px;
    background: #eff6ff;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.push-txt {
    line-height: 24px !important;
    color: #111827 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
}

.push-date {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
}

.push-new {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dc2626;
    right: 0px;
    top: 8px;
}


/*-------------------------------- 마이페이지 --------------------------------- */

.my-ticket-wrap {
    border-radius: 8px;
    border: 1px solid #0d9488;
    width: 100%;
    /* padding: 8px 8px; */
    overflow: hidden;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.my-name {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    line-height: 30px;
    /* margin-top: 20px; */
}

.my-email {
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
}

.span-ico {
    color: #0d9488;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    padding: 0px 8px;
    border: 1px solid #0d9488;
}

.ticket-info {
    /* float: left; */
    width: calc(50% - 2px);
    position: relative;
    text-align: center;
    padding: 8px;
}

.ticket-gubun {
    /* position: absolute; */
    width: 1px;
    height: 58px;
    background: #e5e7eb;
    /* right: 0px; */
}

.ticket-no1 {
    color: #0d9488;
    font-size: 30px;
    font-weight: 700;
}

.ticket-no2 {
    color: #4b5563;
    font-size: 18px;
    font-weight: 500;
}

.ticket-no3 {
    color: #0d9488;
    font-size: 30px;
    font-weight: 700;
}

.ticket-no4 {
    color: #0d9488;
    font-size: 18px;
    font-weight: 600;
}

.my-txt {
    line-height: 45px;
    color: #4b5563;
    font-size: 18px;
    font-weight: 600;
}

.input-tit {
    font-size: 16px;
    font-weight: 600;
    color: #6b7280;
    text-align: left;
    padding-top: 26px;
    clear: both;
}

.input-contents {
    font-size: 18px;
    font-weight: 500;
    color: #111827;
    text-align: left;
}

.notice-contents {
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    text-align: left;
    padding-top: 30px;
    padding-bottom: 20px;
}

.myinfo-top {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.myinfo-edit-left {
    width: 20%;
    text-align: right;
    float: left;
    line-height: 60px;
}

.myinfo-edit-right {
    background: #f3f4f6;
    padding: 4px 12px;
    border-radius: 12px;
    color: #4b5563;
    font-size: 18px;
    font-weight: 600;
    text-wrap: nowrap;
    margin-left: 5px;
}

.myinfo-none-edit {
    width: 80%;
    float: left;
    color: #111827;
    font-size: 16px;
    font-weight: 500;
    line-height: 60px;
}

.logout-btn {
    color: #4b5563;
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    margin-top: 30px;
}

.password-confirm {
    color: #dc2626;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 16px;
}

ul.custom-list {
    padding: 0;
}

ul.custom-list li {
    position: relative;
    list-style-type: none;
    /* 기본 목록 스타일을 제거 */
    padding-left: 20px;
    /* 텍스트와 커스텀 아이콘 사이의 간격을 조절 */
    letter-spacing: -1.2px;
}

ul.custom-list li::before {
    content: '\2022';
    /* 특수 문자 (중점) */
    position: absolute;
    left: 0;
    color: black;
}

.exit-line1 {
    color: #ff0000;
    font-size: 24px;
    font-weight: 700;
    padding-top: 16px;
}

.exit-line2 {
    color: #111827;
    font-size: 20px;
    font-weight: 600;
    padding-top: 14px;
}

.exit-line3 {
    padding: 16px;
    font-size: 18px;
    font-weight: 500;
    color: #6b7280;
}


/*--------------------------------- 연습장 이용권 -------------------------------- */

.ticket {
    width: 100%;
    background-color: #fff;
    margin-bottom: 10px;
    border-radius: 10px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);*/
    padding: 15px 0px 15px 30px;
    display: flex;
    align-items: center;
    position: relative;
}

.ticket:before,
.ticket:after {
    content: '';
    width: 30px;
    height: 30px;
    background-color: #f1f1f1;
    position: absolute;
    border-radius: 50%;
}

.ticket:before {
    top: 50%;
    left: -15px;
    transform: translateY(-50%);
}

.ticket:after {
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
}

.ticket-line {
    /* float: left; */
    position: relative;
    width: 70%;
    height: 100%;
    border-right: 1px dashed #dfdfdf;
}

.ticket-line div:nth-of-type(1) {
    color: #4b5563;
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 15px;
}

.ticket-line div:nth-of-type(2) {
    color: #4b5563;
    font-size: 16px;
    font-weight: 500;
}

.ticket-line div:nth-of-type(3) {
    color: #4b5563;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}

.ticket-line span {
    border-radius: 4px;
    border: 1px solid #9ca3af;
    padding: 2px 8px;
    font-size: 16px;
    font-weight: 600;
    color: #4b5563;
}

.flag-part {
    /* float: left; */
    position: relative;
    width: 30%;
    height: 100%;
    text-align: center;
    padding-top: 25px;
}

.ticket-status {
    color: #0d9488;
    font-size: 16px;
    font-weight: 600;
}

.pay-wrap {
    padding-top: 30px;
    text-align: center;
}

.pay-greeting {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: #4b5563;
    margin-top: 20px;
    margin-bottom: 30px;
}

.pay-type {
    overflow: hidden;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    padding: 16px 16px;
    margin-bottom: 15px;
    position: relative;
}

.pay-price {
    color: #4b5563;
    font-size: 18px;
    font-weight: 700;
    float: right;
}

.pay-guide-tit {
    color: #111827;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    margin-top: 30px;
    margin-bottom: 10px;
}

.pay-type-on {
    border: 2px solid #14b8a6;
}

.pay-hit {
    color: #fff;
    border-radius: 8px 0px 8px 0px;
    padding: 4px 12px;
    position: absolute;
    left: 0px;
    top: 0px;
    font-size: 12px;
    font-weight: 600;
    background-image: linear-gradient( 125deg, #5eead4 0%, #0d9488 50%, #358478 100%);
}


/*------------------- 결제 ------------------------------*/

input::-ms-reveal,
input::-ms-clear {
    display: none;
}

.material-symbols-rounded {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 20;
}

.page-item {
    margin: 1px;
}

.page-link {
    position: relative;
    display: block;
    padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
    font-size: var(--bs-pagination-font-size);
    color: #0d9488;
    text-decoration: none;
    background-color: #f0fdfa;
    border: 1px solid #0d9488;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.active>.page-link,
.page-link.active {
    z-index: 3;
    color: #f0fdfa;
    background-color: #0d9488;
    border-color: #0d9488;
}

#ivLoadingDialog .modal-dialog .modal-content {
    background-color: transparent;
    border: none;
}

.btn-iv {
    --bs-btn-color: #fff;
    --bs-btn-bg: #14b8a6;
    --bs-btn-border-color: #0d9488;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #0d9488;
    --bs-btn-hover-border-color: #0d9488;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0d9488;
    --bs-btn-active-border-color: #0d9488;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #14b8a6;
    --bs-btn-disabled-border-color: #14b8a6;
}

.slide-out-left {
    transform: translateX(-100%);
}

.slide-out-right {
    transform: translateX(100%);
}

#sub-contents {
    height: 100%;
    transition: transform 0.3s ease;
    user-select: none;
}

.period-month {
    color: #000;
    font-size: 24px;
    font-weight: 700;
}

.period-day {
    font-size: 22px;
    font-weight: 600;
    padding: 0px 0px;
    color: #000;
}

.week-day {
    /* height: 66px; */
    padding: 10px 0px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.1);
}

.week-day-today {
    /* height: 18px; */
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #4b5563;
    margin-top: 5px;
    padding: 10px 0px;
}

.week-day div:nth-of-type(1) {
    /* height: 28px; */
    line-height: 30px;
    width: 100%;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    color: #6b7280;
}

.week-day div:nth-of-type(2) {
    /* height: 28px; */
    line-height: 30px;
    width: 100%;
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    color: #111827;
}

.week-day-on {
    border-radius: 20px;
    background: #14b8a6;
}

.week-day-on div {
    color: #fff !important;
}

.week-day .week-Sun {
    color: #f76868;
}

.week-day .week-Sat {
    color: #2563eb;
}

.week-day.week-day-on .week-Sun {
    color: #fff;
}

.week-day.week-day-on .week-Sat {
    color: #fff;
}