@charset "UTF-8";

.bottom-sheet {
    position: fixed;
    right: 120px;
    bottom: -100%;
    width: 100%;
    max-width: 400px;
    background: #fff;
    border-radius: 16px 16px 0 0;
    transition: bottom 1s ease-in-out;
    transform: translateY(100%);
    opacity: 0;
    z-index: 999;
    min-height: 300px;
    overflow: hidden;
    padding: 0;
    box-sizing: border-box;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
}

.bottom-sheet.active {
    bottom: 0;
    transform: translateY(0);
    opacity: 1;

}

.slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    touch-action: pan-y;
    user-select: none;
    height: calc(100% - 50px);
}

.slider {
    display: flex;
    transition: transform 0.3s ease-in-out;
    will-change: transform;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    user-select: none;
    overflow: hidden;
}

.slide a {
    display: block;
    width: 100%;
    height: 100%;
}

.slide img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    user-drag: none;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    pointer-events: none;
}

.slider-controls {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 14px;
    z-index: 10;
    display: flex;
    align-items: center;
    user-select: none;
    gap: 4px;
    font-weight: 600;
}

.sheet-footer {
    /*border-top: 1px solid #ddd;*/
    padding: 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    height: 50px;
    padding: 0 15px;
}

.sheet-footer button {
    color: #111;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    padding: 0;

}

/* 좌우 버튼 기본 숨김 */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 20;
    display: none;
}

.slider-nav.left {
    left: 0;
    border-radius: 0 5px 5px 0;
}

.slider-nav.right {
    right: 0;
    border-radius: 5px 0 0 5px;
}

/* 마우스 올렸을 때만 버튼 표시 */
.slider-wrapper:hover .slider-nav {
    display: block;
}

.sheet-footer input_wrap {
    display: flex;
    align-items: center;
}

.sheet-footer label {
    /*display: flex;
            align-items: center;
            gap: 6px;*/
    color: #333 !important;
    cursor: pointer;
}

.sheet-footer input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
	display: none;
}
@media all and (max-width:680px) {
    .bottom-sheet {
        right: 0;
        padding: 0;
        border-radius: 16px 16px 0 0;
        max-width: 100%;
        min-height: auto;
    }

    .bottom-sheet.active {
        bottom: 0;
    }

    .slider-nav {
        display: none !important;
    }

    .sheet-footer {
        padding: 10px;
    }
}