:root {
    --cMain: rgb(114, 28, 181);
    --cMainTransp:   rgba(255, 69, 0,1);
    --cMainSub: rgba(156, 87, 209, 0.8);
  }
  

#iframeselect {
    position: absolute;
    width: 120px;
    margin-left: -140px;
    border-radius: 10px;
    overflow: hidden;
    opacity: 0.95;
  }
  
  
  #iframeselect li{
    width: 100%;
    padding: 1em;
    font-size: 12px;
    text-align: center;
    background-color: #444;
    color: #ddd;
    transition: .3s background-color ease-in-out,
                .3s color ease-in-out;
  }
  
  #iframeselect li:hover{
    background-color: #666;
    color: #fff;
  }
  
  #iframespot {
    background-color: white;
    position: relative;
    width: 1080px;
    height: 500px;
  }
  
  #iframespot .message {
    text-align: center;
    padding-top: 190px;
    font-size: 70px;
    color: #ddd;
  }
   
  
  .cta {
    background-color: white;
    border: 1px solid lightgrey;
    border-radius: 6px;
    color: tomato;
    display: inline-block;
    font-family: "Open Sans", sans-serif;
    font-size: 1em;
    font-weight: 700;
    margin-bottom: 1em;
    padding: 0.3em 1em;
    text-decoration: none;
  }
  .cta:hover {
    background-color: lightgrey;
    color: slategrey;
    text-decoration: none;
  }
  
  .ModalDetalles {
    background: rgba(0, 0, 0, 0.5);
    bottom: 0;
    left: 0;  
    opacity: 0;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 0;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    z-index: -1;
    display: none;
  }
  .ModalDetalles.activo {
    display: block;
    opacity: 1;
    pointer-events: auto;  
    z-index: 99999;
  }
  .ModalDetalles .mymodal {
    background-color: white;
    height: 100%;
    
    position: relative;
    margin: 0 auto;
    padding: 1em;
    border-radius: 5px;
    /* overflow-y: scroll; */
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 2px 5px 0 
    rgba(0, 0, 0, 0.2), 0 
    2px 10px 0 rgba(0, 0, 0, 1);
  }  
  
  @media (min-width: 60em) {
    .ModalDetalles .mymodal {
      height: 75%;
      margin: 5% auto;
      padding: 2em;
      max-height: 57em;
      max-width: 66em;

      width: 85%;
    }
/*   
    .ModalDetalles .card-body p {
      overflow-y: auto;
      max-height: 100px;
      color: black;
      text-align: justify;
      padding-right: 10px;    
      } */
  }
  .ModalDetalles .mymodal > iframe, .ModalDetalles .mymodal > div {
    border: none;
    width: 100%;
    height: 100%;
  }
 
  .ModalDetalles .card-body {
    margin-left: 20px;
    margin-right: 20px;
 
    

  }


  .ModalDetalles .close {
    background-color: turquoise;
    color: white;
    font-size: 24px;
    padding: 8px 12px;
    margin: 8px;
    position: absolute;
    right: 0;
    text-align: center;
    text-decoration: none;
    top: 0;  
  }
  
  .containerslide {
    margin: 0 auto;
    padding: 40px;
    width: 100%;
    color: #333;
    background: #419be0;
  }
  
  /*Pulse video*/



.onlyvideo {
  z-index:1;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: var(--cMainTransp);
  border-radius: 50%;
  color: black;
  position:absolute;
  cursor: pointer;
  transition: height .3s ease-in-out,
  width .3s ease-in-out,
  border-radius .3s ease-in-out,
  margin .3s ease-in-out;
}

.onlyvideo  div > img {
  width: 28px;
  width: 28px;
  position: absolute;
  margin: 6px;
  transition: opacity .01s ease-in-out;
}

.onlyvideo-content {
  width: 260px;
  height: 60px;
  padding: 5px;
  border-radius: 50%;
  /* background-color: white; */
  opacity: 0;
  text-align: center;
  pointer-events: none;
  transition: opacity .01s ease-in-out;
}


.onlyvideo-content p {
  margin-left: 35px;
  font-family: "Open Sans", sans-serif;
  font-size: 0.9em  !important;
  font-weight: 600;
  color: #2d2d2d;

  margin-top: -20px;
  opacity: 0;
  text-align: center;
  font-size: 10px;
  /* transition: margin .01s ease-in-out,
              opacity .01s ease-in-out; */
}

.onlyvideo:hover {
  width: 260px;
  height: 40px;
  border-radius: 100px;
  margin-left: -100px;
}

.onlyvideo:hover .pulse-content {
  opacity: 1;
  pointer-events: all;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  transition: opacity .3s ease-in-out .3s;
}

.onlyvideo:hover  img {

  left: 0px;
  transition: width .3s ease-in-out .4s,
              opacity .3s ease-in-out .4s;
}

.onlyvideo:hover .pulse-content p {
  margin-top: 5px;
  opacity: 1;
  color: white;
  transition: margin .1s ease-in-out .3s,
              opacity .1s ease-in-out .3s;
}


