html {
    height: 100%;
}

body {
    margin: 0px;
    height: 100vh;
    background-color: hsl(0, 0%, 98%);
    font-family: Quicksand, sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: hsl(0, 0%, 45%);
}

ui-view[name=core] {
    margin: 0px;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

ui-view[name=webHeader],
ui-view[name=onboardingHeader],
ui-view[name=projectHeader],
ui-view[name=settingsHeader],
ui-view[name=screenerHeader],
ui-view[name=systemHeader] {
    flex-grow: 0;
    flex-shrink: 0;
    z-index: 2000;
}

ui-view[name=upgradeNotification],
ui-view[name=overLimitNotification],
ui-view[name=projectWorkflowNav],
ui-view[name=settingsWorkflowNav] {
    flex-grow: 0;
    flex-shrink: 0;
}

ui-view[name=webContent],
ui-view[name=projectContent],
ui-view[name=settingsContent] {
    flex-grow: 1;
    flex-shrink: 0;
}

ui-view[name=incentiveOrders],
ui-view[name=newParticipantRedirect],
ui-view[name=participantRedirects],
ui-view[name=newIncentiveRedirect],
ui-view[name=incentiveRedirects],
ui-view[name=newIncentivePaymentMethod],
ui-view[name=newProductCatalog],
ui-view[name=maintenanceManager],
ui-view[name=dbMigrator] {
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
    max-width: 1200px;
}

ui-view[name=maintenanceManager],
ui-view[name=dbMigrator] {
    margin-bottom: 15px;
    width: 830px;
    flex-grow: 1;
}

ui-view[name=webFooter],
ui-view[name=projectFooter],
ui-view[name=settingsFooter],
ui-view[name=systemFooter] {
    flex-grow: 0;
    flex-shrink: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    letter-spacing: -0.04em;
    color: hsl(0, 0%, 21%);
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 24px;
}

code {
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 20px;
    border: 1px solid hsl(210, 11%, 84%);
    border-radius: 2px;
    padding: 10px 15px 10px 15px;
    background-color: hsl(0, 0%, 100%);
    font-family: monospace;
    font-weight: 500;
    white-space: nowrap;
    color: hsl(0, 0%, 45%);
}

.spinner {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.spinner > div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid hsl(0, 0%, 45%);
  border-radius: 50%;
  animation: spinner 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: hsl(0, 0%, 45%) transparent transparent transparent;
}

.spinner > div:nth-child(1) {
  animation-delay: -0.45s;
}

.spinner > div:nth-child(2) {
  animation-delay: -0.3s;
}

.spinner > div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

form > div {
    margin: 50px auto auto auto;
    padding-right: 15px;
    padding-left: 15px;
    max-width: 830px;
}

form > div.help {
    margin-top: 10px;
}

form > div > label.control-label,
form > div.has-success > label.control-label,
form > div.has-error > label.control-label,
form > div.helpvalue.paragraph {
    display: block;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: hsl(0, 0%, 21%);
}

form > div.helpvalue.paragraph > a,
form > div.helpvalue.paragraph > a:link,
form > div.helpvalue.paragraph > a:visited {
    font-size: 17px;
    font-weight: 500;
}

div.schema-form-checkbox > label > span,
div.schema-form-checkbox.standard > label > span {
    display: block;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: hsl(0, 0%, 21%);
}

div.schema-form-checkbox > label > span > a,
div.schema-form-checkbox > label > span > a:link,
div.schema-form-checkbox > label > span > a:visited {
    font-size: 17px;
    font-weight: 500;
}

form > div .form-control,
form > div .form-control:focus,
form > div .form-control[readonly],
form > div .form-control[readonly]:focus {
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 2px;
    border-color: hsl(210, 11%, 84%);
    outline: none;
    box-shadow: none;
    height: 44px;
    background-color: hsl(0, 0%, 100%);
    font-family: Quicksand, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: hsl(0, 0%, 30%);
}

form > div .form-control::-webkit-input-placeholder {
    color: hsl(0, 0%, 67%);
}

form > div .form-control::-moz-placeholder {
    color: hsl(0, 0%, 67%);
}

form > div .form-control:-ms-input-placeholder {
    color: hsl(0, 0%, 67%);
}

form > div .form-control:-moz-placeholder {
    color: hsl(0, 0%, 67%);
}

form > div select.form-control,
form > div select.form-control:focus {
    background-image: url("../image/dropdown.arrow.left-padding.svg");
    background-repeat: no-repeat;
    background-position: 100% 50%;
    padding-right: 35px;
}

form > div select.form-control > option,
form > div select.form-control:focus > option {
    font-family: Quicksand, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: hsl(0, 0%, 30%);
}

form > div input[type=number],
form > div input[type=number]:focus {
    -moz-appearance: textfield;
    padding-right: 0px;
}

form > div input[type=number]::-webkit-inner-spin-button,
form > div input[type=number]:focus::-webkit-inner-spin-button {
    -webkit-appearance: none;
    padding-right: 10px;
    background-image: url("../image/dropdown.arrow.number.svg");
    background-repeat: no-repeat;
    background-position: 0% 50%;
    width: 16px;
    height: 28px;
    position: relative;
    opacity: 1;
    cursor: pointer;
}

form > div.angular-schema-form--base64-file > div:focus {
    outline: none;
}

form > div.angular-schema-form--base64-file > div > button,
form > div.angular-schema-form--base64-file > div > button:visited {
    border: 2px dashed hsl(210, 11%, 84%);
    border-radius: 2px;
    min-height: 90px;
    width: 800px;
    padding: 12px 28px 12px 28px;
    background-color: transparent;
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.04em;
    text-decoration: none;
    cursor: pointer;
}

form > div.angular-schema-form--base64-file > div > button:focus,
form > div.angular-schema-form--base64-file > div > button:hover {
    outline: none;
}

@media (max-width: 844px) {
    form > div.angular-schema-form--base64-file > div,
    form > div.angular-schema-form--base64-file > div > button,
    form > div.angular-schema-form--base64-file > div > button:visited {
        width: 100%;
    }
}

form > div.angular-schema-form--base64-file > div > button > span {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 25px;
}

form > div.angular-schema-form--base64-file > div > button > span::before {
    content: url("../image/upload.svg");
}

form > div.imagePreview > div.image {
    display: flex;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
}

@media (max-width: 844px) {
    form > div.imagePreview > div.image {
        width: 100%;
    }
}

form > div.imagePreview > div.image > img {
    max-height: 105px;
    max-width: 535px;
    object-fit: contain;
}

form > div.imagePreview > div.image > div.remove {
    margin-left: 8px;
    font-size: 20px;
    font-weight: 700;
    line-height: 105px;
    color: hsl(3, 100%, 67%);
    cursor: pointer;
}

/*
@keyframes formControlAutofill {
    to {
        background-color: hsl(0, 0%, 100%);
        color: hsl(0, 0%, 30%);
    }
}

form > div .form-control:-webkit-autofill,
form > div .form-control:-webkit-autofill:focus {
    animation-name: formControlAutofill;
    animation-fill-mode: both;
}
*/

form > div .form-control:-webkit-autofill,
form > div .form-control:-webkit-autofill:hover,
form > div .form-control:-webkit-autofill:focus {
    -webkit-text-fill-color: hsl(0, 0%, 30%);
    -webkit-box-shadow: 0 0 0px 1000px hsl(0, 0%, 100%) inset;
    transition: background-color 9999s ease-in-out 0s;
}

form > div textarea.form-control,
form > div textarea.form-control:focus {
    height: 200px;
}

form > div.has-success .form-control,
form > div.has-success .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: hsl(175, 46%, 69%);
}

form > div.has-error .form-control,
form > div.has-error .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: hsl(3, 100%, 67%);
}

form > div.has-error > .help-block {
    color: hsl(3, 100%, 67%);
}

form > div.schema-form-array > ol {
    margin-bottom: 0px;
}

form > div.schema-form-array > ol > li {
    border: none;
    width: 600px;   /* account for variances between browsers that cause the field label to be on its own line */
    padding: 0px;
    background-color: transparent;
    list-style-type: none;
}

form > div.schema-form-array > ol > li::before {
    margin-right: 8px;
    padding-top: 8px;   /* bigger click target for dragging */
    font-family: "Glyphicons Halflings";
    font-size: 20px;
    -webkit-text-stroke: .1px hsl(0, 0%, 98%);
    color: hsl(0, 0%, 0%);
    opacity: .2;
    content: "\e236";
    cursor: pointer;
}

form > div.schema-form-array > ol > li > div > label {
    display: none;
}

form > div.schema-form-array > ol > li > div.checkbox > label,
form > div.schema-form-array > ol > li > div.schema-form-array > ol > li > div.schema-form-checkbox > label {
    display: inline-block;
}

form > div.schema-form-array > ol > li > div.has-success > .form-control,
form > div.schema-form-array > ol > li > div.has-success > .form-control:focus,
form > div.schema-form-array > ol > li > div.datePicker > .form-control,
form > div.schema-form-array > ol > li > div.datePicker > .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: hsl(175, 46%, 69%);
}

form > div.schema-form-array > ol > li > div.datePicker > .form-control ~ div.help-block {
    display: none;
}

form > div.schema-form-array > ol > li > div.has-error > .form-control,
form > div.schema-form-array > ol > li > div.has-error > .form-control:focus,
form > div.schema-form-array > ol > li > div.datePicker > .form-control:placeholder-shown,
form > div.schema-form-array > ol > li > div.datePicker > .form-control:placeholder-shown:focus {
    outline: none;
    box-shadow: none;
    border-color: hsl(3, 100%, 67%);
}

form > div.schema-form-array > ol > li > div.datePicker > .form-control:placeholder-shown ~ div.help-block {
    display: block;
    color: hsl(3, 100%, 67%);
}

form > div.schema-form-array > ol > li > div.has-error > .help-block {
    color: hsl(3, 100%, 67%);
}

form > div.schema-form-array > ol > li > button {
    margin-top: -15px;
    margin-left: 12px;
    outline: none;
}

form > div.schema-form-array > ol > li > button > span[aria-hidden=true] {
    content: url("../image/trash.svg");
}

