
.gallery {
    width: 100%;
  }
  
  .gallery-container {
    align-items: center;
    display: flex;
    height: 400px;
    margin: 0 auto;
    max-width: 1000px;
    position: relative;
  }
  
  .gallery-item {
    height: 150px;
    opacity: .4;
    position: absolute;
    transition: all 0.3s ease-in-out;
    width: 250px;
    z-index: 0;
  }
  
  .gallery-item.gallery-item-selected {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.6), 0 0 60px rgba(255, 255, 255, 0.45), 0 0 110px rgba(255, 255, 255, 0.25), 0 0 100px rgba(255, 255, 255, 0.1);
    height: 300px;
    opacity: 1;
    left: 50%;
    transform: translateX(-50%);
    width: 450px;
    z-index: 2;
  }
  
  .gallery-item.gallery-item-anterior,
  .gallery-item.gallery-item-siguiente {
    height: 200px;
    opacity: 1;
    width: 300px;
    z-index: 1;
  }
  
  .gallery-item.gallery-item-anterior {
    left: 30%;
    transform: translateX(-50%);
  }
  
  .gallery-item.gallery-item-siguiente {
    left: 70%;
    transform: translateX(-50%);
  }
  
  .gallery-item.gallery-item-first {
    left: 15%;
    transform: translateX(-50%);
  }
  
  .gallery-item.gallery-item-last {
    left: 85%;
    transform: translateX(-50%);
  }
  
  .gallery-controls {
    display: flex;
    justify-content: center;
    margin: 30px 0;
  }
  
  .gallery-controls button {
    border: 0;
    cursor: pointer;
    font-size: 16px;
    margin: 0 20px;
    padding: 0 12px;
    text-transform: capitalize;
    font-weight: 600;
    color: #134bb1;
  }
  
  .gallery-controls button:focus {
    outline: none;
  }
  
  .gallery-controls-anterior {
    position: relative;
    background: #f5f5f502;
  }
  
  .gallery-controls-anterior::before {
    border: solid #134bb1;
    border-width: 0 3px 3px 0;
    content: '';
    display: inline-block;
    height: 12px;
    width: 12px;
    left: -20px;
    padding: 2px;
    position: absolute;
    top: 10%;
    transform: rotate(135deg) translateY(-50%);
    transition: left 0.15s ease-in-out;
    
  }
  
  .gallery-controls-anterior:hover::before {
    left: -18px;
  }
  
  .gallery-controls-siguiente {
    position: relative;
    background: #f5f5f502;
  }
  
  .gallery-controls-siguiente::before {
    border: solid #134bb1;
    border-width: 0 3px 3px 0;
    content: '';
    display: inline-block;
    height: 12px;
    width: 12px;
    right: -20px;
    padding: 2px;
    position: absolute;
    top: 42%;
    transform: rotate(-45deg) translateY(-50%);
    transition: right 0.15s ease-in-out;
    
  }
  
  .gallery-controls-siguiente:hover::before {
    right: -18px;
  }
  
  .gallery-nav {
    bottom: -15px;
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    position: absolute;
    width: 100%;
  }
  
  .gallery-nav li {
    background: #ccc;
    border-radius: 50%;
    height: 10px;
    margin: 0 16px;
    width: 10px;
  }
  
  .gallery-nav li.gallery-item-selected {
    background: #555;
  }
  
  .gallery-controls button:hover{
      background: #9fa2a7c9;
      color: #fff;
      border-radius: 4px;
  }  
 
/* =================================
            WHATSAPP CHAT 
===================================*/


/* CSS Whatsapp Chat */
#whatsapp-chat {
  position: fixed;
  background: #fff;
  width: 350px;
  border-radius: 15px;
  box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
  bottom: 160px;
  right: 30px;
  overflow: hidden;
  z-index: 99;
  animation-name: showchat;
  animation-duration: 0.25s;
  
}

a.blantershow-chat {

  background: #4caf50;
  color: #404040;
  position: fixed;
  font-weight: 400;
  justify-content: space-between;
  z-index: 98;
  bottom: 90px;
  right: 26px;
  font-size: 15px;
  /* padding: 10px; */
  border-radius: 40px;
  box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
}

a.blantershow-chat svg {
  transform: scale(1.2);
  margin: 10px;
}

.header-chat {
  background: #095e54;
  color: #fff;
  padding: 20px;
}
.header-chat h3 {
  margin: 0 0 10px;
}
.header-chat p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}
.info-avatar {
  position: relative;
}
.info-avatar img {
  border-radius: 100%;
  width: 50px;
  float: left;
  margin: 0 10px 0 0;
}
.info-avatar:before {
  content: "\f232";
  z-index: 1;
  font-family: "FontAwesome";
  background: #06d755;
  color: #fff;
  padding: 0px 7px;
  border-radius: 100%;
  position: absolute;
  top: 30px;
  left: 30px;
}

.info-chat span {
  display: block;
}
#get-label,
span.chat-label {
  font-size: 12px;
  color: #888;
}
#get-nama,
span.chat-nama {
  margin: 5px 0 0;
  font-size: 15px;
  font-weight: 700;
  color: #222;
}
#get-label,
#get-nama {
  color: #fff;
}
span.my-number {
  display: none;
}
.blanter-msg {
  color: #444;
  padding: 10px;
  font-size: 12.5px;
  text-align: center;
  border-top: 1px solid #ddd;
}
textarea#chat-input {
  border: none;
  font-family: "Arial", sans-serif;
  width: 100%;
  height: 50px;
  outline: none;
  resize: none;
}
a#send-it {
  color: #444;
    width: 60px;
    /* margin: -5px 0 0 5px; */
    /* font-weight: 700; */
    padding: 8px;
    background: #f9f9f9;
    border-radius: 10px;
    font-size: 20px;
}
a#send-it:hover{
  color: #06d755;
  transform: scale(1.1);
}
.first-msg {
  background: #f5f5f5;
  padding: 30px;
  text-align: center;
}
.first-msg span {
  background: #e2e2e2;
  color: #333;
  font-size: 14.2px;
  line-height: 1.7;
  border-radius: 10px;
  padding: 15px 20px;
  display: inline-block;
}
.start-chat .blanter-msg {
  display: flex;
}
#get-number {
  display: none;
}
a.close-chat {
  position: absolute;
  top: 5px;
  right: 15px;
  color: #fff;
  font-size: 30px;
}
@keyframes showhide {
  from {
      transform: scale(0.5);
      opacity: 0;
  }
}
@keyframes showchat {
  from {
      transform: scale(0);
      opacity: 0;
  }
}
@media screen and (max-width: 480px) {
  #whatsapp-chat {
      width: auto;
      left: 5%;
      right: 5%;
      font-size: 80%;
  }
}
.whatsapp .hide {
  display: none;
  animation-name: showhide;
  animation-duration: 1.5s;
  transform: scale(1);
  opacity: 1;
}
.whatsapp .show {
  display: block;
  animation-name: showhide;
  animation-duration: 1.5s;
  transform: scale(1);
  opacity: 1;
}
/* =================================
           FIN WHATSAPP CHAT 
===================================*/