@import url(https://fonts.bunny.net/css?family=Nunito);
#social-icon {
  /* Icons */
  /* pop-up text */
  /* pop-up text arrow */
  /* text pops up when icon is in hover state */
  /* font awesome icons */
}
#social-icon div {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#social-icon a {
  color: #fff;
  background: #10A5B2;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  font-family: fontawesome;
  position: relative;
  display: inline-block;
  width: 45px;
  height: 45px;
  padding-top: 12px;
  margin: 0 2px;
  transition: all 0.5s;
  -webkit-font-smoothing: antialiased;
}
#social-icon a:hover {
  background: #E8BF2D;
}
#social-icon a span {
  color: #666;
  position: absolute;
  font-family: sans-serif;
  bottom: 0;
  left: -25px;
  right: -25px;
  padding: 5px 7px;
  z-index: -1;
  font-size: 14px;
  border-radius: 2px;
  background: #fff;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
#social-icon a span:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #fff;
  position: absolute;
  bottom: -5px;
  left: 40px;
}
#social-icon a:hover span {
  bottom: 50px;
  visibility: visible;
  opacity: 1;
}
#social-icon a:nth-of-type(1):before {
  content: "\f09a";
}
#social-icon a:nth-of-type(2):before {
  content: "\f099";
}
#social-icon a:nth-of-type(3):before {
  content: "\f16d";
}
#social-icon a:nth-of-type(4):before {
  content: "\e07b";
}
#social-icon a:nth-of-type(5):before {
  content: "\f0e1";
}
#social-icon a:nth-of-type(6):before {
  content: "\f189";
}

/*!  ==============================================================
<!-- 5.15 Pagination ==== -->
============================================================== **/
.rlr-pagination__list.pagination {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  align-items: center;
  justify-content: space-between;
}

.rlr-pagination__child-list {
  gap: var(--spacing-1);
}

.rlr-pagination__page-item--form:first-child .page-link,
.rlr-pagination__page-item--form:last-child .page-link {
  border-radius: 3rem;
}

.rlr-pagination__page-item--form.disabled {
  pointer-events: none;
}

.rlr-pagination__page-item--form.disabled .page-link,
.rlr-pagination__page-item--form.disabled .rlr-pagination__page-link--form:focus {
  background: var(--white);
  border: 1px solid var(--gray-04);
  color: var(--gray-04);
}

.rlr-pagination__page-item:first-child .page-link,
.rlr-pagination__page-item:last-child .page-link {
  border-radius: 50%;
}

.rlr-pagination__page-item.active .page-link {
  background-color: var(--brand-00);
  color: var(--brand);
}

.rlr-pagination__page-item.disabled .page-link {
  color: var(--neutral-color);
}

.rlr-pagination__page-item.disabled .page-link svg path {
  stroke: var(--neutral-color);
}

.rlr-pagination__page-link {
  color: var(--body-color);
}

.rlr-pagination__page-link--form {
  background: var(--brand-00);
  border: 1px solid var(--brand);
  border-radius: 3rem;
  color: var(--brand);
  padding: 0.875rem 2rem;
  text-align: center;
}

.rlr-pagination__page-link--form.page-link:focus,
.rlr-pagination__page-link--form:hover {
  background: var(--brand-00);
  border: 1px solid var(--brand);
  color: var(--brand);
}

.rlr-pagination__page-link--form.page-link:focus,
.rlr-pagination__page-link.page-link:focus {
  box-shadow: none;
}

.rlr-pagination__page-link--counter {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  border: none;
  border-radius: 50%;
  display: flex;
  font-weight: 400;
  height: 2.5rem;
  justify-content: center;
  width: 2.5rem;
}

.rlr-pagination__page-link--counter:focus,
.rlr-pagination__page-link--counter:hover {
  background-color: var(--brand-00);
  color: var(--brand);
}

.rlr-pagination__page-link--next,
.rlr-pagination__page-link--prev {
  background: transparent;
  background: none;
  border: none;
  color: var(--neutral-color);
  font-weight: 400;
  line-height: normal;
  padding: 0;
}

.rlr-pagination__page-link--next:focus,
.rlr-pagination__page-link--next:hover,
.rlr-pagination__page-link--prev:focus,
.rlr-pagination__page-link--prev:hover {
  background: none;
  color: var(--body-color);
}

