.lclc-float-whatsapp {
  position: relative;
}

.lclc-float-whatsapp .lclc-button {
  align-items: center;
  background-color: #1eaf54;
  border-radius: 20px;
  box-sizing: border-box;
  box-shadow: 4px 4px 4px #0000004f;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  flex-flow: column nowrap;
  gap: 5px;
  height: auto;
  justify-content: center;
  padding: 11px 12px;
  text-align: center;
  transition: all 0.3s ease;
  width: 106px;
}
.lclc-float-whatsapp .lclc-button:hover {
  background-color: #168a41;
}

.lclc-float-whatsapp .lclc-button__icon {
  height: auto;
  margin-bottom: 5px;
  width: 30px;
}

.lclc-float-whatsapp .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;
  text-align: center;
  text-transform: uppercase;
  text-wrap: nowrap;
  transition: all 0.3s ease;
  width: auto;
}

/*Form styles*/
.lclc-whatsapp-form {
  background-color: #fff;
  border-radius: 8px;
  bottom: calc(100% + 10px);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.25);
  overflow-x: hidden;
  overflow-y: auto;
  position: absolute;
  right: 0;
  max-height: calc(100vh - (35px + 10px + 70px + 20px));
  transform: scale(0);
  transform-origin: 100% 100%;
  transition: all 0.3s ease;
  max-width: 320px;
  width: 320px;
}
.lclc-whatsapp-form.open {
  transform: scale(1);
}

.lclc-whatsapp-form fieldset {
  border: 0;
  font-size: 14px;
  letter-spacing: 0;
  margin-left: 0;
  margin-right: 0;
  padding: 5px 15px;
}

.lclc-whatsapp-form fieldset.lclc-form-header {
  align-items: center;
  background-color: #1eaf54;
  color: #ffffff;
  display: flex;
  flex-flow: row nowrap;
  font-weight: bold;
  gap: 5px;
  justify-content: flex-start;
  line-height: 100%;
  padding: 15px;
  position: relative;
}
.lclc-whatsapp-form .lclc-form-header__icon {
  height: 15px;
  width: 15px;
}
.lclc-form-header__close {
  background-color: transparent;
  box-sizing: border-box;
  cursor: pointer;
  height: 45px;
  padding: 10px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  width: 45px;
}
.lclc-form-header__close:hover {
  background-color: #168a41;
}

.lclc-whatsapp-form fieldset.lclc-form-description,
.lclc-whatsapp-form fieldset.lclc-form-policies {
  color: #686868;
  font-size: 12px;
  line-height: 130%;
}

.lclc-whatsapp-form fieldset.lclc-form-description {
  padding-top: 15px;
}

.lclc-whatsapp-form fieldset.lclc-form-policies {
  padding-bottom: 0;
}

.lclc-whatsapp-form fieldset.lclc-form-group {
  align-items: flex-start;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  text-align: left;
}

.lclc-whatsapp-form fieldset.lclc-form-group label {
  color: #494949;
  font-size: 12px;
  font-weight: bold;
}

.lclc-whatsapp-form .lclc-form-control {
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 12px;
  font-weight: normal;
  margin-top: 5px;
  outline: 0;
  padding: 10px;
  text-align: left;
  min-width: 100%;
  resize: none;
  max-width: 100%;
  width: 100%;
}
.lclc-whatsapp-form textarea.lclc-form-control {
  max-height: 70px;
  min-height: 70px;
  height: 70px;
}

.lclc-whatsapp-form fieldset.lclc-form-button {
  padding: 0;
}

.lclc-whatsapp-form fieldset label.error {
  color: #ca0000;
  font-size: 10px;
}

.lclc-whatsapp-form .lclc-form-submit {
  align-items: center;
  background-color: #1eaf54;
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  font-size: 14px;
  font-weight: bold;
  flex-flow: row nowrap;
  gap: 10px;
  justify-content: center;
  letter-spacing: 0.5px;
  line-height: 100%;
  margin: 0;
  margin-top: 15px;
  padding: 15px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s ease;
  width: 100%;
}
.lclc-whatsapp-form .lclc-form-submit[disabled] {
  cursor: not-allowed;
  opacity: 0.8;
}
.lclc-whatsapp-form .lclc-form-submit:hover {
  background-color: #168a41;
}

.lclc-whatsapp-form .lclc-form-submit__icon {
  height: 20px;
}

@media screen and (width <= 768px) {
  .lclc-whatsapp-form.align-center {
    left: 50%;
    transform: scale(0) translateX(-50%);
  }
  .lclc-whatsapp-form.align-center.open {
    transform: scale(1) translateX(-50%);
  }
  .lclc-whatsapp-form.align-rigth {
    left: 0;
    right: auto;
  }
}
