.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.65);
    overflow-y: auto;
    z-index: 9999;
}
[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
    cursor: pointer;
}
.overlay__close-button {
    background-color: transparent;
    position: absolute;
    top: 5px;
    right: 5px;
}
button {
    cursor: pointer;
    outline: none;
    border: none;
}
.modal-form-wrapper {
    max-width: 560px;
    width: 100%;
    position: relative;
    margin: 31px 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
}
.modal-form-banner {
    display: block;
    max-width: 100%;
    width: 100%;
    object-fit: cover;
}

 .conv-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #78aeff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, .7);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 50px;
  right: 50px;
  animation: pulse 1.5s linear infinite;
  cursor: pointer;
  z-index: 9;
}
.conv-button.open {
    background-color: white;
}
.conv-button svg {
    fill: white;
}
.small-form-wrap {
  display: none;
  position: fixed;
  max-width: 470px;
  width: 100%;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, .4);
  bottom: 50px;
  background-color: white;
  right: 12%;
  z-index: 99;
}

.small-form-wrap .modal-form {
  gap: 10px;
}
.modal-form-heading {
    font-size: 27px;
    line-height: 1.23;
    color: black;
    margin: 0;
    text-align: center;
}
.small-form-wrap h2 {
  font-size: 20px;
  margin-bottom: 8px;
}
.keyword-light {
    color: #78aeff;
}
.conv-button.open {
  background-color: white;
}
.col-12 {
    flex: 0 0 auto;
    width: 100%;
}
.form-group {
    margin: 10px;
}
.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}
.mb-3 {
    margin-bottom: 1rem!important;
}
.conv-button.open .t708__icon {
  display: none;
}
.modal-form-inner-wrapper {
    padding: 17px;
}
.t708__icon-close {
  display: none;
}

.conv-button.open .t708__icon-close {
  display: block;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}
@keyframes pulse2 {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}
@media (max-width: 630px){
.small-form-wrap {
    right: 50%;
    transform: translateX(50%) translateY(50%);
    bottom: 50%;
}
}