.tns-outer {
    position: relative;
}
.tns-controls {
    display: flex;
    justify-content: space-between;
}
.tns-controls button {
    width: 40px;
    height: 40px;
    border: none;
    position: absolute;
    top: 33%;
    background-size: contain !important;
}
.tns-controls button:first-child {
    background: url('/etc/designs/kelloggs/kstl/img/left_nav.png') no-repeat 0 0;
    opacity: 0.7;
    left: -6%;
}
.tns-controls button:first-child:hover {
    opacity: 1;
}
.tns-controls button:last-child {
    background: url('/etc/designs/kelloggs/kstl/img/right_nav.png') no-repeat 0 0;
    right: -6%;
}
.tns-nav {
    display: flex;
    justify-content: center;
    column-gap: 10px;
    width: 100%;
    position: relative;
    bottom: 0;
    margin: 12px 0;
}
.tns-nav button {
    height: 12px;
    width: 12px;
    background: #ececec;
    border: none;
    border-radius: 50%;
    box-shadow: inset 0 0 3px rgba(0, 0, 0, .3);
}
.tns-nav button.tns-nav-active {
    background: #000;
}
@media only screen and (max-width:992px) {
    .tns-outer {
        width: 83%;
        margin: 0 auto;
    }
    .tns-controls button:first-child {
        left: -10%;
    }
    .tns-controls button:last-child {
        right: -10%;
    }
}
@media only screen and (max-width:767px) {
    .tns-controls button:first-child {
        left: -16%;
    }
    .tns-controls button:last-child {
        right: -16%;
    }
}