/*Tiny Slider AutoPlay*/

.tns-controls {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

/*Box size of Slider*/

.tns-controls > button[data-controls=prev],
.tns-controls > button[data-controls=next]{
    cursor: pointer;
    align-items: center;
    background-position-y: center;
    background-repeat: no-repeat;
    height: 100%;
    z-index: 1;
    width: 30px;
}

/*Previus button style*/
.tns-controls > button[data-controls=prev]{
    background-image: url(./nextPrev/leftcopy.png);

}

/* Next button style */
.tns-controls > button[data-controls=next]{
    background-image: url(./nextPrev/rightcopy.png);
}

/* dots */

.tns-nav {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    z-index: 1;
}

.tns-nav > button {
    width: 10px;
    height: 10px;
    margin: 3px;
    border-radius: 100%;
    border: 0;
    background-color: #F2F2F2;
}

.tns-nav > button.tns-nav-active {
    background-color: #EDD65F;
}

#tns1-ow > button{
    display: none;
}