.wrapper {
  border-bottom: 1px solid #222;
}
/* Pagination section  */
.pagination {
  text-transform: capitalize;
  margin-top: 50px;
  margin-bottom: 130px;
  color: gray;
  font-size: 24px;
  line-height: 24px;
}
.pagination span {
  color: black;
}

.toggle {
  width: 100%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #111130;
  font-weight: 500;
  outline: none;
  cursor: pointer;
  padding: 15px 10px;
}
.toggle {
  border-bottom: 1px solid #222;
}
@media (max-width: 1280px) {
  .toggle {
        max-width: 100% !important;
    }
}
.content {
  position: relative;
  text-align: justify;
  line-height: 30px;
  height: 0;
  overflow: hidden;
  transition: all 0.2s;
}

/* selected image section ---------------------------------------------------------------------------------------- End */

.checkboxes[type="radio"] {
  display: none;
}
.checkbox_label {
  display: block;
  position: relative;
  cursor: pointer;
  background-color: #000000;
}

:checked + .checkbox_label img {
  opacity: 0.5;
  background: rgb(255, 255, 255);
  transition: 0.1s;
}

/* selected image section overlay  select icon ---------------------------------------------------------------------------------------- End */

.checkboxes[type="radio"] {
  display: none;
}
.checkbox_label {
  display: block;
  position: relative;
  cursor: pointer;
  background-color: #000000;
}

.checkbox_label::before {
  color: #fff;
  content: "";
  background: url("https://cdn.rey-xpress.com/public/upload/shopKitchenCabinets/select.svg");
  display: block;
  border-radius: 50%;
  position: absolute;
  display: flex;
  width: 25px;
  height: 25px;
  inset: 0;
  margin: auto;
  text-align: center;
  transition: all 0.2s linear;
  transform: scale(0);
}

:checked + .checkbox_label::before {
  content: "";
  color: #000;
  background-color: #ffffff;
  transform: scale(1);
  z-index: 99999;
  opacity: 1;
}

:checked + .checkbox_label img {
  opacity: 0.5;
  background: rgb(255, 255, 255);
  transition: 0.1s;
}

@media (max-width: 768px) {
  .checkbox_label::before {
    color: #fff;
    content: "";
    background: url("https://cdn.rey-xpress.com/public/upload/shopKitchenCabinets/select.svg");
    display: block;
    border-radius: 50%;
    position: absolute;
    display: flex;
    width: 15px;
    height: 15px;
    inset: 0;
    margin: auto;
    text-align: center;
    transition: all 0.2s linear;
    transform: scale(0);
  }
}
/* Checkbox label 2 ----------------------------------------------------------------------------------------------- */
/* .checkboxes[type="radio"] {
  display: none;
} */
.checkbox_label2 {
  display: block;
  position: relative;
  cursor: pointer;
  width: 100%;
}
.sub_checkbox_title.active {
  background-color: #fff;
}

.checkbox_label2::before {
  color: #fff;
  display: block;
  border-radius: 50%;
  border: 2px solid #222;
  position: absolute;
  width: 25px;
  height: 25px;
  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/shopKitchenCabinets/select.svg");
  background-position: center;
  color: #000;
  transform: scale(1);
  z-index: 99999;
  opacity: 1;
}
.sub_checkbox_title:last-child {
  margin-bottom: 20px;
}

@media (max-width: 1280px) {
  .checkbox_label2::before {
    color: #fff;
    display: block;
    border-radius: 50%;
    border: 1px solid #222;
    position: absolute;
    width: 15px;
    height: 15px;
    left: -30px;
    text-align: center;
    transition: all 0.2s linear;
    transform: scale(0);
    z-index: 999;
  }
}

/* Product image section --------------------------------------- */
.product_image {
  display: none;
}
.product_image.active {
  display: block;
}

.headBannerTitle {
  font-size: 50px;
  line-height: 55px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  display: grid;
  place-items: center;
  letter-spacing: 1px;
}

@media (max-width: 1024px) {
  .headBannerTitle {
    font-size: 22px;
    line-height: 25px;
  }
}

