.tns.tns-default [data-controls=prev] {
    left: 15px;
}
.tns.tns-default [data-controls=next] {
    right: 15px;
}
.controls {
    z-index: 1;
    margin: 280px 0 0 0;
    padding: 0;
    list-style: none;
    position: absolute;
    width: 100%;
    transform: translatey(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.categories-controls {
    z-index: 1;
    margin: 130px 0 0 -15px;
    padding: 0;
    list-style: none;
    position: absolute;
    width: 100%;
    transform: translatey(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.controls:focus {
    outline: none;
}
.controls li:hover {
    cursor: pointer;
}

.loader {
    z-index: 1;
    width: 350px;
    height: 350px;
    left: 37%;
    top: 30%;
    border-radius: 50%;
    background: linear-gradient(#f07e6e, #84cdfa, #5ad1cd);
    animation: animate 1.2s linear infinite;
}

@keyframes animate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loader span {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(#f07e6e, #84cdfa, #5ad1cd);
}

.loader span:nth-child(1) {
    filter: blur(5px);
}

.loader span:nth-child(2) {
    filter: blur(10px);
}

.loader span:nth-child(3) {
    filter: blur(25px);
}

.loader span:nth-child(4) {
    filter: blur(50px);
}

.loader:after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: #f1f1f1;
    border: solid white 10px;
    border-radius: 50%;
}
.loader-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    background: rgb(255 255 255 / 85%);
    position: fixed;
    z-index: 10000;
}
.loader-wrapper > p {
    font-size: xx-large;
    z-index: 2;
    position: absolute;
}
@media (max-width: 414px) {
    .loader {
        width: 250px;
        height: 250px;
    }
}