@use "../../assets/scss/customVariables.scss" as *;

.container {
  width: 100%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 51px;

  .pageTitle {
    font-weight: 700;
    font-size: 45px;
    color: #000000;
  }

  .divider {
    width: 100%;
    height: 5px;
    background: $primary-color;
    margin: 20px 0;
    margin-bottom: 40px;
  }

  .stepperContainer {
    width: 100%;
    margin-bottom: 20px;
  }

  .maxContainer {
      width: 100%;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: space-between;
      margin: 0 auto;
      max-width: $max-width-layout;


      @media screen and (max-width: 900px) {
        flex-direction: column;
      }

      .formContainer {
        width: 100%;
        gap: 25px;
        display: flex;
        align-items: center;
        flex-direction: row;
        box-sizing: border-box;
        flex-wrap: wrap;
        justify-content: space-between;
      }
    }
}

.divisor {
  width: 100%;
  height: 1px;
  background: #DDDDDD;
  margin: 20px 0;
}

.note{ 
  width: 100%;
  font-weight: 600;
  color: #5E5E5E;
}

.priceContainer {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap:  20px;
  margin-bottom: 20px;

  .price {
    font-weight: 600;
    color: #5E5E5E;
    font-size: 25px;
    font-weight: 600;
    color: #000;
  }

  .inputcontainer {
    display: flex;
    flex-direction: row;
    align-items: center;

  }
}

.propertyDetailItem {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap:  20px;
  margin-bottom: 20px;
  
  .label {
    font-weight: 600;
    font-size: 22px;
    font-weight: 500;
    color: #5E5E5E;
  }

  .inputcontainer {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100px;
  }
}