.dropdown {
    list-style: none;
    position: relative;
    border: 1px solid #ccc;
    width: 298px;
    height: 32px;
    cursor: pointer;
    padding: 0;
}

.dropdown__arrow {
    position: absolute;
    right: 0;
    top: 4px;
    transition: transform 0.2s linear;
    color: #777;
}

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

.dropdown__list {
    width: 100%;
    position: absolute;
    left: 0;
    box-shadow: 0 5px 20px 2px rgba(0,0,0,.1);
    transition: opacity 0.1s cubic-bezier(0, 0, 0.38, 0.9), max-height 0.5s cubic-bezier(0, 0, 0.38, 0.9);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
}

.dropdown__list-container {
    position: relative;
}

.dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown__list-item {
    padding: 8px 0 8px 8px;
    transition: background-color 0.1s linear, color 0.1s linear;
    color: #444444;
    list-style-position: inside;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dropdown__list-item:hover,
.dropdown__list-item:focus {
    background-color: #bfdbf3;
}

#dropdown__selected, #country__selected {
    color: #444444;
    padding: 8px 0 8px 8px;
    list-style-position: inside;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.open {
    opacity: 1;
    overflow: auto;
    background-color: white;
    max-height: 408px;
    z-index: 2;
}
