.select-container {
    position: relative;
    display: inline-block;
    width: 100%;
    z-index: 999;
}

.select-input {
    display: none;
    cursor: pointer;
    width: 100%;
    font-size: 13px;
    line-height: 1;
    padding: 12px 10px 12px 36px;
    background-image: url(../img/x-search_gray_icon.svg);
    background-size: 16px 16px;
    background-position: left 10px center;
    background-repeat: no-repeat;
    box-sizing: border-box;
    height: 40px;
    border-radius: 5px;
    flex-basis: 40px;
}

.select-input.active{
    display: block;
}

.dropdown-box {
    display: none;
    position: absolute;
    width: 100%;
    top: 41px;
    height: max-content;
    max-height: 300px;
    background-color: #fff;
    border-radius:5px;
    filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.25));
    overflow: hidden;
    z-index: 999;
}

.dropdown-box.active {
    display: flex;
    flex-direction: column;
}

.select-dropdown {
    position: relative;
    display: none;
    height: initial;
    overflow: auto;
    margin: 0 5px 0 0;
}

.select-dropdown::-webkit-scrollbar{
    width: 8px;
}

.select-dropdown::-webkit-scrollbar-thumb {
    width: 8px;
    background: #427F37;
    border: none;
    border-radius: 17px;
}

.select-dropdown::-webkit-scrollbar-track {
    background: #DDDDDD;
    border-radius: 17px;
    box-shadow: none;
    border: none;
}

.select-dropdown::-webkit-scrollbar-button {
    display: block;
    background: transparent;
    height: 3px;
}

.select-dropdown.active{
    display:block;
}

.select-option {
    font-size: 13px;
    padding: 10px;
    line-height: 18px;
    cursor: pointer;
}

.select-option:hover{
    background-color: rgba(240, 246, 239, .5);
}

.select-option.selected {
    background-color: #F0F5EF;
}

.no-results-message {
    font-family: "Roboto","Arial",sans-serif;
    font-size: 13px;
    padding: 10px;
    line-height: 18px;
}

#registration__currency,
#registration__country{
    pointer-events: none !important;
}

.field--currency .select-container {
    z-index: 998;
}
