@media only screen and (min-width: 320px) and (max-width: 480px) {
  .footer-one--two {
    display: none;
  }
}

/* location popup component  */

#locations-parent {
  position: fixed;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.curr-loc {
  display: none;
}

.top-city {
  display: none;
}

.popup-inner1 {
  width: 100%;
  margin: 1rem 1rem 0 3rem;
}

.button-1 {
  position: relative;
  margin-left: 39rem;
}

.popup1-screens {
  width: 704px;
  height: 580px;
  background-color: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
}

.location-title {
  margin-top: 60px;
  text-align: center;
}

.custom-search-input {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 604px;
  height: 48px;
  border: 1px solid #00000029;
  border-radius: 10px;
  padding: 0 8px;
}

.search-icon {
  font-size: 20px;
  color: #000000;
  margin-right: 8px;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
}

.search-input::placeholder {
  font-size: 12px;
  color: #666666;
  opacity: 0.7;
}

.city-circles {
  display: flex;
  gap: 2.5rem;
}

.city-circle {
  width: 88px;
  height: 88px;
  background-color: #fbfbfb;
  border-radius: 50%;
  text-align: center;
  line-height: 88px;
  cursor: pointer;
}

.city-name {
  position: relative;
  margin-top: 65px;
  color: #262626;
  font-size: 14px;
}

.top-cities-heading,
.all-cities-heading {
  font-size: 18px;
  text-align: left;
  margin-top: 1.3rem;
}

.top-cities {
  padding-bottom: 30px;
}

.city-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-height: 140px;
  overflow-y: scroll;
}

.city-list::-webkit-scrollbar {
  width: 7px;
}

.city-list::-webkit-scrollbar-thumb {
  background-color: #ff3f56;
  border-radius: 5px;
}

.city-list::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

/* media queries for location  */

@media only screen and (min-width: 380px) and (max-width: 480px) {
  .city-circles {
    display: none;
  }

  .top-city {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 2px;
  }

  .top-cities {
    padding-bottom: 0px;
  }

  .topcity-name {
    text-align: left;
    font: normal normal normal 14px/19px Noto Sans;
    letter-spacing: 0px;
    color: #262626;
    opacity: 1;
    padding-top: 3px;
  }

  .topcity-title {
    color: var(--unnamed-color-262626);
    text-align: left;
    font: normal normal normal 18px/24px Noto Sans;
    letter-spacing: 0px;
    color: #262626;
    opacity: 1;
    padding-top: 1rem;
    cursor: pointer;
  }

  .curr-loc {
    display: block;
    margin-top: 2rem;
    padding-bottom: 1rem;
    cursor: pointer;
  }

  .curr-loc-title {
    font: normal normal normal 14px/19px Noto Sans;
    letter-spacing: 0px;
    color: #ff3f56;
    opacity: 1;
  }

  .curr-loc-align {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .curr-loc-icon {
    font-size: 25px;
    color: #ff3f56;
  }

  .all-cities {
    display: none;
  }

  .top-cities {
    display: none;
  }

  .topcity-icon {
    font-size: 24px;
  }

  .icon-align {
    display: flex;
    justify-items: center;
  }

  .button-1 {
    margin-left: 21rem;
  }

  .popup-inner1 {
    margin: 2.5rem 2.5rem 0rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
  }

  .custom-search-input {
    width: 340px;
  }

  .popup1-screens {
    width: 480px;
    height: 580px;
    background-color: #ffffff;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: start;
  }
}

@media only screen and (min-width: 320px) and (max-width: 380px) {
  .city-circles {
    display: none;
  }

  .top-city {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 2px;
  }

  .top-cities {
    padding-bottom: 0px;
  }

  .topcity-name {
    text-align: left;
    font: normal normal normal 14px/19px Noto Sans;
    letter-spacing: 0px;
    color: #262626;
    opacity: 1;
    padding-top: 3px;
  }

  .topcity-title {
    color: var(--unnamed-color-262626);
    text-align: left;
    font: normal normal normal 18px/24px Noto Sans;
    letter-spacing: 0px;
    color: #262626;
    opacity: 1;
    padding-top: 1rem;
    cursor: pointer;
  }

  .curr-loc {
    display: block;
    margin-top: 2rem;
    padding-bottom: 1rem;
    cursor: pointer;
  }

  .curr-loc-title {
    font: normal normal normal 14px/19px Noto Sans;
    letter-spacing: 0px;
    color: #ff3f56;
    opacity: 1;
  }

  .curr-loc-align {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .curr-loc-icon {
    font-size: 20px;
    color: #ff3f56;
  }

  .all-cities {
    display: none;
  }

  .top-cities {
    display: none;
  }

  .topcity-icon {
    font-size: 24px;
  }

  .icon-align {
    display: flex;
    justify-items: center;
  }

  .button-1 {
    margin-left: 17.5rem;
  }

  .popup-inner1 {
    margin: 3rem 2.7rem 0rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
  }

  .custom-search-input {
    width: 290px;
  }

  .popup1-screens {
    width: 380px;
    height: 580px;
    background-color: #ffffff;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: start;
  }
}



@media only screen and (min-width: 480px) and (max-width: 580px) {
  .button-1 {
    margin-left: 27.5rem;
  }

  .popup-inner1 {
    margin: 1rem 3rem 0 4rem;
  }

  .curr-loc {
    display: none;
  }

  .top-city {
    display: none;
  }

  .custom-search-input {
    width: 420px;
  }

  .city-circle {
    width: 60px;
    height: 60px;
    background-color: #fbfbfb;
  }

  .top-cities {
    padding-bottom: 30px;
  }

  .city-circles {
    gap: 2rem;
  }

  .city-name {
    position: relative;
    margin-top: 30px;
    color: #262626;
    font-size: 13px;
    margin-left: -0.5rem;
  }
}

@media only screen and (min-width: 650px) and (max-width: 700px) {
  .popup-inner1 {
    /* width: 80%; */
    margin: 1rem 3rem 0 3rem;
  }

  .top-cities {
    padding-bottom: 50px;
  }

  .city-circle {
    width: 70px;
    height: 70px;
    background-color: #fbfbfb;
  }

  .curr-loc {
    display: none;
  }

  .top-city {
    display: none;
  }

  .button-1 {
    margin-left: 37.5rem;
  }

  .city-circle {
    width: 75px;
    height: 75px;
  }

  .custom-search-input {
    width: 600px;
  }
}


@media only screen and (min-width: 580px) and (max-width: 650px) {
  .popup-inner1 {
    /* width: 80%; */
    margin: 1rem 3.5rem 0 3.5rem;
  }

  .top-cities {
    padding-bottom: 50px;
  }

  .city-circle {
    width: 70px;
    height: 70px;
    background-color: #fbfbfb;
  }

  .curr-loc {
    display: none;
  }

  .top-city {
    display: none;
  }

  .button-1 {
    margin-left: 34rem;
  }

  .city-circle {
    width: 75px;
    height: 75px;
  }

  .custom-search-input {
    width: 550px;
  }
}

/* enquiryPop make offer */

#enquiry-parent {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.Popup-screens,
.cws-popup-screens {
  width: 510px;
  height: 500px;
  background-color: #fff;
  border-radius: 10px;
  /* display: flex;
  justify-content: center;
  align-items: center; */
}

.cws-popup-screens {
  height: 630px;
}

.enq-button {
  margin-left: 25rem;
}

.make-popup {
  width: 100%;
  height: 100%;
  padding: 2rem 3.5rem;
  margin-top: 0px;
}

.enquiry-title {
  /* margin-left: 1.5rem; */
  text-align: left;
  font: normal normal 600 24px/30px Noto Sans;
  letter-spacing: 0px;
  color: #3a3a3b;
  opacity: 1;
}

/* .containers {
  margin-left: 0.95rem;
  margin-top: 1.5rem;
} */

.enquiry-card {
  height: 136px;
  border: none;
  background-color: #ffffff;
  box-shadow: #00000029;
  border: 1px solid #dedfe1;
  margin: 0;
}

.enquiry-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 96px;
  height: 96px;
  margin: 1.2rem;
}

.enquiry-image {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
}

.card-item {
  display: flex;
}

.card-details {
  margin-top: 17px;
}

.colored-text {
  color: #ff3f56;
}

.enquiry-truck {
  margin-top: 0px;
}

.trucks-price {
  font-weight: 550;
}

.button-style,
.button-style-1 {
  width: 390px;
  height: 50px;
  background-color: #ff3f56;
  color: #ffffff;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 10px;
}

.button-style-1 {
  width: 244px;
  height: 46px;
  margin: 0;
}

.input-field,
.cws-input {
  width: 390px;
  height: 52px;
  border: 1px solid #262626;
  border-radius: 6px;
  padding: 10px;
}

.cws-input {
  height: 200px;
}

.input-field::placeholder {
  width: 77px;
  height: 22px;
  color: #262626;
  text-align: left;
  font-size: 14px;
}

.input-title,
.button-style {
  margin-top: 2rem;
}

/* .input {
  margin-left: 1rem;
} */

/* media for enquiry page */

@media only screen and (min-width: 390px) and (max-width: 490px) {
  #enquiry-parent {
    align-items: flex-end;
  }

  .cws-popup-screens {
    height: 580px;
  }

  .Popup-screens {
    height: 450px;
  }

  .make-popup {
    height: 100%;
    padding: 0.5rem 3.5rem;
  }

  .enq-button {
    margin-left: 22rem;
  }


  .button-style {
    width: 100%;
  }

  .enquiry-card {
    width: 100%;
  }

  .input-field,
  .cws-input {
    width: 100%;
  }
}