.rlr-pagination__page-link--next:focus svg path,
.rlr-pagination__page-link--next:hover svg path,
.rlr-pagination__page-link--prev:focus svg path,
.rlr-pagination__page-link--prev:hover svg path {
  stroke: var(--body-color);
}

.rlr-pagination__page-link--next span,
.rlr-pagination__page-link--prev span {
  display: none;
}

@media (min-width: 576px) {
  .rlr-pagination__page-link--next span,
.rlr-pagination__page-link--prev span {
    display: inline-block;
  }
}
.rlr-pagination__page-link--next svg path,
.rlr-pagination__page-link--prev svg path {
  stroke: var(--neutral-color);
}

.rlr-pagination__page-link--prev span {
  margin-left: var(--spacing-3);
}

.rlr-pagination__page-link--next span {
  margin-right: var(--spacing-3);
}

#google_translate_element select {
  background: #f6edfd;
  color: #000000;
  border: none;
  border-radius: 3px;
  padding: 6px 8px;
}

.goog-logo-link {
  display: none !important;
}

.goog-te-gadget {
  color: transparent !important;
}

.goog-te-banner-frame {
  display: none !important;
}

#goog-gt-tt, .goog-te-balloon-frame {
  display: none !important;
}

.goog-text-highlight {
  background: none !important;
  box-shadow: none !important;
}

.paragraph-justify {
  text-align: justify;
  text-justify: inter-word;
}

.image-center {
  display: block;
  margin: 20px auto;
}

.rlr-share__items #social-links ul {
  margin: 0 !important;
  padding: 0 !important;
}

#chatbot {
  /* CSS Multiple Whatsapp Chat */
  /* .blanter-msg {
    color: #444;
    padding: 20px;
    font-size: 12.5px;
    text-align: center;
    border-top: 1px solid #ddd;
  } */
}
#chatbot body {
  font-family: "Lato", sans-serif;
  background: #f1f1f1;
}
#chatbot a:link,
#chatbot a:visited {
  color: #444;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}
