
.dropdownsearch {
    height: 100%;
    align-items: center;
    justify-content: center;
   
}

.options {
    margin: 0;
    max-width: 100%;
    width: 100%;
  
}

@media(max-width:34em) {
    .main {
        min-width: 100%;
        width: auto;
    }
}

.dropdownsearch select {
    display: none !important;
}

.customdropdown-select {
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#40FFFFFF', endColorstr='#00FFFFFF', GradientType=0);
    background-color: #fff;
    border-radius: 4px;
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    float: left;

    font-weight: normal;
    height: 42px;
    line-height: 28px;
    outline: none;
    padding-left: 18px;
    padding-right: 30px;
    position: relative;
    text-align: left !important;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: auto;
    padding: 7px 15px 7px;
    border: 1px solid #6e6e6e;
    box-shadow: none;
    font-size: 14px;
    font-family: 'FordAntenna';
    font-stretch: normal;
}

.customdropdown-select span, .customdropdown-select .list ul li {
    font-size: 16px;
    font-stretch: normal;
    font-weight: 400;
    font-stretch: normal;
    letter-spacing: 1px;
    color: var(--fds-color--primary);
}


.customdropdown-select .list ul li.selected{
  font-weight: 600;
  color: var(--fds-color--primary);
  
}

    .customdropdown-select:focus {
        background-color: #fff;
    }

    .customdropdown-select:hover {
        background-color: #fff;
    }

    .customdropdown-select:active,
    .customdropdown-select.open {
        background-color: #fff !important;
        border-color: #bbb;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05) inset;
    }

    .customdropdown-select:after {
        height: 0;
        width: 0;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 4px solid #777;
        -webkit-transform: origin(50% 20%);
        transform: origin(50% 20%);
        transition: all 0.125s ease-in-out;
        content: '';
        display: block;
        margin-top: -2px;
        pointer-events: none;
        position: absolute;
        right: 10px;
        top: 50%;
    }

    .customdropdown-select.open:after {
        -webkit-transform: rotate(-180deg);
        transform: rotate(-180deg);
    }

    .customdropdown-select.open .list {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
        pointer-events: auto;
    }

    .customdropdown-select.open .option {
        cursor: pointer;
    }

    .customdropdown-select.wide {
        width: 100%;
    }

        .customdropdown-select.wide .list {
            left: 0 !important;
            right: 0 !important;
        }

    .customdropdown-select .list {
        box-sizing: border-box;
        transition: all 0.15s cubic-bezier(0.25, 0, 0.25, 1.75), opacity 0.1s linear;
        -webkit-transform: scale(0.75);
        transform: scale(0.75);
        -webkit-transform-origin: 50% 0;
        transform-origin: 50% 0;
        box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.09);
        background-color: #fff;
        border-radius: 6px;
        margin-top: 4px;
        padding: 3px 0;
        opacity: 0;
        overflow: hidden;
        pointer-events: none;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 999;
         height: 150px;
        overflow: auto;
        border: 1px solid #ddd;
    }

        .customdropdown-select .list:hover .option:not(:hover) {
            background-color: transparent !important;
        }

    .customdropdown-select .dd-search {
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0.5rem;
    }

    .customdropdown-select .dd-searchbox {
        width: 90%;
        padding: 0.5rem;
        border: 1px solid #999;
        border-color: #999;
        border-radius: 4px;
        outline: none;
    }

        .customdropdown-select .dd-searchbox:focus {
            border-color: #12CBC4;
        }

    .customdropdown-select .list ul {
        padding: 0;
    }

    .customdropdown-select .option {
        cursor: default;
        font-weight: 400;
        line-height: 40px;
        outline: none;
        padding-left: 18px;
        padding-right: 29px;
        text-align: left;
        transition: all 0.2s;
        list-style: none;
          
    }

        .customdropdown-select .option:hover,
        .customdropdown-select .option:focus {
            background-color: #f6f6f6 !important;
        }


            .customdropdown-select .option.selected:focus {
                background: #f6f6f6;
            }

    .customdropdown-select a {
        color: #aaa;
        text-decoration: none;
        transition: all 0.2s ease-in-out;
    }

        .customdropdown-select a:hover {
            color: #666;
        }
