*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}
.container{
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #730228, #f44336);
    display: flex;
    align-items: center;
    justify-content: center;
}
.selector{
    width: 350px;
    max-width: 70%;
}
#select-field{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    cursor: pointer;
}
#select-field img{
    width: 12px;
    transition: transform 0.5s;
}
#list{
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    overflow: hidden;
}
.options{
    width: 100%;
    padding: 15px 20px;
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
}
.options img{
    width: 25px;
}
.options:hover{
    background: rgba(255, 255, 255, 0.7);
}
.hide{
    visibility: hidden;
}
.rotate{
    transform: rotate(180deg);
}