html {
  --primary: #79b800 !important;
  --secondary: #a64ad1 !important;
  --footer: #232323 !important;
  --footage: #343434 !important;
}

/* Typography */
.text-primary {
  color: var(--primary) !important;
}

.text-secondary {
  color: var(--secondary) !important;
}

.text-pink {
  color: pink
}

.bg-primary {
  background-color: var(--primary) !important;
}


/* Navbar */
header nav#menu ul li span a {
  text-decoration: none;
  position: relative;
  display: inline-block;
}

header nav#menu ul li span a::after {
  content: '';
  width: 0%;
  position: absolute;
  top: 100%;
  left: 50%;
  height: 2px;
  background: var(--primary);
  transform: translateX(-50%);
  transition: width .5s ease;
}

header nav#menu ul li span a:hover::after {
  width: 100%;
}

.main-menu ul ul li a {
  font-weight: 600;
}

.main-menu ul ul li:hover>a {
  background-color: var(--primary);
  color: var(--white);
}

@media only screen and (min-width: 992px) {
  .main-menu ul ul {
    left: unset;
    right: 0;
  }
  
  .main-menu ul ul:before {
    left: unset;
    right: 15%;
  }

  .main-menu>ul>li span>a {
    color: #444;
    padding: 0 10px 10px;
  }

  .main-menu>ul>li span:hover>a,
  header.sticky .main-menu>ul>li span:hover>a {
    color: var(--primary);
    opacity: 1;
  }
}

/* Button Custom */
.btn-copy {
  color: var(--primary) !important;
}

.btn-copy:hover {
  color: var(--white);
  cursor: pointer;
}

a.btn_1,
.btn_1 {
  background: var(--primary);
}

a.btn_1:hover,
.btn_1:hover {
  background: var(--secondary);
}

/* Typography */
.title-section {
  font-weight: 700;
  font-size: 2.5vw;
}

@media (max-width: 768px) {
  .title-section {
    font-size: 6.5vw;
  }
}

.main_title_2 span {
  background-color: transparent;
  width: auto;
  height: auto;
  display: unset;
}

/* Fix Image Bug In Detail Package / Tour */
.hero_in .wrapper h1 span {
  background: var(--primary);
}

div.description.listing_description div figure.attachment img {
  width: 100%;
  height: auto;
}

/* Header */
header {
  background-color: #fff;
}

header.header.sticky {
  background-color: #fff;
}

header.header #logo img {
  margin-top: 20px;
  height: 45px;
}

header.header.sticky #logo img {
  margin-top: 12px;
}

@media (max-width: 768px) {
  header.header, header.header.sticky {
    padding: 20px;
  }
}

.hero_in.tours_detail {
  margin-top:80px;
}

/* Owl Carousel Home Slider */
.home-slider.owl-carousel {
  position: relative;
  height: 100vh;
  z-index: 0;
}

.home-slider.owl-carousel .slider-item {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 100vh;
  position: relative;
  z-index: 0;
}

@media (max-width: 1199.98px) {
  .home-slider.owl-carousel .slider-item {
    background-position: center center !important;
  }
}

.home-slider.owl-carousel .slider-item .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  opacity: .4;
}

.home-slider.owl-carousel .slider-item .slider-text {
  height: 100vh;
  position: relative;
}

.home-slider.owl-carousel .slider-item .slider-text .text {
  z-index: 0;
  color: rgba(255, 255, 255, 0.9);
}

.home-slider.owl-carousel .slider-item .slider-text h1 {
  font-size: 4.5vw;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}

.home-slider.owl-carousel .slider-item .slider-text h2.caption-title {
  font-size: 1.8vw;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}

@media (min-width: 992px) {
  header.header #logo img,
  header.header.sticky #logo img {
    margin: 0;
  }
}

@media (max-width: 991.98px) {
  .home-slider.owl-carousel .slider-item .slider-text h1 {
    font-size: 50px;
  }

  .hamburger-inner,
  .hamburger-inner::after,
  .hamburger-inner::before {
    background-color: #444;
  }
}