form > div.schema-form-array > div {
    width: 600px;
    padding: 0px !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (max-width: 844px) {
    form > div.schema-form-array > div {
        margin-left: 0px;
    }
}

form > div.schema-form-array > div > div.help-block {
    margin-bottom: 20px;
    margin-left: 29px;
    color: hsl(3, 100%, 67%);
}

form > div.schema-form-array > div > button.btn.btn-default,
form > div.schema-form-array > div > button.btn.btn-default:visited {
    margin-left: 29px;
    box-shadow: none;
    padding: 0px;
    background-color: transparent;
    color: hsl(175, 46%, 55%);
}

form > div.schema-form-array > div > button.btn.btn-default:focus,
form > div.schema-form-array > div > button.btn.btn-default:hover {
    box-shadow: none;
    background-color: transparent;
    color: hsl(175, 46%, 35%);
}

form > div.schema-form-array > div > button.btn.btn-default:active {
    box-shadow: none;
    background-color: transparent;
    color: hsl(175, 46%, 55%);
}

form > div.schema-form-array > div > button > .glyphicon {
    font-size: 12px;
    transform: translatey(-15%);
    -webkit-text-stroke: 1.5px hsl(0, 0%, 98%);
}

form > div.schema-form-array > ol > li > div.schema-form-array {
    margin-top: 10px;
}

form > div.schema-form-array > ol > li > div.schema-form-array > ol {
    margin-bottom: 0px;
}

form > div.schema-form-array > ol > li > div.schema-form-array > ol > li {
    border: none;
    padding: 0px;
    background-color: transparent;
    display: flex;
}

form > div.schema-form-array > ol > li > div.schema-form-array > ol > li::before {
    margin-right: 8px;
    padding-top: 8px;   /* bigger click target for dragging */
    font-family: "Glyphicons Halflings";
    font-size: 20px;
    -webkit-text-stroke: .1px hsl(0, 0%, 98%);
    color: hsl(0, 0%, 0%);
    opacity: .2;
    content: "\e236";
    cursor: pointer;
}

form > div.schema-form-array > ol > li > div.schema-form-array > ol > li:last-child {
    margin-bottom: -15px;
}

form > div.schema-form-array > ol > li > div.schema-form-array > ol > li > div > label {
    display: none;
}

form > div.schema-form-array > ol > li > div.schema-form-array > ol > li > div.schema-form-checkbox > label {
    display: initial;
}

form > div.schema-form-array > ol > li > div.schema-form-array > ol > li > div.has-success > .form-control,
form > div.schema-form-array > ol > li > div.schema-form-array > ol > li > div.has-success > .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: hsl(175, 46%, 69%);
}

form > div.schema-form-array > ol > li > div.schema-form-array > ol > li > div.has-error > .form-control,
form > div.schema-form-array > ol > li > div.schema-form-array > ol > li > div.has-error > .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: hsl(3, 100%, 67%);
}

form > div.schema-form-array > ol > li > div.schema-form-array > ol > li > div.has-error > .help-block {
    color: hsl(3, 100%, 67%);
}

form > div.schema-form-array > ol > li > div.schema-form-array > ol > li > button {
    order: 1;
    margin-top: -15px;
    margin-left: 12px;
    outline: none;
}

form > div.schema-form-array > ol > li > div.schema-form-array > ol > li > button > span[aria-hidden=true] {
    content: url("../image/trash.svg");
}

form > div.schema-form-array > ol > li > div.schema-form-array > div > button.btn.btn-default,
form > div.schema-form-array > ol > li > div.schema-form-array > div > button.btn.btn-default:visited {
    float: none !important;
    margin-bottom: 15px;
    margin-left: 14px;
    box-shadow: none;
    padding: 0px;
    background-color: transparent;
    color: hsl(175, 46%, 55%);
}

form > div.schema-form-array > ol > li > div.schema-form-array > div > button.btn.btn-default:focus,
form > div.schema-form-array > ol > li > div.schema-form-array > div > button.btn.btn-default:hover {
    box-shadow: none;
    background-color: transparent;
    color: hsl(175, 46%, 35%);
}

form > div.schema-form-array > ol > li > div.schema-form-array > div > button.btn.btn-default:active {
    box-shadow: none;
    background-color: transparent;
    color: hsl(175, 46%, 55%);
}

form > div.schema-form-array > ol > li > div.schema-form-array > div > button > .glyphicon {
    font-size: 12px;
    transform: translatey(-15%);
    -webkit-text-stroke: 1.5px hsl(0, 0%, 98%);
}

form > div.schema-form-checkbox {
    margin-top: 30px;
}

form > div.schema-form-checkbox > label {
    padding-left: 0px;
}

form > div.schema-form-array > ol > li > div.checkbox > label,
form > div.schema-form-array > ol > li > div.schema-form-array > ol > li > div.schema-form-checkbox > label {
    padding-left: 0px;
}

form > div.schema-form-array > ol > li > div.checkbox > label > span,
form > div.schema-form-array > ol > li > div.schema-form-array > ol > li > div.schema-form-checkbox > label > span {
    font-family: Quicksand, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: hsl(0, 0%, 45%);
}

form > div.schema-form-checkbox > label > input[type=checkbox],
form > div.schema-form-array > ol > li > div.checkbox > label > input[type=checkbox],
form > div.schema-form-array > ol > li > div.schema-form-array > ol > li > div.schema-form-checkbox > label > input[type=checkbox],
label.checkbox > input[type=checkbox] {
    margin-left: 0px;
    opacity: 0;
    cursor: pointer;
}

form > div.schema-form-checkbox > label > span,
form > div.schema-form-checkbox.standard > label > span,
form > div.schema-form-array > ol > li > div.checkbox > label > span,
form > div.schema-form-array > ol > li > div.schema-form-array > ol > li > div.schema-form-checkbox > label > span,
label.checkbox > span {
    display: flex;
    align-items: center;
    cursor: pointer;
    column-gap: 15px;
}

form > div.schema-form-checkbox:not(.standard) > label > span::before,
form > div.schema-form-checkbox.standard > label > span::after,
form > div.schema-form-array > ol > li > div.checkbox > label > span::before,
form > div.schema-form-array > ol > li > div.schema-form-array > ol > li > div.schema-form-checkbox > label > span::before,
label.checkbox > span::before {
    display: inline-block;
    height: 20px;
    min-height: 20px;
    width: 20px;
    min-width: 20px;
    box-sizing: border-box;
    border: 1px solid hsl(0, 0%, 86%);
    border-radius: 4px;
    background-color: hsl(0, 0%, 100%);
    background-image: url("../image/check.12x12.white.svg");
    background-repeat: no-repeat;
    background-position: center;
    content: "";
}

form > div.schema-form-checkbox:not(.standard) > label > input:checked ~ span::before,
form > div.schema-form-checkbox.standard > label > input:checked ~ span::after,
form > div.schema-form-array > ol > li > div.checkbox > label > input:checked ~ span::before,
form > div.schema-form-array > ol > li > div.schema-form-array > ol > li > div.schema-form-checkbox > label > input:checked ~ span::before,
label.checkbox > input:checked ~ span::before {
    background-color: hsl(175, 46%, 55%);
}

@media (max-width: 844px) {
    form > div.schema-form-checkbox > label {
        margin-left: 0px;
    }
}

form > fieldset.buttons {
    margin: 50px auto auto auto;
    padding-right: 15px;
    padding-left: 15px;
    max-width: 830px;
}

form > div.schema-form-submit,
form > fieldset.buttons {
    display: flex;
}

form > fieldset.buttons > div.schema-form-submit {
    margin-right: 15px;
    display: inline-block;
}

form > div.helpvalue.has-error {
    margin-top: 10px;
    outline: none;
    color: hsl(3, 100%, 67%);
}

@media (max-width: 844px) {
    form > div.helpvalue.has-error {
        padding-left: 15px;
    }
}

form.filter {
    display: flex;
    margin-top: 30px;
}

form.filter > div {
    display: inline-flex;
    flex-wrap: nowrap;
    margin: 0px 30px auto 0px;
    padding-right: 0px;
    padding-left: 0px;
}

form.filter > div.break {
    flex-basis: 100%;
    width: 100%;
    max-width: 100%;
    margin: auto;
    padding: 10px;
}

form.filter > div > .form-control {
    width: 400px;
}

div.ui-widget.ui-widget-content {
    border-radius: 2px;
    border-color: hsl(210, 11%, 84%);
    font-family: Quicksand, sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: hsl(0, 0%, 45%);
}

div.ui-widget > div.ui-widget-header {
    border: none;
    background-color: hsl(0, 0%, 100%);
    color: hsl(0, 0%, 30%);
}

div.ui-widget > div.ui-widget-header > a.ui-datepicker-prev,
div.ui-widget > div.ui-widget-header > a.ui-datepicker-prev-hover {
    top: 4px;
    left: 2px;
}

div.ui-widget > div.ui-widget-header > a.ui-datepicker-prev > span.ui-icon {
    background-image: url("../image/selector.left.svg");
    background-position: -1px 0px;
}

div.ui-widget > div.ui-widget-header > a.ui-datepicker-next,
div.ui-widget > div.ui-widget-header > a.ui-datepicker-next-hover {
    top: 4px;
    right: 2px;
}

div.ui-widget > div.ui-widget-header > a.ui-datepicker-next > span.ui-icon {
    background-image: url("../image/selector.right.svg");
    background-position: 1px 0px;
}

div.ui-widget > table.ui-datepicker-calendar > tbody > tr > td > a,
div.ui-widget > table.ui-datepicker-calendar > tbody > tr > td > a:link,
div.ui-widget > table.ui-datepicker-calendar > tbody > tr > td > a:visited,
div.ui-widget > table.ui-datepicker-calendar > tbody > tr > td > a:focus,
div.ui-widget > table.ui-datepicker-calendar > tbody > tr > td > a:hover,
div.ui-widget > table.ui-datepicker-calendar > tbody > tr > td > a:active {
    border-radius: 2px;
    border-color: hsl(210, 11%, 84%);
    background-color: hsl(0, 0%, 96%);
    text-align: center;
    font-weight: 500;
    color: hsl(0, 0%, 30%);
}

form.filter > div > input[name=phrase].form-control {
    background-image: url("../image/search.svg");
    background-repeat: no-repeat;
    background-position: 12px 55%;
    padding-left: 40px;
}

@keyframes phraseAutofill {
    to {
        background-image: url("../image/search.svg");
        background-repeat: no-repeat;
        background-position: 12px 55%;
        background-color: hsl(0, 0%, 100%);
        color: hsl(0, 0%, 30%);
    }
}

form.filter > div > input[name=phrase].form-control:-webkit-autofill,
form.filter > div > input[name=phrase].form-control:-webkit-autofill:focus {
    animation-name: phraseAutofill;
    animation-fill-mode: both;
}

form.filter > div > img {
    margin-right: 2px;
    margin-left: 2px;
}