@media only screen and (min-width: 320px) and (max-width: 390px) {
  #enquiry-parent {
    align-items: flex-end;
  }

  .cws-popup-screens {
    height: 580px;
  }

  .Popup-screens {
    height: 450px;
  }

  .enq-button {
    margin-left: 18rem;
  }

  .make-popup {
    width: 100%;
    padding: 0.5rem 2.5rem;
  }

  .button-style {
    width: 100%;
  }

  .enquiry-card {
    width: 100%;
  }

  .input-field,
  .cws-input {
    width: 100%;
  }
}

/* my post page style */

#post-main {
  width: 100vw;
  height: auto;
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.post-content {
  width: 1300px;
  margin: 2rem 1rem;
}

.custom-card {
  max-width: 1250px;
  height: 180px;
  color: black;
}

.shop-section {
  padding-bottom: 5rem;
}

.mypost-image-container {
  width: 140px;
  height: 140px;
  margin: 1.2rem 0px 0px 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}


.mypost-image {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
}

.post-heading {
  position: absolute;
  font-size: 21px;
  /* display: inline-block; */
  color: #3a3a3b;
  margin-top: -8rem;
  margin-left: 11rem;
}

ion-card {
  margin-top: 20px;
}

.item-list {
  display: flex;
  gap: 3rem;
  align-items: center;
  position: absolute;
  width: 1050px;
  height: 86px;
  background-color: #f7f8fd;
  border-radius: 10px;
  margin-left: 11rem;
  top: 4.5rem;
}

.item-list.in-active {
  background-color: #ffd3d3;
}

.key {
  font-size: 12px;
  font-weight: 100;
  color: #3a3a3b;
  margin-left: 1rem;
}

.value {
  font-size: 14px;
  margin-left: 1rem;
}

.post-date {
  display: none;
}

/* media queries for post */

