.ng-dropdown-container {
    display: inline-block;
    width: 100%;
    position: relative;
    color: white;
    background-color: transparent;
    /* background-image: linear-gradient(-180deg, #fafbfc, #eff3f6 90%); */
    padding: 0 0.5rem;
    border: 1px solid;
    border-radius: .25em;
    box-sizing: border-box;
    height: 30px;
    border-color: white;
}

.ng-dropdown-container:hover {

    background-color: transparent;
    /* background-image: linear-gradient(-180deg, #f0f3f6, #e6ebf1 90%); */
    background-position: -.5em;
}


.ng-dropdown-text {
    width: 100%;
    cursor: default;
    height: 30px;
    display: flex;
    justify-content: start;
    align-items: center;
    user-select: none;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    font-size: 14px;
}


.ng-dropdown-text::after {
    content: ' ';
    border: 5px solid transparent;
    border-top-color: white;
    top: 0.8rem;
    right: 1rem;
    width: 0;
    height: 0;
    transition: rotate 0.3s ease;
    margin-left: 24px;
    margin-top: 4px;

}

.ng-dropdown-options.show  {
    display: inline-block;
}

.ng-dropdown-options {
    max-height: 250px;
    max-width: 528px;
    overflow: auto;
    border: 1px solid #d1d5da;
    border-radius: 3px;
    box-shadow: 0 1px 5px rgba(27, 31, 35, .15);
    z-index: 99;
    background-color: #ffffff;
    position: absolute;
    font-size: 13px;
    top: 0;
    left: 0;
    margin-top: calc(2rem);
    display: none;
    list-style: none;
    padding: 0;
    box-sizing: border-box;
}

.ng-dropdown-item {
    padding: 0.4rem 0.5rem;
    cursor: pointer;
    box-sizing: border-box;
    border-color: white;
    color: black;
    
}
.ng-dropdown-item.item {
    background-color: white !important;
}
.ng-dropdown-item.item:hover {
    background-color: var(--blue-main) !important;
    color: white;
}
.ng-dropdown-item.selected {
    font-weight: 600;
}

.ng-dropdown-search {
    padding: 7px;
    width: 100%;
    border: 1px solid #d1d5da;
    border-radius: 3px;
    box-sizing: border-box;

}

.ng-dropdown-item:hover {
    background: #f6f8fa;
}