@charset "utf-8";

.popup_container {
    position: relative;
    width: 100%;
    max-width: 790px;
    padding: 200px 15px 100px;
    margin: 0 auto;
}

.popup_content {
    width: 100%;
    position: relative;
    z-index: 1;
    padding-top: 23.2%; /* 310px / 1360px * 100 */
}

.popup_view {
    position: absolute;
    width: 52.6%; /* 700 / 1330 */
    top: 0; /* 225 / 991 (Image aspect ratio based height) */
    left: 25.9%; /* 345 / 1330 */
    aspect-ratio: 700 / 535;
    z-index: 2;
}

.popup_view img.popup_current_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup_car_img {
    position: absolute;
    bottom: 10px;
    left: 19.5%;
    width: 16.5%; /* 220px / 1330px */
    height: auto;
}

.popup_car_img.on {
    content: url('../assets/images/popup_car_img_hover.png');
}

.popup_arr {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
    width: auto;
    height: auto;
}

.popup_arr.prev {
    left: -70px;
}

.popup_arr.next {
    right: -70px;
}

.popup_arr.disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}