.lclc-float-buttons {
  bottom: 20px;
  display: inline-flex;
  flex-flow: row nowrap;
  gap: 10px;
  position: fixed;
  right: 20px;
  width: auto;
  z-index: 100;
}

.lclc-float-buttons .lclc-button {
  align-items: center;
  background-color: #333333;
  border-radius: 20px;
  box-sizing: border-box;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  flex-flow: column nowrap;
  gap: 5px;
  min-height: 82px;
  justify-content: center;
  outline: 0;
  overflow: hidden;
  padding: 9px 12px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 106px;
}
.lclc-float-buttons .lclc-button:after {
  background-color: rgba(0, 0, 0, 0.2);
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  width: 100%;
  top: 0;
  transition: all 0.3s ease;
  z-index: 0;
}
.lclc-float-buttons .lclc-button:hover:after {
  opacity: 1;
}

.lclc-float-buttons .lclc-button.whatsapp {
  background-color: #1eaf54;
  height: 100%;
}
.lclc-float-buttons .lclc-button.quotation {
  background-color: #2196f3;
}
.lclc-float-buttons .lclc-button.credit {
  background-color: #2a83ce;
}
.lclc-float-buttons .lclc-button.online-payments {
  background-color: #26569f;
}

.lclc-float-buttons .lclc-button__icon {
  height: 30px;
  margin-bottom: 5px;
  position: relative;
  width: auto;
  z-index: 1;
}

.lclc-float-buttons .lclc-button__span {
  align-items: center;
  border-radius: 4px;
  color: #fff;
  display: inline-flex;
  font-size: 9px;
  font-weight: 500;
  justify-content: center;
  line-height: 1.3;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s ease;
  width: auto;
  z-index: 1;
}

@media screen and (width <= 480px) {
  .lclc-float-buttons:not(.no-center) {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    max-width: 100vw;
    width: auto;
  }
  .lclc-float-buttons .lclc-button {
    width: 95px;
  }
  .lclc-float-buttons .lclc-button__icon {
    height: 25px;
  }
  .lclc-float-buttons .lclc-button__span {
    font-size: 8px;
  }
}
