.dropdown2 {
    position: relative;
}

.dropdown2--hidden {
    display: none;
}

.dropdown2-menu-selector {
    position: relative;
    outline: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    height: 48px;
    padding: 8px 12px;
    border: 1px solid #dee2e6;
    border-radius: .5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
}

.form-floating .dropdown2-menu-selector {
    padding-top: 1.625rem;
    line-height: 1.25;
}

.dropdown2-menu--top {
    margin: 0;
    bottom: 100%;
    top: auto;
}

.dropdown2-menu {
    display: none;
    opacity: 0;
    transform: scaleY(0.8);
    -webkit-transform: scaleY(0.8);
    -moz-transform: scaleY(0.8);
    -ms-transform: scaleY(0.8);
    overflow-y: auto;
    /*max-height: calc(100vh - 100px);*/
    max-height: 246px;
    z-index: 99999999;
    -webkit-transition: all .2s;
    transition: all .2s;
    position: absolute;
    width: 100%;
    outline: none;
    min-width: 200px;
    list-style-type: none;
    padding: 0;
    margin: 0;
    background:#ffffff;
    box-shadow: 0 2px 7px #00000026,0 5px 17px #0003;
    -webkit-box-shadow: 0 2px 7px #00000026,0 5px 17px #0003;
    border-radius: .5rem;
}

.p-10 {
    padding: 10px;
}

.dropdown2-menu-search-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    border-radius: 50rem;
    border: 1px solid #dee2e6;
    padding: 4px 20px;
}

.dropdown2-menu-search {
    width: 100%;
    margin-left: 8px;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    color: #686868;
    height: 38px;
}

/*.dropdown2-no-results {
    padding:8px 16px;
}*/

.dropdown2-menu-list {
    padding: 0;
    margin: 0;
}

.dropdown2-menu--expanded {
    display: block !important;
    opacity: 1 !important;
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
}

.dropdown2-menu-item {
    display:block;
    cursor:pointer;
    position:relative;
}

.dropdown2-menu-item .dropdown2-menu-item-link,
.dropdown2-no-results {
    padding:8px 16px;
    cursor:pointer;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
}

.dropdown2-menu-item:last-child {
    padding-bottom: 0;
}

.dropdown2-menu-item:hover {
    background: #eeeeee;
}



























.select-wrapper,
.select-dropdown-container
{
    min-width: 100%;
}

.select-wrapper .select-input{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
}

.select-wrapper .dropdown:hover,
.select-wrapper .select-input:hover{
    cursor: pointer;
}

.toggle-options,
.select-option{
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    color: rgba(0,0,0,.87);
    padding-left: 16px;
    padding-right: 16px;
    font-size: 1rem;
    font-weight: 400;
    background-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.toggle-options.selected,
.select-option.active,
.select-option.selected.active {
    background-color: #eee;
}

.toggle-options:hover,
.select-option:hover:not(.disabled) {
    background-color: #ddd;
}
/*

.select-dropdown-container.open{
    display: block;
}

.select-dropdown-container.close{
    display: none;
}*/
