.rgbc-install-nav {
	display: flex;
	position: absolute;
	@include calc(top, 133px);
	@include calc(right, 55px);
	&__item {
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		border: 1px solid $green;
		width: 1.5em;
		height: 1.5em;
		border-radius: 50%;
		font-family: $gilroy;
		@include calc(font-size, 16px);
		background: $green;
		color: $font-black;
		&:not(:last-child) {
			@include calc(margin-right, 8px);
			&::after {
				content: '';
				background: $green;
				height: 1px;
				@include calc(width, 8px);
				position: absolute;
				top: 0;
				bottom: 0;
				left: calc(100% + 1px);
				margin: auto 0;
			}
		}
		&_active {
			background-size: 0.9em 0.6em;
			background-image: url(/src/assets/images/nav-check.svg);
			background-position: center center;
			background-repeat: no-repeat;
		}
	}
	&_dark &__item {
		background: transparent;
		color: $green;
	}
	&_dark &__item_active {
		color: $font-black;
		background: $green;
	}
}
