.canvas__wrapper {
    display: block;
    width: 100vw;
    height: 100vh;

    position: relative;

    overflow: hidden;
}

.canvas {
    width: 100% !important;

    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
}


.nav-btn {

    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    background-color: white;
    color: black;
    border: none;
    border-radius: 50%;
    padding: 4px;

    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(235, 5, 159, 0.3);
    z-index: 999;
}

.nav-btn svg {
    width: 28px;
    height: 28px;
}

.navigation-ui__btn:hover {
    background-color: #6c886c;
    box-shadow: 0 6px 20px #6c886c;
    cursor: pointer;
}


.navigation-ui {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10;
}

.right_arrow {
    transform: rotate(180deg);
}

.navigation-ui__btn {
    background-color: #fff;

    position: absolute;
    bottom: 10px;
    left: calc(50% - 15px);
    width: 80px;
    height: fit-content;
    padding: 8px;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

.js-previous {
    transform: translateX(-50px);
}

.js-next {
    transform: translateX(50px);
}