select {
    font-family: inherit;
}
/*
select {
    appearance: none; !* Removes default styles *!
    -webkit-appearance: none;
    -moz-appearance: none;



    padding: 10px;
    font-family: inherit;
    font-size: 16px;

    padding: 1em;
    border: 2px solid #777;
    border-radius: 4px;

    color: #333;
    cursor: pointer;
    outline: none;
}

!* Add some hover and focus effects *!
select:hover {
    border-color: #0056b3;
}

select:focus {
    box-shadow: 0 0 5px rgba(0, 91, 187, 0.5);
}

!* Styling the dropdown arrow *!
select::after {
    content: "▼";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}
*/
.select2 { margin-bottom: var(--gutter); }
.select2-container   {
    width: 100% !important;
}

/* Change the border, height, and font */

.select2-container .select2-selection--single {
   /* height: 40px;*/ height: auto !important;
    border: 2px solid #777 !important; /* Blue border */
    border-radius: 4px;
    font-size: 16px;
}

/* Change text color */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #333;
    padding: 8px;
}

/* Change the dropdown arrow */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 8px;
}

/* Change dropdown background and border */
.select2-dropdown {
    background-color: #fff;
    border: 2px solid #777;
    border-radius: 4px;
}

.select2-dropdown .select2-search__field { font-family: inherit; font-size: 16px; padding: 0.5em !important;}

/* Style options */
.select2-container--default .select2-results__option {
    padding: 1em;
    font-size: 16px;
    color: #000 !important;
}

/* Change hover effect */
.select2-container--default .select2-results__option--highlighted {
    background-color: var(--green) !important;
    color: #FFF !important;
}


/*multi */

/* Style selected items (tags) */
.select2-container--default .select2-selection--multiple {
    border: 2px solid var(--green);
    border-radius: 4px;
    /*min-height: 40px;*/
}

/* Style selected tag */
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color:var(--green-lighter);
    color: #000;
    border: none;
    border-radius: 3px;
    padding: 5px;
}

/* Style remove button on tag */
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #fff;
    margin-left: 5px;
    font-weight: bold;
}


/* Change placeholder text color */
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 50% !important; right:4px !important;
    transform: translateY(-50%) scale(1.5);
}

