@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&display=swap');
::-webkit-scrollbar {
    display: none;
}

.menu {
    position: absolute;
    padding: 8px;
    color: #fff;
    min-width: 250px;
    text-align: center;
    background: rgba(33, 33, 33, 0.7);
    font-family: 'Montserrat', sans-serif;
    box-shadow: 10px 9px 42px -5px rgba(0, 0, 0, 0.52);
    -moz-box-shadow: 10px 9px 42px -5px rgba(0, 0, 0, 0.52);
    -webkit-box-shadow: 10px 9px 42px -5px rgba(0, 0, 0, 0.52);
}

.head {
    display: block;
    overflow: hidden;
    margin-left: 10px;
    text-align: center;
    margin-right: 10px;
    white-space: nowrap;
}

.menu .head {
    height: 28px;
    font-size: 14px;
    color: #ffffff;
    font-weight: 300;
    line-height: 18px;
    text-align: center;
}

.menu .menu-items {
    overflow-y: auto;
    font-weight: 500;
    max-height: 362px;
}

.menu-items {
    margin-bottom: 2px;
}

.menu .menu-items .menu-item {
    display: block;
    padding: 7px;
    height: 16px;
    font-size: 13px;
    margin-top: 5px;
    text-indent: 5px;
    margin-bottom: 6px;
    border-radius: 10px;
    color: rgb(223, 223, 223);
    background: rgba(33, 33, 33, 0.8);
}

.menu-item-color-green {
    color: rgb(64, 226, 0);
}

.color-red {
    color: rgb(192, 0, 0);
}

.menu .menu-items .menu-item.selected {
    font-weight: 700;
    border-radius: 10px;
    letter-spacing: 0.2px;
    color: rgb(243, 243, 243);
    text-decoration-color: #ffffff;
    background: rgba(0, 119, 230, 0.8);
}

.menu .menu-items .menu-item.selected .color-green {
    color: rgb(243, 243, 243);
}

.menu .menu-items .menu-item.selected .color-red {
    color: rgb(243, 243, 243);
}

.menu.align-left {
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-right: 6px solid #1486C0;
}

.menu.align-top-left {
    top: 0;
    left: 40;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom: 6px solid #1486C0;
}

.menu.align-top {
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom: 6px solid #1486C0;
}

.menu.align-top-right {
    top: 20px;
    right: 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom: 6px solid #1486C0;
}

.menu.align-right {
    top: 50%;
    right: 0;
    border-top-left-radius: 10px;
    transform: translate(0, -50%);
    border-bottom-left-radius: 10px;
    border-left: 6px solid #1486C0;
}

.menu.align-bottom-right {
    right: 40;
    bottom: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-top: 6px solid #1486C0;
}

.menu.align-bottom {
    left: 50%;
    bottom: 0;
    border-top-left-radius: 10px;
    transform: translate(-50%, 0);
    border-top-right-radius: 10px;
    border-top: 6px solid #1486C0;
}

.menu.align-bottom-left {
    left: 40;
    bottom: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-top: 6px solid #1486C0;
}

.menu.align-center {
    left: 50%;
    top: 50%;
    border-radius: 10px;
    border-top: 6px solid #1486C0;
    transform: translate(-50%, -50%);
}