@media only screen and (min-width: 990px) and (max-width: 1200px) {
  .post-content {
    width: 950px;
  }

  .item-list {
    gap: 3rem;
    width: 730px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 990px) {
  .post-content {
    width: 700px;
  }

  .item-list {
    display: none;
  }

  .mypost-image-container {
    height: 100px;
    width: 100px;
  }

  .custom-card {
    height: 140px;
  }

  .post-heading {
    margin-top: -5.5rem;
    margin-left: 8rem;
  }

  .post-date {
    position: absolute;
    display: inline-block;
    margin-left: 8.2rem;
    margin-top: -3.5rem;
    /* margin-top: 4.5rem; */
    text-align: left;
    font: normal normal normal 15px/19px Noto Sans;
    letter-spacing: 0px;
    color: #262626;
    opacity: 1;
  }
}

@media only screen and (min-width: 480px) and (max-width: 768px) {
  .post-content {
    width: 450px;
  }

  .item-list {
    display: none;
  }

  .mypost-image-container {
    width: 80px;
    height: 80px;
    margin-top: 1rem;
  }

  .custom-card {
    height: 110px;
  }

  .post-date {
    position: absolute;
    display: inline-block;
    margin-left: 7rem;
    margin-top: -2.5rem;
    text-align: left;
    font: normal normal normal 15px/19px Noto Sans;
    letter-spacing: 0px;
    color: #262626;
    opacity: 1;
  }

  .post-heading {
    margin-top: -4.5rem;
    margin-left: 7rem;
  }
}

@media only screen and (min-width: 320px) and (max-width: 480px) {
  .item-list {
    display: none;
  }

  /* .footer-one--two {
    display: none;
  } */

  .post-heading {
    margin-left: 7.5rem;
    margin-top: -5rem;
    white-space: nowrap;
  }

  .mypost-image-container {
    width: 90px;
    height: 90px;
    margin-top: .7rem;
  }

  .custom-card {
    height: 110px;
  }

  .post-date {
    position: absolute;
    display: inline-block;
    margin-left: 7.5rem;
    margin-top: -3rem;
    text-align: left;
    font: normal normal normal 15px/19px Noto Sans;
    letter-spacing: 0px;
    color: #262626;
    opacity: 1;
  }

}

/* vehicle listing page style  */

.slider .rc-slider-track {
  background-color: #ff3f56;
  height: 5px;
  border-radius: 8px;
}

.range-container {
  margin: 0.5rem 0;
}

.slider .rc-slider-handle {
  background-color: #301e6a;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  margin-top: -0.5rem;
  border: none;
}

.budget-select {
  height: 40px;
  padding: 0px;
}

.price-range {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  margin-top: -10px;
}

.sub-title {
  font-size: 12px;
}

.price-text {
  color: #301e6a;
  padding-top: 10px;
  font-size: 15px;
}

.sortby-select select {
  width: 144px;
  height: 40px;
  border: 1px solid #dedfe1;
  border-radius: 2px;
  font-size: 12px;
  padding: 0 0.5rem;
}

.filter-btn {
  display: none;
  padding: 5px 15px;
  border: 1px solid #DEDFE1;
  border-radius: 2px;
  font-size: 12px;
  color: #262626;
  cursor: pointer;
}

.filter-sort {
  width: 100vw;
  height: 100vh;
  background: #ffffff;
}

.fs-scroll {
  overflow-y: scroll;
  overflow-x: hidden;
  max-height: 80%;
}

.fs-bar {
  width: 100%;
  height: 60px;
  border: 1px solid #dedfe1;
  display: flex;
  align-items: center;
  padding: 15px 15px;
}

.fs-bar p {
  font-size: 24px;
  letter-spacing: 0px;
  color: #262626;
  padding: 10px;
}

.fs-icon {
  font-size: 18px;
}

.fs-inner {
  padding: 0 1rem;
  margin-bottom: 1rem;
}

.fs-col1,
.fs-col2 {
  border: 1px solid #dedfe1;
}

.fs-col2 {
  padding: 5px;
}


.fs-col1 {
  background-color: #DEDFE1;
  padding-right: 0;
}

.fs-category {
  width: 100%;
  height: 48px;
  border: 1px solid #CACACC;

}

.fs-category p {
  font-size: 14px;
  padding: 10px 12px;
  text-align: left;
  white-space: nowrap;
  overflow-x: hidden;
}

.fs-buttons,
.fs-buttons-1 {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 86px;
  background-color: #ffffff;
  box-shadow: 0px 3px 40px #0000000F;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.fs-buttons-1 {
  z-index: 1;
  display: none;
}

.fs-clearbtn,
.fs-applybtn {
  width: 140px;
  height: 46px;
  font-size: 16px;
  border: 1px solid #262626;
  color: #262626;
  border-radius: 8px;
}

.fs-applybtn {
  background-color: #ff3f56;
  color: #fff;
  border: none;
}

@media screen and (max-width: 990px) {
  .filter-btn {
    display: block;
    margin-right: 10px;
  }
}

@media screen and (max-width: 480px) {
  /* .footer-one--two {
    display: none;
  } */

  .fs-buttons-1 {
    display: inline-flex;
  }

}

/* profile dropdown style  */

.profile-dropdown {
  position: absolute;
  margin-top: 1.7rem;
  margin-left: -4rem;
  width: 216px;
  height: 236px;
  background-color: white;
  align-items: center;
  padding: 10px;
}

.profile-dropdown__user-details {
  flex-grow: 1;
  margin-left: 10px;
}

.profile-dropdown__user-info {
  display: flex;
  align-items: center;
}

.profile-dropdown__user-name {
  font-weight: 500;
  font-size: 16px;
  color: #262626;
}

.profile-dropdown__user-image {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-dropdown__user-image img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
}

.profile-dropdown__user-email {
  font-size: 10px;
  color: #262626;
}

.profile-dropdown__menu {
  margin-top: 15px;
  font-size: 14px;
  text-align: left;
}

ion-icon {
  font-size: 14px;
}

/* selectlocation style in sellvehicle form2  */

/* selectLocation */
#sl-main {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.sl-containers {
  width: 490px;
  height: 450px;
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 40px #00000014;
  border-radius: 10px;
  opacity: 1;
}

.sl-inner {
  width: 80%;
  height: 80%;
  margin: 2.9rem 3rem 2.8rem 3rem;
}

.sl-input {
  border: none;
  outline: none;
  margin-top: 0.5rem;
  margin-left: 2.5rem;
}

.sl-title,
.sl-searches {
  width: 134px;
  height: 24px;
  color: var(--unnamed-color-262626);
  text-align: left;
  font: normal normal normal 18px/24px Noto Sans;
  letter-spacing: 0px;
  color: #262626;
  opacity: 1;
}

.sl-input::placeholder {
  font-size: 12px;
  color: #666666;
  opacity: 0.7;
}

.sl-inputBar {
  width: 390px;
  height: 48px;
  background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
  border: 1px solid var(--unnamed-color-dedfe1);
  background: #ffffff 0% 0% no-repeat padding-box;
  border: 1px solid #dedfe1;
  border-radius: 8px;
  opacity: 1;
}

.sl-icon {
  position: absolute;
  font-size: 18px;
  color: #000000;
  margin-left: 1rem;
  margin-top: 0.8rem;
}

.curr-location {
  display: flex;
  align-items: start;
  width: 390px;
  height: 74px;
  background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
  border: 0.5px solid var(--unnamed-color-dedfe1);
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 20px #0000000a;
  border: 0.5px solid #dedfe1;
  border-radius: 6px;
  opacity: 1;
  margin-top: 2rem;
}