@media (max-width: 768px) {
  .home-slider.owl-carousel .slider-item .slider-text h2.caption-title {
    font-size: 2.8vw;
  }
}

@media (max-width: 500px) {
  .home-slider.owl-carousel .slider-item .slider-text h2.caption-title {
    font-size: 4.8vw;
  }
}

.home-slider.owl-carousel .slider-item .slider-text h2 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
  color: white;
  color: #f5e4c3;
  display: inline-block;
  position: relative;
  letter-spacing: 4px;
}

.home-slider.owl-carousel .slider-item .slider-text p {
  font-size: 16px;
}

.home-slider.owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
}

.home-slider.owl-carousel .owl-nav .owl-prev,
.home-slider.owl-carousel .owl-nav .owl-next {
  position: absolute;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  outline: none !important;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {

  .home-slider.owl-carousel .owl-nav .owl-prev,
  .home-slider.owl-carousel .owl-nav .owl-next {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.home-slider.owl-carousel .owl-nav .owl-prev span:before,
.home-slider.owl-carousel .owl-nav .owl-next span:before {
  font-size: 30px;
  color: rgba(255, 255, 255, 0.5);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

@media (prefers-reduced-motion: reduce) {

  .home-slider.owl-carousel .owl-nav .owl-prev span:before,
  .home-slider.owl-carousel .owl-nav .owl-next span:before {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.home-slider.owl-carousel .owl-nav .owl-prev:hover span:before,
.home-slider.owl-carousel .owl-nav .owl-prev:focus span:before,
.home-slider.owl-carousel .owl-nav .owl-next:hover span:before,
.home-slider.owl-carousel .owl-nav .owl-next:focus span:before {
  color: #fff;
}

.home-slider.owl-carousel .owl-nav .owl-prev {
  left: 0;
  margin-left: 0;
}

.home-slider.owl-carousel .owl-nav .owl-next {
  right: 0;
  margin-right: 0;
}

.home-slider.owl-carousel:hover .owl-nav .owl-prev,
.home-slider.owl-carousel:hover .owl-nav .owl-next {
  opacity: 1;
}

.home-slider.owl-carousel:hover .owl-nav .owl-prev {
  margin-left: 50px;
}

.home-slider.owl-carousel:hover .owl-nav .owl-next {
  margin-right: 50px;
}

.home-slider.owl-carousel .owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;
  width: 100%;
  text-align: center;
}

@media (max-width: 767.98px) {
  header.header #logo img {
    margin-top: 12px;
  }

  .home-slider.owl-carousel .owl-dots {
    bottom: 5px;
  }
}

.home-slider.owl-carousel .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  margin: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.home-slider.owl-carousel .owl-dots {
  text-align: center;
}

.home-slider.owl-carousel .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  margin: 5px;
  border-radius: 50%;
  background: #ccc;
  position: relative;
}

.home-slider.owl-carousel .owl-dots .owl-dot:after {
  position: absolute;
  top: -2px;
  left: -2px;
  right: 0;
  bottom: 0;
  width: 14px;
  height: 14px;
  content: '';
  border: 1px solid #ccc;
  border-radius: 50%;
}

.home-slider.owl-carousel .owl-dots .owl-dot:hover,
.home-slider.owl-carousel .owl-dots .owl-dot:focus {
  outline: none !important;
}

.home-slider.owl-carousel .owl-dots .owl-dot.active {
  background: #fff;
}

.home-slider.owl-carousel .owl-dots .owl-dot.active:after {
  border-color: #fff;
}

/* About */
.plyr--video {
  min-height: 250px;
  max-height: 300px;
  border-radius: 15px;
}

.plyr--video .plyr__control,
.plyr--video .plyr__control.plyr__tab-focus,
.plyr--video .plyr__control:hover,
.plyr--video .plyr__control[aria-expanded=true] {
  background: var(--primary);
}

.plyr--full-ui input[type=range] {
  color: var(--primary) !important;
}

#about div.carousel-inner {
  border-radius: 20px;
}

#about .certificate img {
  height: 100px;
}

div.certificate .owl-carousel .owl-item img {
  width: 100%;
  height: 70px;
  margin: 0 auto;
  object-fit: contain;
}

@media (max-width: 767px) {
  #about .certificate img {
    height: 75px;
  }
}