#chatbot h1 {
  font-size: 20px;
  text-align: center;
  display: block;
  background: linear-gradient(to right top, #6f96f3, #164ed2);
  padding: 20px;
  color: #fff;
  border-radius: 50px;
}
#chatbot .whatsapp-name {
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 0;
  margin-bottom: 0;
  line-height: 0.5;
}
#chatbot #whatsapp-chat {
  box-sizing: border-box !important;
  outline: none !important;
  position: fixed;
  width: 350px;
  border-radius: 10px;
  box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
  bottom: 90px;
  right: 30px;
  overflow: hidden;
  z-index: 99;
  animation-name: showchat;
  animation-duration: 1s;
  transform: scale(1);
}
#chatbot a.blantershow-chat {
  /*   background: #009688; */
  background: #fff;
  color: #404040;
  position: fixed;
  display: flex;
  font-weight: 400;
  justify-content: space-between;
  z-index: 98;
  bottom: 25px;
  right: 30px;
  font-size: 15px;
  padding: 10px 20px;
  border-radius: 30px;
  box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
}
#chatbot a.blantershow-chat svg {
  transform: scale(1.2);
  margin: 0 10px 0 0;
}
#chatbot .header-chat {
  /*   background: linear-gradient(to right top, #6f96f3, #164ed2); */
  background: #009688;
  background: #095e54;
  color: #fff;
  padding: 20px;
}
#chatbot .header-chat h3 {
  margin: 0 0 10px;
}
#chatbot .header-chat p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}
#chatbot .info-avatar {
  position: relative;
}
#chatbot .info-avatar img {
  border-radius: 100%;
  width: 50px;
  float: left;
  margin: 0 10px 0 0;
}
#chatbot a.informasi {
  padding: 20px;
  display: block;
  overflow: hidden;
  animation-name: showhide;
  animation-duration: 0.5s;
}
#chatbot a.informasi:hover {
  background: #f1f1f1;
}
#chatbot .info-chat span {
  display: block;
}
#chatbot #get-label,
#chatbot span.chat-label {
  font-size: 12px;
  color: #888;
}
#chatbot #get-nama,
#chatbot span.chat-nama {
  margin: 5px 0 0;
  font-size: 15px;
  font-weight: 700;
  color: #222;
}
#chatbot #get-label,
#chatbot #get-nama {
  color: #fff;
}
#chatbot span.my-number {
  display: none;
}
#chatbot textarea#chat-input {
  border: none;
  font-family: "Arial", sans-serif;
  width: 100%;
  height: 45px;
  outline: none;
  resize: none;
  padding: 10px;
  font-size: 14px;
}
#chatbot a#send-it {
  width: 40px;
  font-weight: 700;
  padding: 10px 10px 0;
  background: #eee;
  border-radius: 10px;
}
#chatbot a#send-it svg {
  fill: #a6a6a6;
  height: 24px;
  width: 24px;
}
#chatbot .first-msg {
  background: transparent;
  padding: 30px;
  text-align: center;
}
#chatbot .first-msg span {
  background: #e2e2e2;
  color: #333;
  font-size: 14.2px;
  line-height: 1.7;
  border-radius: 10px;
  padding: 15px 20px;
  display: inline-block;
}
#chatbot .start-chat .blanter-msg {
  display: flex;
}
#chatbot #get-number {
  display: none;
}
#chatbot a.close-chat {
  position: absolute;
  top: 5px;
  right: 15px;
  color: #fff;
  font-size: 30px;
}
@keyframes ZpjSY {
  0% {
    background-color: rgb(182, 181, 186);
  }
  15% {
    background-color: rgb(17, 17, 17);
  }
  25% {
    background-color: rgb(182, 181, 186);
  }
}
@keyframes hPhMsj {
  15% {
    background-color: rgb(182, 181, 186);
  }
  25% {
    background-color: rgb(17, 17, 17);
  }
  35% {
    background-color: rgb(182, 181, 186);
  }
}
@keyframes iUMejp {
  25% {
    background-color: rgb(182, 181, 186);
  }
  35% {
    background-color: rgb(17, 17, 17);
  }
  45% {
    background-color: rgb(182, 181, 186);
  }
}
@keyframes showhide {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
}
@keyframes showchat {
  from {
    transform: scale(0);
    opacity: 0;
  }
}
@media screen and (max-width: 480px) {
  #chatbot #whatsapp-chat {
    width: auto;
    left: 5%;
    right: 5%;
    font-size: 80%;
  }
}
#chatbot .hide {
  display: none;
  animation-name: showhide;
  animation-duration: 0.5s;
  transform: scale(1);
  opacity: 1;
}
#chatbot .show {
  display: block;
  animation-name: showhide;
  animation-duration: 0.5s;
  transform: scale(1);
  opacity: 1;
}
#chatbot .whatsapp-message-container {
  display: flex;
  z-index: 1;
}
#chatbot .whatsapp-message {
  padding: 7px 14px 6px;
  background-color: rgb(255, 255, 255);
  border-radius: 0px 8px 8px;
  position: relative;
  transition: all 0.3s ease 0s;
  opacity: 0;
  transform-origin: center top 0px;
  z-index: 2;
  box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
  margin-top: 4px;
  margin-left: -54px;
  max-width: calc(100% - 66px);
}
#chatbot .whatsapp-chat-body {
  padding: 20px 20px 20px 10px;
  background-color: rgb(230, 221, 212);
  position: relative;
}
#chatbot .whatsapp-chat-body::before {
  display: block;
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  z-index: 0;
  opacity: 0.08;
  background-image: url("https://elfsight.com/assets/chats/patterns/whatsapp.png");
}
#chatbot .dAbFpq {
  display: flex;
  z-index: 1;
}
#chatbot .eJJEeC {
  background-color: rgb(255, 255, 255);
  width: 52.5px;
  height: 32px;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  opacity: 0;
  transition: all 0.1s ease 0s;
  z-index: 1;
  box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
}
#chatbot .hFENyl {
  position: relative;
  display: flex;
}
#chatbot .ixsrax {
  height: 5px;
  width: 5px;
  margin: 0px 2px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  animation-duration: 1.2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  top: 0px;
  background-color: rgb(158, 157, 162);
  animation-name: ZpjSY;
}
#chatbot .dRvxoz {
  height: 5px;
  width: 5px;
  margin: 0px 2px;
  background-color: rgb(182, 181, 186);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  animation-duration: 1.2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  top: 0px;
  animation-name: hPhMsj;
}
#chatbot .kAZgZq {
  padding: 7px 14px 6px;
  background-color: rgb(255, 255, 255);
  border-radius: 0px 8px 8px;
  position: relative;
  transition: all 0.3s ease 0s;
  opacity: 0;
  transform-origin: center top 0px;
  z-index: 2;
  box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
  margin-top: 4px;
  margin-left: -54px;
  max-width: calc(100% - 66px);
}
#chatbot .kAZgZq::before {
  position: absolute;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAmCAMAAADp2asXAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAACQUExURUxpccPDw9ra2m9vbwAAAAAAADExMf///wAAABoaGk9PT7q6uqurqwsLCycnJz4+PtDQ0JycnIyMjPf3915eXvz8/E9PT/39/RMTE4CAgAAAAJqamv////////r6+u/v7yUlJeXl5f///5ycnOXl5XNzc/Hx8f///xUVFf///+zs7P///+bm5gAAAM7Ozv///2fVensAAAAvdFJOUwCow1cBCCnqAhNAnY0WIDW2f2/hSeo99g1lBYT87vDXG8/6d8oL4sgM5szrkgl660OiZwAAAHRJREFUKM/ty7cSggAABNFVUQFzwizmjPz/39k4YuFWtm55bw7eHR6ny63+alnswT3/rIDzUSC7CrAziPYCJCsB+gbVkgDtVIDh+DsE9OTBpCtAbSBAZSEQNgWIygJ0RgJMDWYNAdYbAeKtAHODlkHIv997AkLqIVOXVU84AAAAAElFTkSuQmCC");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  top: 0px;
  left: -12px;
  width: 12px;
  height: 19px;
}
#chatbot .bMIBDo {
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
  color: rgba(0, 0, 0, 0.4);
}
#chatbot .iSpIQi {
  font-size: 14px;
  line-height: 19px;
  margin-top: 4px;
  color: rgb(17, 17, 17);
}
#chatbot .iSpIQi {
  font-size: 14px;
  line-height: 19px;
  margin-top: 4px;
  color: rgb(17, 17, 17);
}
#chatbot .cqCDVm {
  text-align: right;
  margin-top: 4px;
  font-size: 12px;
  line-height: 16px;
  color: rgba(17, 17, 17, 0.5);
  margin-right: -8px;
  margin-bottom: -4px;
}

