.dropdown{
    min-width: 15em;
    position: relative;
    margin: 2em;
}
body{
    background-color: #202020;
}
.dropdown * {
    box-sizing:border-box;
}
.select{
    background: #2a2f3b;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 2px solid #2a2f3b;
    border-radius: 0.5em;
    padding: 1em;
    cursor: pointer;
    transition: background 0.3s;
}

.select-clicked{
    border: 2px #26489a solid;
    box-shadow: 0 0 0.8em #26489a;
}

.select:hover{
    background: #323741;
}

.caret{
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #fff;
    transition: 0.3s; 
}

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

.menu{
    list-style: none;
    padding: 0.2em 0.5em;
    background: black;
    border: 1px #363a43 solid;
    box-shadow: 0 0.5em 1em rgba(0, 0, 0, 0.2);
    border-radius: 0.5em;
    color: #9fa5b5;
    position: absolute;
    top: 3em;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    opacity: 0;
    display: none;
    transition: 0.2s;
    z-index: 1;
}

.menu li{
    padding: 0.7em 0.5em;
    margin: 0.3em 0;
    border-radius: 0.5em;
    cursor: pointer;

}
.menu li:hover{
    background: #2a2d35;

}

.active{
    background: #23242a;
}

.menu-open{
    display: block;
    opacity: 1;
}

ul{
    cursor: pointer;
}


#navlist {
    background-color: black;
    position:absolute;
    width: 100%;
   top: 0;
    
}
     

#navlist a {
    float:left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    font-size: 15px;
}
 
.navlist-right{
    float:right;
}


#navlist a:hover {
    background: transparent;
    color: #20b2aa;
}
     

.search input[type=text]{
    width:300px;
    height:25px;
    border-radius:25px;
    border: none;
    color: black;
    font-size: 15px;
    padding-left: 9px;
}
     
.search{
    float:right;
    margin:7px;
}
     
.search button{
    background-color: transparent;
    color: white;
    float: right;
    padding: 5px 10px;
    margin-right: 16px;
    font-size: 12px;
    border: none;
    cursor: pointer;
}
#sumbit {
    color: white;
    background-color: black;
}

#sumbit:hover {
    background: color #20b2aa; 
    color: #20b2aa;
}

#search-field {
    background-color: white;
    color: black;
    content: center;
}

::placeholder{
    color: #202020;
}
