.modal-container {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.modal-content {
    background-color: #ffffff;
    padding: 15px;
    z-index: 9999;
}

.spinner-container {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
    background: rgba(0, 0, 0, 0.3);
}

.spinner {
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.dv-toggle dt::after {
    content: '';
    transform: rotate(135deg);
    width: 10px;
    height: 10px;
    border-top: #0039c8 2px solid;
    border-right: #0039c8 2px solid;
    display: block;
    position: absolute;
    top: 50%;
    right: 40px;
    margin-top: -5px;
    transition: all 0.2s ease-in-out;
    pointer-events: none;
}
.dv-toggle dt.active::after {
    transform: rotate(-45deg);
    pointer-events: none;
}

.r_fade-enter {
    opacity: 0;
}
.r_fade-enter-active {
    opacity: 1;
    transition: opacity 500ms ease-in;
}
.r_fade-exit {
    opacity: 1;
}
.r_fade-exit-active {
    opacity: 0;
    transition: opacity 500ms ease-out;
}

.r_banner-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.r_banner {
    position: absolute;
    width: 100%;
    height: 100%;
}

.r_slide-enter {
    transform: translateX(100%);
}
.r_slide-enter-active {
    transform: translateX(0);
    transition: transform 500ms ease-in-out;
}
.r_slide-exit {
    transform: translateX(0);
}
.r_slide-exit-active {
    transform: translateX(-100%);
    transition: transform 500ms ease-in-out;
}

.r_copy {
    position: absolute;
    width: 1200px;
    left: 50%;
    margin-left: -600px;
    top: 0;
    bottom: 0;
    padding: 310px 50px 50px 50px;
    display: flex;
    flex-direction: column;
    color: #000;
    font-size: 24px;
    line-height: 1.2;
}

.r_currentSlide {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
}

.r_banner_ctrl {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.r_ctrl {
    position: absolute;
    left: 50%;
    margin-left: -68px;
    bottom: 60px;
    width: 135px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    margin-left: -68px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    justify-content: center;
    z-index: 2;
}
.r_ctrl button {
    width: 24px;
    height: 24px;
    position: relative;
}
.r_ctrl button span {
    position: absolute;
    top: -9999px;
    left: -9999px;
}
.r_ctrl button.stop {
    margin-right: 4px;
}
.r_ctrl button.stop::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-left: #fff 2px solid;
    border-right: #fff 2px solid;
    margin: -5px 0 0 -4px;
    display: block;
}
.r_ctrl button.stop.on::after {
    content: '';
    width: auto;
    height: auto;
    border-left: #fff 8px solid;
    border-top: transparent 4px solid;
    border-bottom: transparent 4px solid;
    margin: -4px 0 0 -4px;
    border-right: none;
}
.r_ctrl button.prev::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-top: #fff 2px solid;
    border-right: #fff 2px solid;
    display: block;
    margin: -4px 0 0 -4px;
    transform: rotate(-135deg);
}
.r_ctrl button.next::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-top: #fff 2px solid;
    border-right: #fff 2px solid;
    display: block;
    margin: -4px 0 0 -4px;
    transform: rotate(45deg);
}
.r_ctrl button.prev.swiper-button-disabled,
.r_ctrl button.next.swiper-button-disabled {
    opacity: 0.3;
}
.r_ctrl .pag {
    width: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    padding: 0;
    font-size: 13px;
}
.r_ctrl .pag .swiper-pagination-current {
    color: rgba(255, 255, 255, 1);
}