@media (max-width: 500px) {
  div.fiturImg {
    margin-bottom: 20px;
  }
}

div.fiturImg div.owl-dots {
  margin-top: 15px !important;
}

div.fiturImg .item img {
  height: 300px;
  width: 100%;
  object-fit: cover;
  margin: 0 auto;
  border: 0;
  border-radius: 10px;
}

/* Listings Package */
#reccomended .box_grid,
#listings_package .box_grid {
  overflow: hidden;
  margin: 10px 0;
  border-radius: 15px;
  box-shadow: 0px 0px 6px 0px rgb(0 0 0 / 27%);
}

@media (max-width: 990px) {
  #reccomended .box_grid,
  #listings_package .box_grid {
    margin-bottom: 30px;
  }
}

#reccomended .box_grid a,
#listings_package .box_grid a {
  font-weight: 500;
  margin: 0 auto;
  width: 90%;
  left: 0;
  bottom: 15px;
  right: 0;
  position: absolute;
}

#reccomended .box_grid figure,
#listings_package .box_grid figure {
  height: 165px;
  border-radius: 15px 15px 0 0;
}

#reccomended .box_grid figure img,
#listings_package .box_grid figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
  position: static;
  transform: none;
}

#reccomended .box_grid figure small,
#listings_package .box_grid figure small {
  background-color: #fff;
  color: #999;
  padding: 7px 13px;
  border-radius: 0 0 10px;

  left: -3px;
  top: 0;
  position: absolute;
}

#reccomended div.wrapper .box_grid,
#listings_package div.wrapper .box_grid {
  margin: 20px 0;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

#reccomended .box_grid .wrapper h3,
#listings_package .box_grid .wrapper h3 {
  color: var(--primary);
  font-weight: 600;
  white-space: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

#reccomended div.wrapper,
#listings_package div.wrapper {
  padding-bottom: 70px;
  min-height: auto;
  position: relative;
}

#reccomended div.wrapper div.price,
#listings_package div.wrapper div.price {
  background-color: #fff;
  padding: 7px 13px;
  border: 1px solid #fff;
  border-radius: 20px 0 0;
  display: block;
  overflow: hidden;

  top: -22px;
  right: 0;
  position: absolute;
}

#reccomended div.wrapper div.price ul,
#listings_package div.wrapper div.price ul {
  margin: 0;
  padding: 0;
  border: 0;
}

#reccomended .owl-item {
  opacity: 1;
}

#reccomended .box_grid figure, #listings_package .box_grid figure {
  height: 250px;
}

#reccomended .box_grid figure img, #listings_package .box_grid figure img {
  height: auto;
}

.owl-theme .owl-dots .owl-dot span {
  transition: .3s ease;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--primary) !important;
}

/* Detail Package */
table.details>tbody>tr {
  line-height: 2;
}

table.details>tbody>tr>td {
  padding: 0;
  font-size: 12px;
}

#reccomended table>tbody>tr>td:nth-child(2),
#listings_package table>tbody>tr>td:nth-child(2) {
  width: 50%;
}

#reccomended table>tbody>tr:nth-child(3)>td:nth-child(3)>span>i,
#listings_package table>tbody>tr:nth-child(3)>td:nth-child(3)>span>i {
  font-size: 12px;
  color: #ff7f3a;
}

#reccomended table>tbody>tr:nth-child(3)>td:nth-child(3)>span>i.fa.empty,
#listings_package table>tbody>tr:nth-child(3)>td:nth-child(3)>span>i.fa.empty {
  color: #d7d7d7;
}

.listing_description p {
  margin-top: 0;
  margin-bottom: 0;
}

div.rate-hotel div.rating span:first-child {
  color: #777;
}

div.rate-hotel div.rating strong {
  font-weight: 600;
  color: #777;
  display: block;
}

div.rate-hotel div.rating span i {
  font-size: 12px;
  color: #ff7f3a;
  padding: 0;
}

