@charset "UTF-8";
.kurinets__property {
  position: relative;
  z-index: 0;
  width: 100%;
  min-width: 320px;
  height: auto;
  padding: 1rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow-x: scroll;
  overscroll-behavior-x: auto;
  -ms-scroll-snap-type: x proximity;
      scroll-snap-type: x proximity;
}
.kurinets__property-item {
  width: 90%;
  min-width: 200px;
  max-width: 320px;
  height: auto;
  min-height: 250px;
  border: none;
  padding: 1rem;
  font-family: "Source Sans 3";
  font-size: 1rem;
  font-weight: 500;
  color: #131313;
  scroll-snap-align: center;
}
.kurinets__property-item-picture {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 300px;
  border-radius: 0.5rem;
  overflow: hidden;
}
.kurinets__property-item-picture:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.kurinets__property-item-picture-type {
  position: absolute;
  z-index: 1;
  top: 2.5%;
  left: 2.5%;
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.kurinets__property-item-picture-type p {
  width: auto;
  height: auto;
  margin: 0;
  border-radius: 1rem;
  padding: 0.25rem 1.05rem;
  display: inline-block;
  background-color: #131313;
  color: #FFFFFF;
}
.kurinets__property-item-picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.kurinets__property-item-info {
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: "Source Sans 3";
}
.kurinets__property-item-info-title {
  margin-top: 1rem;
  font-family: "Lora", serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #696969;
}
.kurinets__property-item-info-title p {
  margin: 0;
}
.kurinets__property-item-info-elements {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.1rem;
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
}
.kurinets__property-item-info-elements > span {
  margin: 0;
  line-height: 1.3rem;
}
.kurinets__property-item-info-more {
  width: 100%;
  height: auto;
  margin: 0;
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.kurinets__property-item-info-more button {
  width: auto;
  height: auto;
  border: none;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.3rem;
  display: inline-block;
  background-color: #131313;
  color: #FFFFFF;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.kurinets__property-item-info-more button:hover {
  cursor: pointer;
  background-color: #1a1a1a;
}

.kurinets__property-preview {
  position: fixed;
  z-index: 20;
  bottom: -100%;
  left: 0;
  right: 0;
  height: auto;
  min-height: 450px;
  border-radius: 2rem 2rem 0 0;
  border: solid 1.5px #dadada;
  padding: 2rem;
  background-color: #FFFFFF;
  -webkit-animation: previewProperty 1s ease-in-out 1 forwards;
          animation: previewProperty 1s ease-in-out 1 forwards;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
}
.kurinets__property-preview-back {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.kurinets__property-preview-back button {
  width: auto;
  height: auto;
  border: none;
  outline: none;
  background-color: transparent;
}
.kurinets__property-preview-back button:focus, .kurinets__property-preview-back button:active {
  outline: none;
}
.kurinets__property-preview-back button svg {
  width: 1rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  fill: #131313;
  pointer-events: none;
  -webkit-transition: all 0.5s cubic-bezier(0.44, 0, 0.31, 1);
  transition: all 0.5s cubic-bezier(0.44, 0, 0.31, 1);
}
.kurinets__property-preview-back button:hover svg {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}
.kurinets__property-preview-picture {
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
.kurinets__property-preview-picture img {
  width: 180px;
  height: auto;
  border-radius: 0.5rem;
  display: inline-block;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.kurinets__property-preview-info {
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: "Source Sans 3";
  overflow-y: scroll;
  /* Ponemos un color de fondo y redondeamos las esquinas del thumb */
  /* Cambiamos el fondo y agregamos una sombra cuando esté en hover */
  /* Cambiamos el fondo cuando esté en active */
  /* Ponemos un color de fondo y redondeamos las esquinas del track */
  /* Cambiamos el fondo cuando esté en active o hover */
}
.kurinets__property-preview-info::-webkit-scrollbar {
  width: 4px;
  height: 8px;
}
.kurinets__property-preview-info::-webkit-scrollbar-thumb {
  background: #e0e0e0;
  border-radius: 4px;
}
.kurinets__property-preview-info::-webkit-scrollbar-thumb:hover {
  background: #b3b3b3;
  -webkit-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}
.kurinets__property-preview-info::-webkit-scrollbar-thumb:active {
  background-color: #dbdbdb;
}
.kurinets__property-preview-info::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 4px;
}
.kurinets__property-preview-info::-webkit-scrollbar-track:hover, .kurinets__property-preview-info::-webkit-scrollbar-track:active {
  background: #d4d4d4;
}
.kurinets__property-preview-info-type {
  position: relative;
  width: auto;
  height: auto;
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.kurinets__property-preview-info-type p {
  width: auto;
  height: auto;
  margin: 0;
  border-radius: 1rem;
  padding: 0.25rem 1.05rem;
  display: inline-block;
  background-color: #131313;
  color: #FFFFFF;
}
.kurinets__property-preview-info-title {
  margin-top: 1rem;
  font-family: "Lora", serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #696969;
}
.kurinets__property-preview-info-title p {
  margin: 0;
}
.kurinets__property-preview-info-elements {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0.5rem 1fr 0.5rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  gap: 0.5rem;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
}
.kurinets__property-preview-info-elements > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.kurinets__property-preview-info-elements > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.kurinets__property-preview-info-elements > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
.kurinets__property-preview-info-elements > span {
  margin: 0;
  line-height: 1rem;
}
.kurinets__property-preview-info-content {
  margin-top: 0.5rem;
  font-family: "Source Sans 3", sans-serif;
  color: #696969;
}
.kurinets__property-preview-info-content p {
  font-size: 1.1rem;
  font-weight: 500;
}
.kurinets__property-preview-info-rechat {
  width: 100%;
  height: auto;
  margin: 0;
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.kurinets__property-preview-info-rechat a {
  width: 100%;
  height: auto;
  border: none;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  font-family: "Source Sans 3", sans-serif;
  font-size: 1rem;
  display: inline-block;
  background-color: #131313;
  color: #FFFFFF;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-align: center;
  text-decoration: none;
}
.kurinets__property-preview-info-rechat a:hover {
  cursor: pointer;
  background-color: #1a1a1a;
}
.kurinets__property-preview-bar {
  width: 50%;
  height: 0.5rem;
  margin: 0 auto;
  margin-top: 1rem;
  border-radius: 5rem;
  background-color: #131313;
  -webkit-animation: barPreviewMove 2s ease-in-out 1 forwards;
          animation: barPreviewMove 2s ease-in-out 1 forwards;
}
@-webkit-keyframes barPreviewMove {
  0% {
    width: 50%;
  }
  50% {
    width: 90%;
  }
  75% {
    width: 25%;
  }
  100% {
    width: 50%;
  }
}
@keyframes barPreviewMove {
  0% {
    width: 50%;
  }
  50% {
    width: 90%;
  }
  75% {
    width: 25%;
  }
  100% {
    width: 50%;
  }
}
@-webkit-keyframes previewProperty {
  0% {
    bottom: -100%;
  }
  100% {
    bottom: 0%;
  }
}
@keyframes previewProperty {
  0% {
    bottom: -100%;
  }
  100% {
    bottom: 0%;
  }
}

@media (min-width: 1200px) {
  .kurinets__property {
    width: 90%;
    margin: 0 auto;
    padding: 1vw 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1vw 1fr 1vw 1fr 1vw 1fr;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    gap: 1vw;
    overflow-x: hidden;
  }
  .kurinets__property-item {
    width: 100%;
    max-width: 20vw;
    min-height: 5vw;
    padding: 1vw;
    font-size: 1vw;
  }
  .kurinets__property-item-picture {
    width: 100%;
    height: 5vw;
    min-height: 325px;
    border-radius: 0.5vw;
  }
  .kurinets__property-item-picture-type {
    top: 2.5%;
    left: 2.5%;
  }
  .kurinets__property-item-picture-type p {
    border-radius: 1vw;
    padding: 0.25vw 1.05vw;
  }
  .kurinets__property-item-info-title {
    margin-top: 1vw;
    font-size: 1vw;
  }
  .kurinets__property-item-info-elements {
    margin-top: 0.5vw;
    gap: 0.1vw;
    font-size: 0.9vw;
  }
  .kurinets__property-item-info-elements > span {
    line-height: 1vw;
  }
  .kurinets__property-item-info-more {
    margin-top: 1vw;
  }
  .kurinets__property-item-info-more button {
    border-radius: 0.5vw;
    padding: 0.5vw 1vw;
    font-size: 1vw;
  }
  .kurinets__property-preview {
    bottom: 0;
    width: 25vw;
    min-height: 400px;
    margin: 0 auto;
    border-radius: 2vw;
    border: solid 0.2vw #dadada;
    padding: 2vw;
  }
  .kurinets__property-preview-back button {
    width: auto;
    height: auto;
    border: none;
    outline: none;
    background-color: transparent;
  }
  .kurinets__property-preview-back button:focus, .kurinets__property-preview-back button:active {
    outline: none;
  }
  .kurinets__property-preview-back button svg {
    width: 1vw;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
    fill: #131313;
    -webkit-transition: all 0.5s cubic-bezier(0.44, 0, 0.31, 1);
    transition: all 0.5s cubic-bezier(0.44, 0, 0.31, 1);
    pointer-events: none;
  }
  .kurinets__property-preview-back button:hover svg {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  .kurinets__property-preview-picture img {
    width: 10vw;
    border-radius: 0.5vw;
  }
  .kurinets__property-preview-info-type {
    margin-top: 1vw;
  }
  .kurinets__property-preview-info-type p {
    border-radius: 1vw;
    padding: 0.25vw 1.05vw;
    font-size: 1vw;
  }
  .kurinets__property-preview-info-title {
    margin-top: 1vw;
    font-size: 1.2vw;
  }
  .kurinets__property-preview-info-elements {
    margin-top: 0.5vw;
    gap: 0.1vw;
    font-size: 1vw;
  }
  .kurinets__property-preview-info-elements > span {
    line-height: 1vw;
  }
  .kurinets__property-preview-info-content {
    margin-top: 0.5vw;
    font-family: "Source Sans 3", sans-serif;
    color: #696969;
  }
  .kurinets__property-preview-info-content p {
    font-size: 1.1vw;
    font-weight: 500;
  }
  .kurinets__property-preview-info-rechat {
    margin-top: 1vw;
  }
  .kurinets__property-preview-info-rechat a {
    border-radius: 0.5vw;
    padding: 0.5vw 1vw;
    font-size: 1vw;
  }
  @-webkit-keyframes previewProperty {
    0% {
      bottom: -100%;
    }
    100% {
      bottom: 10%;
    }
  }
  @keyframes previewProperty {
    0% {
      bottom: -100%;
    }
    100% {
      bottom: 10%;
    }
  }
}