/***   RADIO & CHECKBOX  ***/

.db-option {
  display: flex!important;
  align-items: center;
  gap: 15px;
  padding: 5px 15px;
  cursor: pointer;
}

.db-option input {
  display: none;
}

#newstype label {
  transition: background-color .15s ease-in-out;
  background: black;
  color: white;
  border-radius:999px;
  border: 2px solid black;
}
#newstype .db-option-selected {
  background: white;
  color: black;
}
#newstype .db-option:hover {
  background-color: #303942;
  border-color: #303942;
}
#newstype .db-option-selected:hover {
  background-color: #ececec;
  border-color: #303942;
}

/***   DROPDOWN  ***/

.morefilters {
  position: relative;
  right: 0;
  z-index: 1;
  display: flex;
  flex-direction: row;
  gap: 5px;
}
@media (min-width: 768px) {
  .morefilters {
    position: absolute;
  }
}

.db-custom-select {
  width: 110px;
}
.dropdown-btn {    
  background: rgb(255, 253, 250) 0 0 no-repeat padding-box;
  border-radius: 10px;
  border: 2px solid #000;
  /* min-height: 50px; */
  width: 110px;
  overflow: hidden;
  text-wrap: nowrap;
  text-overflow: ellipsis;
  /* mix-blend-mode: screen; */
  cursor: pointer;
  color: #000!important;
  padding: 5px 15px!important;
  position:relative;
}
.dropdown-btn .arrdown, .dropdown-btn .arrup {
  position: absolute;
  right: 0;
  top: 50%;
  bottom: 50%;
  margin: auto;
  margin-right: 15px;
} 

.dropdown-content div {
  background: rgb(230, 230, 230) 0 0 no-repeat padding-box;
  min-height: 50px;
  /* mix-blend-mode: screen; */
  cursor: pointer;
  color: #000!important;
  padding: 15px 15px 0 15px!important;
}


.dropdown-content {
  position: absolute; 
  z-index: 2;
}

.dropdown-content div:hover {
  background: rgb(255, 253, 250) 0 0 no-repeat padding-box;
}

.dropdown-content div::after {
  border-bottom:1px solid #fffdfa71;
  padding: 15px 0 0 0!important;
  content: "";
  display: block;
  width: 100%;
  height:1px;
  box-sizing: border-box;
}

.dropdown-content div:last-child   {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.dropdown-content div:last-child::after   {
  border-bottom: none;
}

.dropdown-content .selected {
  background: rgb(230, 230, 230) 0 0 no-repeat padding-box;
  font-weight: 600;
  color: #000!important;
}

.acfe-phone-number input {
  padding-left: 45px!important;
}