*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.container{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(#39adf0, #0063b4);
}

.selector{
    width: 350px;
}

#selectField{
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 5px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

#selectField img{
    width: 12px;
    transition: transform 0.5s;
}

#list{
    width: 100%;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.7);
    overflow: hidden;
    transition: visibility 0.5;
}

.options{
    width: 100%;
    padding: 15px;
    list-style: none;
    cursor: pointer;
    box-sizing: border-box;
    position: relative;
    padding: 15px 0 15px 70px;
}

.options img{
    width: 25px;
    position: absolute;
    top: 12px;
    left: 25px;
}

.options:hover{
    background: rgba(255, 255, 255, 0.7);
}

.hide{
    visibility: hidden;
}

.rotate{
    transform: rotate(180deg);
}