/* ESTILOS WP GENRALES */
 .centered-paragraph {
     margin: 0 auto;
     max-width: none;
     white-space: unset;
     width: 100%;
     background: #f9f5f1;
     color: #1d1d1b;
}
/* FIN ESTILOS WP GENRALES */

 .item {
   /*
   padding: 15px 15px 0;
   box-shadow: 0 40px 70px 0 rgba(0, 0, 0, 0.22), 0px 27px 24px 0 rgba(0, 0, 0, 0.2);
   background: #fefefe;
   width: 600px;
   height: 450px;
   */
   border-radius: 4px;
   display: flex;
}
 .item .item-image {
   display: inline-block;
   position: relative;
}
 .item .item-image img {
   display: block;
   max-width: 100%;
}
 .item .image-point {
   position: absolute;
}
 .item .image-point .point:before {
   transform: translate(-50%, -50%) rotate(45deg);
}
 .item .image-point .point {
   position: relative;
   cursor: pointer;
   height: 30px;
   width: 30px;
   background: #679e9d;
   border-radius: 100%;
}
 .item .image-point .point:hover {
   /*
   animation-fill-mode: forwards;
   animation-name: pulseIn;
   animation-duration: 0.5s;
   animation-iteration-count: 1;
   */
}
.item .image-point .point:before {
    transition: all 0.5s;
    color: white;
    content: "+";
    font-size: 30px;
    font-weight: 500;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    display: inline;
    left: 50%;
    transform-origin: 50% 50%;
    width: auto;
    height: auto;
    background: transparent;
}
.point::after {
  display: none;
}
 .item .item-description {
   padding-top: 52px;
}
 .item .item-description small {
   text-transform: uppercase;
   font-size: 10px;
   color: #ccc;
}
 .item .description-price {
   font-size: 26px;
   color: #679e9d;
   position: relative;
}
 .item .description-price:after {
   position: absolute;
   content: attr(data-currency);
   font-size: 10px;
}
 .item .description-title {
   margin-top: 0;
   position: relative;
   z-index: 5;
   font-size: 34px;
   margin-bottom: 10px;
}
 .item .description-title:before {
   content: "";
   height: 8px;
   position: absolute;
   z-index: -1;
   left: 3px;
   width: 60%;
   bottom: 12px;
   background: #f3ce2b;
}
 .point-content {
   display: none;
   transition: all 0.5s;
   visibility: hidden;
   opacity: 0;
   top: 34px;
   position: absolute;
   /*width: 400px;*/
   width: max-content;
   background: white;
   display: flex;
   box-shadow: 0 40px 70px 0 rgba(0, 0, 0, 0.22), 0px 27px 24px 0 rgba(0, 0, 0, 0.2);
}
.point-content-right {
    right: 12px;
}

.point-content-bottom{
    top: -60px;
}

 .point-content .close {
   position: absolute;
   top: 20px;
   right: 20px;
   cursor: pointer;
}
 .point-content.active {
   top: 34px;
   visibility: visible;
   opacity: 1;
   z-index: 99;
}

.point-content-right.active {
    right: 12px;
}

.point-content-bottom.active {
    top: -60px;
}


 .point-content .point-details {
   padding: 15px;
   text-align: left;
   font-size: 12px;
}
 .point-content .point-image {
   padding: 10px 0;
   width: 500px;
}


.pulse {
  cursor: pointer;
  box-shadow: 0 0 0 rgba(103,158,153, 1);
  animation: pulse 2s infinite;
}
.pulse:hover {
  animation: none;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(103,158,153, 1);
  }
  70% {
      -webkit-box-shadow: 0 0 0 10px rgba(159,50,53, 0);
  }
  100% {
      -webkit-box-shadow: 0 0 0 0 rgba(159,50,53, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(103,158,153, 1);
    box-shadow: 0 0 0 0 rgba(103,158,153, 1);
  }
  70% {
      -moz-box-shadow: 0 0 0 10px rgba(159,50,53, 0);
      box-shadow: 0 0 0 10px rgba(159,50,53, 0);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 rgba(159,50,53, 0);
      box-shadow: 0 0 0 0 rgba(159,50,53, 0);
  }
}

 @keyframes pulseIn {
   from {
     box-shadow: transparent 0 0 0 0;
  }
   to {
     box-shadow: 0 0 0 5px rgba(159,50,53, .30), 0 0 0 10px rgba(159,50,53, .20), 0 0 0 15px rgba(159,50,53, .10);
  }
}
 @keyframes pulseOut {
   from {
     box-shadow: 0 0 0 5px rgba(159,50,53,) .30), 0 0 0 10px rgba(159,50,53, .20), 0 0 0 15px rgba(159,50,53, .10);
  }
   to {
     box-shadow: transparent 0 0 0 0;
  }
}
 
 

@media only screen and (min-device-width: 2000px) {
}

@media only screen and (max-device-width: 812px) {
}