.tiny-slider-controls div {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align:center;
    font-size:1.6em;
    color:#555;
    cursor: pointer;
    transition: background 0.3s;
    background-color: #fff;
    opacity:0.9;
    border: 1px solid #ddd;
    border-radius: 50%;
    box-shadow: 0 5px 20px -10px rgb(0 0 0 / 30%), 0 5px 10px -10px rgb(0 0 0 / 30%);
}

.tiny-slider-controls .prev {
    left:-15px;
}

.tiny-slider-controls .next {
    right:-15px;
}

.tns-nav{
    text-align:center;
}

.tns-nav button {
    border: 0;
    background: #05c;
    opacity: .38;
    width: 24px;
    height: 4px;
    margin: 0 1px;
}

.tns-nav button:first-child {
    border-radius: 20px 0 0 20px;
}

.tns-nav button.last-visible-child {
    border-radius: 0 20px 20px 0;
}

.tns-nav button.tns-nav-active {
    width: 48px;
    opacity: 1;
}

