.container {
  /* max-width: 1360px; */
  margin: 0 auto;
  margin-top: 20px;
}

.header {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

.mainTitle {
  font-weight: 700;
  font-size: 32px;
}

.leftContainer {
  width: 75%;
}

.gallery {
  width: 988px;
  margin: 0 auto;
}

.location {
  display: flex;
  align-items: center;
  gap: 10px;
}

.price {
  font-size: 24px;
  font-weight: 600;
  color: #eb664e;
}

.leftRightContainer {
  margin-top: 10px;
  display: flex;
  gap: 20px;
  padding: 0px 20px;
}

.rightContainer {
  width: 25%;
}

.stickyContainer {
  position: sticky;
  top: 0px;
  z-index: 10;
}

.statsBtns {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.remarkContainer {
  border: 1px solid #d9d9d9;
  margin-top: 20px;
  padding: 20px;
  border-radius: 5px;
}

.remark {
  font-weight: 400;
  font-size: 14px;
}

.centerBtn {
  text-align: center;
  margin-top: 20px;
}

.propertyDetails {
  padding: 19px;
  display: flex;
  gap: 21px;
  flex-wrap: wrap;
}

.propertyDetail {
  border: 1px solid #e4e4e4;
  border-radius: 10px;
  width: 173px;
  padding: 3px 16px;
}

@media screen and (min-device-width: 320px) and (max-device-width: 449px) {   
.propertyDetail {
  width: 1100%;
  padding: 10px;
}
.css-udya9w{
  width:  100%!important;
  padding: 10px;
}
.header {
  padding: 0 0 15px 0;
}
}

.formContainer {
  padding: 17px 15px;
}

/* TextField styles */
.inputRoot {
  font-size: 12px;
  font-weight: 400;
  border: 1px solid #e9e9e9;
  border-radius: 50px;
}

.outline {
  border-color: #e9e9e9;
}

.input {
  font-size: 12px;
  font-weight: 400;
}

textarea.input {
  font-size: 12px !important;
  font-weight: 400 !important;
}

.label {
  font-size: 12px;
  font-weight: 400;
}

.multilineTextFieldOutline {
  border-radius: 15px !important;
}

/* Checkbox and label */
.checkbox {
  padding-top: 0;
}

.termsLabel {
  font-size: 12px;
  font-weight: 400;
}

.checkboxLabel {
  align-items: flex-start;
}

/* Submit button */
.submitBtn {
  background-color: #00adb5;
  font-size: 15px;
  font-weight: 500;
  border-radius: 5px;
  text-transform: capitalize;
  width: 100%;
}

.submitBtn:hover {
  background-color: #008a91;
}

@media screen and (min-width: 320px) and (max-width: 1360px) {
  .container {
    width: 95% !important;
    margin: auto !important;
  }

  .leftContainer {
    width: 70% !important;
  }

  .rightContainer {
    width: 300px !important;
  }
}

@media screen and (min-width: 320px) and (max-width: 992px) {
  .leftContainer {
    width: 100% !important;
  }

  .rightContainer {
    width: 100% !important;
  }

  /* .statsCard{
    width: unset !important;
  } */
}

.statsCard {
  width: 387px;
  box-shadow: 0px 0px 1px 0px #000000cc;
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 5px;
  border-radius: 5px;
  padding-left: 24px;
}

@media screen and (min-width: 320px) and (max-width: 768px) {
  .statsCardContainer {
    display: grid !important;
    grid-template-columns: auto auto auto !important;
  }

  .statsBtns {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .statsCard {
    width: 100% !important;
  }
}

@media screen and (min-width: 320px) and (max-width: 520px) {
  .statsCardContainer {
    gap: 11px !important;
  }

  .statsCard {
    grid-column: 1 / span 2;
  }

  .statsBtns {
    grid-column: 3;
    grid-row: 1 / span 3;
  }
}
