label[for="tos"], 
label[for="tos-acceptance"] {
    display: flex;
    align-items: end;
}
.payment_opt .checkbox {
    margin: 0;
}
.payment_opt .btn.btn-primary {
    margin-top: 20px;
}
input[type="checkbox"],
input[type="radio"]{
  /* change default input is hidden */
  -webkit-appearance: none; 
  appearance: none;   
}

input[type="checkbox"],
input[type="radio"],
.checkbox input[type=checkbox], 
.checkbox-inline input[type=checkbox], 
.radio input[type=radio], 
.radio-inline input[type=radio]{
  position:relative;
}

input[type="checkbox"] {
  border-radius: 3px;
}

input[type="radio"] {
  border-radius: 50%;
}

input[type="checkbox"], 
input[type="radio"] {
    margin-right: 10px;
    transform: translateY(5px);
    width: 20px;
    height: 20px;
    border:1px solid rgb(160, 165, 171);
    padding: 2px;
}

input[type="checkbox"]{
  border-radius:3px !important;
}


/* Create custom checkbox & Radio Button inside 
    - it is not styled yet, just square shape
*/
input[type="checkbox"]::before,
input[type=radio]::before {
  display: block;
  content: "";
  width: 14px;
  height: 14px;
  transition: 120ms transform ease-in-out;
  box-shadow: inset 14px 14px #FFF;
}

/* Styling to checkmark */
input[type="checkbox"]::before {
  transform-origin: bottom left;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transform: scale(0);
}



/* show only checkbox checked */
input[type="checkbox"]:checked::before{
  transform: scale(1);
}

/* Style to custom redio button */
input[type="radio"]::before {
  border-radius: 50%; 
  transform: scale(0);
}

/* Show radio button by checked */
input[type="radio"]:checked::before {
  transform: scale(.7);
}

/* RADIO BUTTON 2 - Black BG & White point */
.radio input[type=radio]:checked, .radio-inline input[type=radio]:checked {
  background-color: #ea4929;
}

.radio input[type=radio]::before, .radio-inline input[type=radio]::before {
  box-shadow: inset 14px 14px #fff !important;
}

/**/


input[type="checkbox"]:checked,
input[type="checkbox"]:focus-within,
input[type="checkbox"]:focus{
    border:1px solid #ea4929;
    background:#ea4929;
}

.checkbox input[type=checkbox], .checkbox-inline input[type=checkbox],
.ais-RefinementList-checkbox {
  accent-color: #ea4929;
  
}


.search-filters{
    background: #fff;
    border: 1px solid #eff1f3;
    height: -webkit-max-content;
    height: max-content;
    display: flex !important;
    justify-content: flex-start;
    flex-direction: column;
}

.search-filter-content:first-child {
    border-top: none;
}

.search-filter-content{
   padding: 1rem;
   font-size: 16px;
   border-top: 1px solid #eff1f3;
   background: #fff;
}

#side-filters{
  font-family: "Urbanist", sans-serif;
  font-size:16px;
}

.ais-HierarchicalMenu-count, .ais-Menu-count, .ais-RefinementList-count, .ais-ToggleRefinement-count,
.selected-filter .label {
    color: #f1a399 !important;
    background-color: #fef0ec !important;
    border-radius: 8px;
    padding: 8px 12px;
    font-weight: 600;
    font-family: "Urbanist", sans-serif;
    border: 0 none !important;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.selected-filter .label a{
  color: #f1a399 !important;
  font-weight: 600;
  font-family: "Urbanist", sans-serif;
}

@media(min-width:992px){
  .filter_sidebar .filter_title {
          color: #2D2D32 !important;
          background-color: #0000 !important;
          margin-bottom: 0;
          font-weight: 700;
          letter-spacing: 0.5px;
  }
  .filter_sidebar {
        border-right: none;
   }
}