/** festival page **/
#festival {
    display: flex;
    gap: 53px;
}
#festival aside {
    position: relative;
    width: 393px;
    flex-shrink: 0;
}

#festival aside #reservation_panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: calc(var(--bs-app-header-height) + 5px);
}

@media (max-width: 991px) {
    #festival #goods_detail {
        margin-top: calc(345px - var(--bs-app-header-height));
        position: relative;
        background-color: #ffffff;
        z-index: 3;
    }
    #festival aside {
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: 999;
        background: rgba(0, 0, 0, .4);
        top: 0;
        left: 0;
        display: none;
    }

    #festival aside.mobile-show {
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }

    #festival aside.mobile-show #reservation_panel {
        background-color: #ffffff;
        width: 100%;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
    }

    #festival aside.mobile-show #reservation_panel button#btn_open_reservation_detail {
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 20px;
        border-radius: 28px;
    }

    #festival aside.mobile-show #reservation_panel #datetime_card {
        box-shadow: none !important;
        border: none !important;
    }
}

#datetime_card .card-header .card-header-left {
    display: flex;
    align-items: center;
}
#datetime_card .card-header .card-header-left .step-seq {
    margin-right: 16px;
    color: #ff7f00;
    font-size: 15px;
    line-height: 15px;
    font-weight: 600;
}
#datetime_card .card-header .card-header-left .step-title {
    margin-right: 32px;
    color: #444950;
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
}
#datetime_card .card-header .card-header-left .step-content {
    color: #9da4af;
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
}
#datetime_card .card-header .card-toolbar i {
    color: #555b62;
}

#datetime_card #step_date .card-body {
    padding: 0 17px 19px;
}

#datetime_card #step_time #time_picker,
#datetime_card #step_zone #zone_picker .zone-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-height: 130px;
    overflow: auto;
}
#datetime_card #step_zone #zone_picker .zone-panel {
    padding: 2rem 2.25rem;
    max-height: fit-content;
}
#datetime_card #step_zone #zone_picker .zone-panel .zone-empty {
    grid-column: 1 / -1;
    text-align: center;
}
#datetime_card #step_time #time_picker.no-select,
#datetime_card #step_zone #zone_picker.no-select {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #999999;
    font-size: 15px;
    font-weight: 600;
    height: 130px;
}

#datetime_card #step_zone #zone_picker .zone-qty {
    display: flex;
    flex-direction: column;
    gap: 120px;
}
#datetime_card #step_zone #zone_picker .zone-panel-group {
    display: flex;
    flex-direction: column;
}
#datetime_card #step_zone #zone_picker .zone-panel-link {
    align-self: flex-end;
    margin: 0 2.25rem 0;
    width: 128px;
    height: 32px;
    box-sizing: border-box;
    border: 1px solid #40444A;
    border-radius: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #40444A;
    font-size: 14px;
    text-decoration: none;
}
#datetime_card #step_zone #zone_picker .zone-panel-link:hover,
#datetime_card #step_zone #zone_picker .zone-panel-link:focus {
    color: #40444A;
    text-decoration: none;
}
@media (min-width: 992px) {
    #datetime_card #step_zone #zone_picker .zone-panel-group:has(+ .qty-panel.d-none) .zone-panel-link {
        margin-bottom: 24px;
    }
}
@media  (max-width: 991px) {
    #datetime_card #step_zone #zone_picker .zone-qty {
        gap: 40px;
    }
}

#datetime_card #step_time #time_picker .time-one,
#datetime_card #step_zone #zone_picker .zone-qty .zone-panel .zone-one {
    border: 1px solid #f7f9fa;
    border-radius: 10px;
    background-color: #f7f9fa;
    color: #7d838d;
    font-weight: 700;
    font-size: 16px;
    height: 47px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
#datetime_card #step_time #time_picker .time-one.selected,
#datetime_card #step_zone #zone_picker .zone-qty .zone-panel .zone-one.selected {
    border: 1px solid #ff7f00;
    background-color: #ff7f00;
    color: #ffffff;
    cursor: default;
}

