.spyElementsArray{
	position: absolute;
	opacity: 0;
}

.spy-container{
	border-top: 1px solid #707070;
	border-bottom: 1px solid #707070;
	display: flex;
	justify-content: center;
	position: relative;
	z-index: 10;
}

.spy-menu{
	display: flex;
	background: var(--black);
	width: 1430px;
	justify-content: center;
}

.spy-menu .spy-menu-element:nth-child(1){
	/*border: 1px solid #C7C7C7;*/
	border-top: 0;
	border-right: 1px solid #707070;
}

.spy-menu-element.first-item {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    color: #707070;
}
.spy-menu-element{
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	background: transparent;
}
.spy-menu-element p {
    /* font-family: 'Aeonik-700'; */
    color: #707070;
    font-size: 14px;
    font-weight: 700;
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative;
    text-transform: uppercase;
}

.spy-menu-element.active p{
	color:#707070;
	border-bottom: 2px solid transparent;
  	
}
.spy-menu-element p::after{
 position: absolute;
    content: "";
    bottom: -2px;
	left: 0;
    width: 100%;
    height: 3px;
    background: #00BB7D;
	transition: .3s all;
	opacity: 0;
}
.spy-menu-element.active p::after{
	opacity: 1;
}
.spy-menu-element{
	position: relative;
}

.spy-menu-element.active p{
	color: #707070 !important;
	z-index: 4;
}
/*.spy-menu-element.active .overlay-spy{
	/*background: linear-gradient(270deg, #C7C7C7 0%, #F9F9F9 100%);
	opacity: 1;
	
}
*/

/*.spy{
	position: fixed;
	top: 0;
	z-index: 3;
	border-bottom: 1px solid #C7C7C7;
	width: 100;
	border-top: 1px solid #C7C7C7;
}*/

.spy-container.spy{
	width: 100%;
	border-bottom: 1px solid #C7C7C7;
	position: fixed; 
	top: 0;
	z-index: 100;
	background: var(--black);
}

.spy-menu.spy{
	position: fixed;
	top: 0;
	/*left: 0;
	right: 0;*/
	z-index: 100;
	justify-content: center;
	border-left: 1px solid #C7C7C7;
	
}


.overlay-spy{
	opacity: 0;
	transition: .4s all;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
}

@media (max-width: 800px){
	.spy-menu{
		display: none !important;
	}
}