/* Nav Border */
.navlinks.active {
  border-bottom: 10px solid #bb6c3e;
  transition: all 0.2s ease;
}

.wrapper {
  border-bottom: 1px solid #222;
}

.toggle {
  width: 100%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #111130;
  font-weight: 500;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 15px 0;
}
.content {
  position: relative;
  text-align: justify;
  line-height: 30px;
  height: 0;
  overflow: hidden;
  transition: all 0.2s;
}

/* Checkbox label 2 ----------------------------------------------------------------------------------------------- */
/* .checkboxes[type="radio"] {
  display: none;
} */
.checkbox_label2 {
  display: block;
  position: relative;
  cursor: pointer;
  width: 100%;
}
.sub_checkbox_title.active {
  background-color: #dfddda;
}

.checkbox_label2::before {
  color: #fff;
  display: block;
  border-radius: 50%;
  border: 2px solid #222;
  position: absolute;
  left: -40px;
  text-align: center;
  transition: all 0.2s linear;
  transform: scale(0);
  z-index: 999;
}

:checked + .checkbox_label2::before {
  content: "";
  background: url("https://cdn.rey-xpress.com/public/upload/page5/select.svg");
  color: #000;
  transform: scale(1);
  z-index: 99999;
  opacity: 1;
}
.sub_checkbox_title:last-child {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .checkbox_label2::before {
    color: #fff;
    display: block;
    border-radius: 50%;
    border: 1px solid #222;
    position: absolute;
    left: -30px;
    text-align: center;
    transition: all 0.2s linear;
    transform: scale(0);
    z-index: 999;
  }
}
