.content-input input,
.content-select select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

@media only screen and (min-width:320px) and (max-width:768px) {
    .form {
        width: 85%;
    }

    /* Eliminamos la fecha que por defecto aparece en el desplegable */
    /*	.content-select select::-ms-expand {
		display: none;
	} */
    .content-select {
        max-width: 100%;
        position: relative;
        align-items: center !important;
        text-align: center !important;
        ;
    }

    .content-select select {
        display: inline-block;
        width: 100%;
        text-align: center !important;
        ;
        cursor: pointer;
        padding: 7px 10px;
        height: 42px;
        outline: 0;
        border: 0;
        border-radius: 0;
        background: #f0f0f0;
        color: #7b7b7b;
        font-size: 1em;
        color: #999;
        font-family: 'Quicksand', sans-serif;
        border: 2px solid rgba(0, 0, 0, 0.2);
        border-radius: 12px;
        position: relative;
        transition: all 0.25s ease;
    }

    select {
        display: inline-block;
        width: 100%;
        text-align: center !important;
        ;
        cursor: pointer;
        padding: 7px 10px;
        height: 42px;
        outline: 0;
        border: 0;
        border-radius: 0;
        background: #f0f0f0;
        color: #dee0e6 !important;
        font-size: 1em;
        font-family: 'Quicksand', sans-serif;
        border: 2px solid rgba(0, 0, 0, 0.2);
        border-radius: 12px;
        position: relative;
        transition: all 0.25s ease;
    }

    .content-select select:hover {
        background: #B1E8CD;
    }

    /* 
Creamos la fecha que aparece a la izquierda del select.
Realmente este elemento es un cuadrado que sólo tienen
dos bordes con color y que giramos con transform: rotate(-45deg);
*/
    .content-select i {
        position: absolute;
        right: 20px;
        top: calc(50% - 8px);
        width: 16px;
        text-align: center !important;
        ;
        height: 16px;
        display: block;
        border-left: 4px solid #2AC176;
        border-bottom: 4px solid #2AC176;
        transform: rotate(-45deg);
        /* Giramos el cuadrado */
        transition: all 0.25s ease;
    }

    .content-select:hover i {
        margin-top: 3px;
    }

    .content-select {
        text-align: center !important;
        ;
        align-items: center !important;
        display: inherit !important;
    }
}


/*theme movil*/

