/*CSS HANDLER */
#slider-container-Mobile_RadeRight {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    position: absolute;
    padding: 15px;
    z-index: 1;
    border-radius: 0;
    height: 60%;
    min-height: var(--miniSlider-height);
    bottom: 0;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
} 

.logged #slider-container-Mobile_RadeRight{
    top: calc(1 * var(--transferMoney));
}
.unlogged #slider-container-Mobile_RadeRight{
    top: 0;
}
#slideshow-container-Mobile_RadeRight {
    height: 100%;
    overflow: hidden;
    border-radius: 6px;
}

#slideshow-container-Mobile_RadeRight .mySlides img {
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
    max-height: 100%;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

#slider-container-Mobile_RadeRight .mySlides img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(to right, rgb(0, 0, 0) 0%, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0) 80%, rgb(0, 0, 0) 100%);
}

.prev_RadeRight, .next_RadeRight {
    cursor: pointer;
    width: 50px;
    line-height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    text-align: center;
    color: var(--textColor2);
    text-decoration: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 150ms ease;
    display: none !important;
}

.prev_RadeRight {
    left: 30px;
    padding-right: 15%;
}

.next_RadeRight {
    right: 50px;
    padding-left: 15%;
}

.prev_RadeRight:hover, .next_RadeRight:hover {
    text-shadow: 0 0 3px var(--textColor4), 0 0 5px var(--textColor2);
}

.dot-container_RadeRight {
    position: absolute;
    bottom: 50%;
    right: 0%;
    transform: translate(-50%, 50%);
    display: none;
    flex-direction: column;
    align-items: center;
}

.dot {
    cursor: pointer;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    border: 2px solid var(--textColor2);
}

.dot.active {
    border: 2px solid transparent;
}

.dot.active, .dot:hover {
    background: radial-gradient(circle, rgba(255,255,255,1) 0%, transparent 35%);
}

.fadeINS {
    height: 100%;
    animation-name: fadeINS;
    animation-duration: 2.5s;
    opacity: 1;
}

@keyframes fadeINS {
    from {opacity: .4} 
    to {opacity: 1}
}

@media only screen and (max-width: 300px) {
    .prev_RadeRight, .next_RadeRight, .text {font-size: 11px}
}

#countdown_RadeRight {
    position: relative;
    margin: auto;
    height: 40px;
    width: 40px;
    text-align: center;
}

svg {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    transform: rotateY(-180deg) rotateZ(-90deg);
}

svg circle {
    fill: none;
}

.circles:hover .dot {
    background-color: var(--InsSliderBg);
}

.circles.activeCircle svg circle {
    stroke-dasharray: 57px;
    stroke-dashoffset: 0px;
    stroke-linecap: round;
    stroke-width: 2px;
    stroke: var(--textColor2);
    fill: none;
    animation: countdown 10s linear forwards;
}

@keyframes countdown {
    from {
        stroke-dashoffset: 0px;
    }
    to {
        stroke-dashoffset: 57px; 
    }
}

@media (max-width: 991px) {
    #slider-container-Mobile_RadeRight {
        top: calc(1 * var(--navbar-height));
        position: relative;
    }
}
