/*MENU*/
.hamburger {
    position: absolute;
    top: 15px;
    right: 15px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 40px;
    padding: 5px;
    cursor: pointer;
    z-index: 100;
}
.hamburger span {
    transition: transform ease .3s;
}
.hamburger.active {top: 22px;}
.hamburger.active span:nth-child(even) {display: none;}
.hamburger.active span:nth-child(1) {
    position: absolute;
    transform: rotate(45deg);
}
.hamburger.active span:nth-child(3) {
    position: absolute;
    transform: rotate(-45deg);
}
.hamburger__item {
    display: block;
    width: 100%;
    height: 3px;
    margin: 3px 0;
    background-color: #949494;
    border-radius: 3px;
    transition: background-color 0.3s;
}
.menu.active {
    right: 0;
}
.menu {
    position: fixed;
    top: 0;
    right: -360px;
    bottom: 0;
    width: 320px;
    background-color: #ccc;
    z-index: 99;
    padding: 65px 10px;
}
.menu h2 {
    margin: 20px 0;
}
.menu-item-wrapper {
    margin: 10px 0;
}
.user-detail form {
    flex-direction: row !important;
    justify-content: space-evenly;
    align-items: center;

}
.menu form {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.menu form input {
    border: none;
    border-bottom: 1px solid #cecece;
    padding: 5px;
    margin-bottom: 5px;
    outline: none;
}
.menu form p {
    margin-bottom: 5px;
}
.menu form a {
    color: #143e8b;
    text-decoration: none;
}
.form-register {
    display: none;
}
.message {
    padding: 5px;
    border: 2px solid #ff3f3f;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    font-weight: bold;
}
.menu-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px solid black;
}
.menu-nav-item {
    width: 100%;
}
.menu-nav-item a {
    display: block;
    padding: 10px;
    color: #000000;
    text-decoration: none;
    border-bottom: 1px solid #000000;
    transition: all ease .3s;
}
.menu-nav-item:last-child a {
    border-bottom: none;
}
.menu-nav-item:hover a {
    background-color: #143e8b;
    color: #ffffff;
}

/*MENU*/