/* começa aqui */
.custom-select-details {
  position: relative;
  width: 100%;
  min-width: 230px;
}

.custom-button-details {
  width: 100%;
  height: 40px;
  cursor: pointer;
  list-style: none;
  background: #454648;
  color: #fff;
  text-align: left;
  text-transform: uppercase;
  padding-left: 10px;
  border:  1px solid #fff;
  background: url(../img/ico_arrow.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
}

.custom-select-details .radios-summary {
  display: none;
}

.custom-select-details .radios-summary::-webkit-details-marker {
  display: none;
}

.custom-select-details .radios-summary:focus {
  outline: none;
}

.list-detail-custom-select {
  width: 100%;
  background: #454648;
  position: absolute;
  top: 41px;
  left: 0;
  z-index: 10;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  max-height: 200px;
  overflow-y: auto;
  text-transform: uppercase;
  border: 1px solid #343536;
  visibility: hidden;
  opacity: 0;
  transition: all .2s ease-in-out;
}
.list-detail-custom-select.open{
  visibility: visible;
  opacity: 1;
  transition: all .2s ease-in-out;
}


.custom-select-details[open] .radios-summary:before {
  content: '';
  display: block;
  width: 100vw;
  height: 100vh;
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
}
.custom-select-details[open] {
  z-index: 100;
}

.list-detail-custom-select li {
  margin: 0;
  font-size: 14px;
  line-height: 130%;
}
.list-detail-custom-select li:hover {
  background: #343536;
  cursor: pointer;
}

.list-detail-custom-select li:last-child label {
  border-bottom: none;
}

/* FAKE SELECT */

.custom-select-details .radios-summary {
  counter-reset: radios;
}

.custom-select-details .radios-summary:before {
  content: var(--selection);
}

.custom-select-details input[type=radio] {
  counter-increment: radios;
  appearance: none;
  display: none;
}

.custom-select-details input[type=radio]:checked {
  display: inline;
  --display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 40px;
  padding: 0 10px;
  display: flex;
  align-items: center;
}

.custom-select-details input[type=radio]:after {
  content: attr(title);
  display: inline;
  font-size: 1rem;
}

.custom-select-details ul.list {
  counter-reset: labels;
}

.custom-select-details label {
  width: 100%;
  display: flex;
  padding: 1rem 10px;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
  justify-content: space-between;
}

.custom-select-details label span {
  --display: none;
  display: var(--display);
  width: 1rem;
  height: 1rem;
  border: 1px solid #727272;
  border-radius: 3px;
}

.page-equipe-search .container, .page-equipe-search {
  overflow: visible !important;
}

@media all and (max-width: 600px) {
  .page-equipe-search .form-search .custom-select-details {
    margin-bottom: 10px
  }
}