/* BASE SETTINGS */
/* Icon Drop */
@keyframes hvr-icon-drop {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
    transform: translateX(-50%);
  }
  51%, 100% {
    opacity: 1;
  }
}
html body.page main .full-width .content fieldset .form-group {
  margin-bottom: 35px;
}
html body.page main .full-width .content fieldset .form-group > label {
  line-break: strict;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2px;
  font-weight: 400;
  font-size: 14px;
  color: #333;
}
html body.page main .full-width .content fieldset .form-group > label em {
  font-size: 12px;
}
html body.page main .full-width .content fieldset .form-group textarea {
  width: calc(100% - 186px);
  min-height: 43px;
  color: var(--formFontColor);
  font-size: 16px;
  pointer-events: all;
  border: 1px solid black;
  border-radius: 4px;
  height: 100px;
}
@media only screen and (max-width: 900px) {
  html body.page main .full-width .content fieldset .form-group textarea {
    width: 100%;
  }
}
html body.page main .full-width .content fieldset .form-group textarea:focus-within {
  transition: all 0.2s;
  box-shadow: 0 0 0 4px rgba(19, 51, 110, 0.15);
}
html body.page main .full-width .content fieldset .form-group {
  margin-bottom: 35px;
}
html body.page main .full-width .content fieldset .form-group input[type=date],
html body.page main .full-width .content fieldset .form-group input[type=email] {
  border: 1px solid black;
  border-radius: 4px;
  box-shadow: 0 0 0 0 rgba(19, 51, 110, 0.1);
  transition: all 0.2s;
}
html body.page main .full-width .content fieldset .form-group.checkboxes-group .checkbox label {
  pointer-events: all;
}
html body.page main .full-width .content fieldset .form-group.checkboxes-group.other input[type=checkbox] {
  width: auto;
}
html body.page main .full-width .content fieldset .form-group.checkboxes-group.other input[type=text] {
  width: 100%;
  margin-top: 20px;
}
html body.page main .full-width .content fieldset .form-group.checkboxes-group.other input[type=text]:disabled {
  cursor: not-allowed;
  opacity: 0.2;
}
html body.page main .full-width .content fieldset .form-group.radio-group {
  margin-bottom: 35px;
}
html body.page main .full-width .content fieldset .form-group.radio-group .checkboxes-wrap .radio {
  width: 33%;
  margin-bottom: 5px;
}
@media only screen and (max-width: 1130px) {
  html body.page main .full-width .content fieldset .form-group.radio-group .checkboxes-wrap .radio {
    width: 50%;
  }
}
@media only screen and (max-width: 540px) {
  html body.page main .full-width .content fieldset .form-group.radio-group .checkboxes-wrap .radio {
    width: 100%;
  }
}
html body.page main .full-width .content fieldset .form-group.radio-group .checkboxes-wrap .radio label {
  display: flex;
  justify-content: flex-start;
  padding-top: 2px;
  pointer-events: all;
  margin-right: 0;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  color: #333;
}
html body.page main .full-width .content fieldset .form-group.radio-group .checkboxes-wrap .radio label input {
  margin-top: 2px;
}
html body.page main .full-width .content fieldset .form-group.radio-group.other input[type=text] {
  width: 100%;
  margin-top: 20px;
}
html body.page main .full-width .content fieldset .form-group.radio-group.other input[type=text]:disabled {
  cursor: not-allowed;
  opacity: 0.2;
}
html body.page main .full-width .content fieldset .form-group.radio-group.other input[type=text]:disabled:hover {
  box-shadow: none;
}
html body.page main .full-width .content fieldset > .checkbox {
  color: var(--formFontColor);
}
html body.page main .full-width .content fieldset > .checkbox label {
  padding-left: 32px;
  margin-bottom: 25px;
}
html body.page main .full-width .content fieldset > .checkbox label input {
  margin-left: -32px;
}