form > div > div.StripeElement,
form > div > div.StripeElement--empty
form > div > div.StripeElement--focus,
form > div > div.StripeElement--invalid,
form > div > div.StripeElement--webkit-autofill,
form > div > div.StripeElement--complete {
    background-color: hsl(0, 0%, 100%) !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

a,
a:link,
a:visited {
    border: none;
    outline: none;
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.04em;
    text-decoration: none;
    white-space: nowrap;
    color: hsl(175, 46%, 55%);
    cursor: pointer;
}

a:focus,
a:hover {
    color: hsl(175, 46%, 35%);
}

a:active {
    color: hsl(175, 46%, 55%);
}

a.gray,
a.gray:link,
a.gray:visited,
nav.navbar > ul > li > a.gray,
nav.navbar > ul > li > a.gray:link,
nav.navbar > ul > li > a.gray:visited {
    color: hsl(0, 0%, 45%);
}

a.gray:focus,
a.gray:hover,
nav.navbar > ul > li > a.gray:focus,
nav.navbar > ul > li > a.gray:hover {
    color: hsl(0, 0%, 30%);
}

a.gray:active,
nav.navbar > ul > li > a.gray:active {
    color: hsl(0, 0%, 45%);
}

a.iconLink {
    display: inline-flex;
    align-items: center;
    column-gap: 5px;
}

a.iconLink.edit {
    margin-bottom: 2px;
}

a.iconLink.edit::before,
a.iconLink.edit:link::before,
a.iconLink.edit:visited::before {
    margin-top: 2px;
    content: url("../image/edit.green.svg");
}

a.iconLink.edit:focus::before,
a.iconLink.edit:hover::before {
    content: url("../image/edit.green.35.svg");
}

a.iconLink.edit:active::before {
    content: url("../image/edit.green.svg");
}

a.iconLink.back {
    margin-top: -4px;
}

a.iconLink.back::before,
a.iconLink.back:link::before,
a.iconLink.back:visited::before {
    margin-top: 6px;
    content: url("../image/arrow.left.green.svg");
}

a.iconLink.back:focus::before,
a.iconLink.back:hover::before {
    content: url("../image/arrow.left.green.35.svg");
}

a.iconLink.back:active::before {
    content: url("../image/arrow.left.green.svg");
}

a.iconLink.forward {
    background-color: transparent;
}

a.iconLink.forward::after {
    margin-top: 7px;
}

a.iconLink.forward.green,
a.iconLink.forward.green:link,
a.iconLink.forward.green:visited {
    background-color: transparent;
    color: hsl(175, 46%, 50%);
}

a.iconLink.forward.green:focus,
a.iconLink.forward.green:hover {
    color: hsl(175, 46%, 35%);
}

a.iconLink.forward.green:active {
    color: hsl(175, 46%, 50%);
}

a.iconLink.forward.green::after,
a.iconLink.forward.green:link::after,
a.iconLink.forward.green:visited::after {
    content: url("../image/arrow.right.green.50.svg");
}

a.iconLink.forward.green:focus::after,
a.iconLink.forward.green:hover::after {
    content: url("../image/arrow.right.green.35.svg");
}

a.iconLink.forward.green:active::after {
    content: url("../image/arrow.right.green.50.svg");
}

a.iconLink.forward.yellow,
a.iconLink.forward.yellow:link,
a.iconLink.forward.yellow:visited {
    background-color: transparent;
    color: hsl(47, 100%, 45%);
}

a.iconLink.forward.yellow:focus,
a.iconLink.forward.yellow:hover {
    color: hsl(47, 100%, 38%);
}

a.iconLink.forward.yellow:active {
    color: hsl(47, 100%, 45%);
}

a.iconLink.forward.yellow::after,
a.iconLink.forward.yellow:link::after,
a.iconLink.forward.yellow:visited::after {
    content: url("../image/arrow.right.yellow.45.svg");
}

a.iconLink.forward.yellow:focus::after,
a.iconLink.forward.yellow:hover::after {
    content: url("../image/arrow.right.yellow.38.svg");
}

a.iconLink.forward.yellow:active::after {
    content: url("../image/arrow.right.yellow.45.svg");
}

a.iconLink.forward.red,
a.iconLink.forward.red:link,
a.iconLink.forward.red:visited {
    background-color: transparent;
    color: hsl(3, 100%, 62%);
}

a.iconLink.forward.red:focus,
a.iconLink.forward.red:hover {
    color: hsl(3, 100%, 40%);
}

a.iconLink.forward.red:active {
    color: hsl(3, 100%, 62%);
}

a.iconLink.forward.red::after,
a.iconLink.forward.red:link::after,
a.iconLink.forward.red:visited::after {
    content: url("../image/arrow.right.red.62.svg");
}

a.iconLink.forward.red:focus::after,
a.iconLink.forward.red:hover::after {
    content: url("../image/arrow.right.red.40.svg");
}

a.iconLink.forward.red:active::after {
    content: url("../image/arrow.right.red.62.svg");
}

a.iconLink.forward.gray,
a.iconLink.forward.gray:link,
a.iconLink.forward.gray:visited {
    background-color: transparent;
    color: hsl(0, 0%, 45%);
}

a.iconLink.forward.gray:focus,
a.iconLink.forward.gray:hover {
    color: hsl(0, 0%, 30%);
}

a.iconLink.forward.gray:active {
    color: hsl(0, 0%, 45%);
}

a.iconLink.forward.gray::after,
a.iconLink.forward.gray:link::after,
a.iconLink.forward.gray:visited::after {
    content: url("../image/arrow.right.gray.45.svg");
}

a.iconLink.forward.gray:focus::after,
a.iconLink.forward.gray:hover::after {
    content: url("../image/arrow.right.gray.30.svg");
}

a.iconLink.forward.gray:active::after {
    content: url("../image/arrow.right.gray.45.svg");
}

p > a,
p > a:link,
p > a:visited {
    font-size: 16px;
    font-weight: 500;
}

.btn,
.btn:link,
.btn:visited {
    margin: 0px;
    outline: none !important;
    border: none;
    border-radius: 4px;
    padding: 12px 28px;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.04em;
    text-decoration: none;
    color: hsl(0, 0%, 100%);
}

.btn:focus,
.btn:hover {
    color: hsl(0, 0%, 100%);
}

.btn:active,
.btn.btn-primary:active {
    color: hsl(0, 0%, 100%);
}

.btn.btn-primary,
.btn.btn-primary:link,
.btn.btn-primary:visited {
    background-color: hsl(175, 46%, 55%);
}

.btn.btn-primary:focus,
.btn.btn-primary:hover {
    background-color: hsl(175, 46%, 35%);
}

.btn.btn-primary:active,
.btn-group.dropdown.open > .dropdown-toggle.btn-primary {
    background-color: hsl(175, 46%, 55%);
}

.btn.btn-secondary,
.btn.btn-secondary:link,
.btn.btn-secondary:visited {
    background-color: hsl(0, 0%, 65%);
}

.btn.btn-secondary:focus,
.btn.btn-secondary:hover {
    background-color: hsl(0, 0%, 45%);
}

.btn.btn-secondary:active {
    background-color: hsl(0, 0%, 65%);
}

.btn.btn-tertiary,
.btn.btn-tertiary:link,
.btn.btn-tertiary:visited {
    background-color: hsl(0, 0%, 80%);
}

.btn.btn-tertiary:focus,
.btn.btn-tertiary:hover {
    background-color: hsl(0, 0%, 60%);
}

.btn.btn-tertiary:active {
    background-color: hsl(0, 0%, 80%);
}

.btn.btn-danger,
.btn.btn-danger:link,
.btn.btn-danger:visited {
    background-color: hsl(3, 100%, 67%);
}

.btn.btn-danger:focus,
.btn.btn-danger:hover {
    background-color: hsl(3, 100%, 47%);
}

.btn.btn-danger:active {
    background-color: hsl(3, 100%, 67%);
}

ul.uib-dropdown-menu {
    margin-top: -1px;
    border: 1px solid hsl(210, 11%, 84%);
    border-radius: 0px 0px 2px 2px;
    padding: 0px;
}

ul.uib-dropdown-menu > li > a,
ul.uib-dropdown-menu > li > a:link,
ul.uib-dropdown-menu > li > a:visited,
ul.uib-dropdown-menu > li > a:focus,
ul.uib-dropdown-menu > li > a:hover,
ul.uib-dropdown-menu > li > a:active {
    padding: 10px 12px 8px 12px;
    font-family: Quicksand, sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: normal;
    color: hsl(0, 0%, 30%);
}

ul.uib-dropdown-menu > li > a > span.name {
    display: inline-block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

div.button-has-error {
    outline: none;
    color: hsl(3, 100%, 67%);
}

#toast-container.toast-top-center {
    top: 15px;
    right: 50%;
    width: auto;
    max-width: 800px;
    transform: translateX(+50%);
}

#toast-container.toast-top-center > div > div.toast {
    width: auto;
    padding-right: 18px;
}

#toast-container .toast.toast-success {
    background-color: hsl(175, 46%, 45%);
    background-image: url("../image/check.20x20.white.svg") !important;
    background-position-x: 17px;
}

#toast-container .toast.toast-warning {
    background-color: hsl(47, 100%, 40%);
    background-image: url("../image/toast.icon.warning.svg") !important;
    background-size: 24px 21.33333px;
}

#toast-container .toast.toast-error {
    background-color: hsl(3, 100%, 44%);
    background-image: url("../image/toast.icon.error.svg") !important;
    background-size: 24px 21.33333px;
}

#toast-container .toast.toast-info {
    background-color: hsl(0, 0%, 47%);
    background-image: url("../image/toast.icon.info.svg") !important;
    background-size: 24px 21.33333px;
}

.materialIcon {
    display: inline-block;
    padding-right: 10px;
    vertical-align: middle;
    font-family: "Material Icons";
    font-size: 24px;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;

    /* support for all webkit browsers */
    /*-webkit-font-smoothing: antialiased;*/

    /* support for safari and chrome */
    /*text-rendering: optimizeLegibility;*/

    /* support for firefox */
    -moz-osx-font-smoothing: grayscale;

    /* support for ie */
    font-feature-settings: "liga";
}

div.notification {
    margin: 20px auto 0px auto;
    display: table;
}

div.notification > a,
div.notification > a:link,
div.notification > a:visited,
div.notification > a:focus,
div.notification > a:hover,
div.notification > a:active {
    border-radius: 4px;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.16);
    background-color: hsl(0, 0%, 99.5%);
    display: flex;
}

div.notification > a > span.accent {
    display: inline-block;
    width: 6px;
    height: 40px;
    border-radius: 4px 0px 0px 4px;
}

div.notification.primary > a > span.accent {
    background-color: hsl(175, 46%, 55%);
}

div.notification.warning > a > span.accent {
    background-color: hsl(47, 100%, 50%);
}

div.notification.error > a > span.accent {
    background-color: hsl(3, 100%, 67%);
}

div.notification > a > span.message::before {
    display: inline-block;
    padding-right: 10px;
    padding-left: 20px;
    vertical-align: middle;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    white-space: nowrap;
}

div.notification.primary > a > span.message::before {
    padding-bottom: 3px;
    content: url("../image/star.22x22.green.svg");
}

div.notification.warning > a > span.message::before {
    padding-bottom: 2px;
    content: url("../image/warning.22.5x20.yellow.svg");
}

div.notification.error > a > span.message::before {
    padding-bottom: 1px;
    content: url("../image/error.21x21.red.svg");
}

div.notification > a > span.message {
    display: inline-block;
    padding-right: 20px;
    font-family: Quicksand, sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 40px;
    letter-spacing: normal;
    color: hsl(0, 0%, 45%);
}

h1.appContainer,
h2.appContainer,
h3.appContainer,
h4.appContainer,
h5.appContainer,
h6.appContainer,
div.appContainer,
p.appContainer,
ol.appContainer {
    margin-right: auto;
    margin-left: auto;
    width: 830px;
    padding-right: 15px;
    padding-left: 15px;
}

ol.appContainer {
    counter-reset: item;
}

ol.appContainer > li {
    display: block;
}

ol.appContainer > li:before {
    content: counter(item) ". ";
    counter-increment: item;
    width: 1.5em;
    display: inline-block;
}

@media (max-width: 844px) {
    div.appContainer,
    p.appContainer,
    ol.appContainer {
        width: auto;
    }
}


