.label{
    font-family: var(--font-dm-sans);
    font-size: 22px;
    font-weight: 700;
    margin-right: 30px;
}

.dropdown{
    position: relative;
    display: inline-block;
    font-family: var(--font-dm-sans);
    font-size: 18px;
    font-weight: 700;
}

.selected{
    font-family: var(--font-dm-sans);
    font-size: 18px;
    font-weight: 700;
    background-color: #901C1C;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 12.5px 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 180px;
    transition: background-color 0.2s ease;
}

.icon{
    display: flex;
    align-items: center;
    z-index: 3;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.icon.open{
    transform: rotate(180deg);
}

.menu{
    position: absolute;
    top: -35%;
    left: 0%;
    background-color: #901C1C;
    border-radius: 5px;
    padding: 0;
    list-style: none;
    width: 100%;
    z-index: 2;
    animation: fadeIn 0.15s ease-in-out;
}

.menu li{
    color: white;
    border-bottom: 1.5px solid white;
    width: 80%;
    margin: 0 auto;
    padding: 12.5px 0px;
    cursor: pointer;
}

.menu li:last-child{
    border-bottom: none;
}


@keyframes fadeIn{
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
