.section-contact-bar {
  position: fixed;
  bottom: -300px;
  left: 0;
  width: 100%;
  border-top: 1px solid #484848;
  padding: 15px 0;
  background: #181818;
  z-index: 1000000;
  transition: bottom 0.3s linear;
}
.section-contact-bar h3 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 700;
}
.section-contact-bar .contact-bar-btns {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}
.section-contact-bar .contact-bar-btn {
  display: flex;
  gap: 5px;
  width: calc(50% - 10px);
  align-items: center;
  justify-content: center;
  border: 1px solid;
  text-decoration: none;
  border-radius: 50px;
  padding: 10px 15px;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  color: var(--mtwp-dark-text-color);
  transition: all 0.15s linear;
}
.section-contact-bar .contact-bar-btn.call {
  background: rgb(189, 234, 0);
  border-color: rgb(184, 227, 0);
  box-shadow: 0 0 1px 3px rgba(189, 234, 0, 0.3);
}
.section-contact-bar .contact-bar-btn.whatsapp {
  background: #25D366;
  border-color: #22c35f;
  box-shadow: 0 0 1px 3px rgba(37, 211, 102, 0.3);
}
.section-contact-bar .contact-bar-btn svg {
  height: 1.5em;
  width: auto;
  fill: var(--mtwp-dark-text-color);
}
.section-contact-bar .contact-bar-btn:hover, .section-contact-bar .contact-bar-btn:focus {
  transform: scale(1.05);
}
.section-contact-bar.contact-bar-show {
  bottom: 0;
}

@media screen and (min-width: 767px) {
  .section-contact-bar {
    display: none !important;
  }
}

/*# sourceMappingURL=contact-bar.css.map */
