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



.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;

  .imagesContainer {
    width: 100%;
    height: 446px;
    background-color: #e7e7e7;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 40px;

    img {
      height: 100%;
      z-index: 2;
    }

    .blur {
      width: 100%;
      height: 100%;
      backdrop-filter: blur(5px);
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
    }

    .arrowLeft,
    .arrowRight {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      width: 50px;
      height: 50px;
      min-width: 50px;
      min-height: 50px;
      max-width: 50px;
      max-height: 50px;
      background: rgba(0, 0, 0, 0.4);
      display: flex;

      justify-content: center;
      align-items: center;
      border: none;
      color: white;
      border-radius: 50%;
      transition: background 0.2s ease;
    }

    .arrowLeft {
      left: 10px;
    }

    .arrowRight {
      right: 10px;
    }

    .arrowLeft:hover,
    .arrowRight:hover {
      background: rgba(0, 0, 0, 0.6);
    }
  }

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


  @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: 18px;
    max-width: 50%;
    overflow: hidden;
    font-weight: 500;
    color: #5E5E5E;
  }

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