#datetime_card #step_zone #zone_picker .zone-qty .zone-panel .zone-one.zone-closed {
    color: #D1D6DE;
}

.qty-panel {
    padding: 2rem 2.25rem;
    background-color: #F7F9FA;
}
.qty-panel .qty-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.qty-panel .qty-row .qty-left {
    display: flex;
    align-items: center;
    gap: 14px;
}
.qty-panel .qty-row .qty-left .qty-label {
    font-size: 16px;
    font-weight: 700;
    color: #444950;
}
.qty-panel .qty-row .qty-left .qty-selected-zone {
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    color: #FFFFFF;
    background-color: #FF7F00;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
    height: 24px;
    border-radius: 12px;
}

.qty-panel .qty-row .qty-right {
    display: flex;
    align-items: center;
}
.qty-panel .qty-row .qty-right .btn-qty {
    width: 34px;
    height: 22px;
    border-radius: 12px;
    background-color: #191919;
    padding: 0;
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.qty-panel .qty-row .qty-right .btn-qty:disabled {
    background-color: #C7C8C9;
}
.qty-panel .qty-row .qty-right .qty-value {
    width: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    color: #444950;
    line-height: 1;
}

.qty-panel .qty-comment {
    margin-top: 10px;
    justify-self: right;
    color: #40444A;
    opacity: 0.5;
    font-size: 14px;
}

#festival section #goods_summary_pc {
    display: grid;
    grid-template-columns: 351px minmax(453px, 1fr);
    gap: 54px;
}

#festival section .goods-image {
    overflow: hidden;
}
#festival section .goods-image .image-wrapper {
    position: relative;
}
#festival section .goods-image .image-wrapper img {
    width: 100%;
    border-radius: 10px;
}
#festival section .goods-image .image-wrapper .btn-zoom {
    position: absolute;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 13px;
    right: 14px;
}

#festival section #goods_summary_pc .goods-info .goods-eng-name {
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    margin-bottom: 7px;
    color: #9da4af;
}
#festival section #goods_summary_pc .goods-info .goods-name {
    font-size: 23px;
    line-height: 23px;
    font-weight: 700;
}

#festival section #goods_summary_pc .goods-info .separator {
    margin-top: 26px;
    margin-bottom: 48px;
    border-bottom-color: rgba(25, 25, 25, 0.6);
}

#festival section #goods_summary_mobile .goods-title-mobile-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 345px;
    background-position: center;
    background-size: cover;
    z-index: 1;
}

#festival section #goods_summary_mobile .goods-title-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 345px;
    backdrop-filter: blur(80px);
    -webkit-backdrop-filter: blur(80px);
    display: grid;
    grid-template-columns: 166px 1fr;
    gap: 24px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 30px;
    align-items: end;
    z-index: 2;
}
#festival section #goods_summary_mobile .goods-name {
    font-size: 21px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px
}
#festival section #goods_summary_mobile .goods-eng-name {
    font-size: 14px;
    line-height: 14px;
    font-weight: 300;
    color: #ffffff;
}

#festival section .goods-info .info-table {
    display: grid;
    grid-template-columns: auto 1fr;
    row-gap: 30px;
}
#festival section .goods-info .info-table .info-label {
    color: #444950;
    font-size: 16px;
    font-weight: 700;
    border-right: 1px solid rgba(112, 112, 112, 0.3);
    padding-right: 20px;
}
#festival section .goods-info .info-table .info-content {
    color: #40444a;
    padding-left: 20px;
    font-size: 16px;
    font-weight: 500;
}
#festival section .goods-info .info-table .info-content .host:not(:last-child) {
    padding-right: 20px;
    margin-right: 20px;
    border-right: 1px solid rgba(112, 112, 112, 0.3);
}
#festival section .goods-info .info-table .info-content .price-area {
    border-radius: 7px;
    background-color: #f7f9fa;
    padding: 27px 17px;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 38px;
    row-gap: 12px;
    color: #40444a;
}
#festival section .goods-info .info-table .info-content .price-area .price-label {
    font-size: 15px;
    line-height: 15px;
    font-weight: 500;
}
#festival section .goods-info .info-table .info-content .price-area .price-content {
    font-size: 15px;
    line-height: 15px;
    font-weight: 600;
}
#festival section .goods-info .info-table .info-content .price-area .price-content .price {
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