.sl-path,
.sl-city {
  color: var(--unnamed-color-666666);
  text-align: left;
  font: normal normal normal 12px/17px Noto Sans;
  letter-spacing: 0px;
  color: #666666;
  opacity: 1;
  padding-top: 5px;
}

.sl-gps {
  margin: 1rem 0 0 0.5rem;
}

.sl-location,
.sl-area {
  text-align: left;
  font: normal normal normal 14px/19px Noto Sans;
  letter-spacing: 0px;
  color: #ff3f56;
  opacity: 1;
}

.loc-icon {
  color: #ff3f56;
  margin: 1rem 0 0 1rem;
}

.clock-icon {
  color: #666666;
}

.search-suggestions {
  margin-top: 1rem;
  margin-left: 1rem;
  display: flex;
}

.sl-recent-search {
  margin-top: 7rem;
}

.sl-area {
  color: #262626;
  font-weight: 550;
}

.sl-address {
  margin-left: 0.5rem;
}

.divider-line {
  border: none;
  border-top: 2px dashed #dedfe1;
  margin-left: 1rem;
  margin-right: 1rem;
  margin-top: 1rem;
}

.sl-close {
  position: absolute;
  margin: 1.2rem 0rem 0rem 28rem;
}

/* media for selectLocation  */

@media only screen and (min-width: 380px) and (max-width: 480px) {
  .sl-close {
    margin: 1.2rem 0rem 0rem 25rem;
  }

  .sl-inputBar {
    width: 350px;
  }

  .curr-location {
    width: 350px;
  }

  .sl-inner {
    width: 75%;

    margin: 2.9rem 8rem 2.8rem 4.5rem;
  }
}

@media only screen and (min-width: 320px) and (max-width: 380px) {
  .sl-close {
    margin: 1.2rem 0rem 0rem 23.5rem;
  }

  .sl-inputBar {
    width: 290px;
  }

  .curr-location {
    width: 290px;
  }

  .sl-inner {
    width: 60%;

    margin: 2.9rem 9.5rem 2.8rem 6rem;
  }
}

/* sellvehicle form2 style   */

#form2-main {
  width: 100vw;
  /* height: 100vh; */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.form2-container {
  padding: 2rem 2rem;
  width: 1200px;
}

.post-details {
  display: flex;
  gap: 1.2rem;
}

.details-1 {
  display: none;
}

.details {
  display: flex;
  margin-top: 12px;
  width: 557px;
  height: 106px;
  background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
  border: 1px solid var(--unnamed-color-dedfe1);
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 20px #00000014;
  border: 1px solid #dedfe1;
  border-radius: 10px;
  opacity: 1;
}

.profile-img {
  width: 85px;
  height: 85px;
  margin: 10px;
  border-radius: 8px;
}

.profile-name {
  font-size: 18px;
  color: black;
  font-weight: 400;
  margin-top: 2.5rem;
  margin-left: 1rem;
}

.button-content {
  display: flex;
  align-items: center;
}

.modify-icon {
  font-size: 10px;
  color: #ffffff;
}

span {
  font: normal normal normal 21px/24px Montserrat;
  font-weight: 100;
}

.details-heading {
  display: none;
}

/* if details heading show have to add in below class */
.truck-category,
.vehicle-details {
  font-size: 21px;
  font-weight: 500;
}

.modify-button {
  width: 96px;
  height: 46px;
  color: #ffffff;
  font-size: 12px;
  background: #ff3f56 0% 0% no-repeat padding-box;
  border-radius: 6px;
  opacity: 1;
  margin-top: -10px;
  margin-right: 2rem;
}

.truck-detail {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-top: 1rem;
}

.truck-title {
  font: normal normal normal 16px/22px Noto Sans;
  letter-spacing: 0px;
  color: #ff3f56;
  opacity: 1;
  margin-top: 5px;
}

.truck-img {
  width: 66px;
  height: 66px;
  opacity: 1;
  margin: 20px;
  border-radius: 10px;
}

.post-details-title {
  margin-top: 15px;
  display: flex;
  gap: 30rem;
}

.post-button {
  display: flex;
  align-items: center;
}

.back-icon {
  margin-right: 5px;
  font-size: 21px;
  /* font-weight: 200; */
}

.vehicle-details,
.photo-details,
.price-details {
  margin-top: 2rem;
}

.input-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 90%;
}

