#header {
  padding-top: 50px;
  padding-bottom: 60px;
}
#header h1 {
  font-size: 38px;
  line-height: 44px;
  word-break: break-word;
  max-width: 620px;
}
@media only screen and (min-width: 760px) {
  #header h1 {
    font-size: 42px;
    line-height: 48px;
  }
}

.grid {
  display: grid;
  grid-column-gap: clamp(26px, 4vw, 60px);
  grid-row-gap: clamp(30px, 4vw, 40px);
}
.grid .full-width {
  grid-column: 1/-1;
}
.grid .left {
  grid-column: 1;
}
.grid .more {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (min-width: 700px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }
}

.grid-text {
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 4vw, 40px);
}
.grid-text h3 {
  margin-bottom: 10px;
}
.grid-text .more {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 30px;
}

.button {
  border: 0;
  padding: 4px 26px;
  background: #f3f5f6;
  border-radius: 6px;
  height: 38px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.button span {
  pointer-events: none;
}
.button:active, .button:focus {
  outline: none;
}
.button:hover {
  cursor: pointer;
}
.button:not(.primary).progress .progress-indicator {
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #f8f8fa;
  border-radius: 4px;
}
.button:not(.primary).progress .progress-indicator span {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 4px;
  animation: btn-progress-pulse-light 1s infinite ease-in-out both;
}
.button:not(.primary).progress .progress-indicator span:nth-of-type(2) {
  margin: 3px;
  animation-delay: 0.2s;
}
.button:not(.primary).progress .progress-indicator span:last-of-type {
  animation-delay: 0.4s;
}
.button.primary {
  background: #0d70d3;
  color: white;
  font-weight: 500;
}
.button.primary.progress .progress-indicator {
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #0d70d3;
  border-radius: 4px;
}
.button.primary.progress .progress-indicator span {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 4px;
  animation: btn-progress-pulse 1s infinite ease-in-out both;
}
.button.primary.progress .progress-indicator span:nth-of-type(2) {
  margin: 3px;
  animation-delay: 0.2s;
}
.button.primary.progress .progress-indicator span:last-of-type {
  animation-delay: 0.4s;
}
.button.alert {
  background: #db3434;
  color: white;
}
.button + .button, .button + .text-extension {
  margin-left: 15px;
}
.button[disabled].primary {
  color: rgba(255, 255, 255, 0.69);
}
.button .progress-indicator {
  display: none;
}

@keyframes btn-progress-pulse {
  0% {
    width: 3px;
    height: 3px;
    background: #ffffff;
  }
  50% {
    width: 6px;
    height: 6px;
  }
  100% {
    background: rgba(255, 255, 255, 0);
    width: 3px;
    height: 3px;
  }
}
@keyframes btn-progress-pulse-light {
  0% {
    width: 3px;
    height: 3px;
    background: #282828;
  }
  50% {
    width: 6px;
    height: 6px;
  }
  100% {
    background: rgba(255, 255, 255, 0);
    width: 3px;
    height: 3px;
  }
}
.input-info {
  display: block;
  padding-top: 10px;
  color: rgba(26, 28, 30, 0.4);
  font-weight: normal;
}
.input-info .error {
  color: #fff;
  background: #db3434;
  padding: 0 4px;
}

.info-4 .error {
  color: #fff;
  background: #db3434;
  padding: 0 4px;
}

.dropdown {
  appearance: none;
  font-family: inherit;
  font-size: inherit;
  cursor: inherit;
  line-height: inherit;
  background-image: url("data:image/svg+xml;base64,PHN2ZyBmaWxsPSdibGFjaycgaGVpZ2h0PScyNCcgdmlld0JveD0nMCAwIDI0IDI0JyB3aWR0aD0nMjQnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2Zyc+DQogICAgPHBhdGggZD0nTTcgMTBsNSA1IDUtNXonLz48cGF0aCBkPSdNMCAwaDI0djI0SDB6JyBmaWxsPSdub25lJy8+DQo8L3N2Zz4=");
  background-repeat: no-repeat;
  background-position: calc(100% - 8px) 6px;
}

.input-checkbox-wrapper {
  display: flex;
  flex-flow: row;
  align-items: flex-start;
  padding-left: 36px;
  position: relative;
}
.input-checkbox-wrapper.hidden {
  display: none;
}
.input-checkbox-wrapper label {
  position: relative;
  cursor: pointer;
}
.input-checkbox-wrapper label .custom-checkbox {
  top: 3px;
  width: 5px;
  height: 5px;
  display: inline-flex;
  border: 4px solid #fff;
  box-shadow: 0 0 0 1px #9f9f9f;
  background-color: #fff;
  position: absolute;
  left: -34px;
  border-radius: 4px;
}
.input-checkbox-wrapper input[type=checkbox] {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 3px;
}
.input-checkbox-wrapper input[type=checkbox]:checked + label .custom-checkbox, .input-checkbox-wrapper input[type=checkbox]:checked + div label .custom-checkbox {
  background: #33373c;
}
.input-checkbox-wrapper input[type=checkbox]:focus + .custom-checkbox, .input-checkbox-wrapper input[type=checkbox]:active + .custom-checkbox {
  box-shadow: 0 0 0 2px #077de1;
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px #f4f6f7 inset;
}
input:-webkit-autofill:focus, input:-webkit-autofill.active {
  -webkit-box-shadow: 0 0 0 30px #fff inset;
}

.auto-generated {
  text-decoration: line-through;
  text-decoration-color: rgba(26, 28, 30, 0.4);
  text-decoration-thickness: 2px;
}

.input {
  display: flex;
  flex-flow: column nowrap;
  font-weight: 500;
  align-items: flex-start;
  color: #33373c;
}
.input input:not([type=checkbox]), .input select, .input textarea {
  margin-top: 10px;
  border: 1px solid #c1c1c1;
  padding: 8px 14px;
  border-radius: 6px;
  max-width: 100%;
  min-width: 100%;
  box-sizing: border-box;
  outline: none;
  background-color: #fff;
  filter: none;
}
.input input:not([type=checkbox]):-webkit-autofill, .input input:not([type=checkbox]):-webkit-autofill:hover, .input input:not([type=checkbox]):-webkit-autofill:focus, .input input:not([type=checkbox]):-webkit-autofill:active, .input select:-webkit-autofill, .input select:-webkit-autofill:hover, .input select:-webkit-autofill:focus, .input select:-webkit-autofill:active, .input textarea:-webkit-autofill, .input textarea:-webkit-autofill:hover, .input textarea:-webkit-autofill:focus, .input textarea:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
  -webkit-text-fill-color: #3c4247 !important;
}
.input input:not([type=checkbox])::placeholder, .input select::placeholder, .input textarea::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: rgba(26, 28, 30, 0.6);
  opacity: 1; /* Firefox */
}
.input input:not([type=checkbox]):not([disabled]):active, .input input:not([type=checkbox]):not([disabled]):focus, .input select:not([disabled]):active, .input select:not([disabled]):focus, .input textarea:not([disabled]):active, .input textarea:not([disabled]):focus {
  border-color: #007cce;
  outline: 1px solid #007cce;
  background-color: #fff;
}
.input input:not([type=checkbox]).invalid, .input select.invalid, .input textarea.invalid {
  border-color: #db3434;
  outline: 1px solid #db3434;
  box-shadow: unset;
  background-color: white;
}
.input select {
  appearance: none;
  font-family: inherit;
  font-size: inherit;
  cursor: inherit;
  line-height: inherit;
  background-image: url("data:image/svg+xml;base64,PHN2ZyBmaWxsPSdibGFjaycgaGVpZ2h0PScyNCcgdmlld0JveD0nMCAwIDI0IDI0JyB3aWR0aD0nMjQnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2Zyc+DQogICAgPHBhdGggZD0nTTcgMTBsNSA1IDUtNXonLz48cGF0aCBkPSdNMCAwaDI0djI0SDB6JyBmaWxsPSdub25lJy8+DQo8L3N2Zz4=");
  background-repeat: no-repeat;
  background-position: calc(100% - 8px) 6px;
}
.input textarea {
  resize: vertical;
}

