#scenario_10 {
    background-image: url(../images/common/background_02.jpg);
    background-position: center;
}

/* 시스템 에어컨 버튼 */
#scenario_10-modal_a {
    width: 250px;
    max-width: 100%;
    aspect-ratio: 311 / 69 auto;
    top: 82%;
}

#scenario_10-modal_a .button_a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

/* 에어컨 점검하기 */
#scenario_10-modal_b {
    width: 472px;
    max-width: 100%;
    aspect-ratio: 472 / 617 auto;
}

#scenario_10-modal_b .button_a {
    position: absolute;
    top: 79.3%;
    left: 1.4%;
    width: 97%;
    aspect-ratio: 1 / 0.15 auto;
    z-index: 1;
}

/* 에어컨 세척 영상 */
#scenario_10-modal_c {
    /* width: 1210px; */
    /* max-width: 100%; */
    /* aspect-ratio: 1210 / 680 auto; */
    /* border-radius: 15px; */
    /* contain: paint; */
}

#scenario_10-modal_c #scenario_10-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: bottom;
}

#scenario_10-modal_c .button_a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20.5%;
    aspect-ratio: 1 / 1 auto;
    background: url("../images/scenario_10/play.png") center center / cover no-repeat;
}

/* 에어컨 점검완료 */
#scenario_10-modal_d {
    width: 472px;
    max-width: 100%;
    aspect-ratio: 472 / 617 auto;
}

#scenario_10-modal_d .button_a {
    position: absolute;
    top: 79.3%;
    left: 1.4%;
    width: 97%;
    aspect-ratio: 1 / 0.15 auto;
    z-index: 1;
}

/* 비디오 컨트롤러 */
#scenario_10 .video-container {
    display: flex;
    flex-direction: column;
    width: 1210px;
    max-width: 90%;
    aspect-ratio: 1210 / 680;
    margin-inline: auto;
    border-radius: 15px;
    contain: paint;
}

#scenario_10 .video-wrapper {
    width: 100%;
    height: 100%;
}

#scenario_10 .video-wrapper>video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#scenario_10 .video-controller {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 65px;
    height: 13.23%;
    padding: 0 50px;
    background: linear-gradient(to bottom, rgb(235, 240, 254) 5%, rgb(194, 201, 222));
}

#scenario_10 .control-video {
    display: flex;
    align-items: center;
    gap: 30px;
}

#scenario_10 .control-video>button {}

#scenario_10 .control-progress {
    width: 100%;
}

#scenario_10 .control-progress .progress-bar {
    position: relative;
    width: 100%;
    height: 3px;
    background-color: #fff;
}

#scenario_10 .control-progress .progress-bar .progress-current {
    position: absolute;
    left: 0;
    top: 50%;
    width: 1%;
    height: 100%;
    background-color: red;
    transform: translateY(-50%);
    transition: width 0.3s linear;
}

#scenario_10 .control-progress .progress-bar .progress-current .progress-current-pointer {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #FF1017;
    border-radius: 50%;
    cursor: pointer;
}

#scenario_10 .control-sound {}

#scenario_10 .control-sound>button {}


@media (max-width: 768px) {
    #scenario_10 {
        background-image: url(../images/common/background_02_mo.jpg);
        background-position: center;
    }

    #scenario_10-modal_a{
        width: 172px;
    }

    #scenario_10 .video-container {
        border-radius: 8px;
        aspect-ratio: unset;
    }

    /* #scenario_10 .video-wrapper {
        width: 100%;
        height: 200px;
    } */

    #scenario_10 .video-controller {
        gap: 20px;
        height: 50px;
        padding: 0 20px;
        z-index: 10;
    }

    #scenario_10 .control-video {
        gap: 8px;
    }

    #scenario_10 .control-sound {
        display: inline-flex;
        height: 70%;
    }

    #scenario_10 .control-sound>button {
        display: inline-flex;
        align-items: center;
        height: 100%;
    }

    #scenario_10 .control-sound>button img {
        height: 100%;
    }

    #scenario_10 .control-progress .progress-bar {
        height: 1px;
    }

    #scenario_10 .control-progress .progress-bar .progress-current .progress-current-pointer {
        width: 5px;
        height: 5px;
    }
}