﻿#topSliderContainer {
    width: 100%;
    position: relative;
}

#subSliderContainer {
    width: 60%;
    position: relative;
}

/************ TIMER **********/
.timerProgressBox {
    position: absolute;
    width: 100%;
    top: 0;
}

.timerProgress {
    height: 3px;
    background-color: red;
}

/*********** POSITION DOT ***********/
.dotBox {
    position: absolute;
    text-align: center;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    height: 20px;
}

    .dotBox .active {
        background-color: red;
    }

.SLIDESHOW_dot,
.SLIDESET_dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

#SLIDESHOW,
#SLIDESET {
    width: 100%;
    overflow: hidden;
}


    #SLIDESHOW img,
    #SLIDESET img {
        width: 100%;
        height: auto;
    }


/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 36px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

    /* On hover, add a black background color with a little bit see-through */
    .prev:hover, .next:hover {
        background-color: rgb(52 23 2 / 0.8);
    }
