.menu-container {
    bottom: 0;
    right: 0;
    position: fixed;
}

.menu-toggle-btn {
    height: 56px;
    width: 56px;
    bottom: 20px;
    right: 20px;
    position: absolute;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #122D3C;
    box-shadow: 0px 3px 5px 1px rgb(0 0 0 / 20%);
    z-index: 2;
    cursor: pointer;
}

.menu-toggle-btn i {
    font-size: 2rem;
    color: #eeeeee;
    transition: 0.5s;
}

.menu-toggle-btn.effect i {
    transform: rotate(135deg);
}

.menu-list {
    list-style: none;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: 1;
}

.menu-list .menu-item {
    height: 56px;
    width: 56px;
    bottom: 4px;
    right: 20px;
    position: absolute;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #122D3C;
    transition: 0.5s;
}

.menu-list .menu-item a {
    text-decoration: none;
    color: #eeeeee;
}

.menu-list .menu-item:hover {
    background-color: #D3CCBF;
}

.menu-list.effect .menu-item {
    box-shadow: 0px 3px 5px 1px rgb(0 0 0 / 20%);
}

.menu-list.effect .menu-item:nth-of-type(1) {
    bottom: 70px;
    right: 20px;
    transition-delay: 0.2s;
}

.menu-list.effect .menu-item:nth-of-type(2) {
    bottom: 136px;
    right: 20px;
    transition-delay: 0.1s;
}

.menu-list.effect .menu-item:nth-of-type(3) {
    bottom: 202px;
    right: 20px;
}