#festival section .goods-info .info-table .info-content .btn-benefit {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #000000;
    border-radius: 10px;
    width: 30px;
    height: 18px;
}

@media (max-width: 991px) {
    #festival section .goods-info .info-table {
        padding: 30px 20px;
        grid-template-columns: auto 1fr;
        column-gap: 43px;
        row-gap: 18px;
    }
    #festival section .goods-info .info-table:nth-child(2n) {
        background-color: #f7f9fa;
    }
    #festival section .goods-info .info-table .info-label {
        color: #969eac;
        font-size: 15px;
        line-height: 15px;
        font-weight: 500;
        border-right: none;
        padding-right: 0;
    }
    #festival section .goods-info .info-table:nth-child(2n) .info-label {
        color : #40444a;
    }
    #festival section .goods-info .info-table .info-content {
        color: #40444a;
        font-size: 15px;
        line-height: 15px;
        font-weight: 400;
        padding-left: 0;
    }
    #festival section .goods-info .info-table .info-content .host:not(:last-child) {
        padding-right: 10px;
        margin-right: 10px;
    }
    #festival section .goods-info .info-table .info-content .price-area {
        background-color: #ffffff;
        padding: 19px 17px;
    }
    #festival section .goods-info .info-table .info-content .price-area .price-content {
        justify-self: end;
    }
}

#festival section .goods-notice {
    display: flex;
    margin-top: 70px;
    margin-bottom: 55px;
    border: 1px solid rgba(112, 112, 112, 0.4);
    border-radius: 10px;
    padding: 30px;
}
#festival section .goods-notice .notice-label {
    color: #ff7f00;
    font-size: 16px;
    font-weight: 700;
    margin-right: 38px;
    flex-shrink: 0;
}
#festival section .goods-notice .notice-content {
    color: #555b62;
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
}
@media (max-width: 991px) {
    #festival,
    #festival_section {
        width: 100%;
    }
    #festival section .goods-notice {
        margin-top: 0;
        margin-bottom: 48px;
        flex-direction: column;
        gap: 12px;
        border: none;
        border-radius: 0;
        border-top: 1px solid #e5e9ee;
        background-color: #f7f9fa;
    }
    #festival section .goods-notice .notice-label {
        margin-right: 0;
        font-size: 14px;
    }
    #festival section .goods-notice .notice-content {
        color: #40444a;
        font-size: 14px;
    }
}

#festival #goods_tab .nav .nav-item {
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (min-width: 992px) {
    #festival #goods_tab {
        margin-top: 70px;
    }
}
#festival #goods_tab .nav .nav-item .nav-link {
    font-size: 17px;
    color: #767676;
    font-weight: 500;
    margin: 0;
    padding: 0 16px;
    height: 67px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#festival #goods_tab .nav .nav-item .nav-link.active {
    color: #242424;
    font-weight: 700;
    border-bottom: 3px solid #ff7f00;
}
#festival #goods_tab .tab-pane p {
    margin-bottom: 0 !important;
}
#festival #goods_tab .tab-pane img {
    width: 100% !important;
}
@media (max-width: 991px) {
    #festival #goods_tab .nav .nav-item {
        flex: 1 1 auto;
    }
    #festival #goods_tab .nav .nav-item .nav-link {
        width: 100%;
        padding: 0;
        height: 56px;
        font-size: 15px;
    }
}

#festival #btn_open_reservation_panel {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 28px;
    z-index: 4;
}
@media (max-width: 991px) {
    #festival #btn_open_reservation_panel {
        display: block;
    }
}
/** festival page end **/
