/* CUSTOM SELECT*/
.custom-inputs.custom-select {
  margin: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.custom-inputs.custom-select > label {  
  display: inline-block;
  font-size: 2.1rem;
  font-weight: 400;
  /*color: var(--white);*/
  padding: 1rem 8px;
}
.custom-inputs.custom-select > .dropdown-custom-select:not( [input-type="select2-dropdown"] ) {
  box-sizing: border-box;
  /*width: 100%;*/
  /*font-size: 1.6rem;*/
  /*min-width: 12em;*/
  /*position: relative;*/
  /*display: inline-block;*/
  /*min-height: 3em;*/
  /*max-height:3em;*/
  /*overflow:hidden;*/
  /*cursor: pointer;*/
  /*text-align: left;*/
  /*white-space: nowrap;*/
  /*color: var(--white);*/
  /*background: var(--pink);*/
  /*outline: none;*/
  /*border: .06em solid var(--pink);*/
  /*transition: .5s all ease;*/
  /*z-index: 20;*/
  /*border-radius: 50px;*/
}
.custom-inputs.custom-select > .dropdown-custom-select:not( [input-type="select2-dropdown"] )::after {
  content:"";
  position: absolute;
  right: 1em;
  top: 1.2em;
  /*border: .4em solid var(--white);*/
  /*border-color: var(--white) transparent transparent transparent;*/
  /*transition: .5s all ease;*/
}
.custom-inputs.custom-select > .dropdown-custom-select:not( [input-type="select2-dropdown"] ) > .drop-select-relative {
  position: relative;
  /*height: 50px;*/
  /*margin-bottom: 10px;*/
  width: 100%;
}
.custom-inputs.custom-select > .dropdown-custom-select :not( [input-type="select2-dropdown"] )> .drop-select-relative button {
  background-color: transparent;
  color: var( --dark );
  outline: none !important;
  border: 0;
}
.custom-inputs.custom-select > .dropdown-custom-select:not( [input-type="select2-dropdown"] ) > .drop-select-relative button + .drop-select-absolute {
  transition: top 0.2s ease-in, opacity 0.3s ease-in;
  background: #f4f4f4;
  visibility: hidden;
  position: absolute;
  z-index: 100;
  opacity: 0;
  width: 100%;
  right: 0;
  top: 0;
}

.custom-inputs.custom-select.cvi {
  width: 100%;
  position: relative;
  border-bottom: #707070 solid;
}

/* ACTIVE STATE */
.custom-inputs.custom-select > .dropdown-custom-select:not( [input-type="select2-dropdown"] ).expanded {
  /*border: .06em solid var(--pink);*/
  padding: 0;
  /*box-shadow: rgba(0, 0, 0, 0.1) 3px 3px 5px 0px;*/
  z-index: 25;
  max-height: max-content;
  border-radius: 0;
}
.custom-inputs.custom-select > .dropdown-custom-select:not( [input-type="select2-dropdown"] ).expanded > .drop-select-relative button + .drop-select-absolute {
  visibility: visible;
  opacity: 1;
  top: 100%;
}

.custom-inputs.custom-select > .dropdown-custom-select:not( [input-type="select2-dropdown"] ).expanded label:hover {
  /*color:var(--light-purple);*/
}
.custom-inputs.custom-select > .dropdown-custom-select:not( [input-type="select2-dropdown"] ).expanded input:checked + label {
  /*color:var(--light-purple);*/
}

.dropdown-custom-select:not( [input-type="select2-dropdown"] ) input:focus + label {
  background: #def;
}

/*.dropdown-custom-select:not( [input-type="select2-dropdown"] ) input {
  width: 1px;
  height: 1px;
  display: inline-block;
  position: absolute;
  opacity: 0.01;
}
.dropdown-custom-select:not( [input-type="select2-dropdown"] ) label {
  font-weight: 500;
  text-transform: capitalize;
  display:block;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  line-height: 2em;
  padding-left: 1em;
  padding-right: 3em;
  cursor: pointer;
  position: relative;
  /*transition: .5s color ease;
}
.dropdown-custom-select label:not(:first-of-type) {
  /*border-top: .06em solid #fff;*
}
.dropdown-custom-select label:nth-child(2) {
  /*margin-top: 3em;*
  /*border-top: .06em solid #fff;*
}
.dropdown-custom-select:not( [ input-type="select2-dropdown" ] ) input:checked + label {
  display:block;
  border-top: none;
  position: absolute;
  top: 0;
  width: 100%;
}
.dropdown-custom-select:not( [ input-type="select2-dropdown" ] ) input:checked + label:nth-child(2) {
  margin-top: 0;
  position: relative;
}*/
/* END CUSTOM SELECT*/

/* SELECT 2 */
.custom-inputs.custom-select > .dropdown-custom-select[input-type="select2-dropdown"] + .select2.select2-container.select2-container--default {
  min-width: max-content !important;
}
.custom-inputs.custom-select > .dropdown-custom-select[input-type="select2-dropdown"] + .select2.select2-container.select2-container--default .select2-selection--single {
  background-color: transparent;
  border-radius: 0;
  border: 0px solid #aaa;
  border-bottom: 1px solid #aaa;
}

/* CONTENEDOR SELECT 2 */
.select2-container.select2-container--default .select2-dropdown .select2-results .select2-results__options .select2-results__option {
  /*border: 1px solid black;*/
}
.select2-container.select2-container--default .select2-dropdown .select2-results .select2-results__options .select2-results__option[aria-disabled="true"] {
  display: none;
}
.select2-container.select2-container--default .select2-dropdown .select2-results .select2-results__options .select2-results__option[aria-selected="true"] {
  background-color: #fafafa;
  font-weight: 600;
  color: var( --pink );
}
.select2-container.select2-container--default .select2-dropdown .select2-results .select2-results__options .select2-results__option--highlighted[aria-selected] {
  background-color: var( --pink );
  color: white;
}
