﻿.tns-nav button {
    all: unset; /* wipe default button styles */
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    border-radius: 50%;
    background: rgba(255,255,255, 0.4);
    cursor: pointer;
    transition: background 0.3s;
}

    /* Active dot */
    .tns-nav button.tns-nav-active {
        background: #fff;
    }

/* Position nav at bottom center */
.tns-nav {
    position: relative;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
}


.my-slider {
    position: relative;
}

.tns-controls button {
    all: unset;
    position: absolute;
    bottom: -20px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.tns-controls .prev {
    left: 40px;
    font-weight: bold;
}

.tns-controls .next {
    right: 40px;
    font-weight: bold;
}
 