.dropdown {
    position: relative;
    margin-top: 15px;
}

.dropdown::before {
    content: "";
    position: absolute;
    top:26px;
    right:30px;
    transform:translate(0,-50%);
    z-index: 1000;
    width: 8px;
    height: 8px;
    border: 2px solid #333;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(-45deg);
    transition: 0.5s;
    pointer-events: none;
}

.dropdown.active::before {
    top: 30px;
    transform: rotate(-225deg);
}

.commands{
    width: 400px;
    cursor: pointer;
    background: #fff;
    font-size: 16pt;
    border: 1px solid black;
    outline: none;
    /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05); */
    padding: 12px 20px!important;
    border-radius: 10px;
    box-sizing: border-box;
}

.commands:hover{
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.dropdown .options {
    position: absolute;
    top: 70px;
    width: 100%;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
    display: none;
}

.dropdown.active .options {
    display: block;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.dropdown .options div {
    padding: 12px 20px;
    cursor: pointer;
}

.dropdown .options div:hover {
    background: #62baea;
    color: #fff;
}