.circle-img {
  width: 200px !important;
  height: auto;
}

.why-card-image {
  width: 200px;
  height: auto;
}

.brand-logo-area {
  font-size: 30px;
  font-weight: 800;
  font-family: "Helvetica Neue", sans-serif;
}
.brand-logo-area .first-name {
  color: #10A5B2;
}
.brand-logo-area .second-name {
  color: #E8BF2D;
}

a {
  text-decoration: none !important;
}

.about-image {
  width: 100%;
}

#testimonialSection .client-item {
  padding: 20px 40px 40px 40px;
  border: 1px solid #dfe9ff;
  background-color: #f6f6f6;
  position: relative;
  border-radius: 6px;
  z-index: 2;
  transition: all 0.5s;
  box-shadow: 0 43px 66px 0 rgba(0, 0, 0, 0.06);
}
#testimonialSection .client-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
}
#testimonialSection .client-footer .client-footer-user-content {
  width: calc(100% - 64px);
  padding-left: 20px;
}
#testimonialSection .client-footer .client-footer-user-content .title {
  margin-bottom: 0;
  color: #10A5B2;
  text-transform: uppercase;
  position: relative;
}
#testimonialSection .client-footer .client-footer-user-content .title::after {
  position: absolute;
  content: "";
  top: 10px;
  right: 0;
  width: 30px;
  height: 1px;
  background-color: #10A5B2;
}

@media only screen and (max-width: 800px) {
  .rlr-search-results-page__product-details .rlr-search-results-page__dynamic-filter-section .rlr-js-dynamic-filter-swiper {
    padding-right: 80px !important;
  }
}
#mobileLogo {
  width: 50px !important;
  height: 50px !important;
}

.card-bg-color {
  background-image: linear-gradient(#E0FFFF, #faee82);
}