div.rate-hotel div.rating span i.fa.empty {
  color: #d7d7d7;
}


/* <!-- Single Listing --> */

#description {
  margin-bottom: 1.5rem;
}

.listing_description p,
.post-content p,
.additional-detail .itinerary-item-detail p {
  margin-top: 0;
  margin-bottom: 0 !important;
}

.listing_description p br,
.post-content p br,
.additional-detail .itinerary-item-detail p br {
  /*display: none;*/
  content: "";
  display: block;
  margin-bottom: 1.25em;
}

.listing_description ol, .singlepost .post-content ol,
.listing_description ul, .singlepost .post-content ul {
  margin: 0 0 15px 0;
}

.listing_description ol, .singlepost .post-content ol {
  margin-left: 1em;
}

.listing_description ol li, .singlepost .post-content ol li {
  margin-left: 5px;
  padding-left: 10px;
  list-style: decimal !important;
}

/*
.listing_description ul li, .singlepost .post-content ul li {
  margin-left: 5px;
  padding-left: 10px;
  list-style: square !important;
}
*/

.listing_description .st-all-guides .st-title,
.listing_description .st-all-includes .st-title,
.listing_description .st-all-excludes .st-title,
.listing_description .st-all-benefit .st-title,
.listing_description .st-all-tnc .st-title {
  font-size: 1.5em;
  font-weight: 400;
}

.listing_description iframe,
.singlepost .post-content iframe {
  height: 420px;
}

@media (max-width: 769px) {
  .listing_description iframe,
  .singlepost .post-content iframe {
    height: 360px;
  }
}

/** Quill Editor Style */

.listing_description .ql-align-right, .singlepost .post-content .ql-align-right {
	text-align: right;
}

.listing_description .ql-align-center, .singlepost .post-content .ql-align-center {
	text-align: center;
}

.listing_description .ql-align-center img, .singlepost .post-content .ql-align-center img {
	display: block;
	margin: auto;
}

.listing_description .ql-align-left, .singlepost .post-content .ql-align-left {
	text-align: left;
}

.listing_description .ql-align-left, .singlepost .post-content .ql-align-justify {
  text-align: justify;
}

/** Itinerary */

#itineraries .cbp_tmlabel ul li {
  margin-left: 15px;
  padding-left: 5px;
  list-style: square !important;
}

#itineraries .cbp_tmlabel ol li {
  margin-left: 15px;
  padding-left: 5px;
  list-style: decimal !important;
}

#itineraries .cbp_tmtimeline>li .cbp_tmlabel p {
  margin-bottom: 0.75em;
}

#itineraries .cbp_tmtimeline>li .cbp_tmtime span:first-child {
  display: none;
}

#itineraries .cbp_tmtimeline>li .cbp_tmtime span:last-child {
  margin-top: 12px;
}

/** Sisa seat */

.panel-heading p {
  margin-bottom: 5px;
  text-align: center !important;
  font-weight: 500;
  color: #f15c59;
}

.product-chooser-item #base_price {
  text-align: center !important;
  font-size: 2rem;
}

/** Article Singlepost */

.singlepost .post-content ul li:before {
  font-style: normal;
  font-weight: normal;
  font-family: 'ElegantIcons';
  font-size: 14px;
  font-size: 0.875rem;
  content: "\5c";
  color: #ccc;
  position: relative;
  padding-right: 10px;
  left: 0;
  top: 0;
}

.description ul li {
  position: relative;
  padding-left: 0;
}

.description ul li:before {
  position: relative;
  padding-right: 10px;
}

/** Responsive image */

.singlepost .post-content img,
.listing_description .st-main-description img,
.listing_description figure img {
  max-width: 640px !important;
  height: auto;
  /*margin: auto;*/
  display: block;
}

