/* Web Broser scrollbar */
::-webkit-scrollbar {
  width: 2px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #212529;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #3f4348;
}

.tabclix-block-wrapper {
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  animation: gradient 10s ease infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.w-form .frm_forms .frm_fields_container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.w-form .frm_forms .frm_fields_container .frm_form_field {
  width: calc(50% - 10px) !important;
}
.w-form .frm_forms .frm_fields_container .frm_form_field label {
  font-family: "DM Sans", sans-serif;
  color: #333;
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
}
.w-form .frm_forms .frm_fields_container .frm_form_field input {
  border-radius: 6px;
  height: 38px;
}
.w-form .frm_forms .frm_fields_container .frm_form_field input:focus {
  border-color: #1b94ff;
  transition: 0.5s;
  box-shadow: none;
}
.w-form .frm_forms .frm_fields_container .frm_button_submit {
  margin-top: auto;
  padding: 12px 20px;
  border-radius: 6px;
  background-color: #1b94ff;
  box-shadow: 0 0 0 1px #1b94ff;
  transition: background-color 250ms ease, border-color 250ms ease;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

/*# sourceMappingURL=style.css.map */