.list{
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: row;
    gap: 15px;

    overflow: scroll;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.list::-webkit-scrollbar{
    display: none;
}

.list-canva button{
    width: 60px;
    height: 100%;
    
    position: absolute;
    top: 50%;

    outline: none;
    border: none;

    background-color: var(--gray-200);
    opacity: 0.5;

    transition: all 150ms ease-out;
}

.list-canva button:hover{
    opacity: 1;
}

.list-canva button:active{
    background-color: var(--gray-300);
}

.list-canva button img{
    transform: scale(70%);
}

.list-canva button.off{
    opacity: 0;
    pointer-events: none;
}

.list-canva button.left-button{
    left: 0;
    transform: translateY(-50%);

}
.list-canva button.right-button{
    right: 0;
    transform: translateY(-50%) scaleX(-100%);
}

@media (max-width: 800px) {
    .list{
        gap: 10px;
    }

    .list-canva button{
        display: none;
    }
}