.hamburger-menu {
    position: fixed;
    height: 100%;
    background-color: #ffffff;
    float: right;
    top: -100%;
    right: 0;
    z-index: 1041;
    padding: 1rem;
    transition: 0.5s ease-in-out;
    width: 100%;
    overflow-y: scroll;
    opacity: 0;
}

.hamburger-menu.show {
    top: 0;
    transition: .5s ease-in-out;
    opacity: 1;
/*     box-shadow: #ccc 1px 1px 10px; */
}

.hamburger-menu ul {
    padding: 0;
    margin: 0;
}

.hamburger-menu li {
    list-style-type: none;
    margin-bottom: .5rem !important;
    border-radius: 1rem;
}

.hamburger-menu-item.active,
.hamburger-menu li:hover {
    cursor: pointer;
    background-color:#e9e9e9;
    font-weight: bold;
}

.hamburger-menu a {
    text-decoration: none;
    color: #000;
}

.hamburger-header-menu {
    font-size: 14px;
    color: rgba(0, 0, 0, .5);
    font-weight: 300;
}

.hamburger-menu-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-weight: normal;
}

.btn-change-language {
    font-weight: normal !important;
}

.btn-change-language:hover {
    color: #dc260b !important;
}

.btn-change-language.active {
    font-weight: bold !important;
}