@media (max-width: 480px) {
  .singlepost .post-content img,
  .listing_description .st-main-description img,
  .listing_description figure img {
    max-width: 280px !important;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .singlepost .post-content img,
  .listing_description .st-main-description img,
  .listing_description figure img {
    max-width: 360px !important;
  }
}

@media (min-width: 769px) {
  .singlepost .post-content img,
  .listing_description .st-main-description img,
  .listing_description figure img {
    max-width: 600px !important;
  }
}

/* Download Us */
.download-us .download-app li {
  display: inline-block;
}


/** Running text */

.hero_in.tours_detail .notif-harga {
  display: inline-block;
  width: 100%;
  margin-top: 30px;
}

.hero_in.tours_detail .marquee {
  -moz-animation: marquee 30s linear infinite;
  -webkit-animation: marquee 30s linear infinite;
  animation: marquee 30s linear infinite;
  font-weight: 400;
}

.hero_in.tours_detail .marquee:hover {
  animation-play-state: paused;
}

@-moz-keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@-webkit-keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes marquee {
  0% {
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%)
  }
  100% {
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}


/* <!-- Gallery --> */

.gallery-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  background-image: url(https://storage.googleapis.com/muslimpergi/uploads/gallery/pict/842/bg-gallery.png);
}

.grid ul li {
  background-color: transparent;
}

.grid ul li figure {
  margin: 5px;
  border-radius: 10px;
}

.grid ul li figcaption a:hover,
.grid ul li figcaption a:focus {
  color: #fff;
}

.grid ul li figcaption {
  background-color: #79b800d1;
}

.grid ul li figcaption .caption-content {
  top: 60px;
}

.grid ul li figcaption p {
  font-weight: 700;
}

/* Hover Figure Image & Testimonial */
figure.hover {
  position: relative;
}

figure.hover a {
  color: #fff !important;
}

figure.hover::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

figure.hover:hover::before {
  -webkit-animation: shine .75s;
  animation: shine .75s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.mfp-wrap.mfp-gallery .mfp-container .mfp-content .mfp-figure figure figcaption .mfp-bottom-bar {
  position: static;
}

img.mfp-img {
  margin: 0;
}

.mfp-arrow.mfp-arrow-left,
.mfp-arrow.mfp-arrow-right {
  font-family: FontAwesome !important;
}

.mfp-arrow.mfp-arrow-left:before {
  content: "\f053";
}

.mfp-arrow.mfp-arrow-right:before {
  content: "\f054";
}

.animated .block-vertical {
  background: var(--primary);
}

/* Why Choose Us */
.service-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.service-box {
  text-align: center;
  color: #444;
  cursor: pointer;
}

.service-icon {
  display: inline-block;
  width: 70px;
  height: 70px;
  border: 3px solid var(--primary);
  transform: rotate(45deg);
  margin-bottom: 30px;
  margin-top: 16px;
}

.service-icon i {
  line-height: 70px;
  transform: rotate(-45deg);
  font-size: 26px;
  padding-left: 4px;
}

.service-box:hover .service-icon {
  background: var(--primary);
  color: #fff;
}

.service-title {
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.description {
  font-size: 14px;
}

@media screen and (max-width:960px) {
  .service-box {
    max-width: 45%;
  }
}

@media screen and (max-width:768px) {
  .service-box {
    max-width: 50%;
  }
}

@media screen and (max-width:480px) {
  .service-box {
    max-width: 100%;
  }
}

/* Call Section */

.call_section {
  background-image: url(https://storage.googleapis.com/muslimpergi/uploads/gallery/pict/1274/bali-indonesia-temple-1542569.jpeg);
}

/* <!-- Footer --> */
footer {
  background: var(--footer);
  color: #fff;
}

footer .partner .partner-payment {
  display: flex;
  position: relative;
}

footer .partner .partner-payment img {
  margin: 10px 15px 2px 0;
  border-radius: 5px;
  width: 56px;
  height: 40px;
}

footer .partner .partner-payment p {
  padding-left: 20px;
}

footer .partner .partner-payment p::before {
  font-family: FontAwesome !important;
  content: "\f054";
  top: 20px;
  left: 70px;
  position: absolute;
}

footer ul.contacts li {
  display: flex;
}

footer ul.contacts li div.info {
  flex: 2;
}

footer ul.contacts li div.action {
  flex: 1;
}

footer ul.contacts li div.action {
  display: flex;
  justify-content: flex-end;
}

footer ul.contacts li div.action a {
  margin: 10px 5px;
}

footer ul.contacts li div.action a img {
  height: 35px;
  border-radius: 10px;
}

footer .social-media ul li {
  margin: 10px 10px 0 0;
}

ul#additional_links {
  float: unset;
  padding: 0;
}

ul#additional_links li span,
ul#additional_links li a {
  opacity: 1;
}

#footage {
  background: var(--footage);
  color: var(--footer-color);
}

ul#footer-selector li,
ul#footer-selector li:last-child {
  margin: 2px;
}

