.navigation {
    position: fixed;
    top: 50%;
    left: 40px;
    transform: translate(-50%, -50%);
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.remote-item {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.remoteBtn {
    position: relative;
    width: 18px;
    height: 18px;
    border-radius: 3px;
    transform: rotate( -45deg );
    background-color: #fa596944;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remoteBtn::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 7px;
    height: 7px;
    border-radius: 100%;
    /* background-color: rgba(0, 0, 0, .2); */
    background-color: #66687973;
    visibility: visible;
}

/* .remoteBtn::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--main-color);
} */
.remoteBtn::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
/* 
    transform: rotate( -45deg ); */
    width: 10px;
    height: 10px;
    border-radius: 3px;
    background-color: var(--main-color);
}

.remoteBtn.actives {
    opacity: 1;
    visibility: visible;
}



/*=========================================================*/
@media (max-width: 1600px) {
    .navigation {
        display: none;
    }
}