.input-details {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.vehicle-input,
.vehicle-input-1 {
  width: 100%;
  height: 52px;
  background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
  border: 0.5px solid var(--unnamed-color-262626);
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 20px #0000000a;
  border: 0.5px solid #262626;
  border-radius: 6px;
  opacity: 1;
  position: relative;
  padding: 0 20px;
}

.vehicle-input-1 {
  width: 30%;
  padding-left: 45px;
}

textarea.vehicle-input {
  height: unset;
}

.input-label {
  font-size: 14px;
}

.input-label-1 {
  margin-bottom: 10px;
}

.input-dollar {
  font-size: 14px;
}

.input-pipe {
  color: #C4C4C4;
  margin-left: 0.5rem;
}

.input-symbol {
  position: relative;
  margin-left: 1rem;
  transform: translateY(-175%);
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.image-upload-container {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  /* justify-content: center; */
  align-items: center;
  gap: 5px;
}

.form2-image {
  /* background-color: #000000; */
  width: 120px;
  height: 120px;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-upload-container img {
  max-width: 100%;
  max-height: 100%;
  cursor: pointer;
  border-radius: 8px;
}

.select-location {
  display: flex;
  margin-top: 1rem;
  width: 557px;
  height: 106px;
  border: 1px solid #dedfe1;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 3px 20px #00000014;
  cursor: pointer;
}

.location-detail {
  width: 85px;
  height: 85px;
  background: #f7f8fd 0% 0% no-repeat padding-box;
  border-radius: 10px;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px;
}

.location-icon {
  width: 30px;
  height: 40px;
  color: #eaebef;
}

.current-place {
  margin-top: 1.8rem;
  margin-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.area {
  font-size: 18px;
}

.city {
  margin-top: -5px;
  font-size: 12px;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 5rem;
  padding-bottom: 4rem;
}

.c-btn,
.p-btn {
  width: 240px;
  height: 50px;
}

.c-btn {
  border: 1px solid #262626;
  border-radius: 10px;
}

.p-btn {
  background: #ff3f56;
  color: #fff;
  border-radius: 10px;
}

.sucess-step {
  width: 100vw;
  height: 100vh;
  background: #ffffff 0% 0% no-repeat padding-box;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sucess-center {
  width: 500px;
  height: 300px;
  text-align: center;
  display: flex;
  /* background: white; */
  flex-direction: column;
  align-items: center;
}

.sucess-msg {
  text-align: center;
  font: normal normal medium 24px/25px Noto Sans;
  letter-spacing: 0px;
  color: #262626;
  opacity: 1;
}

.post-id {
  text-align: center;
  font: normal normal normal 14px/21px Noto Sans;
  letter-spacing: 0px;
  color: #3a3a3b;
  opacity: 1;
}

.close-btn,
.return-btn {
  width: 178px;
  height: 46px;
  border-radius: 6px;
  opacity: 1;
  font-size: 12px;
}

.sucess-btn {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.close-btn {
  border: 1px solid #262626;
}

.return-btn {
  background: #ff3f56 0% 0% no-repeat padding-box;
  color: #ffffff;
}

.details-heading-1 {
  display: none;
}

/* media for form 2 */

@media only screen and (min-width: 990px) and (max-width: 1200px) {
  .form2-container {
    width: 90%;
    padding: 2rem 4rem;
  }

  .post-details-title {
    gap: 23.5rem;
  }

  .truck-category,
  .details-heading,
  .vehicle-details {
    font-size: 20px;
  }

  .vehicle-input-1 {
    width: 43%;
  }

  .input-grid {
    grid-template-columns: repeat(2, 1fr);
    width: 90%;
  }

  .details-heading-1 {
    display: none;
  }

  .image-upload-container {
    /* width: 680px; */
    grid-template-columns: repeat(6, 1fr);
    /* gap: 8px; */
  }
}

@media only screen and (min-width: 768px) and (max-width: 990px) {
  .form2-container {
    width: 80%;
  }

  .post-details-title {
    margin-top: 18px;
    gap: 18rem;
  }

  .post-details {
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }

  .details-heading {
    display: none;
  }

  .truck-category,
  .details-heading,
  .vehicle-details {
    font-size: 18px;
  }

  .input-grid {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }

  .input-details {
    width: 100%;
  }

  .image-upload-container {
    /* width: 580px; */
    grid-template-columns: repeat(5, 1fr);
    /* gap: 5px; */
  }

  .details-heading-1 {
    font-size: 20px;
    display: block;
    position: absolute;
    margin-top: 9.5rem;
  }

  .truck-detail {
    gap: 1rem;
  }

  .vehicle-input-1 {
    width: 48%;
  }
}

@media only screen and (min-width: 550px) and (max-width: 768px) {
  .form2-container {
    width: 600px;
    padding: 2rem;
  }

  .post-details-title {
    margin-top: 18px;
    display: flex;
    gap: 18rem;
  }

  .post-details {
    flex-direction: column;
    gap: 4rem;
  }

  .details-heading {
    display: none;
  }

  .truck-category,
  .details-heading,
  .vehicle-details {
    font-size: 18px;
  }

  .truck-detail {
    gap: 1rem;
  }

  .input-grid {
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
  }

  .input-details {
    width: 95%;
  }

  .vehicle-input-1 {
    width: 100%;
  }

  .image-upload img {
    width: 90px;
    height: 90px;
  }

  .image-upload-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
  }

  .details-heading-1 {
    font-size: 20px;
    display: block;
    position: absolute;
    margin-top: 9.5rem;
  }

  .details,
  .details-1,
  .select-location {
    width: 100%;
  }

}

@media only screen and (min-width : 380px) and (max-width: 550px) {
  .form2-container {
    width: 100%;
    padding: 2rem 2rem;
  }

  .post-details-title {
    margin-top: 18px;
    display: flex;
    gap: 18rem;
  }

  .post-details {
    flex-direction: column;
    gap: 4rem;
  }

  .details-heading {
    display: none;
  }

  .truck-category,
  .details-heading,
  .vehicle-details {
    font-size: 17px;
  }

  .input-grid {
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
  }

  .input-details {
    width: 90%;
  }

  .image-upload-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }

  .details-heading-1 {
    font-size: 20px;
    display: block;
    position: absolute;
    margin-top: 9.5rem;
  }

  .select-location,
  .details,
  .details-1,
  .vehicle-input-1 {
    width: 100%;
  }

  .modify-button {
    width: 70px;
    height: 30px;
    margin-right: 1rem;
  }
}

@media only screen and (min-width: 430px) and (max-width: 550px) {
  .image-upload-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
  }
}

@media only screen and (max-width: 380px) {
  .form2-container {
    width: 100%;
    padding: 2rem 1rem;
  }

  .post-details-title {
    margin-top: 18px;
    gap: 18rem;
  }

  .post-details {
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }

  .details-heading {
    display: none;
  }

  .truck-category,
  .details-heading,
  .vehicle-details {
    font-size: 18px;
  }

  .modify-button {
    width: 56px;
    height: 26px;
  }

  .vehicle-input-1 {
    width: 100%;
  }

  .input-grid {
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
  }

  .input-details {
    width: 95%;
  }

  .truck-img {
    width: 60px;
    height: 66px;
  }

  .image-upload-container {
    /* width: 250px; */
    grid-template-columns: repeat(2, 1fr);
  }

  .details-heading-1 {
    font-size: 20px;
    display: block;
    position: absolute;
    margin-top: 9.5rem;
  }

  .details,
  .details-1,
  .select-location {
    width: 100%;
  }

  .modify-button {
    width: 45px;
    height: 26px;
    font-size: 7px;
    margin-right: 0.2rem;
  }

  .modify-icon {
    font-size: 8px;
  }

  .buttons {
    margin: 4rem 0 0 0.5rem;
    padding-bottom: 2rem;
  }

  .sucess-msg {
    font: normal normal medium 20px/25px Noto Sans;
  }

  .close-btn,
  .return-btn {
    width: 128px;
    height: 46px;
  }

  .c-btn,
  .p-btn {
    width: 90px;
    font-size: 12px;
  }
}

/* vehicledetails page  */

.recent-title {
  font-size: 40px;
  color: #262626;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0px;
  padding: 2rem 0 2rem 0;
}

.centered-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

#call-main {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.call-popup {
  width: 510px;
  height: 360px;
  background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 40px #00000014;
  border-radius: 10px;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.callpopup-inner {
  box-sizing: border-box;
  width: 90%;
  height: 90%;
  padding: 0 2rem;
}

.call-close {
  margin-left: 26rem;
}

.call-svg {
  width: 102px;
  height: 102px;
}

.call-header,
.call-number {
  text-align: left;
  font: normal normal 600 24px/30px Noto Sans;
  letter-spacing: 0px;
  color: #3A3A3B;
  opacity: 1;
}

.call-number {
  padding-top: 1rem;
}

.call-header {
  font-weight: 600;
}

.call-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 4rem 0;
}


@media only screen and (min-width: 320px) and (max-width: 768px) {
  .recent-title {
    font-size: 30px;
  }
}

@media only screen and (min-width: 450px) and (max-width: 510px) {
  .call-close {
    margin-left: 22rem;
  }

  .callpopup-inner {
    width: 85%;
  }
}

@media only screen and (min-width: 380px) and (max-width: 450px) {
  .call-close {
    margin-left: 19rem;
  }
}

@media only screen and (min-width: 320px) and (max-width: 380px) {
  .callpopup-inner {
    width: 90%;
  }

  .call-close {
    margin-left: 16rem;
  }
}

/* shortlist page  */

.empty-shortlist,
.empty-shortlist-1,
.chat-shortlist {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  /* width: 100vw; */
}

.empty-shortlist-1 {
  width: 100vw;
}

.chat-shortlist {
  height: 100%;
}

.empty-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 80%;
}