ul#footer-selector li img {
  border-radius: 5px;
}

#footage ul li a {
  opacity: 1;
}

#toTop {
  background: var(--primary);
  color: transparent;
  transition: all 0.2s ease-in 0.2s;
  -webkit-transition: all 0.2s ease-in 0.2s;
  -moz-transition: all 0.2s ease-in 0.2s;
  -o-transition: all 0.2s ease-in 0.2s;
}

#toTop i {
  padding-top: 10px;
  color: #fff;
}

#toTop:hover {
  background: var(--secondary);
  color: #fff;
}

@media (min-width: 992px) {

  ul#footer-selector {
    float: right;
  }
}

@media (max-width: 800px) {

  #footer-selector {
    display: inline-block;
    text-align: center;
  }

  #additional_links {
    margin-top: 0;
    display: flex;
    justify-content: center;
  }
}


.credit {
  background: #fff;
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #ddd;
  border-radius: 20px
}


/* CSS Multiple Whatsapp Chat */

#whatsapp-chat {
  position: fixed;
  background: #fff;
  width: 350px;
  border-radius: 10px;
  box-shadow: 0 1px 15px rgba(32, 33, 36, .28);
  bottom: 90px;
  left: 30px;
  overflow: hidden;
  z-index: 99999999;
  animation-name: showchat;
  animation-duration: 1s;
  transform: scale(1)
}

a.blantershow-chat {
  background: rgb(106 175 79);
  color: #fff;
  position: fixed;
  z-index: 98;
  bottom: 25px;
  left: 30px;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 30px;
  box-shadow: 0 1px 15px rgba(32, 33, 36, .28)
}

a.blantershow-chat i {
  transform: scale(1.2);
  margin: 0 10px 0 0
}

.header-chat {
  background: rgb(106 175 79);
  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: 10px;
  width: 40px;
  float: left;
  margin: 0 10px 0 0
}

a.informasi {
  padding: 10px;
  display: block;
  overflow: hidden;
  animation-name: showhide;
  animation-duration: 2.5s
}

a.informasi:hover {
  background: #f1f1f1
}

.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: 12px;
  font-weight: 700;
  color: #222
}

#get-label,
#get-nama {
  color: #fff
}

span.my-number {
  display: none
}

.blanter-msg {
  color: #444;
  padding: 20px;
  font-size: 12.5px;
  text-align: center;
  border-top: 1px solid #ddd
}

.blanter-msg .social-media a {
  display: inline-block;
  margin: 0 5px;
}

textarea#chat-input {
  border: none;
  font-family: "Arial", sans-serif;
  width: 100%;
  height: 20px;
  outline: none;
  resize: none
}

a#send-it {
  color: #555;
  width: auto;
  margin: -5px 0 0 5px;
  font-weight: 700;
  padding: 8px;
  background: #eee;
  border-radius: 10px;
}

.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(.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-chat .home-chat {
    max-height: 300px;
    overflow: scroll;
  }
}

@media screen and (max-height: 700px) {
  #whatsapp-chat .home-chat {
    max-height: 300px;
    overflow: scroll;
  }
}

.hide-custom {
  display: none;
  animation-name: showhide;
  animation-duration: 1.5s;
  transform: scale(1);
  opacity: 1
}

.show-custom {
  display: block;
  animation-name: showhide;
  animation-duration: 1.5s;
  transform: scale(1);
  opacity: 1
}
