#mhmm {
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
}

/** CUSTOM HAMBURGER MENU */
.et_pb_mhmm_menu .menu-button:before,
.et_pb_mhmm_menu .menu-button:after,
.et_pb_mhmm_menu .menu-button div,
.et_pb_mhmm_menu .menu-button-close:before,
.et_pb_mhmm_menu .menu-button-close:after,
.et_pb_mhmm_menu .menu-button-close div {
  height: 2px;
}

/* open menu */
.et_pb_mhmm_menu .menu-button {
  width: 60px;
  height: 40px;
}

.et_pb_mhmm_menu .menu-button:before {
  top: 10px;
  width: 40px;
  left: 10px;
}
.et_pb_mhmm_menu .menu-button:after {
  bottom: 10px;
  width: 50px;
}
.et_pb_mhmm_menu .menu-button div {
  margin-top: -1px;
  width: 50px;
  left: 10px;
}

.et_pb_mhmm_menu .menu-button:hover:after {
  left: 10px;
}
.et_pb_mhmm_menu .menu-button:hover div {
  left: 0px;
}


/* close menu */
.et_pb_mhmm_menu.menu-style-slide_right .menu-button-close {
  right: 70px;
  -webkit-transform: translateX(0px) !important;
          transform: translateX(0px) !important;
}
.et_pb_mhmm_menu .menu-button-close:before {
  top: 15px;
}
.et_pb_mhmm_menu .menu-button-close:after {
  bottom: 15px;
}

/* menu container */
.et_pb_mhmm_menu.menu-style-slide_right nav {
  border-top: 80px solid white;
  min-width: 480;
  max-width: 100vw;
}

@media (max-width: 479px) {
  .et_pb_mhmm_menu.menu-style-slide_right nav {
    min-width: 0 !important;
  }
}

.et_pb_mhmm_menu.menu-style-slide_right nav ul {
  height: auto;
  top: 80px;
  left: 80px;
  right: 80px;
  width: auto;
  bottom: 0;
}

.et_pb_mhmm_menu.menu-style-slide_right nav ul li > a {
  position: relative;
}

.et_pb_mhmm_menu.menu-style-slide_right nav ul li.current-menu-item > a {
  color: #006b59 !important;
}

.et_pb_mhmm_menu.menu-style-slide_right nav ul li > a:before {
  content: '';
  position: absolute;
  left: -40px;
  top: 0;
  display: block;
  width: 28px;
  height: 100%;
  
  -webkit-transition: all .25s;
  transition: all .25s;
  
  background-image: url("assets/arrow_12.png");
  
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
  
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);

  opacity: 0;
}

.et_pb_mhmm_menu.menu-style-slide_right nav ul li > a:hover:before {
  opacity: 1;
}

.et_pb_mhmm_menu.menu-style-slide_right nav ul li.current-menu-item > a:before {
  background-image: url("assets/arrow_green.png");
  opacity: 1;
}

.et_pb_mhmm_menu.menu-style-slide_right nav ul li a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: white;
  opacity: 0.3;
}

/** SEARCH FIELD */
.et_pb_search {
  border: none;
  padding: 5px;
  -webkit-box-flex: 2;
  -ms-flex-positive: 2;
  flex-grow: 2;
  margin-right: 40px;
}

.et_pb_search input.et_pb_searchsubmit {
  position: relative;
  float: right;
  text-indent: -10000px;
  width: 30px;
  height: 30px;
  background-color: transparent !important;
  background-image: url('assets/search.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 2;
}

.et_pb_search .et_pb_searchform input.et_pb_s {
  z-index: 3;
  height: 40px !important;
  padding: 3px !important;
  padding-right: 30px !important;

  position: absolute;
  top: -5px;
  right: 0;

  background: none !important;
  border-bottom: 1px solid #83bcb2;
  outline: none;
  width: 0px;
  height: 100%;
  float: right;
  z-index: 3;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
  color: #83bcb2;
  opacity: 0;
}

.et_pb_search .et_pb_searchform input.et_pb_s div {
  background: none !important;
}

.et_pb_search .et_pb_searchform input.et_pb_s:hover, .et_pb_search .et_pb_searchform input.et_pb_s:focus {
  width: 250px;
  max-width: 100vw;
  opacity: 1;
}

.et_pb_search .et_pb_searchform input.et_pb_s:focus {
  z-index: 1;
  cursor: text;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #83bcb2;
  -webkit-box-shadow: 0 0 0px 1000px #FFF inset;
  transition: background-color 0s ease-in-out 0s;
}