.underlined {
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.new-line-divider {
  opacity: 0.3;
}

.h-p {
  position: absolute;
}

.bold {
  font-weight: 500;
}

.info-4 {
  color: rgba(26, 28, 30, 0.4);
}

.info-6 {
  color: rgba(26, 28, 30, 0.6);
}

.fluid {
  word-break: break-all;
}

.break-all {
  word-break: break-all;
}

.success {
  position: relative;
  padding: 0 4px;
  color: #048e00;
  background: rgba(4, 142, 0, 0.0392156863);
}
.success.message {
  border: 1px solid rgba(4, 142, 0, 0.231372549);
  padding: 7px 50px 7px 14px;
  border-radius: 6px;
}
.success.message .close {
  position: absolute;
  right: 0;
  top: 0;
  border: 0;
  background: none;
  padding: 4px 20px 20px;
}
.success.message .close:hover {
  cursor: pointer;
}
.success.message + section, .success.message + .section {
  border-top: unset;
}

.error {
  position: relative;
  padding: 0 4px;
  color: #d00000;
  background: rgba(219, 52, 52, 0.03);
}
.error.message {
  border: 1px solid rgba(219, 52, 52, 0.18);
  padding: 7px 50px 7px 14px;
  border-radius: 6px;
}
.error.message .close {
  position: absolute;
  right: 0;
  top: 0;
  border: 0;
  background: none;
  padding: 4px 20px 20px;
}
.error.message .close:hover {
  cursor: pointer;
}
.error.message + section, .error.message + .section {
  border-top: unset;
}