@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.container {
    width: 100%;
    height: 100vh;
    background: linear-gradient(90deg, #f4109d 0%, #49313e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.selector {
    width: 80%;
    max-width: 350px;
}

#selectField {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

#selectField img{
    width: .75em;
    transition: transform 0.3s;
}

#list {
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    overflow: hidden;
}

.options {
    width: 100%;
    padding: 15px 0 15px 70px;
    list-style: none;
    cursor: pointer;
    box-sizing: border-box;
    position: relative;
}

.options img {
    width: 1.5625em;
    position: absolute;
    top: 12px;
    left: 25px;
}

.options:hover {
    background: rgba(255, 255, 255, 0.7);
}

.hide {
    visibility: hidden;
}

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