@charset "utf-8";
.hamburguer {
	display: none;
	align-items:center;
	justify-content:center;
	height: 50px;
	width:22px;
	top: 0;
	left: 0;
	cursor: pointer;
	transition-property: opacity, -webkit-filter;
	transition-property: opacity, filter;
	transition-property: opacity, filter, -webkit-filter;
	transition-duration: 0.15s;
	transition-timing-function: linear;
	font: inherit;
	color: inherit;
	text-transform: none;
	background-color: transparent;
	border: 0;
	margin: 0 35px 0 0;
	overflow: visible;
	z-index: 999999;
}
.hamburguer-box {
	width: 22px;
	height: 17px;
	display: inline-block;
	position: relative;
}

.hamburguer-inner {
	display: block;
	top: 50%;
	margin-top: -2px;
}

.hamburguer-inner,
.hamburguer-inner::before,
.hamburguer-inner::after {
	width: 22px;
	height: 3px;
	background-color: #000000;
	position: absolute;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	transition-duration: 0.15s;
	transition-timing-function: ease;
}

.hamburguer-inner::before,
.hamburguer-inner::after {
	content: "";
	display: block;
}

.hamburguer .hamburguer-inner {
	top: 2px;
	transition-duration: 0.4s;
	transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburguer .hamburguer-inner::before {
	top: 7px;
	transition: opacity 0.15s 0.4s ease;
}

.hamburguer .hamburguer-inner::after {
	top: 14px;
	transition: -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburguer.is-active .hamburguer-inner,
.hamburguer.is-active .hamburguer-inner::before,
.hamburguer.is-active .hamburguer-inner::after {
	background-color: #FFFFFF;
}

.hamburguer.is-active .hamburguer-inner::after {
	top: 20px;
}

.hamburguer.is-active .hamburguer-inner {
	-webkit-transform: translate3d(0, 10px, 0) rotate(135deg);
	transform: translate3d(0, 10px, 0) rotate(135deg);
	transition-delay: 0.1s;
}

.hamburguer.is-active .hamburguer-inner::before {
	transition-delay: 0s;
	opacity: 0;
}

.hamburguer.is-active .hamburguer-inner::after {
	-webkit-transform: translate3d(0, -20px, 0) rotate(-270deg);
	transform: translate3d(0, -20px, 0) rotate(-270deg);
	transition-delay: 0.1s;
}
/* animacao bounce */
@keyframes bounce {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-20px);
    }
}

@-webkit-keyframes bounce {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-20px);
    }
}