.explore-button {
  width: 178px;
  height: 46px;
  background: var(--unnamed-color-ff3f56) 0% 0% no-repeat padding-box;
  background: #ff3f56 0% 0% no-repeat padding-box;
  border-radius: 6px;
  opacity: 1;
  font: normal normal normal 12px/21px Noto Sans;
  letter-spacing: 0px;
  color: #ffffff;
}

.empty-text {
  color: #262626;
  font-size: 24px;
  text-align: center;
  padding: 1rem 0rem;
  font-weight: 500;
}

/* chat page style   */

.chat-main {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
}

.chat-boxes {
  margin-top: 2rem;
  display: flex;
  gap: 0.5rem;
}

.chatuser-block {
  width: 382px;
  height: 625px;
  background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 20px #00000014;
  border-radius: 10px;
  opacity: 1;
  overflow-y: scroll;
  overflow-x: hidden;
}

.chatmsg-block {
  width: 742px;
  height: 625px;
  background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 20px #00000014;
  border-radius: 10px;
  opacity: 1;
}

.chatuser-list {
  width: 382px;
  height: 96px;
  background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 6px 30px #0000001a;
  border: 1px solid #f0f4f7;
  border-radius: 10px 10px 0px 0px;
  opacity: 1;
  margin-bottom: 2px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  cursor: pointer;
}

.chatmsg-backbtn {
  display: none;
}

.chatuser-img-container {
  width: 56px;
  height: 56px;
  margin: 1.3rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chatuser-img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
}

.chatuser-details {
  margin-top: 1.3rem;
}

.chatuser-name {
  text-align: left;
  font: normal normal medium 18px/28px Montserrat;
  letter-spacing: 0px;
  color: #3a3a3b;
  text-transform: capitalize;
  opacity: 1;
}

.chatuser-msg,
.chatuser-date {
  color: var(--unnamed-color-262626);
  text-align: left;
  font: normal normal normal 12px/17px Noto Sans;
  letter-spacing: 0px;
  color: #262626;
  opacity: 1;
}

.chatuser-msg {
  white-space: nowrap;
  width: 200px;
}

.chatuser-date {
  margin-top: -2.5rem;
  margin-left: 14rem;
}

.chatmsg-titlebar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 65%;
  margin: 2rem 9.1rem;
}

.chatmsg-greeting {
  margin-top: 10px;
  font-size: 21px;
}

.chatmsg-name {
  font-size: 21px;
  font-weight: 600;
}

.chatmsg-username {
  letter-spacing: 0px;
}

.chatmsg-sender {
  display: flex;
  justify-content: flex-end;
}

.chatmsg-sender-time {
  font-size: 10px;
  margin-right: 0.8rem;
}

.chatmsg-receiver-time {
  font-size: 10px;
}

.chatmsg-sender-msg,
.chatmsg-empty {
  font-size: 14px;
  background-color: #FFEBEE;
  color: #262626;
  padding: 1rem 1rem;
  border-radius: 8px 0 8px 8px;
}

.chatmsg-empty {
  font-size: 18px;
  padding: 1rem 2rem;
  border-radius: 50px;
}

.chatmsg-sender-container {
  display: flex;
  justify-content: flex-end;
  margin: 0 0.5rem 1rem 5rem;
}

.chatmsg-receiver-container {
  margin: 0rem 3rem 1rem 1rem;
}

.chatmsg-receiver-msg {
  display: inline-block;
  font-size: 14px;
  color: #262626;
  background-color: #F7F7FA;
  padding: 1rem 1rem;
  border-radius: 0px 8px 8px 8px;
}

.chatmsg-receiver {
  display: flex;
  justify-content: flex-start;
  margin-left: 1rem;
}

.sender-time {
  margin-left: 9rem;
}

.chatperson-icon {
  font-size: 10px;
}

.receiver-container-wrapper {
  width: 99%;
  height: 545px;
  overflow-y: scroll;
  overflow-x: hidden;
  margin-top: 1rem;
}

.receiver-container-wrapper::-webkit-scrollbar {
  width: 3px;
}

.receiver-container-wrapper::-webkit-scrollbar-thumb {
  background-color: #ff3f56;
}

.receiver-container-wrapper::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

@-moz-document url-prefix() {
  .receiver-container-wrapper {
    scrollbar-width: thin;
    scrollbar-color: #ff3f56 #f1f1f1;
  }

  .chatuser-block {
    scrollbar-width: thin;
    scrollbar-color: #f1f1f1 #f1f1f1;
  }
}

.chatuser-block::-webkit-scrollbar {
  width: 3px;
}

.chatuser-block::-webkit-scrollbar-thumb {
  background-color: #fff;
}

.chatuser-block::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

