.new_popup_container {
    display: flex;
    justify-content: flex-end;
}

.new_popup_zone {
    display: flex;
    flex-direction: column;
    width: 500px;
    height: 300px;
}

.new_popup_zone_title {
    color: #000;
    font-weight: 700;
    line-height: 30px;
    margin-left: 10px;
}

.new_popup_zone_controller {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    width: 100%;
    height: 30px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

.popup_pagination {
    line-height: 30px;
}

.popup_prev, .popup_next, .popup-play-and-pause {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.new_popup_zone_action_wrapper {
    display: flex;
    gap: 5px;
    align-items: center;
    margin-right: 10px;
}

.new_popup_slide {
    width: 100%;
    height: 270px;
}

.new_popup_slide .slick-list {
    width: 100%;
}

.new_popup_slide_item {
    width: 100%;
    height: 270px !important;
}

.new_popup_slide_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1260px) {
    .new_popup_container {
        display: flex;
        justify-content: normal;
    }

    .new_popup_zone {
        margin-top: 10px;
    }
}

@media (max-width: 520px) {
    .new_popup_zone {
        width: 310px;
    }
}