table.appContainer {
    margin-right: auto;
    margin-left: auto;
}

table.appContainer > tbody > tr > td {
    min-width: 830px;
    padding-right: 15px;
    padding-left: 15px;
}

@media (max-width: 1200px) {
    .navbar-header {
        float: none;
    }

    .navbar-toggle {
        display: block;
    }

    .navbar-collapse {
        border-top: 1px solid transparent;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
    }

    .navbar-collapse.collapse {
        display: none !important;
    }

    .navbar-nav {
        float: none !important;
        margin: 7.5px -15px;
    }

    .navbar-nav>li {
        float: none;
    }

    .navbar-nav>li>a {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .navbar-text {
        float: none;
        margin: 15px 0;
    }

    .navbar-collapse.collapse.in {
        display: block !important;
    }

    .collapsing {
        overflow: hidden !important;
    }
}

div.webHeader nav {
    margin-right: auto;
    margin-left: auto;
    max-width: 1200px;
    border: none;
    padding-top: 15px;
    background-color: transparent;
}

div.webHeader nav.navbar div div a {
    padding-top: 5px;
}

div.webHeader nav.navbar div div button,
div.webHeader nav.navbar div div button:visited,
div.webHeader nav.navbar div div button:focus,
div.webHeader nav.navbar div div button:hover,
div.webHeader nav.navbar div div button:active {
    margin-top: 1px;
    border-color: hsl(0, 0%, 65%);
    background-color: transparent;
}

div.webHeader nav.navbar div div button span.icon-bar {
    background-color: hsl(0, 0%, 55%);
}

div.webHeader nav.navbar div div ul li.button {
    margin-right: 18px;
    margin-left: 18px;
    border: 1px solid hsl(0, 0%, 65%);
    box-sizing: border-box;
    border-radius: 4px;
}

div.webHeader nav.navbar div div ul li a,
div.webHeader nav.navbar div div ul li a:link,
div.webHeader nav.navbar div div ul li a:visited,
div.webHeader nav.navbar div div ul li a:focus,
div.webHeader nav.navbar div div ul li a:hover,
div.webHeader nav.navbar div div ul li a:active {
    padding: 12px 21px;
    font-size: 16px;
    color: hsl(0, 0%, 45%);
}

div.webHeader nav.navbar div div ul li.button a,
div.webHeader nav.navbar div div ul li.button a:link,
div.webHeader nav.navbar div div ul li.button a:visited,
div.webHeader nav.navbar div div ul li.button a:focus,
div.webHeader nav.navbar div div ul li.button a:hover,
div.webHeader nav.navbar div div ul li.button a:active {
    padding: 12px 28px;
}

div.webFooter {
    margin-top: 100px;
    padding-top: 50px;
    background-color: hsl(210, 11%, 96%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

div.webFooter > nav {
    border: none;
    background-color: hsl(210, 11%, 96%);
}

div.webFooter > nav.navbar > ul > li {
    text-align: center;
}

div.webFooter > nav.navbar.socialMediaIcons > ul > li {
    float: left;
}

div.webFooter > nav.navbar > ul > li > a,
div.webFooter > nav.navbar > ul > li > a:link,
div.webFooter > nav.navbar > ul > li > a:visited,
div.webFooter > nav.navbar > ul > li > a:focus,
div.webFooter > nav.navbar > ul > li > a:hover,
div.webFooter > nav.navbar > ul > li > a:active {
    padding: 12px 21px;
    font-size: 16px;
    color: hsl(0, 0%, 45%);
}

div.webFooter > div.copyright {
    margin-bottom: 40px;
}

div.webFooter div.gdprNotification {
    margin-bottom: 15px;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 990px) {
    div.webFooter div.gdprNotification {
        line-height: 2;
    }
}

div.gdprNotification > button,
div.gdprNotification > button:visited,
div.gdprNotification > button:focus,
div.gdprNotification > button:hover,
div.gdprNotification > button:active {
    margin-left: 6px;
    padding: 3px 15px 3px 15px;
    border-radius: 2px;
    font-size: 14px;
    background-color: hsl(0, 0%, 65%);
}

hr.sectionSeparator {
    box-sizing: border-box;
    margin: 0px;
    border: 1px solid hsl(0, 0%, 95%);
    width: 100%;
    height: 1px;
}

div.homeHeader {
    margin-bottom: -1px;    /* remove white line under header in ios safari/chrome */
    background-color: hsl(175, 46%, 50%);
}

div.homeHeader > nav {
    margin-right: auto;
    margin-left: auto;
    max-width: 1200px;
    border: none;
    padding-top: 15px;
    background-color: hsl(175, 46%, 50%);
}

div.homeHeader > nav.navbar > div > div > a {
    padding-top: 5px;
}

div.homeHeader > nav.navbar > div > div > button,
div.homeHeader > nav.navbar > div > div > button:visited,
div.homeHeader > nav.navbar > div > div > button:focus,
div.homeHeader > nav.navbar > div > div > button:hover,
div.homeHeader > nav.navbar > div > div > button:active {
    margin-top: 1px;
    border-color: hsl(0, 0%, 100%);
    background-color: transparent;
}

div.homeHeader > nav.navbar > div > div > button > span.icon-bar {
    background-color: hsl(0, 0%, 100%);
}

div.homeHeader > nav.navbar > div > div > ul > li.button {
    margin-right: 18px;
    margin-left: 18px;
    border: 1px solid hsl(0, 0%, 100%);
    box-sizing: border-box;
    border-radius: 4px;
}

div.homeHeader > nav.navbar > div > div > ul > li > a,
div.homeHeader > nav.navbar > div > div > ul > li > a:link,
div.homeHeader > nav.navbar > div > div > ul > li > a:visited,
div.homeHeader > nav.navbar > div > div > ul > li > a:focus,
div.homeHeader > nav.navbar > div > div > ul > li > a:hover,
div.homeHeader > nav.navbar > div > div > ul > li > a:active {
    padding: 12px 21px;
    font-size: 16px;
    color: hsl(0, 0%, 100%);
}

div.homeHeader > nav.navbar > div > div > ul > li.button > a {
    padding: 12px 28px;
}

div.homeBanner {
    background: linear-gradient(180deg, hsl(175, 46%, 50%) 72.82%, rgba(87, 193, 184, 0) 100%);
    padding-bottom: 200px;
}

@media (max-width: 990px) {
    div.homeBanner {
        padding-bottom: 50px;
    }
}

div.homeBanner > h5 {
    margin-top: 90px;
    margin-right: auto;
    margin-bottom: -60px;
    margin-left: auto;
    border-radius: 8px;
    max-width: 115px;
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: hsl(0, 0%, 100%);
    line-height: 1.25;
    color: hsl(175, 46%, 50%);
    text-align: center;
    text-transform: uppercase;
}

div.homeBanner > h1 {
    margin-top: 90px;
    margin-right: auto;
    margin-left: auto;
    max-width: 600px;
    font-weight: 300;
    line-height: 1.25;
    color: hsl(0, 0%, 100%);
    text-align: center;
}

@media (max-width: 990px) {
    div.homeBanner > h5 {
        margin-bottom: -20px;
    }

    div.homeBanner > h1 {
        margin-top: 50px;
    }
}

div.homeBanner > div {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    column-gap: 25px;
}

div.homeBanner > div > a.btn,
div.homeBanner > div > a.btn:link,
div.homeBanner > div > a.btn:visited,
div.homeBanner > div > a.btn:focus,
div.homeBanner > div > a.btn:hover,
div.homeBanner > div > a.btn:active {
    padding: 12px 40px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    font-size: 20px;
    font-weight: 300;
}

div.homeBanner > div > a.btn.btn-primary,
div.homeBanner > div > a.btn.btn-primary:link,
div.homeBanner > div > a.btn.btn-primary:visited,
div.homeBanner > div > a.btn.btn-primary:focus,
div.homeBanner > div > a.btn.btn-primary:hover,
div.homeBanner > div > a.btn.btn-primary:active {
    background-color: hsl(175, 46%, 35%);
}

div.homeBanner > div > a.btn.btn-secondary,
div.homeBanner > div > a.btn.btn-secondary:link,
div.homeBanner > div > a.btn.btn-secondary:visited,
div.homeBanner > div > a.btn.btn-secondary:focus,
div.homeBanner > div > a.btn.btn-secondary:hover,
div.homeBanner > div > a.btn.btn-secondary:active {
    background-color: hsl(0, 0%, 55%);
}

@media (max-width: 630px) {
    div.homeBanner > div {
        margin-top: 50px;
        flex-direction: column-reverse;
        row-gap: 25px;
    }
}

div.homeBanner > p {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    font-size: 18px;
    font-weight: 300;
    color: hsl(0, 0%, 100%);
}

@media (max-width: 475px) {
    div.homeBanner > p {
        font-size: 3.5vw;
    }
}

div.homeBanner > div.workflow {
    margin: 100px 20px 25px 20px;
    display: flex;
    justify-content: center;
}

@media (max-width: 990px) {
    div.homeBanner > div.workflow > svg {
        height: 1%;
        width: 100%;
    }
}

section.splide.schoolLogos > h3 {
    text-align: center;
    color: hsl(0, 0%, 45%);
}

section.splide.schoolLogos > div.splide__track {
    margin-top: 20px;
}

section.splide.schoolLogos > div.splide__track > ul.splide__list > li.splide__slide {
    margin-right: 75px;
    margin-left: 75px;
}

div.homeBannerBeta {
    background: linear-gradient(180deg, hsl(175, 46%, 50%) 72.82%, rgba(87, 193, 184, 0) 100%);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

div.homeBannerBeta > div.homeSignUp {
    max-width: 600px;
}

div.homeBannerBeta > div.homeSignUp > h1 {
    margin-top: 75px;
    max-width: 550px;
    font-weight: 300;
    line-height: 60px;
    color: hsl(0, 0%, 100%);
}

div.homeBannerBeta > div.homeSignUp > p {
    margin-top: 25px;
    font-size: 20px;
    font-weight: 500;
    color: hsl(0, 0%, 100%);
}

div.homeBannerBeta > div.homeSignUp > form {
    margin-top: 50px;
}

div.homeBannerBeta > div.homeSignUp > form > div {
    padding-right: 0px;
    padding-left: 0px;
    display: flex;
    column-gap: 0px;
}

div.homeBannerBeta > div.homeSignUp > form > div > input[type=text],
div.homeBannerBeta > div.homeSignUp > form > div > input[type=email] {
    display: inline-block;
    width: 400px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 4px 0px 0px 4px;
}

div.homeBannerBeta > div.homeSignUp > form > div > input[type=submit] {
    padding-top: 11px;
    padding-bottom: 11px;
    border-radius: 0px 4px 4px 0px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    background-color: hsl(175, 46%, 40%);
}

@media (max-width: 630px) {
    div.homeBannerBeta > div.homeSignUp > form > div {
        flex-direction: column;
        row-gap: 10px;
    }

    div.homeBannerBeta > div.homeSignUp > form > div > input[type=text],
    div.homeBannerBeta > div.homeSignUp > form > div > input[type=email] {
        border-radius: 4px;
        box-shadow: none;
        width: 100%;
    }

    div.homeBannerBeta > div.homeSignUp > form > div > input[type=submit] {
        border-radius: 4px;
        box-shadow: none;
        width: 100%;
    }
}

div.homeBannerBeta > div.homeSignUp > form > div.helpvalue.has-error {
    color: hsl(175, 46%, 25%);
}

div.homeBannerBeta > div.image {
    margin: 125px 20px 250px 20px;
    width: 500px;
}

@media (max-width: 1184px) {
    div.homeBannerBeta > div.image {
        margin-bottom: 150px;
    }
}

div.alternating {
    margin: 150px auto auto auto;
    max-width: 1200px;
    padding-right: 15px;
    padding-left: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 100px;
}

div.alternating.rtl {
    flex-direction: row-reverse;
}

@media (max-width: 990px) {
    div.alternating,
    div.alternating.rtl {
        margin-top: 100px;
        flex-direction: column;
        row-gap: 30px;
    }
}

div.alternating > div.text {
    width: 350px;
}

@media (max-width: 990px) {
    div.alternating > div.text {
        width: 100%;
    }

    div.alternating > div.illustration {
        width: 100%;
    }

    div.alternating > div.illustration > img {
        height: auto;
        width: 100%;
    }
}

div.alternating > div.text > hr {
    margin-top: 0px;
    margin-left: 0px;
    border-style: none;
    border-radius: 2px;
    width: 80px;
    height: 7px;
}

div.alternating > div.text > p {
    line-height: 30px;
}

.yellow {
    background-color: hsl(47, 100%, 62%);
}

.red {
    background-color: hsl(3, 100%, 67%);
}

.green {
    background-color: hsl(175, 46%, 55%);
}

hr.sectionSeparator.alternating {
    margin-right: auto;
    margin-left: auto;
    max-width: 1200px;
}

div.pricing,
div.signUp,
div.signIn,
h3.betaFeatureRequestor,
div.about,
div.careers,
div.terms,
div.privacy,
div.security,
div.cookies,
h3.helpRequestor,
ul.faq,
div.inlineFaq,
div.contactSupport,
h3.supportRequestor,
div.competitorComparisonPageHeader,
div.differentiators,
div.planComparison,
div.landingPageCTA,
div.verticalWorkflow,
div.horizontalWorkflow,
section.splide.schoolLogos > h3,
div.benefits,
div.caseStudies,
div.guarantees,
div.agenda,
div.researchStudy,
div.caseStudy {
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
}

div.signUp,
div.signIn,
div.terms,
div.privacy,
div.security,
div.cookies {
    max-width: 1200px;
}

div.competitorComparisonPageHeader,
div.differentiators,
div.planComparison,
div.landingPageCTA,
div.verticalWorkflow,
div.horizontalWorkflow,
section.splide.schoolLogos > h3,
div.benefits,
div.agenda,
div.researchStudy,
div.caseStudy {
    max-width: 960px;
}

div.pricing {
    max-width: 1040px; /* needs to reflect actual width of plans table + 30px padding */
}

div.horizontalWorkflow.fourSteps,
div.caseStudies,
div.guarantees {
    max-width: 1290px;
}

h3.betaFeatureRequestor,
div.about,
div.careers,
h3.helpRequestor,
ul.faq,
div.inlineFaq,
div.contactSupport,
h3.supportRequestor {
    max-width: 830px;
}

form[name=helpRequestorForm] > div > label.control-label,
form[name=helpRequestorForm] > div.has-success > label.control-label,
form[name=helpRequestorForm] > div.has-error > label.control-label {
    display: none;
}

form[name=helpRequestorForm] > div.schema-form-submit {
    margin-top: 0px;
    padding-left: 15px;
}

form[name=helpRequestorForm] > div.helpvalue.has-error {
    padding-left: 15px;
}

ul.faq {
    list-style: none;
}

ul.faq > li > h4 {
    margin-top: 40px;
}

div.inlineFaq {
    margin-top: 200px;
}

div.inlineFaq > h2 {
    margin-bottom: 50px;
    font-size: 40px;
    text-align: center;
}

div.inlineFaq > div.panel-group > div.panel > div.panel-heading {
    padding: 0px;
}

div.inlineFaq > div.panel-group > div.panel > div.panel-heading > h4.panel-title > a {
    padding: 18px 15px 18px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 20px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.42857143;
    white-space: normal;
    color: hsl(0, 0%, 21%);
}

div.inlineFaq > div.panel-group > div.panel > div.panel-heading > h4.panel-title > a::after {
    font-size: 28px;
    font-weight: 400;
    line-height: .8;
    content: "-";
}

div.inlineFaq > div.panel-group > div.panel > div.panel-heading > h4.panel-title > a.collapsed::after {
    content: "+";
}

div.contactSupport {
    margin-top: 80px;
    display: flex;
    justify-content: center;
}

hr.sectionSeparator.pricing {
    margin-top: 50px;
    margin-bottom: 30px;
}

table.plans > tbody > tr > th {
    border-bottom: .5px solid hsl(210, 11%, 84%);
    padding: 0px 30px 0px 0px;
    white-space: nowrap;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.04em;
    color: hsl(0, 0%, 21%);
}

table.plans > tbody > tr > th:empty {
    border-bottom: none;
}

table.plans.signedOut > tbody > tr > th {
    border-bottom: none;
    text-align: center;
}

table.plans > tbody > tr > th > hr {
    display: none;
}

table.plans.signedOut > tbody > tr > th > hr {
    display: block;
    margin: 0px auto 0px auto;
    border-style: none;
    border-radius: 2px;
    width: 80px;
    height: 7px;
}

table.plans.signedOut > tbody > tr > th.small > hr {
    background-color: hsl(47, 100%, 50%);
}

table.plans.signedOut > tbody > tr > th.medium > hr {
    background-color: hsl(175, 46%, 55%);
}

table.plans.signedOut > tbody > tr > th.large > hr {
    background-color: hsl(3, 100%, 67%);
}

table.plans.signedOut > tbody > tr > th.unlimited > hr {
    background-color: hsl(0, 0%, 57%);
}

table.plans > tbody > tr > td {
    padding: 15px 30px 15px 0px;
    white-space: nowrap;
}

table.plans.signedOut > tbody > tr > td {
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
}

table.plans > tbody > tr > td:first-child {
    text-align: left;
    font-weight: 700;
    color: hsl(0, 0%, 21%);
}

table.plans.signedOut > tbody > tr > td:first-child {
    font-weight: 600;
}

table.plans > tbody > tr > td:first-child > img {
    position: relative;
    top: -2px;
    left: 2px;
}

.tooltip .tooltip-inner {
    background-color: hsl(0, 0%, 87%);
    text-align: left;
    font-size: 12px;
    color: hsl(0, 0%, 21%);
}

.tooltip.top .tooltip-inner {
    /* looks better with no box-shadow */
}

.tooltip.right .tooltip-inner {
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
}

.tooltip.bottom .tooltip-inner {
    /* looks better with no box-shadow */
}

.tooltip.left .tooltip-inner {
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
}

.tooltip.top .tooltip-arrow {
    border-top-color: hsl(0, 0%, 87%);
}

.tooltip.right .tooltip-arrow {
    border-right-color: hsl(0, 0%, 87%);
}

.tooltip.bottom .tooltip-arrow {
    border-bottom-color: hsl(0, 0%, 87%);
}

.tooltip.left .tooltip-arrow {
    border-left-color: hsl(0, 0%, 87%);
}

/* support tap to dismiss tooltips on ios */
@supports (-webkit-overflow-scrolling: touch) {
    body {
        cursor: pointer;
    }
}

table.plans > tbody > tr > th:last-child,
table.plans > tbody > tr > td:last-child {
    padding-right: 0px;
}

@media (max-width: 990px) {
    table.plans.signedOut > tbody > tr > th,
    table.plans.signedOut > tbody > tr > td {
        padding-right: 10px;
    }
}

table.plans > tbody > tr > td.price {
    font-weight: 700;
    color: hsl(0, 0%, 21%);
}

table.plans > tbody > tr > td > div.current {
    display: flex;
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    letter-spacing: -0.04em;
}

table.plans > tbody > tr > td > div.current > img {
    margin-right: 5px;
}

/* override less */
table.plans > tbody > tr > td.small {
    font-size: 100%;
}

table.plans.signedOut > tbody > tr > td.small > a,
table.plans.signedOut > tbody > tr > td.small > a:visited,
table.plans.signedOut > tbody > tr > td.small > a:focus,
table.plans.signedOut > tbody > tr > td.small > a:hover,
table.plans.signedOut > tbody > tr > td.small > a:active,
table.plans.signedOut > tbody > tr > td.small > button,
table.plans.signedOut > tbody > tr > td.small > button:visited,
table.plans.signedOut > tbody > tr > td.small > button:focus,
table.plans.signedOut > tbody > tr > td.small > button:hover,
table.plans.signedOut > tbody > tr > td.small > button:active {
    background-color: hsl(47, 100%, 50%);
}

table.plans.signedOut > tbody > tr > td.medium > a,
table.plans.signedOut > tbody > tr > td.medium > a:visited,
table.plans.signedOut > tbody > tr > td.medium > a:focus,
table.plans.signedOut > tbody > tr > td.medium > a:hover,
table.plans.signedOut > tbody > tr > td.medium > a:active,
table.plans.signedOut > tbody > tr > td.medium > button,
table.plans.signedOut > tbody > tr > td.medium > button:visited,
table.plans.signedOut > tbody > tr > td.medium > button:focus,
table.plans.signedOut > tbody > tr > td.medium > button:hover,
table.plans.signedOut > tbody > tr > td.medium > button:active {
    background-color: hsl(175, 46%, 55%);
}

table.plans.signedOut > tbody > tr > td.large > a,
table.plans.signedOut > tbody > tr > td.large > a:visited,
table.plans.signedOut > tbody > tr > td.large > a:focus,
table.plans.signedOut > tbody > tr > td.large > a:hover,
table.plans.signedOut > tbody > tr > td.large > a:active,
table.plans.signedOut > tbody > tr > td.large > button,
table.plans.signedOut > tbody > tr > td.large > button:visited,
table.plans.signedOut > tbody > tr > td.large > button:focus,
table.plans.signedOut > tbody > tr > td.large > button:hover,
table.plans.signedOut > tbody > tr > td.large > button:active {
    background-color: hsl(3, 100%, 67%);
}

table.plans.signedOut > tbody > tr > td.unlimited > a,
table.plans.signedOut > tbody > tr > td.unlimited > a:visited,
table.plans.signedOut > tbody > tr > td.unlimited > a:focus,
table.plans.signedOut > tbody > tr > td.unlimited > a:hover,
table.plans.signedOut > tbody > tr > td.unlimited > a:active,
table.plans.signedOut > tbody > tr > td.unlimited > button,
table.plans.signedOut > tbody > tr > td.unlimited > button:visited,
table.plans.signedOut > tbody > tr > td.unlimited > button:focus,
table.plans.signedOut > tbody > tr > td.unlimited > button:hover,
table.plans.signedOut > tbody > tr > td.unlimited > button:active {
    background-color: hsl(0, 0%, 57%);
}

@media (max-width: 990px) {
    table.plans.signedOut > tbody > tr > td > button {
        padding-right: 12px;
        padding-left: 12px;
    }
}

table.plans > tbody > tr > td.error {
    position: relative;
    top: -10px;
    padding-top: 0px;
    padding-bottom: 0px;
}

div.orSeparator {
    display: flex;
    justify-content: center;
    align-items: center;
}

div.orSeparator > span {
    margin-right: 25px;
    margin-left: 25px;
}

div.orSeparator > hr {
    margin-right: 0px;
    margin-left: 0px;
    border: .5px solid hsl(210, 11%, 84%);
}

div.signUp,
div.signIn {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

div.signUp > h2,
div.signIn > h2 {
    margin-bottom: 20px;
}

div.signUp > button.btn,
div.signUp > button.btn:visited,
div.signUp > button.btn:focus,
div.signUp > button.btn:hover,
div.signUp > button.btn:active,
div.signIn > button.btn,
div.signIn > button.btn:visited,
div.signIn > button.btn:focus,
div.signIn > button.btn:hover,
div.signIn > button.btn:active {
    margin-top: 15px;
    margin-bottom: 15px;
    height: 48px;
    width: 350px;
    border: 1px solid hsl(0, 0%, 65%);
    padding: 0px;
    background: hsl(0, 0%, 100%);
    color: hsl(0, 0%, 45%);
}

/* safari does not allow for display flex on buttons so we need a container div */
div.signUp > button,
div.signIn > button {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 14px;
}

div.signUp > div.orSeparator > hr,
div.signIn > div.orSeparator > hr {
    width: 140px;
}

div.signUp > div.button-has-error.signUp,
div.signIn > div.button-has-error.signIn {
    margin-top: 20px;
    margin-bottom: 20px;
    height: auto;
    max-width: 800px;
    outline: none;
}

div.signUp > div.terms {
    margin-top: 25px;
    margin-bottom: 20px;
    font-size: 14px;
}

p.helpBottom {
    margin-top: 40px;
}

div.landingPageCTA {
    display: flex;
    justify-content: center;
    column-gap: 25px;
}

div.landingPageCTA.top {
    margin-top: 130px;
}

div.landingPageCTA.bottom {
    margin-top: 130px;
}

@media (max-width: 630px) {
    div.landingPageCTA {
        flex-direction: column-reverse;
        row-gap: 25px;
    }
}

div.landingPageCTA > a.btn,
div.landingPageCTA > a.btn:link,
div.landingPageCTA > a.btn:visited,
div.landingPageCTA > a.btn:focus,
div.landingPageCTA > a.btn:hover,
div.landingPageCTA > a.btn:active {
    padding: 12px 40px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    font-size: 20px;
    font-weight: 300;
}

div.about > h1 {
    margin-top: 70px;
    font-weight: 300;
    line-height: 1.25;
}

div.about > h2 {
    margin-top: 60px;
}

div.about > h2 > hr {
    margin-top: 10px;
    margin-left: 0px;
    border-style: none;
    border-radius: 2px;
    width: 80px;
    height: 7px;
}

div.about > h3 {
    margin-top: 20px;
}

div.about > h3:not(:first-child) {
    margin-top: 40px;
}

div.about > p {
    margin-top: 20px;
}

div.about > ul {
    padding-left: 0px;
}

div.about > ul > li {
    margin-top: 20px;
    list-style-position: inside;
    list-style-type: '\2192  ';
}

div.about > ul > li > span:first-child {
    font-weight: 700;
}

div.landingPageCTA.bottom.about {
    margin-top: 70px;
    width: 100%;
    max-width: 100%;
    padding-right: 0px;
    padding-left: 0px;
    display: grid;
    grid-template-columns: 150px 50px 1fr 1fr;
    grid-template-rows: repeat(3, auto);
    grid-auto-flow: column;
    justify-content: start;
    justify-items: start;
    align-items: center;
    column-gap: 0px;
}

div.landingPageCTA.bottom.about > img:first-child {
    grid-column: 1 / 3;
    width: 200px;
    height: auto;
    border-radius: 16px;
}

div.landingPageCTA.bottom.about > div {
    white-space: nowrap;
}

div.landingPageCTA.bottom.about > div:nth-child(2) {
    margin-top: 10px;
    font-weight: 900;
}

div.landingPageCTA.bottom.about > a:nth-child(4) {
    margin-top: 10px;
    margin-left: auto;
}

div.landingPageCTA.bottom.about > hr:nth-child(5) {
    grid-column: 3 / 4;
    grid-row: 1 / 4;
    margin-right: auto;
    margin-left: auto;
    border-left: 1.5px solid hsl(0, 0%, 65%);
    height: 100%;
}

div.landingPageCTA.bottom.about > a:nth-child(6) {
    grid-column: 4 / 5;
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 630px) {
    div.landingPageCTA.bottom.about {
        grid-template-rows: repeat(4, auto);
        row-gap: 0px;
    }

    div.landingPageCTA.bottom.about > hr:nth-child(5) {
        display: none;
    }

    div.landingPageCTA.bottom.about > a:nth-child(6) {
        margin-top: 70px;
        margin-left: 0px;
        grid-column: 1 / 4;
        grid-row: 4;
    }
}

div.careers > div.grid {
    margin-top: -30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

div.careers > div.grid > button,
div.careers > div.grid > button:visited {
    margin-top: 40px;
    margin-right: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    width: 200px;
    height: 75px;
    background-color: hsl(0, 0%, 98%);
    font-size: 16px;
    color: hsl(0, 0%, 45%);
}

div.careers > div.grid > button:focus,
div.careers > div.grid > button:hover {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    background-color: hsl(0, 0%, 94%);
    color: hsl(0, 0%, 45%);
}

div.careers > div.grid > button:active {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    background-color: hsl(0, 0%, 98%);
    color: hsl(0, 0%, 45%);
}

div.logoOnlyHeader {
    background-color: hsl(210, 11%, 96%);
    border-bottom: 1px solid hsl(210, 11%, 84%);
    padding-top: 17px;
    padding-bottom: 17px;
    display: flex;
    justify-content: center;
}

div.competitorComparisonPageHeader {
    margin-top: 100px;
    display: grid;
    grid-template-columns: repeat(3, auto);
    grid-template-rows: repeat(2, auto);
    grid-auto-flow: column;
    justify-items: center;
    align-items: center;
}

div.competitorComparisonPageHeader > div > h1 {
    font-size: 56px;
}

div.competitorComparisonPageHeader > div.vs {
    grid-row: 1 / 3;
    grid-column: 2 / 3;
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

div.competitorComparisonPageHeader > div.vs::before {
    margin-right: auto;
    margin-left: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    height: 100%;
    border-radius: 4px;
    z-index: -1;
    background-color: hsl(210, 11%, 84%);
    content: "";
}

div.competitorComparisonPageHeader > div.vs > h1 {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: hsl(0, 0%, 98%);
    font-size: 40px;
}

div.competitorComparisonPageHeader > div.ethnioLogo > img {
    width: 45px;
}

div.competitorComparisonPageHeader > div.ethnioLogo > span {
    margin-left: 8px;
    font-size: 14px;
    color: hsl(0, 0%, 0%);
}

@media (max-width: 768px) {
    div.competitorComparisonPageHeader {
        margin-top: 50px;
        display: flex;
        flex-direction: column;
    }

    div.competitorComparisonPageHeader > div.vs {
        margin-top: 40px;
        margin-bottom: 40px;
        width: 90%;
        height: auto;
    }

    div.competitorComparisonPageHeader > div.vs::before {
        margin-top: auto;
        margin-bottom: auto;
        width: 100%;
        height: 4px;
    }

    div.competitorComparisonPageHeader > div.vs > h1 {
        margin-right: 0;
        margin-left: 0;
        padding-right: 20px;
        padding-left: 20px;
    }
}

div.differentiators {
    margin-top: 100px;
    display: grid;
    grid-template-columns: repeat(3, auto);
    grid-template-rows: repeat(7, auto);
    grid-auto-flow: column;
    grid-column-gap: 50px;
}

div.differentiators > h2 {
    grid-column: 1 / 4;
    text-align: center;
    font-size: 40px;
}

div.differentiators > div {
    margin-top: 50px;
    display: flex;
    align-items: end;
}

@media (max-width: 990px) {
    div.differentiators {
        grid-template-columns: 1fr 70px minmax(auto, 400px) 1fr;
        grid-template-rows: repeat(13, auto);
        grid-column-gap: 10px;
    }

    div.differentiators > h2 {
        margin-bottom: 30px;
        grid-column: 1 / 5;
    }

    div.differentiators > div {
        margin-top: 0px;
        align-items: center;
    }

    div.differentiators > p {
        margin-top: 20px;
        margin-bottom: 60px;
    }

    div.differentiators > p:last-child {
        margin-bottom: 0px;
    }

    div.differentiators > :nth-child(2) {
        /* order: 5; */
        grid-column: 2;
        grid-row: 4;
    }

    div.differentiators > :nth-child(3) {
        /* order: 6; */
        grid-column: 3;
        grid-row: 4;
    }

    div.differentiators > :nth-child(4) {
        /* order: 7; */
        grid-column: 2 / 4;
        grid-row: 5;
    }

    div.differentiators > :nth-child(5) {
        /* order: 11; */
        grid-column: 2;
        grid-row: 8;
    }

    div.differentiators > :nth-child(6) {
        /* order: 12; */
        grid-column: 3;
        grid-row: 8;
    }

    div.differentiators > :nth-child(7) {
        /* order: 13; */
        grid-column: 2 / 4;
        grid-row: 9;
    }

    div.differentiators > :nth-child(8) {
        /* order: 2; */
        grid-column: 2;
        grid-row: 2;
    }

    div.differentiators > :nth-child(9) {
        /* order: 3; */
        grid-column: 3;
        grid-row: 2;
    }

    div.differentiators > :nth-child(10) {
        /* order: 4; */
        grid-column: 2 / 4;
        grid-row: 3;
    }

    div.differentiators > :nth-child(11) {
        /* order: 14; */
        grid-column: 2;
        grid-row: 10;
    }

    div.differentiators > :nth-child(12) {
        /* order: 15; */
        grid-column: 3;
        grid-row: 10;
    }

    div.differentiators > :nth-child(13) {
        /* order: 16; */
        grid-column: 2 / 4;
        grid-row: 11;
    }

    div.differentiators > :nth-child(14) {
        /* order: 8; */
        grid-column: 2;
        grid-row: 6;
    }

    div.differentiators > :nth-child(15) {
        /* order: 9; */
        grid-column: 3;
        grid-row: 6;
    }

    div.differentiators > :nth-child(16) {
        /* order: 10; */
        grid-column: 2 / 4;
        grid-row: 7;
    }

    div.differentiators > :nth-child(17) {
        /* order: 17; */
        grid-column: 2;
        grid-row: 12;
    }

    div.differentiators > :nth-child(18) {
        /* order: 18; */
        grid-column: 3;
        grid-row: 12;
    }

    div.differentiators > :nth-child(19) {
        /* order: 19; */
        grid-column: 2 / 4;
        grid-row: 13;
    }
}

div.planComparison {
    margin-top: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

div.planComparison > h2 {
    font-size: 40px;
}

div.planComparison > table.plans {
    margin-top: 50px;
}

div.planComparison > table.plans > tbody > tr > th,
div.planComparison > table.plans > tbody > tr > td {
    padding-right: 60px;
    padding-left: 60px;
    white-space: normal;
}

div.planComparison > table.plans > tbody > tr > th:not(:first-child),
div.planComparison > table.plans > tbody > tr > td:not(:first-child) {
    text-align: center;
}

@media (max-width: 990px) {
    div.planComparison > table.plans > tbody > tr > th,
    div.planComparison > table.plans > tbody > tr > td {
        padding-right: 25px;
        padding-left: 25px;
    }

    div.planComparison > div.alternating {
        margin-top: 50px;
        flex-direction: row;
        column-gap: 50px;
    }

    div.planComparison > div.alternating > div.illustration {
        width: 30%;
    }
}

div.verticalWorkflow {
    margin-top: 180px;
}

div.verticalWorkflow > h2 {
    text-align: center;
    font-size: 40px;
}

div.verticalWorkflow > div.alternating:nth-child(2) {
    margin-top: 75px;
}

@media (max-width: 990px) {
    div.verticalWorkflow > div.alternating:nth-child(2) {
        margin-top: 50px;
    }
}

div.horizontalWorkflow {
    margin-top: 170px;
    display: grid;
    grid-template-columns: repeat(3, auto);
    grid-template-rows: repeat(4, auto);
    grid-auto-flow: column;
    grid-column-gap: 50px;
}

div.horizontalWorkflow.fourSteps {
    grid-template-columns: repeat(4, auto);
}

div.horizontalWorkflow > h2 {
    grid-column: 1 / 4;
    text-align: center;
    font-size: 40px;
}

div.horizontalWorkflow.fourSteps > h2 {
    grid-column: 1 / 5;
}

div.horizontalWorkflow > div {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: end;
}

div.horizontalWorkflow > h3 {
    text-align: center;
}

div.horizontalWorkflow > p {
    text-align: center;
    line-height: 30px;
}

@media (max-width: 990px) {
    div.horizontalWorkflow,
    div.horizontalWorkflow.fourSteps {
        grid-template-columns: 1fr 70px minmax(auto, 400px) 1fr;
        grid-template-rows: repeat(7, auto);
        grid-column-gap: 10px;
    }

    div.horizontalWorkflow.fourSteps {
        grid-template-rows: repeat(9, auto);
    }

    div.horizontalWorkflow > h2 {
        margin-bottom: 50px;
        grid-column: 1 / 5;
    }

    div.horizontalWorkflow > div {
        margin-top: 0px;
        align-items: center;
    }

    div.horizontalWorkflow > h3 {
        text-align: left;
    }

    div.horizontalWorkflow > p {
        margin-top: 10px;
        margin-bottom: 60px;
        text-align: left;
    }

    div.horizontalWorkflow > :nth-child(2) {
        grid-column: 2;
        grid-row: 2;
    }

    div.horizontalWorkflow > :nth-child(3) {
        grid-column: 3;
        grid-row: 2;
    }

    div.horizontalWorkflow > :nth-child(4) {
        grid-column: 2 / 4;
        grid-row: 3;
    }

    div.horizontalWorkflow > :nth-child(5) {
        grid-column: 2;
        grid-row: 4;
    }

    div.horizontalWorkflow > :nth-child(6) {
        grid-column: 3;
        grid-row: 4;
    }

    div.horizontalWorkflow > :nth-child(7) {
        grid-column: 2 / 4;
        grid-row: 5;
    }

    div.horizontalWorkflow > :nth-child(8) {
        grid-column: 2;
        grid-row: 6;
    }

    div.horizontalWorkflow > :nth-child(9) {
        grid-column: 3;
        grid-row: 6;
    }

    div.horizontalWorkflow > :nth-child(10) {
        grid-column: 2 / 4;
        grid-row: 7;
    }

    div.horizontalWorkflow > :nth-child(11) {
        grid-column: 2;
        grid-row: 8;
    }

    div.horizontalWorkflow > :nth-child(12) {
        grid-column: 3;
        grid-row: 8;
    }

    div.horizontalWorkflow > :nth-child(13) {
        grid-column: 2 / 4;
        grid-row: 9;
    }
}

div.benefits {
    margin-top: 150px;
}

div.benefits > h2 {
    margin-bottom: -75px;
    text-align: center;
    font-size: 40px;
    line-height: 1.6;
}

div.benefits > h2 > span.emphasis {
    background-color: hsl(47, 100%, 72%);
}

div.benefits > :first-child {
    margin-top: 0px;
}

@media (max-width: 990px) {
    div.benefits > h2 {
        margin-bottom: 0px;
    }

    div.benefits > div.alternating {
        margin-top: 50px;
        flex-direction: row;
        column-gap: 50px;
    }

    div.benefits > div.alternating > div.illustration {
        width: 30%;
    }

    div.benefits > :first-child {
        margin-top: 0px;
    }
}

div.caseStudies {
    margin-top: 150px;
    display: grid;
    grid-template-columns: repeat(3, auto);
    grid-column-gap: 50px;
    grid-row-gap: 60px;
}

div.caseStudies > h2 {
    grid-column: span 3;
    text-align: center;
    font-size: 40px;
}

div.feedback > p.quote > img {
    vertical-align: bottom;
    margin-bottom: 6px;
}

div.feedback > p.quote > img:nth-child(2) {
    margin-right: 8px;
    margin-left: 2px;
}

div.feedback > p.name {
    margin-bottom: 0px;
    font-weight: 900;
    color: hsl(0, 0%, 21%);
}

div.feedback > p.role {
    margin-bottom: 0px;
}

div.feedback > p.organization {
    margin-bottom: 0px;
}

div.feedback > a {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
    text-align: right;
    font-size: 16px;
    font-weight: 500;
}

div.caseStudies > div.feedback {
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
    max-width: 380px;
    border-radius: 4px;
    padding: 20px 25px 20px 25px;
}

div.caseStudies > div.feedback > p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

div.caseStudies > div.feedback > p.quote {
    -webkit-line-clamp: 7;
    font-size: 18px;
}

div.caseStudies > div.feedback > p.name {
    -webkit-line-clamp: 1;
}

div.caseStudies > div.feedback > p.role {
    -webkit-line-clamp: 1;
}

@media (max-width: 990px) {
    div.caseStudies {
        margin-top: 100px;
        grid-template-columns: 1fr auto 1fr;
        grid-auto-flow: row;
    }

    div.caseStudies > h2 {
        margin-bottom: -10px;
    }

    div.caseStudies > div {
        grid-column: 2;
    }
}

div.guarantees {
    margin-top: 190px;
    display: grid;
    grid-template-columns: repeat(4, auto);
    grid-template-rows: repeat(4, auto);
    grid-auto-flow: column;
    grid-column-gap: 50px;
}

div.guarantees > h2 {
    grid-column: 1 / 5;
    text-align: center;
    font-size: 40px;
}

div.guarantees > h3 {
    margin-top: 50px;
}

div.guarantees > h3 > span.emphasis {
    white-space: nowrap;
    font-size: 35px;
}

div.guarantees > p {
    font-size: 20px;
    line-height: 30px;
}

div.guarantees > hr {
    margin-top: 0px;
    margin-left: 0px;
    border-style: none;
    border-radius: 2px;
    width: 80px;
    height: 7px;
}

@media (max-width: 990px) and (min-width: 601px) {
    div.guarantees {
        grid-template-columns: 1fr minmax(auto, 230px) minmax(auto, 230px) 1fr;
        grid-template-rows: repeat(7, auto);
        grid-column-gap: 100px;
    }

    div.guarantees > h2 {
        grid-column: 1 / 5;
        margin-bottom: 40px;
    }

    div.guarantees > h3 {
        margin-top: 0px;
    }

    div.guarantees > hr {
        margin-bottom: 60px;
    }

    div.guarantees > :nth-child(2) {
        grid-column: 2;
        grid-row: 2;
    }

    div.guarantees > :nth-child(3) {
        grid-column: 2;
        grid-row: 3;
    }

    div.guarantees > :nth-child(4) {
        grid-column: 2;
        grid-row: 4;
    }

    div.guarantees > :nth-child(5) {
        grid-column: 3;
        grid-row: 2;
    }

    div.guarantees > :nth-child(6) {
        grid-column: 3;
        grid-row: 3;
    }

    div.guarantees > :nth-child(7) {
        grid-column: 3;
        grid-row: 4;
    }

    div.guarantees > :nth-child(8) {
        grid-column: 2;
        grid-row: 5;
    }

    div.guarantees > :nth-child(9) {
        grid-column: 2;
        grid-row: 6;
    }

    div.guarantees > :nth-child(10) {
        grid-column: 2;
        grid-row: 7;
    }

    div.guarantees > :nth-child(11) {
        grid-column: 3;
        grid-row: 5;
    }

    div.guarantees > :nth-child(12) {
        grid-column: 3;
        grid-row: 6;
    }

    div.guarantees > :nth-child(13) {
        grid-column: 3;
        grid-row: 7;
    }
}

@media (max-width: 600px) {
    div.guarantees {
        grid-template-columns: 1fr minmax(auto, 230px) 1fr;
        grid-template-rows: repeat(13, auto);
    }

    div.guarantees > h2 {
        grid-column: 1 / 4;
        margin-bottom: 40px;
    }

    div.guarantees > h3 {
        grid-column: 2 / 3;
        grid-row: auto;
        margin-top: 0px;
    }

    div.guarantees > p {
        grid-column: 2 / 3;
        grid-row: auto;
    }

    div.guarantees > hr {
        grid-column: 2 / 3;
        grid-row: auto;
        margin-bottom: 60px;
    }
}

div.agenda {
    margin-top: 160px;
    display: grid;
    grid-template-columns: 1fr repeat(2, 350px) 1fr;
    grid-template-rows: repeat(2, auto);
    grid-auto-flow: column;
    grid-column-gap: 50px;
    grid-row-gap: 50px;
}

div.agenda > h2 {
    grid-column: 1 / 5;
    text-align: center;
    font-size: 40px;
}

div.agenda > h3 {
    grid-column: 2;
    grid-row: 2;
    margin-top: 0px;
    display: flex;
    align-items: center;
}

div.agenda > ul {
    grid-column: 3;
    grid-row: 2;
    margin-bottom: 0px;
    padding-left: 0px;
    list-style-type: '\2192  ';
}

div.agenda > ul > li:not(:last-child) {
    margin-bottom: 15px;
}

@media (max-width: 990px) {
    div.agenda {
        margin-top: 110px;
    }
}

@media (max-width: 900px) {
    div.agenda {
        grid-template-columns: 1fr auto 1fr;
        grid-template-rows: repeat(3, auto);
        grid-row-gap: 25px;
    }

    div.agenda > h2 {
        grid-column: 1 / 4;
    }

    div.agenda > h3 {
        grid-column: 2;
        grid-row: 2;
    }

    div.agenda > ul {
        grid-column: 2;
        grid-row: 3;
        padding-left: 21px;
    }
}

div.participantCriteria > ul {
    padding-left: 0px;
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}

div.participantCriteria > ul > li {
    list-style-type:none;
    display: flex;
    column-gap: 8px;
}

div.participantCriteria > ul > li::before {
    content: url("../image/check.20x20.green.50.svg");
}

div.studyDetails > ul {
    padding-left: 0px;
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}

div.studyDetails > ul > li {
    list-style-type:none;
    display: flex;
    column-gap: 8px;
}

div.studyDetails > ul > li > span:first-child {
    width: 210px;
    min-width: 210px;
    font-weight: 900;
    color: hsl(0, 0%, 21%);
}

div.studyDetails > ul > li.list {
    display: grid;
    grid-template-columns: 210px auto;
}

div.studyDetails > ul > li.list > span:first-child {
    grid-row: span 100;  /* 100 is an arbitrarily large value -- it just needs be more than the number of items */
}

div.landingPageCTA.bottom.home {
    margin-top: 190px;
}

div.homeBanner.researchStudyHomeBanner {
    padding-bottom: 120px;
}

@media (max-width: 990px) {
    div.homeBanner.researchStudyHomeBanner {
        padding-bottom: 120px;
    }
}

div.homeBanner.researchStudyHomeBanner > h5 {
    max-width: 155px;
}

div.researchStudy {
    margin-top: 70px;
}

div.researchStudy.studyDetails > ul > li > span:first-child {
    width: 125px;
    min-width: 125px;
}

div.researchStudy.steps > ol {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    list-style-position: inside;
    padding-left: 2px;
}

div.caseStudy {
    margin-top: 70px;
}

div.caseStudy > p {
    margin-top: 20px;
}

div.caseStudy > p:nth-child(2) {
    margin-top: 0px;
}

div.caseStudy.feedback {
    display: grid;
    grid-template-columns: fit-content(150px) 1fr;
    grid-template-rows: fit-content;
    grid-auto-flow: column;
    justify-items: start;
    align-items: end;
    column-gap: 20px;
}

div.caseStudy.feedback > h2 {
    grid-column: 1 / 3;
    margin-top: 0px;
}

div.caseStudy.feedback > p {
    grid-column: 1 / 3;
}

div.caseStudy.feedback > div.spaceAfterQuote {
    grid-column: 1 / 3;
    height: 20px;
}

div.caseStudy.feedback > img {
    grid-column: 1 / 2;
    grid-row: span 4;
    width: auto;
    height: 125px;
    border-radius: 16px;
}

div.caseStudy.feedback > p.name,
div.caseStudy.feedback > p.role,
div.caseStudy.feedback > p.organization,
div.caseStudy.feedback > a {
    grid-column: 2 / 3;
    margin-top: 0px;
    text-align: left;
}

div.caseStudy.feedback > p.name.noProfilePic,
div.caseStudy.feedback > p.role.noProfilePic,
div.caseStudy.feedback > p.organization.noProfilePic,
div.caseStudy.feedback > a.noProfilePic {
    grid-column: 1 / 3;
}

div.caseStudy.feedback > p.name {
    margin-top: 25px;
}

div.caseStudy.feedback > p.name.noProfilePic {
    margin-top: 00px;
}

@media (max-width: 530px) {
    div.caseStudy.feedback > p.name {
        margin-top: 57px;
    }

    div.caseStudy.feedback > a {
        grid-column: 1 / 3;
        margin-top: 20px;
    }
}

div.horizontalWorkflow.aiInsights {
    margin-top: 50px;
}

div.benefits.aiInsights {
    margin-top: 150px;
}

@media (max-width: 990px) {
    div.homeBanner.interceptInterviews {
        padding-bottom: 100px;
    }
}

div.benefits.interceptInterviews {
    margin-top: 100px;
}

div.landingPageCTA.bottom.interceptInterviews {
    margin-top: 190px;
}

div.homeBanner.userInterviewParticipants > h1 {
    max-width: 650px;
}

div.landingPageCTA.bottom.userInterviewParticipants {
    margin-top: 80px;
}

@media (max-width: 990px) {
    div.homeBanner.userInterviewParticipants {
        padding-bottom: 100px;
    }
}

div.homeBanner.userResearchParticipants > h1 {
    max-width: 650px;
}

div.landingPageCTA.bottom.userResearchParticipants {
    margin-top: 80px;
}

@media (max-width: 990px) {
    div.homeBanner.userResearchParticipants {
        padding-bottom: 100px;
    }
}

div.landingPageCTA.bottom.marketResearchParticipants {
    margin-top: 80px;
}

@media (max-width: 990px) {
    div.homeBanner.marketResearchParticipants {
        padding-bottom: 100px;
    }
}

div.homeBanner.researchParticipants > h1 {
    max-width: 750px;
}

div.landingPageCTA.bottom.researchParticipants {
    margin-top: 80px;
}

@media (max-width: 990px) {
    div.homeBanner.researchParticipants {
        padding-bottom: 100px;
    }
}

div.landingPageCTA.bottom.researchRecruitment {
    margin-top: 80px;
}

@media (max-width: 990px) {
    div.homeBanner.researchRecruitment {
        padding-bottom: 100px;
    }
}

div.landingPageCTA.bottom.recruitmentForResearch {
    margin-top: 80px;
}

@media (max-width: 990px) {
    div.homeBanner.recruitmentForResearch {
        padding-bottom: 100px;
    }
}

div.landingPageCTA.bottom.participantRecruitment {
    margin-top: 80px;
}

@media (max-width: 990px) {
    div.homeBanner.participantRecruitment {
        padding-bottom: 100px;
    }
}

div.benefits.dissertationAnalysis {
    max-width: 1000px;
}

div.guarantees.dissertationAnalysis {
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
}

div.guarantees.dissertationAnalysis > h2 {
    display: flex;
    align-items: baseline;
    column-gap: 10px;
}

div.guarantees.dissertationAnalysis > p {
    text-align: center;
}

div.landingPageCTA.bottom.dissertationAnalysis {
    margin-top: 80px;
}

@media (max-width: 990px) {
    div.homeBanner.dissertationAnalysis {
        padding-bottom: 100px;
    }

    div.guarantees.dissertationAnalysis {
        margin-top: 150px;
    }

    div.guarantees.dissertationAnalysis > h2 {
        margin-bottom: 10px;
    }
}

div.benefits.reflexiveThematicAnalysis {
    max-width: 1000px;
}

div.guarantees.reflexiveThematicAnalysis {
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
}

div.guarantees.reflexiveThematicAnalysis > h2 {
    display: flex;
    align-items: baseline;
    column-gap: 10px;
}

div.guarantees.reflexiveThematicAnalysis > p {
    text-align: center;
}

div.landingPageCTA.bottom.reflexiveThematicAnalysis {
    margin-top: 80px;
}

@media (max-width: 990px) {
    div.homeBanner.reflexiveThematicAnalysis {
        padding-bottom: 100px;
    }

    div.guarantees.reflexiveThematicAnalysis {
        margin-top: 150px;
    }

    div.guarantees.reflexiveThematicAnalysis > h2 {
        margin-bottom: 10px;
    }
}

div.benefits.thematicAnalysis {
    max-width: 1000px;
}

div.guarantees.thematicAnalysis {
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
}

div.guarantees.thematicAnalysis > h2 {
    display: flex;
    align-items: baseline;
    column-gap: 10px;
}

div.guarantees.thematicAnalysis > p {
    text-align: center;
}

div.landingPageCTA.bottom.thematicAnalysis {
    margin-top: 80px;
}

@media (max-width: 990px) {
    div.homeBanner.thematicAnalysis {
        padding-bottom: 100px;
    }

    div.guarantees.thematicAnalysis {
        margin-top: 150px;
    }

    div.guarantees.thematicAnalysis > h2 {
        margin-bottom: 10px;
    }
}

div.homeBanner.qualitativeDataAnalysisSoftware > h1 {
    max-width: 550px;
}

div.benefits.qualitativeDataAnalysisSoftware {
    max-width: 1000px;
}

div.guarantees.qualitativeDataAnalysisSoftware {
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
}

div.guarantees.qualitativeDataAnalysisSoftware > h2 {
    display: flex;
    align-items: baseline;
    column-gap: 10px;
}

div.guarantees.qualitativeDataAnalysisSoftware > p {
    text-align: center;
}

div.landingPageCTA.bottom.qualitativeDataAnalysisSoftware {
    margin-top: 80px;
}

@media (max-width: 990px) {
    div.homeBanner.qualitativeDataAnalysisSoftware {
        padding-bottom: 100px;
    }

    div.guarantees.qualitativeDataAnalysisSoftware {
        margin-top: 150px;
    }

    div.guarantees.qualitativeDataAnalysisSoftware > h2 {
        margin-bottom: 10px;
    }
}

div.landingPageCTA.bottom.competitorComparison {
    margin-top: 190px;
}

div.spinner.recordingUpload {
    margin-top: 20px;
}

div.spinner.recordingUpload.web {
    margin-bottom: 20px;
}

.fileUploadWell.recordingUpload {
    margin-top: 30px;
}

div.recordingUpload.button-has-error {
    margin-top: 10px;
}

div.appContainer.transcription.web {
    margin-top: 50px;
}

h2.transcription.web {
    margin-top: 60px;
}

table.appContainer.interviewTranscripts {
    margin-top: 30px;
}

div.transcript {
    margin-top: 15px;
    display: grid;
    grid-template-columns: fit-content(200px) fit-content(650px);
    column-gap: 10px;
    row-gap: 10px;
}

div.transcript.web {
    margin-top: 35px;
}

div.transcript > div {
    border-width: .25px;
    border-style: solid;
}

div.transcript > div:nth-child(odd) {
    border-color: transparent;
    padding-top: 8px;
    padding-bottom: 8px;
    text-align: right;
    font-weight: 700;
}

div.transcript > div:nth-child(even) {
    border-color: hsl(0, 0%, 85%);
    border-radius: 8px;
    padding: 8px 12px 8px 12px;
    background-color: hsl(0, 0%, 100%);
}

div.addOnContainerHelp.help {
    margin-bottom: 40px;
}

div.addOnContainer {
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-column-gap: 55px;
    grid-row-gap: 45px;
}

div.addOnContainer > div.addOn {
    width: 360px;
}

div.addOnContainer > div.addOn > button {
    margin-top: 25px;
}

@media (max-width: 990px) {
    div.addOnContainer {
        grid-template-columns: repeat(1, auto);
        grid-row-gap: 55px;
    }

    div.addOnContainer > div.addOn {
        width: auto;
    }
}

div.addOn > h4 {
    border-bottom: .5px solid hsl(210, 11%, 84%);
    padding-bottom: 5px;
    font-weight: 600; /* need to specify here so the weight is applied on the pricing page */
}

div.addOn > div.price {
    margin-top: 18px;
    font-weight: 700;
    color: hsl(0, 0%, 21%);
}

.noResultsContainer {
    margin-top: 10px;
}

.errorContainer {
    height: 100%;
    width: 100%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

div.errorContainer > h3,
div.errorContainer > p,
div.errorContainer > div {
    max-width: 600px;
    text-align: center;
}
