/*btn-Whatsap*/
.whatsapp-button-static {
  position: fixed;
  background: #fff;
  width: 70px;
  height: 70px;
  border-radius: 50px;
  right: 40px;
  bottom: 75px;
  z-index: 10;

  box-shadow: 7px 7px 5px 0px rgba(0,0,0,0.75); /* Sombra */

  transition: 0.5s ease 0s;
  animation: expandAfterLoad 20s 1 ease 5s; /* Animacion automatica luego de 5 segundos cargada la pagina */
}

#emp_descripcion{
  font-size: 18px !important;
}

.btnZoom{
    position: absolute;
    right: 0;
    color: #000;
}

/*.featured{
  margin-top: 30%;
}
@media (max-width: 1350px)
{
  .featured{
    margin-top: 35%;
  }
}
@media (max-width: 1200px)
{
  .featured{
    margin-top: 43%;
  }
}
@media (max-width: 1000px)
{
  .featured{
    margin-top: 53%;
  }
}
@media (max-width: 890px)
{
  .featured{
    margin-top: 65%;
  }
}
@media (max-width: 768px)
{
  .featured{
    margin-top: 92%;
  }
}
@media (max-width: 660px)
{
  .featured{
    margin-top: 110%;
  }
}
@media (max-width: 550px)
{
  .featured{
    margin-top: 130%;
  }
}
@media (max-width: 505px)
{
  .featured{
    margin-top: 150%;
  }
}
@media (max-width: 450px)
{
  .featured{
    margin-top: 180%;
  }
}
@media (max-width: 400px)
{
  .featured{
    margin-top: 200%;
  }
}
@media (max-width: 375px)
{
  .featured{
    margin-top: 220%;
  }
}
@media (max-width: 350px)
{
  .featured{
    margin-top: 250%;
  }
}*/

.btnZoom{
    padding: 15px 7px;
    cursor: pointer;
}

/*---- css btn zoom ---*/
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 10000; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

#siguiente{
  position: absolute;
  right: 0;
  top: 50%;
  margin-right: 8%;
  color: #ff0040;
  background: none;
  cursor: pointer;
  border: none;
}

#retroceder{
  position: absolute;
  left: 0;
  top: 50%;
  margin-left:  8%;
  color: #ff0040;
  background: none;
  cursor: pointer;
  border: none;
}
/* Modal Content (Image) */
.modal-content {
    margin: auto;
    display: block;
    width: 40%;
}
@media only screen and (max-width: 1920px){
    .modal-content {
        width: 50%;
    }
}
@media only screen and (max-width: 1680px){
    .modal-content {
        width: 70%;
    }
}
@media only screen and (max-width: 1080px){
    .modal-content {
        width: 80%;
    }
}
@media only screen and (max-width: 768px){
    .modal-content {
        width: 90%;
    }
}
@media only screen and (max-width: 480px){
    .modal-content {
        width: 100%;
    }
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation - Zoom in the Modal */
.modal-content, #caption { 
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)} 
    to {-webkit-transform:scale(1)}
}

@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: red;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #fff!important;
    text-decoration: none;
    cursor: pointer;
}
/*---------------------*/

.whatsapp-button-static:hover{
  width: 250px;
}

/* Animacion automatica al cargar la pagina */ 
  /* son 0,5 segundos de animacion y 19 de pausa */
@keyframes expandAfterLoad {
  0%{ 
    width: 70px;
  }
  2.5% {
    width: 250px;
  }
  97.5%{ 
    width: 250px;
  }
  100%{
    width: 70px;
  }
}

/* --------------- NUMERO DE WHATSAPP --------------- */
.whatsapp-button-static strong{
  position: fixed;
  color: #18d36e;
  visibility: hidden;
  font-size: 24px;
  padding-left: 10px;
  line-height: 70px;
  
  
  transition: padding-left 0.5s ease 0s, visibility 0s ease 0s; /* transicion cuando hay UNHOVER (el de hover esta en el mismo hover) */
  animation: expandAfterLoadNum 19s 1 ease 5.5s; /* Animacion automatica, luego de 5,5 segundos de cargada la pagina */
}

.whatsapp-button-static:hover strong{
  visibility: visible;
  padding-left: 0px;

  transition: padding-left 0.5s ease 0.5s, visibility 0s ease 0.5s; /* transicion cuando hay HOVER (el de unhover esta en el telefono) */
}

/* Animacion automatica automatica al cargar la pagina */
  /* 0,5 segundos de animacion y 18 de pausa */
@keyframes expandAfterLoadNum {
  0% { 
    visibility: hidden;
    padding-left: 10px;
  } 
  2.63% {
    visibility: visible;
    padding-left: 0px;
  }
  97.36%{ 
    visibility: visible;
    padding-left: 0px;
  }
  100%{
    visibility: hidden;
    padding-left: 10px;
  }
}

/* --------------- ICONO DE WHATSAPP --------------- */
.whatsapp-button-static i {
  background: radial-gradient(#25d366 59%,transparent 0), linear-gradient(#25d366,#25d366)8px 84%/11px 13px no-repeat;
  margin-left: -2px;
  margin-top: -7px;
  height: 82px;
  width: 76px;
  color: #fff;
  font-size: 86px;

  transition: 0.5s ease 0s;
}

@media (max-width: 768px) {
  .whatsapp-button-static{
    bottom: 70px;
    right: 25px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-button-static i{
    background: radial-gradient(#25d366 59%,transparent 0), linear-gradient(#25d366,#25d366)7px 84%/11px 13px no-repeat;
    width: 57px;
    height: 64px;
    font-size: 66px;
  }

  .whatsapp-button-static strong{
    line-height: 50px;
  }
}