﻿.HamburgerMenu{
    position: relative;
    width: fit-content;
    height: fit-content;
}

.FloatMenu{
    position: absolute;
    top: 100%;
    right: 0;

    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);

    background-color: white;
    width: 260px;
    height: 106px;
    border-radius: 8px;

    border-style: solid;
    border-width: 1px;
    border-color: #e9e9e9;
}

.FloatMenuItem{
    height: 50%;
    padding: 0 20px;

    color: #333333;
}
.FloatMenuItem.top{
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: #e9e9e9;
}