html,
body {
  background: #303030;
  padding: 0px;
}

.container {
  max-width: 1024px;
}

* {
  box-sizing: border-box;
}

.form-group {
    margin-bottom: 0;
}

.hs-clarify-your-role {
  display: none;
}

/* ----- Input/Select Style Start ----- */
input,
select {
  width: 100%;
  background: #fff;
  border: 0;
  appearance: none;
  padding: 0px 13px;
  color: rgb(0, 0, 0);
  height: 2.5rem;
  outline: transparent solid 2px;
  outline-offset: 2px;
  border-radius: 6px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input:disabled {
  background-color: #696969;
  color: rgb(0, 0, 0);
  opacity: 1;
  pointer-events: none;
}

.select-option {
  position: relative;
}

.down-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  pointer-events: none;
}

.error,
.hs-required {
  margin-top: 10px;
  color: rgb(220, 53, 69);
  font-size: 14px;
}

.hs-required {
  margin: 0 0px 0 3px;
}
/* ----- Input/Select Style End ----- */

/*------ Checkbox Style Start ------ */
input[type="checkbox"] {
  background-color: #fff;
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 1.15em;
  height: 1.15em;
  border: 0.15em solid currentColor;
  border-radius: 0.15em;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
  margin-top: 4px;
}

input[type="checkbox"]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  -webkit-clip-path: polygon(
    14% 44%,
    0 65%,
    50% 100%,
    100% 16%,
    80% 0%,
    43% 62%
  );
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transform: scale(0);
  transform-origin: bottom left;
  transition: 120ms transform ease-in-out;
  background-color: #fff;
}

input[type="checkbox"]:checked::before {
  transform: scale(1);
}

input[type="checkbox"]:checked {
  background: #3471d9;
  border-color: #3471d9;
}

.input-checkbox > label {
  padding-left: 8px;
  font-size: 14px;
}

fieldset > div {
  margin-bottom: 20px;
}
/*------ Checkbox Style End ------ */

/* ------ Form Button Style Start ------ */
.hs-button {
  align-items: center;
  vertical-align: middle;
  outline: transparent solid 2px;
  outline-offset: 2px;
  width: 100%;
  height: 2.5rem;
  border: 0;
  display: inline-flex;
  justify-content: center;
  background: rgb(52, 113, 217);
  color: #fff;
  font-size: inherit;
  outline: transparent solid 2px;
  outline-offset: 2px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
}

.hs-button:hover {
  color: #3471d9;
  background: #fff;
  text-decoration: none;
}

.form-submit-btn {
  padding-top: 20px;
}
/* ------ Form Button Style End ------ */

/* ------ First Form Style Start -----*/
:is(.first-form, .second-form) .form-title {
  margin-bottom: 30px;
}

.first-form,
.second-form {
  color: #fff;
}

.first-form .hs-input .input > input:focus {
  z-index: 1;
  border-color: rgb(49, 130, 206);
  box-shadow: rgb(49, 130, 206) 0px 0px 0px 1px;
  outline: 5px;
  outline: auto 5px rgb(49, 130, 206);
}
/* ------ First Form Style End -----*/

/* ------ Second Form Style Start -----*/
.second-form {
  margin-top: 30px;
}

.second-form .iti {
  width: 100%;
}

.second-form .iti__selected-dial-code,
.second-form .iti__country {
  color: #303030;
}

.second-form .iti__country > * {
  font-size: 12px;
}
/* ------ Second Form Style End -----*/

/* ----- Thank You Style Start ----- */
#thankYou {
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
  position: fixed;
  top: 50%;
  left: 20%;
  transform: translate(-20%, -50%);
}

.verification {
  width: max-content;
  padding-right: 18px;
  padding-left: 18px;
}
/* ----- Thank You Style End ----- */

/* ------ Loading Style Start ----- */
.loader {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
}

.loader svg path,
.loader svg rect {
  fill: #3c3c3c;
}

.loader-iner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.gdpr {
  line-height: 1;
  font-size: 0.8rem;
  font-weight: 200;
}
/* ------ Loading Style End ----- */

/* ------ Media Query Start -----*/
@media (max-width: 991px) {
  h1 {
    font-size: 28px;
    line-height: normal;
    font-weight: bolder;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 20px;
    line-height: normal;
    font-weight: bolder;
  }

  p {
    line-height: normal;
    font-size: 14px;
  }

  :is(.first-form, .second-form) .form-title {
    margin-bottom: 20px;
  }
}

@media (max-width: 500px) {
  #trial-iframe {
    overflow-y: auto;
    line-height: normal;
  }
}
/* ------ Media Query End -----*/
