.arrow-nav{
	font-family: "Oxygen-Bold";
	font-display: auto;
	font-size: 22px;
	font-weight: 900;
	color: #202020 !important;
	text-decoration: none;
	position: relative;
	padding: 0 0 0 45px;
	-webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
	-moz-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
	-ms-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
	-o-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
	transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.arrow-nav--small:before{
	width: 6px !important;
	height: 144% !important;
	box-shadow: 0 2px 16px 0 rgba(0,0,0,0.1);
}

.arrow-nav--small>span {
  padding-right: 40px;
  background-size: 20px;
}


.arrow-nav--large:before{
	width: 10px !important;
	height: 50px !important;
	box-shadow: 0 2px 16px 0 rgba(0,0,0,0.1);
}


.arrow-nav--large>span {
	font-weight: bolder !important;
	padding-right: 50px;
	background-size: 20px;
}


.arrow-nav:before {
  width: 12px;
  height: 80px;
  left: 0 !important;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transition: width 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  -moz-transition: width 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  -ms-transition: width 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  -o-transition: width 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: width 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.arrow-nav:before {
	content: "";
	display: block;
	position: absolute;
	width: 6px;
	/*height: 100%;
	left: -27px;
	top: 4px;*/
	box-shadow: 0 2px 16px 0 rgba(0,0,0,0.1);
	background-color: var(--main-accent-dark-color);
}



.arrow-nav>span {
	padding-right: 50px;
	background: url(../img/ic_arrow_right.svg) center right no-repeat;
	position: relative;
	z-index: 1;
}


.arrow-nav:hover:before {
  width: calc(100% + 25px) !important;
}

@media (max-width: 640px){
	.arrow-nav:before {
		width: calc(100% + 25px) !important;
	}
}


.arrow-nav--white span {
    background-image: url(../img/ic_arrow_right_white.svg);
    color: #fff;
}