/*Pulse Spot*/


.pulse {
  z-index:1;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: var(--cMain);
  border-radius: 50%;
  color: black;

  position:absolute;
  animation: animate 2s linear infinite;
  cursor: pointer;
  transition: height .3s ease-in-out,
  width .3s ease-in-out,
  border-radius .3s ease-in-out,
  margin .3s ease-in-out;


}


@keyframes animate {
  0% {
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9), 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  40% {
      box-shadow: 0 0 0 50px rgba(255, 255, 255, 0), 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  80% {
      box-shadow: 0 0 0 50px rgba(255, 255, 255, 0), 0 0 0 30px rgba(255, 255, 255, 0);
  }
  100% {
      box-shadow: 0 0 0 0 rgba(22, 6, 245, 0), 0 0 0 30px rgba(255, 0, 64, 0);
  }
}

  .pulse  div > img {
  width: 28px;
  width: 28px;
  position: absolute;

  margin: 6px;
  transition: opacity .01s ease-in-out;
}

.pulse-content {
  width: 260px;
  height: 60px;
  padding: 5px;
  border-radius: 50%;
  /* background-color: white; */
  opacity: 0;
  text-align: center;
  pointer-events: none;
  transition: opacity .01s ease-in-out;
}


.pulse-content p {
  margin-left: 35px;
  font-family: "Open Sans", sans-serif;
  font-size: 0.9em  !important;
  font-weight: 600;
  color: #2d2d2d;

  margin-top: -20px;
  opacity: 0;
  text-align: center;
  font-size: 10px;
  /* transition: margin .01s ease-in-out,
              opacity .01s ease-in-out; */
}

.pulse:hover {
  width: 260px;
  height: 40px;
  border-radius: 100px;
  margin-left: -100px;
}

.pulse:hover .pulse-content {
  opacity: 1;
  pointer-events: all;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  transition: opacity .3s ease-in-out .3s;
}

.pulse:hover  img {

  left: 0px;
  transition: width .3s ease-in-out .4s,
              opacity .3s ease-in-out .4s;
}

.pulse:hover .pulse-content p {
  margin-top: 5px;
  opacity: 1;
  color: white;
  transition: margin .1s ease-in-out .3s,
              opacity .1s ease-in-out .3s;
}


/*PulseInfo - Titulo */


.pulsetitle {
z-index:1;
width: 35px;
height: 35px;
cursor: pointer;
background: var(--cMainSub);
border-radius: 50%;
text-align: center;
position:absolute;
animation: animate 2s linear infinite;
cursor: pointer;
transition: height .3s ease-in-out,
width .3s ease-in-out,
border-radius .3s ease-in-out,
margin .3s ease-in-out;

}



.pulsetitle-content {
width: 190px;
height: 35px;
border-radius: 50%;
/* background-color: white; */
opacity: 0;
pointer-events: none;
transition: opacity .01s ease-in-out;
}

.pulsetitle img {
  position:absolute;
  left:0px;
width: 25px;
margin: 5px;
transition: width .01s ease-in-out,
            opacity .01s ease-in-out;
}

.pulsetitle-content p {

font-family: "Open Sans", sans-serif;
font-size: 0.9em  !important;
font-weight: 600;

opacity: 0;
text-align: right;
padding-right: 20px;
font-size: 10px;
transition: margin .01s ease-in-out,
            opacity .01s ease-in-out;
}

.pulsetitle:hover {
width: 220px;
height: 35px;
border-radius: 1000px;

/* margin-left: -10px; */
/* background-color: #9d12ee; */
}

.pulsetitle:hover .pulsetitle-content {
opacity: 1;
pointer-events: all;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
margin-left: 35px;
transition: opacity .3s ease-in-out .3s;
}


.pulsetitle:hover .pulsetitle-content p {
margin-top: 10px;
opacity: 1;
color: white;
transition: margin .1s ease-in-out .3s,
            opacity .1s ease-in-out .3s;
}

/*Info spoot*/
.info-spot {
  z-index:10000;
  width: 40px;
  height: 40px;
  background-color: var(--cMainTransp);
  /* background-color: #0000FF; */
  border-radius: 50%;
  margin-left: 0;
  text-align: center;
  cursor: pointer;
  -webkit-box-shadow: -1px 2px 8px -2px rgba(0,0,0,0.8);
  -moz-box-shadow: -1px 2px 8px -2px rgba(0,0,0,0.8);
  box-shadow: -1px 2px 8px -2px rgba(0,0,0,0.8);
  transition: height .3s ease-in-out,
              width .3s ease-in-out,
              border-radius .3s ease-in-out,
              margin .3s ease-in-out;
}

.info-spot > img {
  width: 30px;
  margin: 5px 0;
}

.info-content {
  width: 280px;
  height: 390px;
  background-color: #fff;
  opacity: 0;
  text-align: center;
  pointer-events: none;
  transition: opacity .01s ease-in-out;
}

.info-spot:hover {
  width: 280px;
  height: 430px;
  border-radius: 5px;
  margin-left: -120px;
}

.info-content img {
  width: 200px;
  opacity: 0;
  background-color: #419be0;
  transition: width .01s ease-in-out,
              opacity .01s ease-in-out;
}

.info-content h6 {
  font-size: medium;
  margin-top: 10px;
}

.html-content {
   overflow-y: auto;
   max-height: 140px;
   margin: 10px;
}

.info-content p {
  margin: 10px 0;
  color: #2d2d2d;
  line-height: 18px; 
  opacity: 0;
  text-align: left;
  transition: margin .01s ease-in-out,
              opacity .01s ease-in-out;
}


.info-spot:hover .info-content {
  opacity: 1;
  pointer-events: all;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  transition: opacity .3s ease-in-out .3s;
}

.info-spot:hover .info-content img {
  width: 100%;
  opacity: 1;
  transition: width .3s ease-in-out .4s,
              opacity .3s ease-in-out .4s;
}

.info-spot:hover .info-content p {
  margin-top: 10px;
  opacity: 1;
  transition: margin .3s ease-in-out .6s,
              opacity .3s ease-in-out .6s;
}
   
  .card-img-top {
    vertical-align: middle;
          border-style: none;
          width: 100%;
          height: 300px;
          object-fit:contain;
  }
  .card-body h5
  {
    color: #000;  
  }

.card-text{
  overflow-y: auto;
  height:180px;
    max-height: 180px;
    padding-right: 20px;
}

  .card-body .card-text {
  
    color: #000000;
    text-align: justify;   
    line-height: 18px; 
    }  
  
  .card-body .card-text::-webkit-scrollbar-track
  {
      -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
      border-radius: 8px;
      background-color: #F5F5F5;
  
  }
  
  .card-body .card-text::-webkit-scrollbar
  {
      width: 20px;
      background-color: #F5F5F5; 
  }
  
  .card-body .card-text::-webkit-scrollbar-thumb
  {
      border-radius: 8px;
      -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);  
      background-color: #9d12ee;  
  }    
    
  .modal-detalles {
    padding: 0 40px;
    opacity: 0;
    transition: all 0.3s;
  }
  
  .modal-detalles.open {
    opacity: 1; 
  }
  
  
  .slider-detalles  {
  width: auto;
  overflow: hidden;
  }
  
  
  .slick-prev:before,
  .slick-next:before {
    color: var(--cMainTransp)  !important;
  }
  
  .slick-slider-dots {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    background-color: #9d12ee;
  }
  .slick-slider-dots ul {
    display:inline-flex;
    list-style: none;
    margin: 5px;
    padding: 5px;
  }
  .slick-slider-dots ul li {
    margin: 0 4px;
    height: auto;
    width: auto;
  }
  .slick-slider-dots ul li button {
    background: gray;
    height: 8px;
    width: 50px;
    overflow: hidden;
    color: gray;
    border: none;
    border-radius: 4px;
  }

  .slick-dots li button:before {

      content: '' !important;
  }


  .slick-slider-dots ul li.slick-active button {
    background: blue;
    color: yellow;
  }


  /* View control buttons */

