.togglefilterslabel {
  display: none;
  margin-bottom: 10px;
}
#togglefilters {
  display: none;
}
.filter_checkbox,
.filter_checkbox_en {
    width: 100%;
    height: 85vh;
    background: white;
    display: grid;
}
.filter_checkbox {
    float: right;
}
.filter_checkbox_en {
    float: left;
}
.filter_checkbox label,
.filter_checkbox_en label {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8em;
    display: flex;
    flex-direction: row;
    margin: 0px;
    gap: 0.2em;
}
.filter_checkbox label {
  font-family: "iranYekan";
  direction: rtl;
}
.filter_checkbox_en label {
  direction: ltr;
}
.filter_title {
    text-align: right;
}
.filter_title_en {
    text-align: left;
}
.filter_title span,
.filter_title_en span {
    font-size: 1.2em;
    font-weight: 500;
    line-height: 2em;
}
.filter_title span {
  font-family: "iranYekan";
}
.filter_checkbox * input,
.filter_checkbox_en * input {
    appearance: none;
    background-color: #fff;
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 1.2em;
    height: 1.2em;
    border: 0.15em solid currentColor;
    border-radius: 0.15em;
    transform: translateY(0.3em);
    display: grid;
    place-content: center;
}
.filter_checkbox input[type="checkbox"]::before,
.filter_checkbox_en input[type="checkbox"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    background: purple;
    transform: scale(0);
    transition: 50ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--form-control-color);
    transform-origin: bottom left;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
.filter_checkbox input[type="checkbox"]:checked::before,
.filter_checkbox_en input[type="checkbox"]:checked::before {
    transform: scale(1);
}
.filter_title .btn,
.filter_title_en .btn {
    position: relative;
    margin-bottom: 10px;
    padding: 4px 25px;
    text-align: center;
    cursor: pointer;
    color: #fff;
    background-color: #04AA6D;
    border: none;
    border-radius: 5px;
    outline: none;
}
.filter_title .btn{
    float: right;
}
.filter_title .btn span,
.filter_title_en .btn span {
    font-size: 15px;
    transition: all 0.2s;
}
.filter_title .btn span {
    font-family: "iranYekan";
}
.btndownloadcsv {
    margin-top: 10px;
}
.btn:hover {
    background-color: #3e8e41;
}
.btn:active {
    background-color: #3e8e41;
}

.btn:focus {
    background-color: #3e8e41;
    color: #fff;
    outline: none;
}
.filter_title .btnfilter span,
.filter_title_en .btnfilter span {
    font-size: 15px;
    transition: all 0.2s;
}
.filter_title .btnfilter span {
    font-family: "iranYekan";
}

.btn--loading span {
    visibility: hidden;
    opacity: 0;
}

.btn--loading::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 4px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: button-loading-spinner 0.9s ease infinite;
}


@keyframes button-loading-spinner {
    from {
        transform: rotate(0turn);
    }

    to {
        transform: rotate(1turn);
    }
}

.hidden {
    display: none;
}


@media only screen and (max-width: 600px) {
  .filter_checkbox,
  .filter_checkbox_en {
     width: 100%;
     height: 200vh;
     background: white;
     padding-top: 0.5em;
     padding-right: 1em;
  }
  .filter_checkbox {
     float: right;
  }
 .filter_checkbox_en {
    float: left;
 }
 .filter_checkbox label,
 .filter_checkbox_en label {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2em;
    display: flex;
    flex-direction: row;
    margin: 0px;
    gap: 0.2em;
 }
 .filter_checkbox label {
    font-family: "iranYekan";
    direction: rtl;
 }
 .filter_checkbox_en label {
    direction: ltr;
 }
 .filter_title span,
 .filter_title_en span {
    font-size: 1.1em;
    font-weight: 500;
    line-height: 2em;
 }
 .filter_title span {
   font-family: "iranYekan";
 }
 .filter_checkbox * input,
 .filter_checkbox_en * input  {
    appearance: none;
    background-color: #fff;
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 1.6em;
    height: 1.6em;
    border: 0.15em solid currentColor;
    border-radius: 0.15em;
    transform: translateY(0.3em);
    display: grid;
    place-content: center;
 }
 .filter_checkbox input[type="checkbox"]::before,
 .filter_checkbox_en input[type="checkbox"]::before {
    content: "";
    width: 0.9em;
    height: 0.9em;
    background: purple;
    transform: scale(0);
    rotate: 5deg;
    margin-bottom: 0.1em;
    margin-right: 0.1em;
    transition: 50ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--form-control-color);
    transform-origin: bottom left;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
 }

  .togglefilterslabel {
    display: inline-block;
  }

  #togglefilters {
    display: inline-block;
    margin-bottom: 10px;
    font: inherit;
    color: currentColor;
    width: 1.15em;
    height: 1.15em;
    border: 0.15em solid currentColor;
    border-radius: 0.15em;
    transform: translateY(-0.075em);
  }

  #togglefilters:checked ~ .filter_checkbox {
    height: 100%;
  }

}

/* Css involving JS */

.ulruglist {
  display: inline-table;
  list-style: none;
  padding: 0 0 0 0;
  display: block;
}
.category {
  visibility: hidden;
}
.customfont div h6 {
  direction: ltr;
}
.rugimage div img {
  aspect-ratio: 0.66;
}
.locationicon {
  background: #819C62;
  color: white;
  font-size: 12px;
  font-family: "iranYekan";
}
.kicon {
  padding: 5px;
  border-radius: 5px;
  margin: 2px;
  font-size: 0.8em;
}
.giicon {
  padding: 0.47em 0.45em;
  border-radius: 5px;
  font-size: 0.75em;
}
.goicon {
  padding: 0.47em 0.3em;
  border-radius: 5px;
  font-size: 0.75em;
}
.mglicon {
  padding: 0.47em 0.25em;
  border-radius: 5px;
  font-size: 0.68em;
}
.metercontent {
  white-space: nowrap;
  font-size: 0.9em;
  margin-right: 2px;
}
.metercount {
  white-space: nowrap;
  font-size: 0.9em;
  float: right;
  direction: rtl;
  padding-top: 0.40em;
  padding-bottom: 0.40em;
  display: contents;
}
.metericon {
  background: #819C62;
  color: white;
  font-size: 0.8em;
  font-family: "iranYekan";
  padding: 5px;
  border-radius: 5px;
  margin: 2px;
  float: left;
}
.rugmeterlist *,
.rugcountlist * {
  margin-top: 5px;
  margin-bottom: 5px;
}

/* shrotcode css - order list page */
.ruglist-tabel {
  direction: rtl;
}

.ruglist-tabel * {
  direction: rtl;
}

.rugcategory {
  margin-bottom: 25px;
}
