﻿
.menu-holder {
    width:100%;
    display:block;
}

.menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow:hidden;
    padding: 2% 2%;
}

.menu li {
    position: relative;
    z-index: 1;
    border-width: 0px;
    border-style: solid;
}

.left {
    float: left;
}

.right {
    float: right;
    margin-right:0px;
}
.toggle-menu {
    display:block;
}

.name-holder-mobile {
    display:none;
}

.menu-item {
    margin-right: 5px;
    padding: 10px;
    display: inline-block;
    width: 128px;
    border-width: 2px;
    border-style: solid;
    border-radius: 20px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.menu-item::after {
  content: '';
  bottom: -45px;
  height: 45px;
  left: 0;
  position: absolute;
  transition: bottom 300ms cubic-bezier(0.680, -0.550, 0.265, 1.550);
  width: 100%;
  z-index: -1;
}

.menu-item:hover::after {
  bottom: -5px;
}

