/* arr_hover - 오버시에만 나타나는 화살표 */

.MAIN_TOP_TOTAL .arrows_wrap.arrows_arr_hover .swiper-button-prev,
.MAIN_TOP_TOTAL .arrows_wrap.arrows_arr_hover .swiper-button-next {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
}

.MAIN_TOP_TOTAL:hover .arrows_wrap.arrows_arr_hover .swiper-button-prev,
.MAIN_TOP_TOTAL:hover .arrows_wrap.arrows_arr_hover .swiper-button-next {
    opacity: 1;
}

.MAIN_TOP_TOTAL .arrows_wrap.arrows_arr_hover .swiper-button-prev:hover,
.MAIN_TOP_TOTAL .arrows_wrap.arrows_arr_hover .swiper-button-next:hover {
    background: rgba(255,255,255,0.35);
}

@media screen and (max-width: 768px) {
    .MAIN_TOP_TOTAL .arrows_wrap.arrows_arr_hover .swiper-button-prev,
    .MAIN_TOP_TOTAL .arrows_wrap.arrows_arr_hover .swiper-button-next {
        opacity: 1;
    }
}
