.box-menu {
	position: fixed;
	cursor: pointer;
	width: 60px;
	height: 60px;
	border-radius: 60px;
	transition: all ease .2s;
	
	right: 50px;
	top: 50px;
	background: #260562;
	box-shadow: 2px 3px 5px rgba(0, 0, 0, .3);
	transition: all ease .2s;
	margin: 0 0 0 auto !important;
	border: solid 1px #5a18d3;

	display: none;
}

.fullWidthMenu .menu {
	border: solid 1px rgb(255 255 255 / 20%);
}

.full-menu {
	height: auto;
	width: 250px;
	border-radius: 20px;
	z-index: 1;
}

.wrapper {
	position: relative;
	width: 60px;
	height: 60px;
}

.full-menu .wrapper {
	right: -90px;
}

.hamburger {
	position: absolute;
	left: 22px;
	top: 22px;
	width: 16px;
	height: 16px;
}

.hamburger span {
	position: absolute;
	display: inline-block;
	height: 2px;
	width: 100%;
	background: #fff;
	border-radius: 10px;
	/*transition: top .3s, transform .3s, left .3s, width .3s;*/
	transition: all .3s;
}

.hamburger span:nth-child(1) {
	top: 3px;
}

.hamburger span:nth-child(2) {
	top: 8px;
}

.hamburger span:nth-child(3) {
	top: 8px;
}

.hamburger span:nth-child(4) {
	top: 13px;
}

.hamburger.active span:nth-child(1) {
	width: 0;
	margin-left: 8px;
}

.hamburger.active span:nth-child(2) {
	transform: rotate(45deg);
}

.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg);
}

.hamburger.active span:nth-child(4) {
	width: 0;
	margin-left: 8px;
}

.menu {
	position: relative;
	left: -9999px;
	display: flex;
}

.menu a {
	white-space: nowrap;
	position: relative;
	display: inline-block;
	color: #fff;
	text-decoration: none;
	font-size: 15px;
}

.menu a::after {
	content: '';
	position: absolute;
	left: 10px;
	top: 29px;
	height: 0px;
	width: 3px;
	background: #fff;
	transition: height .3s, top .3s;
}

.menu a.active::after {
	top: 15px;
	height: 20px;
}

.menu a span {
	opacity: 0;
	display: inline-block;
}

.menu a span.icon {
	transform: scale(.5);
	color: #fff;
	font-size: 18px;
	display: inline-block;
	width: 60px;
	text-align: center;
	transition: transform .3s;
}

.menu a span.text {
	opacity: 0;
	margin-left: 40px;
	transition: margin .3s, opacity .3s, transform .3s;
}

.full-menu .menu {
	left: 0;
}

.full-menu .menu a:hover span {
	opacity: 1;
}

.full-menu .menu a.active {
	color: #fee1cf
}

.full-menu .menu a span {
	opacity: .8;
}

.full-menu .menu a span.icon {
	transform: scale(1.1);
}

.full-menu .menu a span.text {
	margin-left: 25px;
}

.full-menu .menu a:hover span.text {
	transform: translateX(5px);
	transition-delay: 0s;
}

.menu a:nth-child(1) span {
	transition: all .5s .1s, opacity .5s 0s, transform .5s 0s;
}

.menu a:nth-child(2) span {
	transition: all .5s .15s, opacity .5s 0s, transform .5s 0s;
}

.menu a:nth-child(3) span {
	transition: all .5s .2s, opacity .5s 0s, transform .5s 0s;
}

.menu a:nth-child(4) span {
	transition: all .5s .25s, opacity .5s 0s, transform .5s 0s;
}


.fullWidthMenu.box-menu {
	margin: 0 auto !important;
	position: relative;
	background: none;
	left: auto;
	top: 0;
	width: auto;
	height: auto;
	right: auto;
	border: 0;
}

.fullWidthMenu .menu {
	border: 1px solid #FCBE6B;
	align-items: center;
	padding: 0 20px;
	border-radius: 30px;
	left: auto;
	width: auto;
}

.fullWidthMenu .menu a {
	padding: 8px 16px;
	width: auto;
	height: auto;
}

.fullWidthMenu .menu a:hover {
	color: #FCBE6B;
}

.fullWidthMenu .wrapper {
	display: none
}

.fullWidthMenu .menu a span {
	opacity: 1;
	margin: 0;
}

.fullWidthMenu .menu a::after {
	display: none
}

.box-menu:not(.fullWidthMenu) .menu {
	flex-direction: column;
	padding: 10px 0 20px;
}

.box-menu:not(.fullWidthMenu) .wrapper {
	left: auto;
	right: 0;
	position: absolute;
	z-index: 1;
}

.box-menu:not(.fullWidthMenu) a {
	padding: 10px 0;
	color: #fff;
}

@media only screen and (max-width: 980px) {
	.fullWidthMenu {
		background: inherit;
	}
}