.contextMenu{
    background-color: #eee;
    box-shadow: 0 0 10px #777;
    width: 10vw;
    border-radius: 0.5vh;
    position: absolute;
    overflow: hidden;
    z-index: 10000;
}

.contextMenu .option{
    display: inline-block;
    font-family: Montserrat;
    color: #555;
    width: 100%;
    padding-left: 5%;
    padding-top: 3%;
    padding-bottom: 3%;
    background-color: #eee;
    cursor: pointer;
    transition: 0.2s all;
    font-size: 20px;
}

.contextMenu .option:hover{
    background-color: #555;
    color: #eee;
}