@import url('/styles/subscribe.css');

.cars-on-subscription__container {
  padding: 20px 0;
  .cos__shimmer-wrapper {
    float: left;
    width: 100%;
    
    ul {
      list-style: none;
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: space-between;
      width: 100%;

      @media (width >=1366px) {
        gap: 24px;
      }

      li {
        width: calc(100%);

        @media (width >=1024px) {
          width: calc(50% - 24px);
        }

        @media (width >=1366px) {
          width: calc(33.3333% - 24px);
        }

        .listBox {
          width: 100%;
          display: flex;
          flex-direction: column;
          gap: 20px;
          padding: 20px;
          background: var(--tertiary-white);
          border-radius: 20px;
          box-shadow: 0 0 10px #ccc;
          position: relative;
        }

        .cos__shimmer-item {
          background: linear-gradient(-45deg, #eee 40%, #fafafa 50%, #eee 60%);
          background-size: 300%;
          background-position-x: 100%;
          animation: shimmer 1s infinite linear;
          display: block;
        }
      }
    }
  }

  .range-container {
    margin-top: 25px;

    .labels {
      display: flex;
      justify-content: space-between;
      margin-bottom: 10px;
      font-size: 9px;
      color: #999;
    }

    .slider-wrap {
      position: relative;
      width: 100%;
      display: flex;
    }

    .bubble {
      position: absolute;
      top: -42px;
      left: 0;
      padding: 5px 12px;
      transform: translateX(-50%);
      white-space: nowrap;
      background: #fff;
      font-size: 0.75rem;
      color: #666666;
      box-shadow: 1px 1px 3px #fcbd4c;
      border-radius: 15px;
      z-index: 2;
    }

    input[type='range'] {
      width: 100%;
      -webkit-appearance: none;
      background: transparent;
    }

    input[type='range']::-webkit-slider-runnable-track {
      height: 2px;
      border-radius: 2px;
      background: linear-gradient(to right, #ffb74d var(--percent, 0%), #aaa var(--percent, 0%));
    }

    input[type='range']::-moz-range-track {
      height: 2px;
      border-radius: 2px;
      background: #aaa;
    }

    input[type='range']::-moz-range-progress {
      height: 2px;
      border-radius: 2px;
      background: #ffb74d;
    }

    input[type='range']::-webkit-slider-thumb {
      -webkit-appearance: none;
      appearance: none;
      width: 20px;
      height: 20px;
      background: #ffb74d;
      border-radius: 50%;
      cursor: pointer;
      margin-top: -8px;
    }

    input[type='range']::-moz-range-thumb {
      width: 20px;
      height: 20px;
      background: #ffb74d;
      border-radius: 50%;
      cursor: pointer;
    }

    input[type='range']:focus {
      outline: none;
    }

    small {
      font-size: 9px;
      color: #666666;
    }

    &.dual {
      input[type='range'] {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        -webkit-appearance: none;
        appearance: none;
        background: none;
      }

      .range-track {
        position: absolute;
        top: 50%;
        width: 100%;
        background: #bbb;
        border-radius: 2px;
        transform: translateY(-50%);
      }

      .range {
        position: absolute;
        top: 50%;
        background: #ffb74d;
        border-radius: 2px;
        transform: translateY(-50%);
        height: 2px;
        top: 1px;
      }

      .legneds {
        display: flex;
        justify-content: space-between;
        margin-top: 20px;
      }
    }
  }

  .listingPage {
    width: 100%;

    .titleSection {
      display: flex;
      justify-content: space-between;
      margin-bottom: 30px;

      @media (width <=992px) {
        display: none;
      }

      h1 {
        font-size: var(--heading-lh-20-des-text-small);
        font-weight: var(--fw-400);
        color: var(--gray-deep);

        strong {
          font-weight: var(--fw-700);
        }
      }

      h2 {
        font-size: convert-in-rem(19);
        color: #333;
        float: left;
        margin-top: 7px;
        width: 25%;

        @media (width <=1279px) {
          width: 30%;
        }

        @media (width <=992px) {
          display: none;
        }
      }

      .searchSec {
        float: left;
        margin-left: 25px;
        width: 40%;
        position: relative;

        @media (width <=992px) {
          display: none;
        }

        input {
          background: #f2f2f2;
          font-size: var(--heading-font-20-mob-text);
          color: var(--color-grey);
          padding: 10px 10px 10px 55px;
          border: 0px;
          width: 100%;
          border-radius: 10px;
          height: 40px;

          &:focus {
            outline: 0px;
          }
        }

        span {
          width: 40px;
          height: 40px;
          display: inline-block;
          position: absolute;
          top: 0px;
          left: 0px;
          padding: 10px;
          background: #fff;
          border: #e1e1e1 solid 1px;
          border-radius: 10px 0px 0px 10px;
        }
      }

      .priceDropDown {
        float: right;
        width: 200px;

        @media (width <=992px) {
          display: none;
        }

        select {
          border: #c8c8c8 solid 1px;
          border-radius: 5px;
          font-size: var(--heading-font-20-mob-text);
          color: var(--color-grey);
          display: inline-block;

          &:focus {
            outline: 0;
          }
        }

        .select2-container {
          height: 40px;
          width: 100% !important;

          &:focus {
            outline: 0;
          }

          .selection {
            height: 40px;

            &:focus {
              outline: 0;
            }

            .select2-selection {
              height: 40px;
              font-size: var(--heading-font-20-mob-text);
              font-weight: normal;
              border-radius: 5px;
              border: #707070 solid 1px;

              &:focus {
                outline: 0;
              }

              .select2-selection__rendered {
                line-height: 40px;
                padding-left: 15px;
                padding-right: 35px;
                font-size: var(--subscription-font-2-desc);
                font-weight: bold;
                border-radius: 10px;
              }

              .select2-selection__arrow {
                height: 40px;
                width: 45px;
                background: url(../images/listing/down-arrow.jpg) center center no-repeat;

                b {
                  display: none;
                }
              }
            }
          }

          .select2-dropdown {
            .select2-search {
              .select2-search__field {
                &:focus {
                  border: #ccc solid 1px;
                  outline: 0;
                }
              }
            }
          }
        }
      }
    }

    .listingSectionContent {
      width: 100%;
      margin-top: 0px;
      padding-bottom: 100px;

      @media (width <=992px) {
        padding-bottom: 50px;
      }

      .leftSection {
        width: 25%;
        float: left;

        @media (width <=1279px) {
          width: 32%;
        }

        @media (width <=992px) {
          display: none;
        }

        .preferenceMain {
          width: 100%;
          float: left;
          box-shadow: -2px 3px 6px #ccc;

          h2 {
            font-size: var(--subscription-font-2-desc);
            color: #333;
            font-weight: bold;
            padding: 15px;
            border-bottom: #e2e2e2 solid 1px;
          }

          .subscriptionMain {
            padding: 15px;

            h3 {
              font-size: var(--subscription-font-2-desc);
              color: var(--primary-black);
              font-weight: bold;
            }

            .irs--flat {
              margin-top: 25px;

              .irs {
                .irs-line {
                  border-radius: 0px;
                  background: #999;
                  height: 3px;
                  width: 100%;
                }

                .irs-min {
                  display: none;
                }

                .irs-max {
                  display: none;
                }

                .irs-single {
                  background: var(--tertiary-white);
                  font-size: var(--subscription-font-5-desc);
                  color: var(--color-grey);
                  box-shadow: 1px 1px 3px #fcbd4c;
                  border-radius: 15px;
                  position: absolute;
                  z-index: 2;
                  margin-top: -9px;
                  margin-left: 1px;

                  &:before {
                    border-top-color: var(--tertiary-white);
                  }
                }
              }

              .irs-bar--single {
                border-radius: 0px;
                background: #fcbd4c;
                height: 3px;
              }

              .irs-grid {
                top: -4px;

                .irs-grid-pol {
                  background: #999;
                  top: 25px;
                  height: 11px;
                  display: none;

                  &.small {
                    display: none;
                  }
                }
              }

              .irs-handle {
                width: 15px;
                height: 15px;
                border-radius: 50%;
                background: #fcbd4c;
                top: 19px;
                display: inline-block;

                i {
                  display: none;
                }
              }
            }

            .monthTxt {
              font-size: convert-in-rem(10);
              color: var(--color-grey);
              margin-top: -20px;
              font-weight: 500;
            }
          }

          .budgetMain {
            padding: 15px;

            h3 {
              font-size: var(--subscription-font-2-desc);
              color: var(--primary-black);
              font-weight: bold;
            }

            .irs--flat {
              margin-top: 25px;

              .irs {
                .irs-line {
                  border-radius: 0px;
                  background: #999;
                  height: 3px;
                  width: 100%;
                }

                .irs-min {
                  display: none;
                }

                .irs-max {
                  display: none;
                }

                .irs-single {
                  background: var(--tertiary-white);
                  font-size: var(--subscription-font-5-desc);
                  color: var(--color-grey);
                  box-shadow: 1px 1px 3px #fcbd4c;
                  border-radius: 15px;
                  position: absolute;
                  z-index: 2;
                  margin-top: -9px;
                  margin-left: 1px;

                  &:before {
                    border-top-color: var(--tertiary-white);
                  }
                }

                .irs-from {
                  background: var(--tertiary-white);
                  font-size: var(--subscription-font-5-desc);
                  color: var(--color-grey);
                  box-shadow: 1px 1px 3px #fcbd4c;
                  border-radius: 15px;
                  position: absolute;
                  z-index: 2;
                  margin-top: -9px;
                  margin-left: 1px;

                  &:before {
                    border-top-color: var(--tertiary-white);
                  }
                }

                .irs-to {
                  background: var(--tertiary-white);
                  font-size: var(--subscription-font-5-desc);
                  color: var(--color-grey);
                  box-shadow: 1px 1px 3px #fcbd4c;
                  border-radius: 15px;
                  position: absolute;
                  z-index: 2;
                  margin-top: -9px;
                  margin-left: 1px;

                  &:before {
                    border-top-color: var(--tertiary-white);
                  }
                }
              }

              .irs-bar--single {
                border-radius: 0px;
                background: #fcbd4c;
                height: 3px;
              }

              .irs-grid {
                top: -4px;
                display: none;

                .irs-grid-pol {
                  background: #999;
                  top: 25px;
                  height: 11px;
                  display: none;

                  &.small {
                    display: none;
                  }
                }
              }

              .irs-bar {
                border-radius: 0px;
                background: #fcbd4c;
                height: 3px;
              }

              .irs-handle {
                width: 15px;
                height: 15px;
                border-radius: 50%;
                background: #fcbd4c;
                top: 19px;
                display: inline-block;

                i {
                  display: none;
                }
              }
            }

            .monthTxt {
              font-size: convert-in-rem(10);
              color: var(--color-grey);
              margin-top: -20px;
              font-weight: 500;

              ul {
                padding: 0px;
                margin: 0px;
                list-style: none;
                display: flex;
                justify-content: space-between;
              }
            }
          }
        }

        .filterMain {
          width: 100%;
          float: left;
          box-shadow: -2px 3px 6px #ccc;
          margin-top: 20px;

          h2 {
            font-size: var(--subscription-font-2-desc);
            color: #333;
            font-weight: bold;
            padding: 15px;
            border-bottom: #e2e2e2 solid 1px;

            a {
              color: var(--color-dark-blue);
              font-size: var(--heading-font-20-mob-text);
              float: right;
              text-decoration: none;

              &:hover {
                color: var(--color-dark-blue);
                color: var(--primary-black);
              }
            }
          }

          .typeCar {
            h3 {
              font-size: var(--subscription-font-2-desc);
              color: var(--primary-black);
              font-weight: bold;
              padding: 15px 15px 0px 15px;
            }

            ul {
              padding: 0px 0 0px 0;
              margin: 0px;
              list-style: none;
              display: inline-block;
              height: 125px;

              .mCSB_container {
                padding: 15px 15px 0px 15px;
                margin-right: 0px;

                li {
                  width: 49%;
                  display: inline-block;
                  text-align: center;
                  padding: 10px;
                  border-radius: 15px;
                  transition: all 0.2s ease 0s;
                  margin-bottom: 10px;
                  cursor: pointer;

                  & + li {
                    width: 49%;
                  }

                  &:nth-child(2n + 1) {
                    margin-left: 0px;
                  }

                  &:hover {
                    box-shadow: 0px 0px 6px #ccc;
                    transition: all 0.2s ease 0s;

                    label {
                      color: var(--color-dark-blue);
                    }
                  }

                  span {
                    width: 100px;
                    height: 55px;
                    display: inline-block;
                    margin: auto;

                    img {
                      margin: auto;
                    }
                  }

                  label {
                    font-size: var(--heading-font-20-mob-text);
                    color: var(--color-grey);
                    font-weight: 500;
                    width: 100%;
                    text-align: center;
                  }

                  &:nth-child(1) {
                    span {
                      img {
                        margin: auto;
                      }
                    }

                    &:hover {
                      span {
                      }
                    }

                    &.active {
                      box-shadow: 0px 0px 6px #ccc;

                      label {
                        color: var(--color-dark-blue);
                      }

                      span {
                      }
                    }
                  }

                  &:nth-child(2) {
                    span {
                      img {
                        margin: auto;
                      }
                    }

                    &:hover {
                      span {
                      }
                    }

                    &.active {
                      box-shadow: 0px 0px 6px #ccc;

                      label {
                        color: var(--color-dark-blue);
                      }

                      span {
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }

      .rightSection {
        width: 75%;
        float: left;
        padding-left: 20px;

        @media (width <=1279px) {
          width: 68%;
        }

        @media (width <=992px) {
          width: 100%;
          padding-left: 0px;
        }

        .keywords {
          float: left;
          width: 100%;
          margin-bottom: 10px;

          @media (width <=992px) {
            margin-bottom: 10px;
            display: none;
          }

          ul {
            padding: 0px;
            margin: 0px 0px 0px 40px;
            list-style: none;
            display: flex;
            gap: 15px;
            flex-wrap: wrap;

            @media (width <=992px) {
              margin-left: 0px;
            }

            @media (width <=767px) {
              display: flex;
              white-space: nowrap;
              flex-wrap: nowrap;
              overflow-x: auto;
            }

            li {
              display: inline-block;
              cursor: pointer;
              font-size: 0.875rem;
              color: var(--color-grey);
              border: #ccc solid 1px;
              padding: 5px 30px 5px 8px;
              display: inline-block;
              border-radius: 7px;
              line-height: normal;
              min-width: 60px;
              text-decoration: none;
              background: #e2e2e2 url(/icons/close-grey.svg) calc(100% - 6px) center no-repeat;
              background-size: 20px;

              &:first-child {
                background: var(--tertiary-white);
                padding: 5px 8px;

                &:hover {
                  background: var(--color-dark-blue);
                  color: var(--tertiary-white);
                }
              }
            }
          }
        }

        .locationDateMob {
          display: none;

          @media (width <=992px) {
            display: flex;
            justify-content: space-between;
            align-items: center;
          }

          .location {
            display: inline-block;

            @media (width <=767px) {
              display: block;
              line-height: 1;
            }

            a,
            button {
              background-color: transparent;
              border: 0;
              color: var(--color-dark-blue);
              text-decoration: none;
              background: url(/icons/collapes.svg) 100% no-repeat;
              font-size: var(--heading-font-20-mob-text);
              padding-right: 20px;
              font-weight: var(--fw-700);

              &:hover {
                color: var(--color-dark-blue);
              }
            }
          }

          .date {
            font-size: var(--subscription-font-2-desc);
            display: inline-block;

            @media (width <=767px) {
              display: block;
            }

            a,
            button {
              background-color: transparent;
              border: 0;
              color: var(--color-dark-blue);
              text-decoration: none;
              background: url(/icons/calender_icon.svg) left center no-repeat;
              font-size: var(--heading-font-20-mob-text);
              padding-left: 20px;
              background-size: 16px;
              line-height: 1;
              font-weight: var(--fw-700);

              &:hover {
                color: var(--color-dark-blue);
              }
            }
          }
        }

        .budgetByTxt {
          display: none;

          @media (width <=992px) {
            display: block;
            margin-bottom: 10px;
          }

          span {
            font-size: var(--heading-font-20-mob-text);
            color: #666666;
          }

          a {
            font-size: var(--heading-font-20-mob-text);
            color: #666666;
            border: #ccc solid 1px;
            background: var(--tertiary-white);
            padding: 8px 20px 7px 20px;
            border-radius: 25px;
            display: inline-block;
            text-decoration: none;

            &:hover {
              background: var(--tertiary-white);
              border: #fcbd4c solid 1px;
              color: #fcbd4c;
              text-decoration: none;
            }
          }
        }

        .budgetPopMain {
          display: none;

          &.active {
            display: block;
            padding: 10px 50px 15px 50px;
            background: #fff;
            border-radius: 20px;
            border: #fcbd4c solid 1px;
          }

          .irs--flat {
            margin-top: 25px;

            .irs {
              .irs-line {
                border-radius: 0px;
                background: #999;
                height: 3px;
                width: 100%;
              }

              .irs-min {
                display: none;
              }

              .irs-max {
                display: none;
              }

              .irs-single {
                background: var(--tertiary-white);
                font-size: var(--subscription-font-5-desc);
                color: var(--color-grey);
                box-shadow: 1px 1px 3px #fcbd4c;
                border-radius: 15px;
                position: absolute;
                z-index: 2;
                margin-top: -9px;
                margin-left: 1px;

                &:before {
                  border-top-color: var(--tertiary-white);
                }
              }

              .irs-from {
                background: var(--tertiary-white);
                font-size: var(--subscription-font-5-desc);
                color: var(--color-grey);
                box-shadow: 1px 1px 3px #fcbd4c;
                border-radius: 15px;
                position: absolute;
                z-index: 2;
                margin-top: -9px;
                margin-left: 1px;

                &:before {
                  border-top-color: var(--tertiary-white);
                }
              }

              .irs-to {
                background: var(--tertiary-white);
                font-size: var(--subscription-font-5-desc);
                color: var(--color-grey);
                box-shadow: 1px 1px 3px #fcbd4c;
                border-radius: 15px;
                position: absolute;
                z-index: 2;
                margin-top: -9px;
                margin-left: 1px;

                &:before {
                  border-top-color: var(--tertiary-white);
                }
              }
            }

            .irs-bar--single {
              border-radius: 0px;
              background: #fcbd4c;
              height: 3px;
            }

            .irs-grid {
              top: -4px;
              display: none;

              .irs-grid-pol {
                background: #999;
                top: 25px;
                height: 11px;
                display: none;

                &.small {
                  display: none;
                }
              }
            }

            .irs-bar {
              border-radius: 0px;
              background: #fcbd4c;
              height: 3px;
            }

            .irs-handle {
              width: 15px;
              height: 15px;
              border-radius: 50%;
              background: #fcbd4c;
              top: 19px;
              display: inline-block;

              i {
                display: none;
              }
            }
          }

          .monthTxt {
            font-size: convert-in-rem(10);
            color: var(--color-grey);
            margin-top: -20px;
            font-weight: 500;

            ul {
              padding: 0px;
              margin: 0px;
              list-style: none;
              display: flex;
              justify-content: space-between;
            }
          }
        }

        .mileagePopMain {
          display: none;

          &.active {
            display: block;
            padding: 10px 50px 15px 50px;
            background: #fff;
            border-radius: 20px;
            border: #fcbd4c solid 1px;
          }

          .irs--flat {
            margin-top: 25px;

            .irs {
              .irs-line {
                border-radius: 0px;
                background: #999;
                height: 3px;
                width: 100%;
              }

              .irs-min {
                display: none;
              }

              .irs-max {
                display: none;
              }

              .irs-single {
                background: var(--tertiary-white);
                font-size: var(--subscription-font-5-desc);
                color: var(--color-grey);
                box-shadow: 1px 1px 3px #fcbd4c;
                border-radius: 15px;
                position: absolute;
                z-index: 2;
                margin-top: -9px;
                margin-left: 1px;

                &:before {
                  border-top-color: var(--tertiary-white);
                }
              }
            }

            .irs-bar--single {
              border-radius: 0px;
              background: #fcbd4c;
              height: 3px;
            }

            .irs-grid {
              top: -4px;

              .irs-grid-pol {
                background: #999;
                top: 25px;
                height: 11px;
                display: none;

                &.small {
                  display: none;
                }
              }
            }

            .irs-handle {
              width: 15px;
              height: 15px;
              border-radius: 50%;
              background: #fcbd4c;
              top: 19px;
              display: inline-block;

              i {
                display: none;
              }
            }
          }

          .monthTxt {
            font-size: convert-in-rem(10);
            color: var(--color-grey);
            margin-top: -20px;
            font-weight: 500;
          }
        }

        .listingSec {
          float: left;
          width: 100%;

          .vehicleListing {
            list-style: none;
            display: flex;
            flex-wrap: wrap;

            li {
              margin-bottom: 25px;
              width: 31%;
              margin-left: 3%;

              &:nth-child(3n+1) {
                margin-left: 0;
                @media (width <= 1279px) {
                  margin-left: 3%;
                }
                @media (width <= 992px) {
                  margin-left: 0;
                }
              }

              &:nth-child(2n+1) {
                @media (width <= 1279px) {
                  margin-left: 0;
                }
              }

              @media (width <= 1279px) {
                width: 48%;
              }

              @media (width <= 992px) {
                width: 100%;
                margin-left: 0;
              }

              .listBox {
                width: 100%;
                display: inline-block;
                padding: 20px;
                background: var(--tertiary-white);
                border-radius: 20px;
                box-shadow: 0 0 10px #ccc;
                position: relative;

                @media (width <=767px) {
                  padding: 20px 15px 15px 15px;
                }

                @media (width <=992px) {
                  border-radius: 15px;
                }

                .carImg {
                  width: 100%;
                  text-align: center;
                  border-bottom: #ccc solid 1px;

                  @media (width <=992px) {
                    width: auto;
                    float: right;
                    border-bottom: 0px;
                  }

                  @media (width <=480px) {
                    width: 50%;
                  }

                  img {
                    display: block;
                    width: 100%;
                  }
                }

                .carDetails {
                  width: 100%;
                  margin-top: 15px;
                  position: relative;

                  @media (width <=992px) {
                    width: 50%;
                    float: left;
                    margin-top: 0px;
                    position: static;
                  }

                  strong {
                    font-size: var(--subscription-font-2-desc);
                    font-weight: bold;
                    color: var(--primary-black);
                    display: inline-block;
                    margin-bottom: 32px;
                  }

                  span {
                    font-size: var(--subscription-font-5-desc);
                    color: var(--color-dark-blue);
                    font-weight: bold;
                    display: inline-block;
                    width: 100%;
                    margin-top: -25px;

                    @media screen and (width <=1599px) {
                      margin-left: 0px;
                    }

                    @media (width <=992px) {
                      left: 20px;
                      top: 42px;
                      width: auto;
                    }
                  }

                  .price {
                    float: left;
                    width: 100%;
                    color: #999999;
                    font-size: var(--subscription-font-5-desc);
                    line-height: 1;
                  }

                  .price2 {
                    color: var(--primary-black);
                    font-size: var(--subscription-font-2-desc);
                    width: 100%;
                    margin-top: 7px;
                    display: inline-block;
                    font-weight: bold;
                    line-height: 1;

                    p {
                      color: var(--primary-black);
                      font-size: var(--subscription-font-2-desc);
                      margin: 0;
                    }

                    span {
                      color: var(--primary-black);
                    }

                    @media (width <=992px) {
                      font-size: convert-in-rem(18);
                    }

                    label {
                      color: #999999;
                      font-weight: normal;
                    }
                  }

                  .feature {
                    width: 100%;

                    ul {
                      padding: 0px;
                      margin: 0px;
                      list-style: none;

                      li {
                        color: var(--primary-black);
                        font-size: var(--subscription-font-3-desc);
                        display: inline-block;
                        vertical-align: middle;
                        font-weight: bold;
                        width: auto;
                        margin-top: 0px;

                        @media (width <=767px) {
                          font-size: 13px;
                          font-weight: normal;
                        }

                        @media (width <=992px) {
                          font-size: 13px;
                          font-weight: normal;
                        }

                        img {
                          display: inline-block;
                          vertical-align: middle;
                          width: 16px;
                          margin-right: 4px;
                        }

                        & + li {
                          margin-left: 15px;

                          @media (width <=992px) {
                            margin: 0;
                          }
                        }

                        &:first-child {
                          img {
                            position: relative;
                            top: -1px;
                          }
                        }
                      }
                    }
                  }

                  .review {
                    font-size: 13px;
                    font-weight: normal;
                    color: var(--primary-black);
                    line-height: normal;
                    float: right;
                    margin-top: -18px;

                    @media (width <=992px) {
                      position: absolute;
                      right: 18px;
                      bottom: 20px;
                      margin: 0px;
                    }

                    img {
                      margin-right: 5px;
                      position: relative;
                      top: 1px;
                      display: inline-block;
                    }
                  }

                  .logo {
                    margin-top: 10px;
                    display: inline-block;
                    width: 50%;

                    img {
                      width: auto;
                    }
                  }

                  .useNew {
                    font-size: var(--subscription-font-5-desc);
                    color: var(--tertiary-white);
                    padding: 4px 7px;
                    border-radius: 25px;
                    margin-left: 7px;
                    background: #999999;
                    position: absolute;
                    bottom: 15px;
                    right: 15px;
                  }
                }

                .button__configure {
                  margin-top: 10px;

                  button {
                    cursor: pointer;
                    font-size: 0.875rem;
                    background-image: linear-gradient(to right, #ffa92a, #ffc225);
                    padding: 9px 20px 7px 20px;
                    text-decoration: center;
                    border-radius: 50px;
                    border: 2px solid var(--color-orange);
                    color: #000;
                    font-weight: bold;
                    display: block;
                    text-transform: uppercase;
                    transition: 0.5s;
                    width: 100%;
                  }
                }
              }
            }

            .bestDeals {
              display: none;

              @media (width <=992px) {
                display: block;
                margin-top: 18px;
                margin-bottom: 10px;

                .text {
                  display: inline-block;

                  h3 {
                    background: linear-gradient(#5966d1, #2c3791);
                    width: auto;
                    padding: 8px 55px 8px 15px;
                    border-radius: 18px;
                    display: inline-block;
                    color: var(--tertiary-white);
                    font-size: convert-in-rem(24);
                    font-weight: 300;
                  }

                  p {
                    width: 100%;
                    color: #999999;
                    font-size: convert-in-rem(11);
                    padding-left: 15px;
                    margin-top: 10px;
                  }

                  a {
                    display: inline-block;
                    background: linear-gradient(#5966d1, #2c3791);
                    font-size: var(--subscription-font-5-desc);
                    color: var(--tertiary-white);
                    padding: 5px 15px;
                    margin-top: 7px;
                    border-radius: 50px;
                    margin-left: 15px;
                  }
                }

                .carImg {
                  display: inline-block;
                  margin-left: -75px;
                }
              }
            }
          }
        }

        .sortFilterSearch {
          display: none;

          @media (width <=992px) {
            position: fixed;
            bottom: 160px;
            background: var(--tertiary-white);
            box-shadow: 0 0px 10px #00000020;
            transform: translateX(-50%);
            left: 50%;
            border-radius: 15px;
            display: block;
            width: 160px;
            z-index: 1;

            ul {
              padding: 0px;
              margin: 0px;
              list-style: none;
              display: flex;
              justify-content: center;

              li {
                display: inline-block;
                padding: 14px 15px 14px 15px;
                position: relative;

                &:after {
                  position: absolute;
                  width: 1px;
                  background: #e8e8e8;
                  height: calc(100% - 10px);
                  content: '';
                  right: -1px;
                  top: 7px;
                }

                &:last-child {
                  &:after {
                    display: none;
                  }
                }
              }
            }
          }

          @media (width <=767px) {
            bottom: 80px;
          }
        }
      }
    }

    .selectCar {
      ul {
        margin: 0;

        .select-car-list {
          display: block;
          width: 100%;
          text-align: center;
          height: auto !important;
        }

        li {
          display: inline-block;
          width: 31.33%;
          border: 1px solid #e2e2e2;
          padding: 20px 10px 10px;
          text-align: center;
          border-radius: 15px;
          position: relative;
          box-shadow: 0 3px 6px #ccc;
          margin: 1%;
          height: 115px;
          float: left;

          label.checkboxMain {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            margin: 0 auto;
            right: 0;
            display: block;

            input {
              opacity: 0;
              cursor: pointer;
              height: 0;
              width: 0;

              &:checked ~ .checkBoxmark {
                background-color: #2d3393;

                &::after {
                  display: block;
                }
              }
            }

            .checkBoxmark {
              width: 15px;
              height: 15px;
              left: auto;
              right: 5px;
              margin-left: -10px;
              border-radius: 50%;
              border: #2c3791 solid 1px;
              position: absolute;
              top: 5px;

              &::after {
                content: '';
                display: none;
                position: absolute;
                left: 4px;
                top: 1px;
                width: 5px;
                height: 9px;
                border: solid white;
                border-width: 0 2px 2px 0;
                -webkit-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
                transform: rotate(45deg);
              }
            }
          }

          .carImg {
            img {
              display: block;
              width: 100%;
            }
          }

          .carTxt {
            font-size: 12px;
          }
        }
      }
    }

    .listingRightMain {
      @media (width <=992px) {
        float: left;
        width: 100%;
      }

      .listTabMain {
        display: none;

        @media (width <=992px) {
          display: block;
          position: absolute;
          left: 0;
          width: 100%;
          top: 80px;

          ul {
            float: left;
            padding: 0px;
            margin: 0px;
            width: 100%;
            list-style: none;

            li {
              float: left;
              width: 50%;
              text-align: center;
              border-bottom: transparent solid 2px;

              a {
                padding: 15px 10px;
                display: inline-block;
                width: 100%;
                font-size: var(--subscription-font-2-desc);
                color: var(--color-grey);
                font-weight: bold;
                text-decoration: none;
                background: var(--tertiary-white);
              }

              &.active {
                border-bottom: var(--color-dark-blue) solid 2px;

                a {
                  color: var(--color-dark-blue);
                }
              }
            }
          }
        }
      }

      .tabContent {
        @media (width <=992px) {
          float: left;
          width: 100%;
        }

        .listingMobTab {
          @media (width <=992px) {
            float: left;
            width: 100%;
          }
        }
      }
    }

    .sortSearchFilterMain {
      .modal-dialog {
        @media (width <=767px) {
          margin: 15px;
        }

        .modal-content {
          border-radius: 10px;
          border: 0px;
          overflow: hidden;

          .modal-head {
            float: left;
            width: 100%;
            padding: 18px;
            box-shadow: 0 0px 10px #00000020;

            .titleTxt {
              font-size: var(--subscription-font-2-desc);
              color: #333;
              font-weight: 500;
            }

            .close {
              float: right;
              margin-top: -14px;
              width: 12px;
            }
          }

          .modal-body {
            padding: 0px;

            .popupBodyContent {
              padding: 20px 20px 0px 20px;
              min-height: 600px;
              margin-bottom: 100px;

              @media (width <=480px) {
                height: 450px;
                overflow: auto;
                min-height: inherit;
                padding: 20px 40px 0px 40px;
              }

              @media (width <=359px) {
                height: 400px;
                overflow: auto;
                min-height: inherit;
              }

              .priceCheckBox {
                ul {
                  padding: 0px;
                  margin: 0px;
                  list-style: none;

                  li {
                    font-size: var(--heading-font-20-mob-text);
                    color: var(--color-grey);
                    margin: 15px 0;
                    display: inline-block;
                    width: 100%;

                    .checkboxMain {
                      margin-bottom: 0px;

                      input:checked ~ .checkBoxmark {
                        width: 22px;
                        height: 22px;
                        left: -4px;
                        top: -4px;
                        background-color: #28a745;
                        border: #28a745 solid 1px;
                      }

                      .checkBoxmark {
                        border-radius: 50%;

                        &:after {
                          left: 7px;
                          top: 3px;
                          width: 6px;
                          height: 11px;
                        }
                      }
                    }
                  }
                }
              }

              .searchField {
                h3 {
                  font-size: var(--subscription-font-2-desc);
                  color: #333;
                  margin-bottom: 10px;
                  font-weight: 500;
                }

                input {
                  background: #f2f2f2;
                  border-radius: 10px;
                  width: 100%;
                  float: left;
                  border: 0px;
                  padding: 14px;
                }
              }

              .subscriptionMain {
                padding: 0px;
                margin-bottom: 15px;

                h3 {
                  font-size: var(--subscription-font-2-desc);
                  color: var(--primary-black);
                  font-weight: bold;
                }

                .irs--flat {
                  margin-top: 25px;

                  .irs {
                    .irs-line {
                      border-radius: 0px;
                      background: #999;
                      height: 3px;
                      width: 100%;
                    }

                    .irs-min {
                      display: none;
                    }

                    .irs-max {
                      display: none;
                    }

                    .irs-single {
                      background: var(--tertiary-white);
                      font-size: var(--subscription-font-5-desc);
                      color: var(--color-grey);
                      box-shadow: 1px 1px 3px #fcbd4c;
                      border-radius: 15px;
                      position: absolute;
                      z-index: 2;
                      margin-top: -9px;
                      margin-left: 1px;

                      &:before {
                        border-top-color: var(--tertiary-white);
                      }
                    }
                  }

                  .irs-bar--single {
                    border-radius: 0px;
                    background: #fcbd4c;
                    height: 3px;
                  }

                  .irs-grid {
                    top: -4px;

                    .irs-grid-pol {
                      background: #999;
                      top: 25px;
                      height: 11px;
                      display: none;

                      &.small {
                        display: none;
                      }
                    }
                  }

                  .irs-handle {
                    width: 15px;
                    height: 15px;
                    border-radius: 50%;
                    background: #fcbd4c;
                    top: 19px;
                    display: inline-block;

                    i {
                      display: none;
                    }
                  }
                }

                .monthTxt {
                  font-size: convert-in-rem(10);
                  color: var(--color-grey);
                  margin-top: -20px;
                  font-weight: 500;
                }
              }

              .budgetMain {
                @media (width <=480px) {
                  width: 95%;
                  margin-bottom: 10px;
                }

                h3 {
                  font-size: var(--heading-font-20-mob-text);
                  color: #333333;
                  font-weight: bold;
                }

                .irs--flat {
                  margin-top: 25px;

                  .irs {
                    .irs-line {
                      border-radius: 0px;
                      background: #999;
                      height: 3px;
                      width: 100%;
                    }

                    .irs-min {
                      display: none;
                    }

                    .irs-max {
                      display: none;
                    }

                    .irs-single {
                      background: var(--tertiary-white);
                      font-size: var(--subscription-font-5-desc);
                      color: var(--color-grey);
                      box-shadow: 1px 1px 3px #fcbd4c;
                      border-radius: 15px;
                      position: absolute;
                      z-index: 2;
                      margin-top: -9px;
                      margin-left: 1px;

                      &:before {
                        border-top-color: var(--tertiary-white);
                      }
                    }

                    .irs-from {
                      background: var(--tertiary-white);
                      font-size: var(--subscription-font-5-desc);
                      color: var(--color-grey);
                      box-shadow: 1px 1px 3px #fcbd4c;
                      border-radius: 15px;
                      position: absolute;
                      z-index: 2;
                      margin-top: -9px;
                      margin-left: 1px;

                      &:before {
                        border-top-color: var(--tertiary-white);
                      }
                    }

                    .irs-to {
                      background: var(--tertiary-white);
                      font-size: var(--subscription-font-5-desc);
                      color: var(--color-grey);
                      box-shadow: 1px 1px 3px #fcbd4c;
                      border-radius: 15px;
                      position: absolute;
                      z-index: 2;
                      margin-top: -9px;
                      margin-left: 1px;

                      &:before {
                        border-top-color: var(--tertiary-white);
                      }
                    }
                  }

                  .irs-bar--single {
                    border-radius: 0px;
                    background: #fcbd4c;
                    height: 3px;
                  }

                  .irs-grid {
                    top: -4px;
                    display: none;

                    .irs-grid-pol {
                      background: #999;
                      top: 25px;
                      height: 11px;
                      display: none;

                      &.small {
                        display: none;
                      }
                    }
                  }

                  .irs-bar {
                    border-radius: 0px;
                    background: #fcbd4c;
                    height: 3px;
                  }

                  .irs-handle {
                    width: 15px;
                    height: 15px;
                    border-radius: 50%;
                    background: #fcbd4c;
                    top: 19px;
                    display: inline-block;

                    i {
                      display: none;
                    }
                  }
                }

                .monthTxt {
                  font-size: convert-in-rem(10);
                  color: var(--color-grey);
                  margin-top: -20px;
                  font-weight: 500;

                  ul {
                    padding: 0px;
                    margin: 0px;
                    list-style: none;
                    display: flex;
                    justify-content: space-between;
                  }
                }
              }

              .bodyType {
                padding: 15px 0px;

                h3 {
                  font-size: var(--heading-font-20-mob-text);
                  color: #333333;
                  font-weight: bold;
                }

                ul {
                  padding: 15px 0 0px 0;
                  margin: 0px;
                  list-style: none;
                  display: flex;
                  justify-content: space-between;

                  li {
                    width: 33%;
                    display: inline-block;
                    text-align: center;
                    padding: 10px;
                    border-radius: 15px;
                    transition: all 0.2s ease 0s;
                    cursor: pointer;

                    &:hover {
                      box-shadow: 0px 0px 6px #ccc;
                      transition: all 0.2s ease 0s;

                      label {
                        color: var(--color-dark-blue);
                      }
                    }

                    span {
                      width: 100%;
                      height: 45px;
                      display: inline-block;
                      margin: auto;
                    }

                    label {
                      font-size: 13px;
                      color: var(--color-grey);
                      font-weight: 500;
                      width: 100%;
                      text-align: center;

                      @media (width <=1279px) {
                        font-size: var(--subscription-font-5-desc);
                      }
                    }

                    &:nth-child(1) {
                      span {
                        background: url(../images/listing/hachback.png) center center no-repeat;
                      }

                      &:hover {
                        span {
                          background: url(../images/listing/hachback-h.png) center center no-repeat;
                        }
                      }

                      &.active {
                        box-shadow: 0px 0px 6px #ccc;

                        label {
                          color: var(--color-dark-blue);
                        }

                        span {
                          background: url(../images/listing/hachback-h.png) center center no-repeat;
                        }
                      }
                    }

                    &:nth-child(2) {
                      span {
                        background: url(../images/listing/suv.png) center center no-repeat;
                      }

                      &:hover {
                        span {
                          background: url(../images/listing/suv-h.png) center center no-repeat;
                        }
                      }

                      &.active {
                        box-shadow: 0px 0px 6px #ccc;

                        label {
                          color: var(--color-dark-blue);
                        }

                        span {
                          background: url(../images/listing/suv-h.png) center center no-repeat;
                        }
                      }
                    }

                    &:nth-child(3) {
                      span {
                        background: url(../images/listing/sedan.png) center center no-repeat;
                      }

                      &:hover {
                        span {
                          background: url(../images/listing/sedan-h.png) center center no-repeat;
                        }
                      }

                      &.active {
                        box-shadow: 0px 0px 6px #ccc;

                        label {
                          color: var(--color-dark-blue);
                        }

                        span {
                          background: url(../images/listing/sedan-h.png) center center no-repeat;
                        }
                      }
                    }
                  }
                }
              }

              .transmission {
                padding: 15px 0px;
                border-top: #e6e6e6 solid 1px;

                h3 {
                  font-size: var(--heading-font-20-mob-text);
                  color: #333333;
                  font-weight: bold;
                }

                ul {
                  padding: 15px 0 0px 0;
                  margin: 0px;
                  list-style: none;

                  li {
                    width: 33%;
                    display: inline-block;
                    text-align: center;
                    padding: 10px;
                    border-radius: 15px;
                    transition: all 0.2s ease 0s;
                    cursor: pointer;

                    &:hover {
                      box-shadow: 0px 0px 6px #ccc;
                      transition: all 0.2s ease 0s;

                      label {
                        color: var(--color-dark-blue);
                      }
                    }

                    span {
                      width: 100%;
                      height: 45px;
                      display: inline-block;
                      margin: auto;
                    }

                    label {
                      font-size: 13px;
                      color: var(--color-grey);
                      font-weight: 500;
                      width: 100%;
                      text-align: center;
                    }

                    &:nth-child(1) {
                      span {
                        background: url(../images/listing/manual.png) center center no-repeat;
                      }

                      &:hover {
                        span {
                          background: url(../images/listing/manual-h.png) center center no-repeat;
                        }
                      }

                      &.active {
                        box-shadow: 0px 0px 6px #ccc;

                        label {
                          color: var(--color-dark-blue);
                        }

                        span {
                          background: url(../images/listing/manual-h.png) center center no-repeat;
                        }
                      }
                    }

                    &:nth-child(2) {
                      span {
                        background: url(../images/listing/automatic.png) center center no-repeat;
                      }

                      &:hover {
                        span {
                          background: url(../images/listing/automatic-h.png) center center no-repeat;
                        }
                      }

                      &.active {
                        box-shadow: 0px 0px 6px #ccc;

                        label {
                          color: var(--color-dark-blue);
                        }

                        span {
                          background: url(../images/listing/automatic-h.png) center center no-repeat;
                        }
                      }
                    }
                  }
                }
              }

              .fuelType {
                padding: 15px 0px;
                border-top: #e6e6e6 solid 1px;

                h3 {
                  font-size: var(--heading-font-20-mob-text);
                  color: #333333;
                  font-weight: bold;
                }

                ul {
                  padding: 15px 0 0px 0;
                  margin: 0px;
                  list-style: none;
                  display: flex;
                  justify-content: space-between;

                  li {
                    width: 33%;
                    display: inline-block;
                    text-align: center;
                    padding: 10px;
                    border-radius: 15px;
                    transition: all 0.2s ease 0s;
                    cursor: pointer;

                    &:hover {
                      box-shadow: 0px 0px 6px #ccc;
                      transition: all 0.2s ease 0s;

                      label {
                        color: var(--color-dark-blue);
                      }
                    }

                    span {
                      width: 100%;
                      height: 45px;
                      display: inline-block;
                      margin: auto;
                    }

                    label {
                      font-size: 13px;
                      color: var(--color-grey);
                      font-weight: 500;
                      width: 100%;
                      text-align: center;
                    }

                    &:nth-child(1) {
                      span {
                        background: url(../images/listing/petrol.png) center center no-repeat;
                      }

                      &:hover {
                        span {
                          background: url(../images/listing/petrol-h.png) center center no-repeat;
                        }
                      }

                      &.active {
                        box-shadow: 0px 0px 6px #ccc;

                        label {
                          color: var(--color-dark-blue);
                        }

                        span {
                          background: url(../images/listing/petrol-h.png) center center no-repeat;
                        }
                      }
                    }

                    &:nth-child(2) {
                      span {
                        background: url(../images/listing/diesel.png) center center no-repeat;
                      }

                      &:hover {
                        span {
                          background: url(../images/listing/diesel-h.png) center center no-repeat;
                        }
                      }

                      &.active {
                        box-shadow: 0px 0px 6px #ccc;

                        label {
                          color: var(--color-dark-blue);
                        }

                        span {
                          background: url(../images/listing/diesel-h.png) center center no-repeat;
                        }
                      }
                    }

                    &:nth-child(3) {
                      span {
                        background: url(../images/listing/cng.png) center center no-repeat;
                      }

                      &:hover {
                        span {
                          background: url(../images/listing/cng-h.png) center center no-repeat;
                        }
                      }

                      &.active {
                        box-shadow: 0px 0px 6px #ccc;

                        label {
                          color: var(--color-dark-blue);
                        }

                        span {
                          background: url(../images/listing/cng-h.png) center center no-repeat;
                        }
                      }
                    }
                  }
                }
              }

              .registrationType {
                padding: 15px 0px;
                border-top: #e6e6e6 solid 1px;
                border-bottom: #e6e6e6 solid 1px;

                h3 {
                  font-size: var(--heading-font-20-mob-text);
                  color: #333333;
                  font-weight: bold;
                }

                ul {
                  padding: 15px 0 0px 0;
                  margin: 0px;
                  list-style: none;
                  display: flex;

                  li {
                    width: 33%;
                    display: inline-block;
                    text-align: center;
                    padding: 10px;
                    border-radius: 15px;
                    transition: all 0.2s ease 0s;
                    cursor: pointer;

                    &:hover {
                      box-shadow: 0px 0px 6px #ccc;
                      transition: all 0.2s ease 0s;

                      label {
                        color: var(--color-dark-blue);
                      }
                    }

                    span {
                      width: 100%;
                      height: 45px;
                      display: inline-block;
                      margin: auto;
                    }

                    label {
                      font-size: 13px;
                      color: var(--color-grey);
                      font-weight: 500;
                      width: 100%;
                      text-align: center;
                    }

                    &:nth-child(1) {
                      span {
                        background: url(../images/listing/dl-yellow.png) center center no-repeat;
                      }

                      &:hover {
                        span {
                          background: url(../images/listing/dl-yellow.png) center center no-repeat;
                        }
                      }

                      &.active {
                        box-shadow: 0px 0px 6px #ccc;

                        label {
                          color: var(--color-dark-blue);
                        }

                        span {
                          background: url(../images/listing/dl-yellow.png) center center no-repeat;
                        }
                      }
                    }

                    &:nth-child(2) {
                      span {
                        background: url(../images/listing/dl-white.png) center center no-repeat;
                      }

                      &:hover {
                        span {
                          background: url(../images/listing/dl-white.png) center center no-repeat;
                        }
                      }

                      &.active {
                        box-shadow: 0px 0px 6px #ccc;

                        label {
                          color: var(--color-dark-blue);
                        }

                        span {
                          background: url(../images/listing/dl-white.png) center center no-repeat;
                        }
                      }
                    }
                  }
                }
              }
            }

            .carBtn {
              padding: 15px 20px;
              position: absolute;
              bottom: 40px;
              left: 0px;
              width: 100%;

              input[type='button'] {
                width: 100%;
                border: 0px;
                height: 42px;
                border-radius: 10px;
                font-size: 0.875rem;
                color: #fff;
                font-weight: bold;
                background: #e2e2e2;
              }
            }

            .resetApplyBtn {
              padding: 15px 20px;
              position: absolute;
              bottom: 40px;
              left: 0px;
              width: 100%;

              ul {
                padding: 0px;
                margin: 0px;
                list-style: none;
                display: flex;
                justify-content: space-between;

                @media (width <=992px) {
                  justify-content: space-around;
                }

                li {
                  width: 49%;

                  a {
                    text-align: center;
                    padding: 8px 10px 7px 10px;
                    font-size: var(--heading-font-20-mob-text);

                    &:hover {
                      @media (width <=1279px) {
                        background-color: #fff;
                      }
                    }
                  }
                }
              }
            }

            .bottomLink {
              position: absolute;
              bottom: 0;
              left: 0;
              width: 100%;

              ul {
                padding: 0px;
                margin: 0px;
                list-style: none;
                text-align: center;
                display: flex;
                justify-content: space-around;
                box-shadow: 0 0px 10px #00000020;

                li {
                  display: inline-block;
                  width: 100%;

                  a {
                    color: var(--color-grey);
                    font-size: var(--subscription-font-5-desc);
                    padding: 15px 20px;
                    display: inline-block;
                    width: 100%;
                    text-decoration: none;
                    position: relative;

                    &:hover {
                      background: #999da0;
                      color: var(--tertiary-white);
                    }

                    &:before {
                      content: '';
                      position: absolute;
                      height: 14px;
                      width: 14px;
                      margin-left: -20px;
                    }
                  }

                  &:nth-child(1) {
                    a {
                      &.active {
                        background: #999da0;
                        color: var(--tertiary-white);

                        &:before {
                          background: url(../images/listing/sort-inn-h.png) center center no-repeat !important;
                        }
                      }

                      &:before {
                        background: url(../images/listing/sort-inn.png) center center no-repeat;
                      }

                      &:hover {
                        &:before {
                          background: url(../images/listing/sort-inn-h.png) center center no-repeat;
                        }
                      }
                    }
                  }

                  &:nth-child(2) {
                    a {
                      &.active {
                        background: #999da0;
                        color: var(--tertiary-white);

                        &:before {
                          background: url(../images/listing/search-inn-h.png) center center no-repeat !important;
                        }
                      }

                      &:before {
                        background: url(../images/listing/search-inn.png) center center no-repeat;
                      }

                      &:hover {
                        &:before {
                          background: url(../images/listing/search-inn-h.png) center center no-repeat;
                        }
                      }
                    }
                  }

                  &:nth-child(3) {
                    a {
                      &.active {
                        background: #999da0;
                        color: var(--tertiary-white);

                        &:before {
                          background: url(../images/listing/filter-inn-h.png) center center no-repeat !important;
                        }
                      }

                      &:before {
                        background: url(../images/listing/filter-inn.png) center center no-repeat;
                      }

                      &:hover {
                        &:before {
                          background: url(../images/listing/filter-inn-h.png) center center no-repeat;
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }
    }

    .mobileCityLocation2 {
      position: fixed;
      width: 100%;
      height: 100%;
      background: #00000050;
      z-index: 10000;
      display: none;
      left: 0px;
      top: 0px;

      &.active {
        @media (width <=992px) {
          display: block;
        }
      }

      .head {
        width: 100%;
        background: var(--tertiary-white);
        float: left;
        height: 80px;
        padding: 15px;

        span {
          float: left;
          margin-top: 25px;

          img {
            display: inline-block;
            vertical-align: middle;
          }

          a {
            display: inline-block;
            vertical-align: middle;
            margin-left: 10px;
            background: url(../images/header/head-downarrow.jpg) 100% top no-repeat;
            padding-right: 25px;
            font-size: var(--heading-font-20-mob-text);
            color: var(--primary-black);
            font-weight: bold;
            text-decoration: none;
          }
        }

        ul {
          padding: 0px;
          margin: 25px 0px 0px 0px;
          list-style: none;
          float: right;

          li {
            display: inline-block;
            margin-left: 10px;
          }
        }
      }

      .bottom {
        position: fixed;
        bottom: 0px;
        left: 0px;
        width: 100%;
        background: var(--tertiary-white);
        padding: 20px;
        border-radius: 10px 10px 0 0;

        .cross {
          position: absolute;
          right: 15px;
          top: 15px;

          a {
            display: inline-block;

            img {
            }
          }
        }

        .txtImg {
          float: left;
          width: 100%;
          margin-top: 10px;

          .text {
            width: 45%;
            float: left;
            font-size: convert-in-rem(18);
            color: var(--primary-black);
            line-height: 1.5;
            position: relative;
            z-index: 10;

            small {
              font-size: var(--subscription-font-5-desc);
              color: var(--color-grey);
              float: left;

              @media (width <=992px) {
                width: 100%;
              }
            }
          }

          .img {
            width: 65%;
            position: absolute;
            right: 10px;
          }
        }

        .location {
          float: left;
          width: 100%;
          margin-top: 35px;

          h5 {
            width: 100%;
            float: left;
            margin-bottom: 15px;
            font-size: var(--subscription-font-2-desc);
            color: #333;
            font-weight: 500;
          }

          .selectCityField {
            width: 100%;
            float: left;

            input {
              width: 100%;
              background-color: #f2f2f2;
              border: 0px;
              padding: 10px 35px 10px 40px;
              font-size: var(--heading-font-20-mob-text);
              color: var(--color-grey);
              border-radius: 10px;
              background-image: url(../images/header/search.jpg), url(../images/location-detector.jpg);
              background-position:
                10px center,
                97% center;
              background-repeat: no-repeat, no-repeat;

              &:focus {
                outline: 0;
              }
            }
          }

          ul {
            padding: 0px;
            margin: 15px 0px 0px 0px;
            list-style: none;
            display: inline-block;
            height: 180px;
            overflow-y: auto;
            display: none;
            float: left;
            width: 100%;

            &.mCustomScrollbar {
              .mCustomScrollBox {
                .mCSB_container {
                  margin-right: 20px;
                }

                .mCSB_scrollTools {
                  .mCSB_draggerContainer {
                    .mCSB_dragger {
                      .mCSB_dragger_bar {
                        background: #e2e2e2;
                      }
                    }

                    .mCSB_draggerRail {
                      background: #ebebeb;
                    }
                  }
                }
              }
            }

            li {
              float: left;
              width: 100%;
              border-bottom: #cfcfcf solid 1px;

              a {
                font-size: var(--subscription-font-5-desc);
                color: var(--color-grey);
                font-weight: 500;
                padding: 12px 10px;
                display: inline-block;
                text-decoration: none;

                &:hover {
                  color: var(--color-dark-blue);
                }
              }

              &:first-child {
                a {
                  padding-top: 0px;
                }
              }
            }
          }
        }

        .selectBtn {
          float: left;
          width: 100%;
          margin-top: 15px;

          a {
            display: inline-block;
            text-align: center;
            background: #ccc;
            height: 45px;
            line-height: 45px;
            padding: 0;
            border-radius: 8px;
          }
        }
      }
    }

    .filter-section {
      padding: 0 15px;
      margin-top: 20px;
    }

    .category {
      .category-title {
        display: flex;
        justify-content: space-between;
        padding: 0 15px;
        margin-bottom: 15px;
      }
    }

    .a-button {
      background-color: transparent;
      border: none;
      padding: 0;
      cursor: pointer;
      color: var(--color-anchor);
      font-size: 0.875rem;
      font-weight: var(--fw-700);
    }
  }

  .listing__filter {
    margin: 15px 0;

    @media (width <=992px) {
      margin: 0;
    }

    li {
      transition: all 0.2s ease 0;
      margin: 1%;
      width: 31%;
      display: inline-block;
    }

    label {
      cursor: pointer;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      padding: 10px;
      border-radius: 15px;
      justify-content: space-between;

      &:has(> input[type='checkbox']:checked) {
        box-shadow: 0 0 6px #ccc;
      }

      input[type='checkbox'] {
        display: none;
      }

      img {
        display: block;
      }

      span {
        font-size: 13px;
        font-weight: var(--fw-500);
        color: var(--color-grey);
        text-transform: uppercase;
      }
    }
  }

  .custom-select {
    width: 220px;
    position: relative;
    font-family: sans-serif;
  }

  /* Hide real select */
  .custom-select select {
    display: none;
  }

  /* Trigger box */
  .custom-select-trigger {
    padding: 8px 40px 8px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    position: relative;
  }

  /* Arrow */
  .custom-select-trigger::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #555;
  }

  /* Dropdown panel */
  .custom-options {
    display: none;
    position: absolute;
    width: 100%;
    top: calc(100% + 4px);
    background: #fff;
    border-radius: 6px;
    padding: 10px 0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    z-index: 20;

    &.open {
      display: block;
    }
  }

  /* Each option */
  .custom-option {
    padding: 10px 16px;
    font-size: 14px;
    cursor: pointer;
  }

  .custom-option:hover {
    background: #f4f4f4;
  }

  /* Selected option style */
  .custom-option.selected {
    font-weight: 700;
  }

  /* Disabled option */
  .custom-option.disabled {
    color: #aaa;
    cursor: default;
  }

  .custom-option.disabled:hover {
    background: none;
  }

  .slide-up-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    display: none;

    &::before {
      content: '';
      width: 100%;
      height: 100vh;
      z-index: 999;
      background-color: rgba(0, 0, 0, 0.5);
      display: block;
    }

    .panel-header {
      position: relative;
      display: flex;
      justify-content: end;

      .close-button {
        right: 0;
        padding: 0;

        img {
          display: block;
          width: 36px;
          height: 36px;
        }
      }
    }

    .panel-content {
      transform: translateY(100%);
      border-radius: 10px 10px 0 0;
      padding: 10px 20px;
      background-color: var(--tertiary-white);
      transition: transform 0.3s ease-in-out;
    }

    .panel-footer {
      button {
        display: block;
        text-align: center;
        height: 45px;
        line-height: 45px;
        color: rgb(0, 0, 0);
        font-weight: bold;
        background: rgb(255, 168, 42);
        padding: 0px;
        border-radius: 8px;
        width: 100%;
        text-transform: uppercase;

        &:disabled {
          background: #ccc;
        }
      }
    }

    &.open {
      display: block;

      .panel-content {
        transform: translateY(0);
      }
    }

    button {
      background-color: transparent;
      border: 0;
    }

    .filter-panel-content {
      p {
        margin: 0;
      }

      .filter-popup__header {
        display: flex;
        margin: 20px 0;

        .filter-popup__header-left {
          width: 45%;

          p {
            font-size: 0.75rem;
            color: #666;
            &:first-child {
              font-size: 1.125rem;
              color: rgb(0, 0, 0);
              line-height: 1.5;
              position: relative;
              z-index: 10;
            }
          }
        }

        .filter-popup__image {
          flex: 1;
          img {
            display: block;
            width: 100%;
          }
        }
      }

      .filter-popup__form {
        .select-city {
          width: 100%;
          margin-bottom: 15px;
          font-size: 1rem;
          color: rgb(51, 51, 51);
          font-weight: 500;
        }

        .filter-popup__form-input-wrapper {
          position: relative;

          input {
            border: 0;
            width: 100%;
            font-size: 0.875rem;
            color: rgb(102, 102, 102);
            border-width: 0px;
            border-style: initial;
            border-color: initial;
            border-image: initial;
            padding: 10px 35px 10px 40px;
            border-radius: 10px;
            background: url(/icons/search.svg) 10px center no-repeat rgb(242, 242, 242);
          }

          .filter-popup__form-btn-location {
            position: absolute;
            right: 0;
            top: 6px;
          }
        }

        ul {
          list-style: none;
          height: 180px;
          overflow-y: auto;

          li {
            font-size: 1rem;
            color: rgb(102, 102, 102);
            font-weight: 500;
            display: block;
            padding: 8px 10px;
            text-decoration: none;
            border-bottom: 1px solid rgb(207, 207, 207);

            &.active {
              color: #2c3791;
            }
          }
        }

        .select-range-title {
          display: flex;
          justify-content: space-between;
          align-items: start;

          .tenure-title {
            white-space: nowrap;
          }
        }
      }
    }
  } /** slide up panel */

  .sort-filter-wrapper {
    position: fixed;
    bottom: 4rem;
    width: 100%;
    text-align: center;
    display: block;

    @media (width >= 1024px) {
      display: none;
    }

    ul {
      display: inline-flex;
      margin: 0;
      justify-content: center;
      box-shadow: 0 0px 10px rgba(0, 0, 0, 0.4);
      background-color: #ffffff;
      border-radius: 15px;

      li {
        position: relative;
        &:first-child {
          &::before {
            content: '';
            position: absolute;
            display: block;
            height: 70%;
            width: 1px;
            right: 0;
            top: 15%;
            background-color: rgba(0, 0, 0, 0.2);
          }
        }
      }

      button {
        background-color: transparent;
        padding: 12px 30px;
        border: 0;
        display: block;
      }
    }
  } /** .sort-filter-wrapper **/

  dialog {
    &::backdrop {
      background-color: rgba(0, 0, 0, 0.8);
    }

    &.sortfilter-dialog__wrapper {
      position: fixed;
      top: 50%;
      z-index: 999;
      border: 0;
      transform: translateY(-50%);
      width: 90%;
      margin: 0 auto;
      padding: 0;
      border-radius: 10px;

      .sortfilter-dialog__header {
        display: flex;
        justify-content: space-between;
        padding: 10px 15px;
        box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
        align-items: center;
      }

      button {
        background-color: transparent;
        border: 0;
        padding: 0;
      }

      .sortfilter-dialog__content {
        ul {
          li {
            input {
              position: relative;

              &::before {
                content: '';
                position: absolute;
                width: 22px;
                height: 22px;
                left: -4px;
                top: -4px;
                background-color: #28a745;
                border: #28a745 solid 1px;
                border-radius: 50%;
                display: none;
              }
              &::after {
                content: '';
                position: absolute;
                border: solid white;
                border-width: 0 2px 2px 0;
                -webkit-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
                transform: rotate(45deg);
                left: 4px;
                top: 0px;
                width: 6px;
                height: 11px;
                display: none;
              }
              &:checked {
                &::after,
                &::before {
                  display: block;
                }
              }
            }

            span {
              padding-left: 10px;
            }
          }
        }

        .sort-model-content {
          flex: 1;
          height: 100%;
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          height: 450px;

          .sort-filter-list {
            li {
              display: block;
              width: 100%;
              font-size: 0.875rem;
              padding: 10px 0;
              padding-left: 25px;
            }
          }
        }

        .sortfilter-submit-wrapper {
          display: flex;
          align-items: center;
          justify-content: center;
          padding: 0 20px;
          margin: 20px 0;
          gap: 10px;
        }

        .btn-popup-submit {
          text-decoration: none;
          border-radius: 10px;
          color: #000;
          font-weight: bold;
          display: block;
          text-transform: uppercase;
          transition: 0.5s;
          text-align: center;
          padding: 8px 10px 7px 10px;
          font-size: 0.875rem;
          flex: 1;

          &.btn-primary {
            background-image: linear-gradient(to right, #ffa92a, #ffc225);
            border: 2px solid #fcbd4c;
          }

          &.btn-secondary {
            background-color: #fff;
            border: 2px solid #fcbd4c;
          }
        }
      }

      .sortfilter-dialog__footer {
        box-shadow: 0 -2px 2px rgba(0, 0, 0, 0.1);
        button {
          padding: 15px 0;
          width: 50%;
          flex: 1;

          &.active {
            background: #999da0;
            color: #fff;
          }
        }
      }

      .filter-model-content {
        padding: 2rem 2.5rem;
        height: 400px;
        overflow-y: auto;

        .filter-section {
          border-bottom: 1px solid rgba(0, 0, 0, 0.2);
          padding-bottom: 20px;
          margin-bottom: 20px;

          &:last-child {
            border: 0;
            padding: 0;
            margin: 0;
          }
        }

        .filter-title {
          margin-bottom: 1.5rem;
        }

        .filter-category {
          margin-bottom: 1rem;
        }
        .filter-title {
          font-size: 0.875rem;
        }

        .budgetMain {
          .filter-title {
            margin-bottom: 3rem;
          }
        }
      }
    }
  }
}

@keyframes shimmer {
  to {
    background-position-x: 0%;
  }
}