.sender-type {
  width: 742px;
  height: 60px;
  background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px -2px 10px #0000000a;
  border-radius: 0px 0px 10px 10px;
  opacity: 1;
  position: absolute;
  top: 48rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.sender-button {
  width: 37px;
  height: 37px;
  border: none;
  background-color: #ff3f56;
  border-radius: 50%;
}

.sender-icon {
  font-size: 20px;
  color: white;
}

.sender-input {
  border: none;
  outline: none;
  background: transparent;
  width: 650px;
  height: 50px;
}

.type-input {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-left: 1.5rem;
}

@media only screen and (min-width: 990px) and (max-width: 1200px) {
  .chat-main {
    width: 90%;
    margin: 2rem 0rem 2rem 4rem;
  }

  .chatmsg-block,
  .sender-type {
    width: 500px;
  }

  .sender-type {
    top: 50.5rem;
  }

  .sender-input {
    width: 410px;
  }

  .chatmsg-titlebar {
    margin: 2rem 0.7rem;
    width: 95%;
  }

  .chatmsg-username {
    font-size: 13px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 990px) {
  .chat-main {
    width: 100%;
    margin: 2rem 0.5rem;
  }

  .chatmsg-block,
  .chatuser-block,
  .sender-type {
    width: 350px;
  }

  .sender-input {
    width: 260px;
  }

  .sender-type {
    top: 47rem;
  }

  .chatmsg-titlebar {
    margin: 2rem 0.7rem;
    width: 95%;
  }

  .chatmsg-username {
    font-size: 12px;
  }

  .chatmsg-titlebar {
    margin: 2rem 0.5rem;
  }

  .chatuser-list {
    width: 350px;
  }

  .chatuser-date {
    margin-left: 12rem;
  }

  .chatmsg-empty {
    font-size: 16px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 768px) {
  .chat-main {
    width: 95%;
    margin: 2rem 0.5rem;

  }

  .chatmsg-backbtn {
    position: sticky;
    display: flex;
    align-items: center;
    margin-left: 1rem;
  }

  .chatuser-date {
    margin-left: 16rem;
  }

  .chat-boxes {
    display: flex;
    flex-direction: column;
  }

  .chatmsg-titlebar {
    margin: 1rem 0.4rem;
    width: 95%;
  }

  .chatmsg-username {
    font-size: 12px;
  }

  .chatmsg-block,
  .chatuser-block,
  .sender-type {
    width: 420px;
  }


  .sender-input::placeholder {
    font-size: 13px;
  }

  .sender-input {
    width: 320px;
  }


  .chatuser-list {
    width: 420px;
  }

  .type-input {
    gap: 2rem;
  }

  .sender-type {
    position: relative;
    top: 0;
  }

  .chatmsg-empty {
    font-size: 17px;
  }

}

@media only screen and (min-width: 380px) and (max-width: 480px) {
  .chat-main {
    width: 95%;
    margin: 2rem 0.5rem;
  }

  .chat-boxes {
    display: flex;
    flex-direction: column;
  }

  .chatmsg-titlebar {
    margin: 1rem 0.4rem;
    width: 95%;
  }

  .chatmsg-backbtn {
    position: sticky;
    display: flex;
    align-items: center;
    margin-left: 1rem;
  }

  .chatmsg-username {
    font-size: 12px;
  }

  .type-input {
    gap: 2rem;
  }

  .sender-input::placeholder {
    font-size: 13px;
  }

  .sender-input {
    width: 240px;
  }

  .chatuser-list {
    width: 343px;
  }

  .chatmsg-block,
  .sender-type,
  .chatuser-block {
    width: 343px;
  }

  .chatuser-date {
    margin-left: 11rem;
  }

  .sender-type {
    position: relative;
    top: 0;
  }

  .chatmsg-empty {
    font-size: 16px;
  }
}

@media only screen and (min-width: 320px) and (max-width: 380px) {
  .chat-main {
    width: 95%;
    margin: 2rem 0.5rem;
  }


  .chat-boxes {
    display: flex;
    flex-direction: column;
  }

  .chatmsg-titlebar {
    margin: 1rem 0.4rem;
    width: 95%;
  }

  .chatmsg-backbtn {
    position: sticky;
    display: flex;
    align-items: center;
    margin-left: 1rem;
  }

  .chatmsg-username {
    font-size: 10px;
  }

  .type-input {
    gap: 2rem;
  }

  .sender-input::placeholder {
    font-size: 13px;
  }

  .sender-input {
    width: 200px;
  }

  .chatuser-list {
    width: 300px;
  }

  .chatmsg-block,
  .sender-type,
  .chatuser-block {
    width: 300px;
  }

  .chatuser-date {
    margin-left: 9rem;
  }

  .receivermsg-block {
    width: 270px;
  }

  .sender-button {
    width: 30px;
    height: 30px;
  }

  .sender-type {
    position: relative;
    top: 0;
  }

  .chatmsg-empty {
    font-size: 14px;
  }
}



/* terms and conditions page  */

#tc-main,
#n-main {
  width: 100vw;
  height: auto;
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.tc-content,
.n-content {
  width: 1150px;
  margin: 2rem 1rem;
}

.tc-text {
  padding: 0 4rem;
}

.tc-para {
  letter-spacing: var(--unnamed-character-spacing-0);
  text-align: center;
  font-size: 14px;
  letter-spacing: 0px;
  color: #3A3A3B;
  padding-bottom: 2rem;
}


@media only screen and (min-width: 990px) and (max-width: 1200px) {

  .tc-content,
  .n-content {
    width: 80%;
  }
}


@media only screen and (min-width: 768px) and (max-width: 990px) {

  .tc-content,
  .n-content {
    width: 70%;
  }

  .tc-text {
    padding: 0 2rem;
  }
}

@media only screen and (min-width: 570px) and (max-width: 768px) {

  .tc-content,
  .n-content {
    width: 70%;
  }

  .tc-text {
    padding: 0 1rem;
  }
}

@media only screen and (max-width: 570px) {
  .tc-text {
    padding: 0 1rem;
  }

  .n-content {
    width: 90%;
  }
}

@media only screen and (max-width: 382px) {
  .recent-title {
    font-size: 24px;
  }
}

/* Notification page */
.n-card {
  width: 100%;
  height: 96px;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 6px 30px #0000001A;
  border: 1px solid #F0F4F7;
  border-radius: 10px 10px 0px 0px;
  opacity: 1;
  display: flex;
  align-items: center;
  margin: 0px;
  padding-bottom: 0.3rem;
}

.card-content {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  padding: 0 1rem 0 0;
}

.n-svg {
  margin: 0 1rem;
}

.n-msg {
  font: normal normal medium 14px/28px Montserrat;
  letter-spacing: 0px;
  color: #3A3A3B;
  white-space: nowrap;
}

.n-date {
  font: normal normal normal 12px/17px Noto Sans;
  letter-spacing: 0px;
  color: #666666;
  opacity: 1;
}

/* about pages  */

.about-gap {
  padding-bottom: 3rem;
}

.about_circle {
  position: absolute;
  width: 80px;
  height: 80px;
  margin-left: 1.2rem;
  margin-top: 1.2rem;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
}

.about_icon {
  width: 55px;
  height: 55px;
  margin-top: 1rem;
}

/* contact page  */

#contact-main {
  width: 100vw;
  height: auto;
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.contact-content {
  width: 1150px;
  margin: 2rem 1rem;
}

.contact-details {
  width: 100%;
}

.contact-option {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.option-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.option-data {
  text-align: center;
  font: normal normal normal 12px/17px Noto Sans;
  letter-spacing: 0px;
  color: #262626;
  opacity: 1;
}

.option-name {
  text-align: center;
  font: normal normal medium 18px/28px Montserrat;
  letter-spacing: 0px;
  color: #3A3A3B;
  text-transform: uppercase;
  opacity: 1;
}

.option-image {
  padding: 20px 0;
}

.contact-feedback {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.feedback-content {
  /* width: 690px; */
  display: flex;
  gap: 2rem;
}

.feedback-title {
  text-align: center;
  font: normal normal 600 21px/28px Noto Sans;
  letter-spacing: 0px;
  color: #262626;
  text-transform: uppercase;
  opacity: 1;
  padding-bottom: 2rem;
}

.feedback-input,
.feedback-input-1 {
  width: 322px;
  height: 52px;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 20px #0000000A;
  border: 0.5px solid #262626;
  border-radius: 6px;
  opacity: 1;
  margin-top: 5px;
  padding: 0 10px;
}

.feedback-input-1 {
  margin-top: 2rem;
  /* margin-left: -18px; */
  width: 674px;
  height: 202px;
}

.f-input {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

textarea::placeholder {
  font-size: 14px;
}

.map {
  width: 100%;
  height: 400px;
  margin-top: 2rem;
  overflow: hidden;
}

.map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;

}

/*media  contact page  */

@media only screen and (min-width: 990px) and (max-width: 1200px) {

  .contact-content {
    width: 80%;
  }
}



@media only screen and (min-width: 768px) and (max-width: 990px) {

  .contact-content {
    width: 70%;
  }

  .feedback-input {
    width: 270px;
    gap: 5px;
  }

  .feedback-input-1 {
    width: 570px;
  }

}

@media only screen and (min-width: 480px) and (max-width: 768px) {

  .contact-content {
    width: 70%;
  }

  .feedback-input-1 {
    width: 410px;
  }

  .feedback-content {
    /* width: 500px; */
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .feedback-input {
    width: 410px;
  }

  .contact-option {
    margin-left: -25px;
    gap: 2rem;
  }
}

@media only screen and (min-width: 380px) and (max-width: 480px) {

  .contact-content {
    width: 90%;
  }

  .feedback-input-1,
  .feedback-input {
    width: 320px;
  }

  .feedback-content {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .contact-option {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media only screen and (min-width: 320px) and (max-width: 380px) {

  .contact-content {
    width: 100%;
  }

  .feedback-input-1,
  .feedback-input {
    width: 280px;
  }

  .feedback-content {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .contact-option {
    grid-template-columns: repeat(2, 1fr);
  }

  .feedback-title {
    font-size: 19px;
  }
}

/* chat with seller  */

.cws-input-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 1.5rem;
}

/* bottombar */

.bb-card {
  position: sticky;
  bottom: 0;
  width: 100%;
  height: 70px;
  background: #FFFFFF;
  box-shadow: 0px -10px 40px #0000001A;
  border-radius: 20px 20px 0px 0px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 99;
}

.bb-truck-img {
  width: 24px;
  height: 24px;
}

.bb-truck-img img {
  max-width: 100%;
  max-height: 100%;
}

.bb-inner1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.active-icon {
  color: #FF3F56;
  font-size: 16px;
}

.active-pagelink {
  font-size: 12px;
  margin-top: -0.5rem;
  color: #FF3F56;
}

.bb-inner {
  cursor: pointer;
  text-align: center;
}

.bb-pagelink,
.bb-pagelink1 {
  font-size: 12px;
  margin-top: -0.5rem;
  color: #9E9EA1;
}

.bb-pagelink1 {
  color: #ffffff;
  margin: 25px 0 0 22px;
}

.bb-icons {
  color: #9E9EA1;
  font-size: 16px;
}

.bb-circle {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(180deg, #FF3F56, #301E6A);
  bottom: 2.5rem;
  box-shadow: #000000;
  border: 4px solid #FFFFFF;
}

.bb-plus-icon {
  position: absolute;
  color: #ffffff;
  font-size: 17px;
  margin: 15px 0 0 24px;
  font-weight: 700;
}

/* my profile  */
.account-details {
  padding-bottom: 3rem;
}

.profile_photo-1 {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 20px #0000000F;
  border-radius: 10px;
  width: 192px;
  height: 192px;
  padding: 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem auto;
}

.profile_photo-1 img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
}

.customers-details p {
  text-align: center;
  color: #262626;
  letter-spacing: 0px;
  opacity: 1;
}

.customers-name {
  font: normal normal 600 21px/28px Noto Sans;
}

.customers-mail {
  color: #262626;
  font: normal normal normal 16px/22px Noto Sans;
}

.accountdetails-card {
  height: 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.edit-profile_parent,
.chat-parent {
  width: 100%;
  height: 100%;
  background: white;
  overflow-y: scroll;
}

.editprofile-buttons {
  position: fixed;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 40px #0000000F;
  width: 100%;
  height: 86px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  bottom: 0;
  margin-left: -15px;
}

.editprofile-buttons button {
  width: 140px;
  height: 46px;
  border-radius: 8px;
}

.ec-btn {
  border: 1px solid #262626;
}

.es-btn {
  background-color: #DEDFE1;
}