.Navbar {
  display: flex;
  margin: 0;
  justify-content: flex-end;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  height: 0;
}


.MenuResponsive {
  position: fixed;
  top: 20px;
  left: 20px;
  display: flex;
  z-index: 20;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  width: 33px;
}

.MenuLine {
  display: block;
  height: 5px;
  margin: 5px 0 2px;
  width: 100%;
  border-radius: 2px;
  z-index: 99;
  transform-origin: left center;
}

.Navigation {
  display: none;
  position: fixed;
  z-index: 19;
  top: 0;
  left: 0;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 100%;
}

.Navigation nav {
  width: 100%;
  height: 45%;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.Navigation a {
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  width: 55%;
  margin: 0;
  text-decoration: none;
}


.Navigation button {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  border-radius: 50%;
}


.themeIcon {
  height: 10px;
  width: 10px;
}

.NavbarIntro {
  display: flex;
  opacity: 0;
  -webkit-animation: slide-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  animation: slide-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.NavbarOutro {
  display: flex;
  opacity: 1;
  -webkit-animation: slide-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  animation: slide-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.OpenTop {
  animation: rotateTop 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}


.OpenMid {
  animation: scaleMid 0.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.OpenBottom {
  animation: rotateBottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}


.CloseTop {
  animation: rotateTopR 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.CloseMid {
  animation: scaleMidR 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.CloseBottom {
  animation: rotateBottomR 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes rotateTop {
  0% {
    transform: rotate(0deg);
  }

  100% {

    transform: rotate(48deg) translateZ(0px);
  }
}

@keyframes rotateTopR {
  0% {
    transform: rotate(48deg);
  }

  100% {

    transform: rotate(0deg);
  }
}

@keyframes scaleMid {
  0% {
    transform: scaleX(1);
  }

  100% {

    transform: scaleX(0) translateZ(0px);
  }
}

@keyframes scaleMidR {
  0% {
    transform: scaleX(0);
  }

  100% {

    transform: scaleX(1);
  }
}

@keyframes rotateBottom {
  0% {
    transform: rotate(0deg);
  }

  100% {

    transform: rotate(-48deg) translateZ(0px);
  }
}

@keyframes rotateBottomR {
  0% {
    transform: rotate(-48deg);
  }

  100% {

    transform: rotate(0deg);
  }
}



@-webkit-keyframes slide-right {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    opacity: 1;
  }
}

@keyframes slide-right {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    opacity: 1;
  }
}

@-webkit-keyframes slide-left {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-200px);
    transform: translateX(-200px);
    opacity: 0;
  }
}

@keyframes slide-left {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-200px);
    transform: translateX(-200px);
    opacity: 0;
  }
}


/* Dark */

.Dark .MenuLine {
  background-color: #00E0D9;
}

.Dark .Navigation {
  background-color: #203b5b;
}

.Dark .Navigation nav a {
  color: #00E0D9;
}


/* Light */


.Light .MenuLine {
  background-color: #15273B;
}

.Light .Navigation {
  background-color: #E6E8EF;
}

.Light .Navigation nav a {
  color: #15273B;
}

.Light .Navigation button {
  background-color: #15273B;
  color: #E6E8EF;
}

.Light .Navigation .themeIcon {
  filter: invert(1);
}