.custom-select-container {
  position: relative;
  box-sizing: border-box;
  display: inline-block;
}
.custom-select-container * {
  box-sizing: border-box;
}
.custom-select-container.is-disabled {
  opacity: .333;
}
.custom-select-opener {
  background-color: transparent;
  border : 1px solid #ffffff;
  border-radius: 3px;
  padding: 7px 18px 7px 43px;
  display: inline-block;
  cursor: pointer;
  width: auto;
  font-size : 18px;
  font-family: 'Poppins';
  font-weight: 500;
  color : #ffffff;
  line-height : 25px;
  background-repeat: no-repeat;
  background-size: 15px auto;
  background-position: 16px center;
  background-image : url('../../img/ticons/openSelect.svg');
}


.limiterTopMenuDesktop .custom-select-opener{
  border : none;
  background-color : #fff;
  font-size : 14px;
  line-height : 20px;
  padding : 3px 13px 3px 38px;
  background-image : url('../../img/ticons/openSelectDark.svg');
}

#priseLeadHome .fieldGroup.depart .custom-select-opener:after,
.limitLignesCommerciales .depart .custom-select-opener:after{
  content : "DÉPART";
}
#priseLeadHome .fieldGroup.arrivee .custom-select-opener:after,
.limitLignesCommerciales .arrivee .custom-select-opener:after{
  content : "ARRIVÉE";
}
#priseLeadHome .fieldGroup.conditionnement .custom-select-opener:after{
  content : "TYPE DE CONDITIONNEMENT";
}
#priseLeadHome .fieldGroup.quantite .custom-select-opener:after{
  content : "QUANTITÉ";
}
#priseLeadHome .fieldGroup.frequence .custom-select-opener:after{
  content : "FRÉQUENCE";
}

#priseLeadHome .custom-select-opener,
.limitLignesCommerciales .custom-select-opener{
  border : none;
  background-color : #fff;
  font-size : 18px;
  line-height : 25px;
  padding : 20px 65px 6px 20px;
  background-image : url('../../img/ticons/openSelectDark.svg');
  background-position: right 29px top 24px;
  position : relative;
}

#priseLeadHome .custom-select-opener:after,
.limitLignesCommerciales .custom-select-opener:after{
  position : absolute;
  left : 20px;
  top : 7px;
  color : #75A0A6;
  font-size : 12px;
  line-height : 17px;
  font-weight: 500;
}

@media screen and (min-width : 1024px){
  #priseLeadHome .custom-select-opener,
  .limitLignesCommerciales .custom-select-opener{
    font-size : 16px;
    background-position: right 10px top 22px;
    padding : 20px 65px 6px 10px;
  }
  #priseLeadHome .custom-select-opener:after,
  .limitLignesCommerciales .custom-select-opener:after{
    left : 10px;
  }
}



.custom-select-container select {
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.custom-select-panel {
  transition: opacity .5s ease;
  overflow: hidden;
  background-color: #fff;
  position: absolute;
  top: 100%;
  z-index: 99999;
  width: 100%;
  visibility: hidden;
  opacity: 0;
}

.topMenuMobile .custom-select-panel{
  top : inherit;
  bottom : 100%;
}

.custom-select-container.is-open .custom-select-panel {
  opacity: 1;
  visibility: visible;
}
.custom-select-option {
  padding: 0.5em;
  font-size : 18px;
  color : #393939;
}
.custom-select-option.has-focus {
  background-color: LightBlue;
}
.custom-select-option.is-selected::before {
  content: "✔";
  padding-right: 0.5em;
}
.custom-select-optgroup > .custom-select-option {
  padding-left: 2em;
}
.custom-select-optgroup::before {
  content: attr(data-label);
  display: block;
  padding: 0.5em;
  color: #888;
}