.select2-container--movil .select2-selection--single .select2-selection--multiple {
    /*border bottom del select */
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #10AF15;
    border-radius: 0;
    box-shadow: none;
    box-sizing: content-box;
    height: auto;
    margin: 0;
    outline: none;
    padding: 8px 0 5px 0;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.select2-container--movil .select2-selection--single .select2-selection__rendered {
    /*contenido opcion seleccionada*/
    color: #dee0e6;
    line-height: 28px;
    padding-left: 0;
}

.select2-container--movil .select2-selection--single .select2-selection__placeholder {
    /*placeholder en primera instancia*/
    color: #c5c7cc;
}

.select2-container--movil .select2-selection--single .select2-selection__arrow {
    /*ubicacion de la flecha */
    height: 26px;
    margin: 0.6rem 0 0.4rem 0;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px;
}

.select2-container--movil .select2-selection--single .select2-selection__arrow b {
    /*flecha hacia abajo */
    border-color: #10AF15 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0;
}

.select2-container--movil.select2-container--open .select2-selection--single .select2-selection__arrow b {
    /*fecha hacia arriba*/
    border-color: transparent transparent #10AF15 transparent;
    border-width: 0 4px 5px 4px;
}

.select2-container--movil .select2-search--dropdown .select2-search__field {
    /*border bottom al seleccionar una opcion */
    border: none;
    border-bottom: 1px solid #212529;
    border-radius: 0;
    outline: none;
}

.select2-container--movil .select2-search--dropdown .select2-search__field:focus:not([readonly]) {
    /*border bottom sin seleccionar una opcion */
    box-shadow: 0 1px 0 0 #212529;
    border-bottom: 1px solid #212529;
}

.select2-container--movil .select2-results>.select2-results__options {
    /*altura de los resultados al buscar */
    max-height: 200px;
    overflow-y: auto;
}

.select2-container--movil .select2-results__option[aria-selected=true] {
    /*opcion seleccionada al volver a elegir */
    background-color: #b8b8ad;
}

.select2-container--movil .select2-results__option--highlighted[aria-selected] {
    /* color de fondo al cambiar de opcion*/
    background-color: #212529;
    color: white;
}


/*theme movil*/

.select2-container--material {
    width: 100% !important;
}

.select2-container--material .select2-selection--single, .select2-container--material .select2-selection--multiple {
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #10AF15;
    border-radius: 0;
    box-shadow: none;
    box-sizing: content-box;
    height: auto;
    margin: 0;
    outline: none;
    padding: 8px 0 5px 0;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.select2-container--material .select2-selection--single .select2-selection__rendered, .select2-container--material .select2-selection--multiple .select2-selection__rendered {
    color: #dee0e6;
    /*placeholder y opcion seleccionada*/
    line-height: 28px;
    padding-left: 0;
}

.select2-container--material .select2-selection--single .select2-selection__clear, .select2-container--material .select2-selection--multiple .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
}

.select2-container--material .select2-selection--single .select2-selection__placeholder, .select2-container--material .select2-selection--multiple .select2-selection__placeholder {
    color: #c5c7cc;
}

.select2-container--material .select2-selection--single .select2-selection__arrow, .select2-container--material .select2-selection--multiple .select2-selection__arrow {
    height: 26px;
    margin: 0.6rem 0 0.4rem 0;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px;
}

.select2-container--material .select2-selection--single .select2-selection__arrow b, .select2-container--material .select2-selection--multiple .select2-selection__arrow b {
    border-color: #10AF15 transparent transparent transparent;
    /*flecha hacia abajo */
    border-style: solid;
    border-width: 5px 4px 0 4px;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0;
}

.select2-container--material.select2-container--open .select2-selection--single .select2-selection__arrow b, .select2-container--material.select2-container--open .select2-selection--multiple .select2-selection__arrow b {
    border-color: transparent transparent #10AF15 transparent;
    border-width: 0 4px 5px 4px;
}

.select2-container--material .select2-search--dropdown .select2-search__field {
    border: none;
    border-bottom: 1px solid #dee0e6;
    border-radius: 0;
    outline: none;
}

.select2-container--material .select2-search--dropdown .select2-search__field:focus:not([readonly]) {
    box-shadow: 0 1px 0 0 #dee0e6;
    border-bottom: 1px solid #dee0e6;
}



.select2-container--material .select2-search--inline .select2-search__field {
    background: transparent;
    border: none !important;
    outline: 0;
    box-shadow: none !important;
}

.select2-container--material .select2-results>.select2-results__options {
    max-height: 200px;
    overflow-y: auto;
}

.select2-container--material .select2-results__option[role=group] {
    padding: 0;
}

.select2-container--material .select2-results__option[aria-disabled=true] {
    color: #bebebb;
}



.select2-container--material .select2-results__option[aria-selected=true] {
    background-color: #1c1d1f;
}



.select2-container--material .select2-results__option .select2-results__option {
    padding-left: 1em;
}

.select2-container--material .select2-results__option .select2-results__option .select2-results__group {
    padding-left: 0;
}

.select2-container--material .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -1em;
    padding-left: 2em;
}

.select2-container--material .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -2em;
    padding-left: 3em;
}

.select2-container--material .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -3em;
    padding-left: 4em;
}

.select2-container--material .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -4em;
    padding-left: 5em;
}

.select2-container--material .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -5em;
    padding-left: 6em;
}

.select2-container--material .select2-results__option--highlighted[aria-selected] {
    background-color: #212529;
    /* color de fondo al cambiar de opcion*/
    color: white;
}

.select2-container--material .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px;
}

.select2-dropdown {
    background-color: var(--bg-darkgrey) !important;
    color: white !important;
    border: 1px solid #636363;
    /*borde del desplegable  */
    border-radius: 4px;
    box-sizing: border-box;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    display: block;
    position: absolute;
    left: -100000px;
    width: 100%;
    z-index: 1051;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.select2-results {
    display: block;
}

.select2-results__options {
    list-style: none;
    margin: 0;
    padding: 0;
}

.select2-results__option {
    padding: 6px;
    user-select: none;
    -webkit-user-select: none;
}

.select2-results__option[aria-selected] {
    cursor: pointer;
}

.select2-results__option--highlighted {
    color: aqua !important;
}

.select2-container--open .select2-dropdown {
    left: 0;
}

.select2-container--open .select2-dropdown--above {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.select2-search--dropdown {
    padding: 0;
}

.select2-search--dropdown .select2-search__field {
    background-color: #51575e;
    color: white;
    padding: 4px;
    width: 100%;
    box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
    display: none;
}

.select2-container--material .select2-selection--multiple .select2-selection__choice {
    background-color: #2FAF10;
    border-radius: 16px;
    color: rgba(0, 0, 0, 0.6);
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 6px;
    padding: 0 12px;
}

.select2-container--material .select2-selection--multiple .select2-selection__choice__remove {
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    /*  float: right; */
    margin-left: 5px;
}

.select2-container--material .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #2FAF10;
}

.select2-container--material .select2-selection--multiple .select2-selection__rendered li {
    list-style: none;
}