.navigation {
    position: absolute;
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 91;
}

.remote {
    position: fixed;
    top: 50%;
    right: 50px;
    transform: translate(-50%, -50%);
}

.remoteBtn a {
    display: block;
    width: 8px;
    height: 8px;
    margin: 25px 0;
    border-radius: 50%;
    background-color: #ccc;
}

.remoteBtn a.actives {
    border-radius: 50%;
    background-color: var(--main-color);
    animation: pulseAnim 1.3s infinite;
}

@keyframes pulseAnim {
	0% {
		box-shadow: 0 0 0 0 rgba(255, 0, 191, 0.5);
	}
	70% {
		box-shadow: 0 0 0 8px rgb(151 213 229 / 0%);
	}
	100% {
		box-shadow: 0 0 0 0 rgb(151 213 229 / 0%);
	}
}

.remoteBtn:first-child a.actives {
    background-color: #fff;
    animation: pulseAnim2 1.3s infinite;
}

@keyframes pulseAnim2 {
	0% {
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
	}
	70% {
		box-shadow: 0 0 0 8px rgb(255 255 255 / 0%);
	}
	100% {
		box-shadow: 0 0 0 0 rgb(255 255 255 / 0%);
	}
}


/*=========================================================*/
@media (max-width: 1050px) {
    .remote {
        right: 30px;
    }

    .remoteBtn a {
        margin: 18px 0;
    }
}


@media (max-width: 550px) {
    .remote {
        right: 20px;
    }
    
    .remoteBtn a {
        width: 6px;
        height: 6px;
        margin: 15px 0;
    }
}