.viewLogo { 
  position: absolute;
  bottom: 10px;
  width: 250px;
  height: auto;
  padding: 5px;
  user-select: none;
}

.viewLogo img{
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}


/* Hide controls when width is too small */
@media (max-width: 600px) {  
  .viewLogo  { 
    position: absolute;
    width: 160px;
    height: auto;
    padding: 5px;
 
  }
  .slick-slider-dots {
    position: absolute;
    bottom: 0px;
    left: 35%;
    transform: translateX(-50%);
    display: flex;
    background-color: #9d12ee;
}
}

/*Video responsive*/
.video-responsive {
  position: relative;
  padding-bottom: 50%; /* 16/9 ratio */
  padding-top: 30px; /* IE6 workaround*/
  height: 0;
  overflow: hidden;
}

  .video-responsive iframe,
  .video-responsive object,
  .video-responsive embed {
      position: absolute;
  
      width: 98%;
      height: 100%;
  }


  .slick-dotted .slick-slider
  {
 margin-bottom: 10px !important;
  }

  .slick-slider-dots {
    position: absolute;
    bottom: 0px;
    left: 35%;
    transform: translateX(-50%);
    display: flex;
    background-color: #9d12ee;
}


@media screen and (max-height: 900px) and (min-height: 600px){
  .card-text{
    overflow-y: auto;
    height:120px;
      max-height: 180px;
      padding-right: 20px;

  }

    .card-img-top {
    vertical-align: middle;
          border-style: none;
          width: 100%;
          height: 220px;
          object-fit:contain;
  }

  .video-responsive {
   background-color: #419be0;
    padding-bottom: 40%;     
height: 0px;

  }
  
  
  .video-responsive iframe,
  .video-responsive object,
  .video-responsive embed {

    background-color: #666;
      width: 100% !important;
      height: 100% !important;
      
  }

  .video-responsive iframe
  {
    top: 0px;
  }
  
}

