.rootSection {
  padding: 0 15px;
  position: relative;
}

.rootList {
  flex-wrap: nowrap;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 0 15px;
}

.rootSection::after {
  content: "";
  width: 30%;
  max-width: 80px;
  height: calc(100% - 40px);
  background: -o-linear-gradient(90deg,
      rgba(242, 243, 247, 0) 0%,
      #f2f3f7 85.42%);
  background: -moz-linear-gradient(90deg,
      rgba(242, 243, 247, 0) 0%,
      #f2f3f7 85.42%);
  background: -webkit-linear-gradient(90deg,
      rgba(242, 243, 247, 0) 0%,
      #f2f3f7 85.42%);
  background: linear-gradient(90deg, rgba(242, 243, 247, 0) 0%, #f2f3f7 85.42%);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
}

.rtl .rootSection::after {
  right: unset;
  left: 0;
}

.rootList::-webkit-scrollbar,
.productPagDiv::-webkit-scrollbar {
  height: 7px;
}

.rootList::-webkit-scrollbar-track,
.productPagDiv::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.rootList::-webkit-scrollbar-thumb,
.productPagDiv::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 7px;
}

.rootList::-webkit-scrollbar-thumb:hover,
.productPagDiv::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.rooteItem {
  white-space: nowrap;
  gap: 20px;
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  letter-spacing: 0%;
  color: var(--clr69);
  align-items: center;
}

.rooteItem:last-child svg {
  display: none;
}

/* main */
main {
  background-color: var(--clrF);
  border: 1px solid var(--clrD6);
  padding: 15px;
  position: relative;
}

.supplierTitle {
  width: 60%;
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 0%;
  padding-left: 10px;
  border-left: 2px solid var(--clrBlue1);
  color: var(--clr21);
}

.rtl .supplierTitle {
  border-left: none;
  border-right: 2px solid var(--clrBlue1);
  padding-left: 0;
  padding-right: 10px;
}

/* mainProductsSection */
.suppliersFilter {
  grid-template-columns: 1fr 1fr;
}

.supplierFilterBtn {
  padding: 5px 10px;
  border-bottom: 2px solid var(--clrC1);
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: var(--clr21);
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  height: 100%;
}

.supplierFilterBtn.blue {
  color: var(--clrBlue2);
  border-bottom: 2px solid var(--clrBlue2);
}

.supplierFilterBtn.orange {
  background-color: #fff9e8;
  border-bottom: 2px solid var(--orangeClr);
  color: var(--orangeClr);
}

.suppliersList {
  margin-top: 20px;
  gap: 15px;
  flex-wrap: wrap;
}

.supplierItem {
  width: 100%;
  flex-wrap: wrap;
  gap: 15px;
  background-color: var(--clrFa);
  border: 1px solid var(--clrD6);
  padding: 15px;
}

/*.supplierMainImg {
  display: none;
}*/

.supplierTitleDiv {
 width: calc(100% - 135px);
  gap: 20px;
}

.supplierName {
  width: fit-content;
  font-weight: 700;
  font-size: 18px;
  line-height: 110%;
  letter-spacing: 0px;
  vertical-align: middle;
  text-transform: capitalize;
  color: var(--clr21);
}

.supplierVerifyText {
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0px;
  text-transform: capitalize;
  color: var(--clr21);
  gap: 20px;
}

.supplierText {
  width: 100%;
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0px;
  color: var(--clr21);
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.supplierText span {
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 0px;
  vertical-align: middle;
  color: var(--clr86);
}

.supplierText.name  {
  display: none;
}

.supplierItemDiv {
   width: 100%;
  margin-top: 10px;
}

.whatsappLink {
 
  background-color: var(--greenClr);
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: -0.5px;
  color: var(--clrF);
}

.supplierImgDiv {
  position: relative;
  width: 100%;
}

.supplierImgDiv::after {
  content: "";
  width: 30%;
  max-width: 80px;
  height: calc(100% - 40px);
  background: -o-linear-gradient(90deg,
      rgba(242, 243, 247, 0) 0%,
      #f2f3f7 85.42%);
  background: -moz-linear-gradient(90deg,
      rgba(242, 243, 247, 0) 0%,
      #f2f3f7 85.42%);
  background: -webkit-linear-gradient(90deg,
      rgba(242, 243, 247, 0) 0%,
      #f2f3f7 85.42%);
  background: linear-gradient(90deg, rgba(242, 243, 247, 0) 0%, #f2f3f7 85.42%);
  position: absolute;
  right: 0;
  pointer-events: none;
  width: 40%;
  height: calc(100% - 10px);
  top: 0;
}

.rtl .supplierImgDiv::after {
  right: unset;
  left: 0;
}

.supplierImgList {
  gap: 7px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 0 20px 10px 0;
  width: 100%;
}

.rtl .supplierImgList {
  padding: 0 0 10px 20px;
}

.supplierImgList::-webkit-scrollbar {
  height: 7px;
}

.supplierImgList::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.supplierImgList::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 7px;
}

.supplierImgList::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.supplierImg {
  min-width: calc(100% / 2.5 - 7px * 2 / 3);
  height: auto;
  aspect-ratio: 1.1/0.8;
  border: 1px solid var(--bgClr);
}

.supplierRequest {
  width: 100%;
  height: 48px;
  border: 1px solid var(--clrBlue2);
  color: var(--clrBlue2);
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: -0.5px;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5px;
}

@media screen and (min-width: 550px) {
  .suppliersList {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
  }

  .supplierItem {
    width: calc(100% / 2 - 15px / 2);
  }
}


 .whatsappLink span {
    display: none;
  }

 .whatsappLink {
    width: 45px;
    height: 45px;
    padding: 0;
  }

@media screen and (min-width: 768px) {
  .suppliersFilter {
    display: -webkit-flex;
    display: flex;
    gap: 15px;
  }

  .supplierFilterBtn {
    width: fit-content;
  }

  .supplierMainImg {
    display: block;
    width: 109px;
    height: 109px;
    border: 1px solid var(--clrAd);
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }

  .supplierTitleDiv {
    width: calc(100% - 135px);
    justify-content: space-between;
    padding: 5px 0;
  }

  .supplierText.type {
    order: 3;
  }

  .supplierText.name {
    order: 4;
    display: -webkit-flex;
    display: flex;
  }

  .supplierText.product {
    order: 4;
  }

  .supplierText.region {
    order: 5;
  }

  .supplierItemDiv {
    order: 6;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 0;
  }

  .supplierText.date {
    display: -webkit-flex;
    display: flex;
    width: calc(100% - 80px);
  }

 

 
  .supplierImgDiv {
    order: 8;
  }

  .supplierImg {
    min-width: calc(100% / 4 - 15px * 3 / 4);
  }

  .supplierImgList,
  .rtl .supplierImgList {
    padding: 0 0 5px 0;
  }

  .supplierImgDiv::after {
    display: none;
  }

  .supplierRequest {
    order: 9;
    margin-top: -5px;
    height: 40px;
  }
}

@media screen and (min-width: 968px) {
  .suppliersSection {
    padding: 20px;
  }

  .supplierItem {
    width: calc(100% / 3 - 15px * 2 / 3);
  }
}

@media screen and (min-width: 1150px) {
  .suppliersList {
    gap: 15px;
  }

  .supplierItem {
    width: calc(100% / 4 - 15px * 3 / 4);
  }
}

@media screen and (min-width: 1250px) {
  .suppliersList {
    gap: 20px;
  }

  .supplierItem {
    width: calc(100% / 4 - 20px * 3 / 4);
  }
}

/* paginationDiv */
.paginationDiv {
  margin: 40px auto 0;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.prevPage,
.nextPage {
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.5px;
  gap: 10px;
  color: var(--clrBlue2);
}

.prevPage.deactive,
.nextPage.deactive {
  color: var(--clr5C);
}

.pageNumber,
.dotPage {
  height: 40px;
  width: 40px;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.5px;
  color: var(--clrBlue2);
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pageNumber.currentPage {
  background-color: var(--clrD6);
}

.morePage {
  display: none;
}

@media screen and (min-width: 768px) {
  .morePage {
    display: -webkit-flex;
    display: flex;
  }

  .paginationDiv {
    margin-bottom: 40px;
  }
}

/* requestModal */
.requestModalHeader {
  background-color: var(--clrBlue1);
  padding: 12px;
}

.requestModal .modalContent {
  padding: 0;
}

.requestHeaderTitle {
  font-weight: 700;
  font-style: Bold;
  font-size: 22px;
  line-height: 120%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: var(--clrF);
}

.requestCloserBtn {
  font-size: 16px;
  height: 30px;
  width: 30px;
  color: var(--clrF);
}

.requestForm {
  padding: 20px;
  max-height: 80dvh;
  overflow-y: auto;
}

.requestFormText1 {
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 0%;
  color: var(--clr21);
  padding-inline-start: 10px;
  border-left: 2px solid var(--clrBlue1);
  margin-bottom: 20px;
}

.rtl .requestFormText1 {
  border: none;
  border-right: 2px solid var(--clrBlue1);
}

.customFieldset {
  outline: none;
  border: none;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 7px;
}

.contentLabel {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0%;
  color: var(--clr21);
}

.contentTextarea {
  background-color: var(--bgClr);
  border: 1px solid var(--clrC1);
  padding: 15px;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0%;
  color: var(--clr69);
  height: 180px;
  resize: vertical;
  width: 100%;
  outline: none;
}

.translateBtn {
  gap: 10px;
  background-color: #c0d5fd;
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0.5px;
  color: #1f14bd;
  padding: 7px 0;
  width: 100%;
}

.translateBtn img {
  width: 30px;
  height: 30px;
}

.translateHint {
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -1%;
  color: #e55f0b;
  width: 100%;
}

.row2 {
  margin-top: 20px;
  gap: 20px;
  flex-wrap: wrap;
}

.formLabel {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0%;
  color: var(--clr21);
}

.photoInputList {
  gap: 8px;
}

.photoInputDiv {
  position: relative;
  width: calc(100% / 6 - 8px * 5 / 6);
  border-bottom: 1px solid var(--clrC1);
}

.photoInput {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 5;
}

.photoInputImg {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.customInput,
.customSelect {
  height: 48px;
  border: none;
  border-bottom: 2px solid var(--clrC1);
  background-color: var(--bgClr);
  padding: 0 15px;
  width: 100%;
  outline: none;
}

.submitFormBtn {
  background-color: var(--clrBlue2);
  min-height: 48px;
  padding: 0 25px;
  color: var(--clrF);
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0.5px;
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .row2 .customFieldset {
    width: calc(100% / 2 - 20px / 2);
  }

  .photoInputList {
    justify-content: space-between;
  }

  .photoInputDiv {
    width: 48px;
  }

  .translateBtn,
  .translateHint {
    width: calc(100% / 2 - 20px / 2);
  }

  .submitFormBtn {
    width: fit-content;
    padding: 0 40px;
  }
}

.requestResultTitle {
  font-weight: 700;
  font-style: Bold;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 1px;
  text-align: center;
  color: var(--clrBlue1);
}

.requestResultText {
  font-weight: 700;
  font-size: 25px;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: center;
  color: var(--clr21);
  margin-top: 40px;
}

.requestResultBtn {
  padding: 8px 12px;
  border: 1px solid var(--clrC1);
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: -0.5px;
  color: var(--clrC1);
  margin: 40px auto 0;
}
