.wrapper {
  top: 15px;
  right: 0;
  height: 50px;
  width: 50px;
  background: #023DA7;
  overflow: hidden;
  clip-path: circle(0px at calc(100% - 45px) 25px);
  transition: clip-path 0.5s ease-in-out, top 0.5s ease-in-out, height 0.5s ease-in-out, width 0.5s ease-in-out, height 0.5s ease-in-out;
  position: fixed;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-menu.fixed .wrapper {
  position: fixed;
  overflow: unset;
  background: white;
}

.wrapper ul, .wrapper .logo_white {
  list-style: none;
  text-align: center;
  transition: all 0.2s ease-in 0s;
  opacity: 0 !important;
}

#active-menu:checked ~ .wrapper ul, #active-menu:checked ~ .wrapper .logo_white {
  opacity: 1 !important;
  transition: all 0.5s ease-in-out 0.5s;
}

#active-menu:checked ~ .wrapper {
  clip-path: circle(75%);
  border-radius: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #023DA7;
  opacity: 1;
}

.menu-mobile-placeholder {
  height: 50px;
  width: 50px;
}

.menu-btn {
  position: absolute;
  z-index: 2;
  right: 0px;
  top: 0px;
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  background: #023DA7;
  transition: all 0.3s ease-in-out;
  display: none;
  /* Small Devices, Tablets */
}
.menu-btn i {
  color: #fff;
}
@media only screen and (max-width: 992px) {
  .menu-btn {
    display: block;
  }
}

#active-menu:checked ~ .menu-btn i:before {
  content: "\f00d";
}

#active-menu:checked ~ .menu-btn i {
  color: #fff;
}

input#active-menu {
  display: none;
}

/*# sourceMappingURL=menu.css.map */
