/* ------------------------------------------------------------ *\
	main
\* ------------------------------------------------------------ */

.main {
    background-color: var(--body-background-color);
    flex: 1 0 auto;
    position: relative;
    z-index: 1;
}

/* ------------------------------------------------------------ *\
	btn

	Basic classes for all buttons throgh out all pages.
\* ------------------------------------------------------------ */

.btn {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    appearance: none;
    box-shadow: 0 0.8rem 0.8rem var(--button-dropshadow);
    border-radius: 0.4rem;
    background-color: var(--button-background-primary);
    border: 0;
    padding: 0 1.5rem;
    min-height: 4.6rem;
    line-height: 4.6rem;
    font-family: "Lato", sans-serif;
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: -0.006em;
    color: var(--button-text-color);
    position: relative;
}

.btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    background: var(--button-background-primary);
    border-radius: 5px;
    transition: opacity 0.3s;
    z-index: 1;
}

.btn:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            180deg,
            var(--button-primary-overlay-highlight) 0%,
            var(--button-primary-overlay-shade) 100%
        ),
        var(--button-background-primary);
    border-radius: 0.4rem;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s, visibility 0.3s;
}

.btn span {
    z-index: 2;
    position: relative;
}

@media (hover: hover) {
    .btn:hover:after {
        opacity: 0;
        visibility: hidden;
    }

    .btn:focus:before {
        opacity: 1;
    }
}

/*  btn blue  */

.btn--blue {
    color: var(--button-text-color);
    background: linear-gradient(
            180deg,
            var(--button-secondary-overlay-highlight) 0%,
            var(--button-secondary-overlay-midpoint) 42.71%,
            var(--button-secondary-overlay-shade) 100%
        ),
        var(--button-background-secondary);
}

.btn--blue:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            180deg,
            var(--button-primary-overlay-highlight) 0%,
            var(--button-primary-overlay-shade) 100%
        ),
        linear-gradient(
            180deg,
            var(--button-secondary-overlay-highlight) 0%,
            var(--button-secondary-overlay-midpoint) 42.71%,
            var(--button-secondary-overlay-shade) 100%
        ),
        var(--button-background-secondary);
    border-radius: 3px;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s, visibility 0.3s;
}

/* ------------------------------------------------------------ *\
	section dark
\* ------------------------------------------------------------ */

.section-dark-alt {
    padding: 1.5rem 0 1.3rem;
    background: var(--nav-background-secondary-color);
    color: var(--nav-text-color);
}

.section-dark-alt h2 {
    margin-left: 0.2rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--nav-text-color);
    margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
    .section-dark-alt h2 {
        font-size: 3.4rem;
        letter-spacing: -0.004rem;
    }
}

/* ------------------------------------------------------------ *\
	Section alt
\* ------------------------------------------------------------ */

.section-alt {
    background-color: var(--body-background-color);
    padding: 2.4rem 0;
}

.section-alt .section__head {
    padding: 1.8rem 0;
    background: var(--banner-background-color);
}

.section-alt .section__head h1 {
    font-size: 3.1rem;
    line-height: 1.2;
    letter-spacing: -0.004em;
    font-weight: 700;
    color: var(--banner-text-color);
    margin-bottom: 0;
}

.section-alt h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2.4rem;
}

@media only screen and (max-width: 767px) {
    .section-alt {
        padding-bottom: 2.8rem;
    }

    .section-alt .section__head {
        padding: 1.7rem 0 1.6rem;
    }

    .section-alt .section__head h1 {
        font-size: 2.7rem;
    }

    .section-alt h2 {
        font-size: 2.2rem;
        margin-bottom: 2.4rem;
    }
}

/*  section alt reviews  */

.section-alt--reviews {
    padding: 1.6rem 0;
}

@media only screen and (max-width: 767px) {
    .section-alt--reviews {
        padding: 1.8rem 0 1.6rem;
    }
}

/* ------------------------------------------------------------ *\
	list stars
\* ------------------------------------------------------------ */

.list-stars {
    display: inline-flex;
    list-style: none;
    padding: 0rem 0.2rem;
}

.list-stars li {
    display: flex;
    justify-content: center;
    align-items: center;
}

.list-stars li img.emptyStar {
    height: 25px;
    width: 28px;
}

@media only screen and (max-width: 767px) {
    .list-stars li img {
        max-width: 1.9rem;
        max-height: 1.9rem;
    }
}

/*  list stars alt  */

.list-stars--alt li + li {
    margin-left: -0.1rem;
}

@media only screen and (max-width: 767px) {
    .list-stars--alt li img {
        max-width: 100%;
        max-height: 100%;
    }
}

/*  list stars small  */

.list-stars--small li img {
    width: 2rem;
    max-width: 2rem;
    height: 2rem;
    max-height: 2rem;
}

.form__controls.star-rating-container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.form__controls #star-rating {
    font-size: 16px;
}

/* ------------------------------------------------------------ *\
	link gray
\* ------------------------------------------------------------ */

.link-gray {
    font-weight: 700;
    color: var(--anchor-text-color-subtle);
    text-decoration: none;
}

/* ------------------------------------------------------------ *\
	Form submit help
\* ------------------------------------------------------------ */

.form-submit-help .form__head {
    padding: 1.3rem 0;
    margin-bottom: 0.7rem;
}

.form-submit-help .form__head h2 {
    margin-left: -0.8rem;
    margin-bottom: 1.3rem;
    font-size: 2rem;
    line-height: 1.1;
    font-weight: 700;
}

.form-submit-help .form__entry {
    letter-spacing: 0;
}

.form-submit-help .form__entry h3 {
    text-transform: uppercase;
    margin-bottom: 0.7rem;
    font-size: 2rem;
    line-height: 1.1;
    font-weight: 700;
}

.form-submit-help .form__entry a {
    font-weight: 700;
    color: var(--anchor-text-color-subtle);
    text-decoration: none;
}

.form-submit-help .form__row + .form__row {
    margin-top: 1.8rem;
}

.form-submit-help .form__row + .form__row--alt {
    margin-top: 2.6rem;
}

.form-submit-help .form__footer {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.form-submit-help label {
    color: var(--header-text-primary);
    font-size: 2rem;
    line-height: 1.1;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.1rem;
}

.form-submit-help .form__hint {
    font-size: 1.2rem;
    line-height: 1.2;
    font-style: italic;
    display: block;
    margin-top: 0.9rem;
}

.form-submit-help .form__hint--alt {
    margin-top: 0.1rem;
}

.form-submit-help .form__controls {
    width: 100%;
    max-width: 31.1rem;
}

#review-container {
    max-width: unset;
}

.form-submit-help .form__field {
    border: solid 0.1rem var(--input-border-color-subtle);
    border-radius: 0.4rem;
    font-size: 1.8rem;
    letter-spacing: -0.008em;
    line-height: 1.2;
    height: 4.6rem;
    width: 100%;
    padding: 0rem 1.6rem;
    background-color: var(--input-background-color-default);
    transition: all 0.3s;
}

.form-submit-help .form__controls.has-error .form__field {
    border-color: var(--input-border-color-error);
    color: var(--input-text-color-error);
    background: var(--input-background-color-error);
    box-shadow: none;
}

.form-submit-help .form__error-message {
    color: var(--input-text-color-error);
    font-size: 1.4rem;
    line-height: 1.2;
    display: none;
    margin-top: 0.4rem;
}

.form-submit-help .form__controls.has-error .form__error-message {
    display: block;
}

.form-submit-help .form__field:focus {
    border: 1px solid var(--input-border-color-default);
    box-shadow: 0px 0px 4px var(--input-boxshadow-color-highlight-active),
        0px 8px 8px var(--input-boxshadow-color-midpoint-active),
        inset 0px 0px 4px var(--input-boxshadow-color-fade-active);
}

.form-submit-help .form__field::-webkit-input-placeholder {
    color: var(--input-text-color-placeholder);
}

.form-submit-help .form__field:-moz-placeholder {
    color: var(--input-text-color-placeholder);
    opacity: 1;
}

.form-submit-help .form__field::-moz-placeholder {
    color: var(--input-text-color-placeholder);
    opacity: 1;
}

.form-submit-help .form__field:-ms-input-placeholder {
    color: var(--input-text-color-placeholder);
}

.form-submit-help .form__field::-ms-input-placeholder {
    color: var(--input-text-color-placeholder);
}

.form-submit-help .form__field::placeholder {
    color: var(--input-text-color-placeholder);
}

.form-submit-help .form__field--alt {
    height: 4.9rem;
}

.form-submit-help .form__cols {
    display: flex;
    align-items: center;
    margin: 0rem -0.4rem;
}

.form-submit-help .form__col {
    flex: 1;
    padding: 0rem 0.4rem;
}

.form-submit-help .form__col--size1 {
    max-width: 31.2%;
    min-width: 35.4rem;
}

.form-submit-help .form__col--size2 {
    max-width: 9.9rem;
    flex: 0 0 9.9rem;
}

.form-submit-help .form__col--size3 {
    max-width: 12.1rem;
    flex: 0 0 12.1rem;
}

.form-submit-help .form__textarea {
    height: 17rem;
    resize: none;
    padding-top: 16px;
    margin-bottom: 1.8rem;
}

.form-submit-help .form__actions {
    text-align: center;
}

.form-submit-help .form__actions .form__hint {
    margin-bottom: 0.7rem;
}

.form-submit-help .form__captcha {
    margin-bottom: 1.6rem;
}

.form-submit-help .form__btn {
    width: 31.1rem;
}

@media only screen and (max-width: 767px) {
    .form-submit-help .form__head {
        padding: 1.8rem 0;
        margin-bottom: 0.4rem;
    }

    .form-submit-help .form__head h2 {
        font-size: 2.2rem;
    }

    .form-submit-help .form__entry {
    }

    .form-submit-help .form__entry h3 {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 0.6rem;
    }

    .form-submit-help .form__row + .form__row {
        margin-top: 2.5rem;
    }

    .form-submit-help .form__row + .form__row--alt {
        margin-top: 2.5rem;
    }

    .form-submit-help label {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .form-submit-help .form__field {
        font-size: 1.6rem;
        height: 4.9rem;
        padding: 0rem 1.5rem;
    }

    .form-submit-help .form__textarea {
        height: 10rem;
        padding-top: 12px;
        margin-bottom: 2.5rem;
    }

    .form-submit-help .form__hint {
        font-size: 1.1rem;
        margin-top: 0.4rem;
    }

    .form-submit-help .form__col--size1 {
        min-width: 0;
        max-width: 100%;
        flex: 0 0 100%;
    }

    .form-submit-help .form__footer {
        flex-direction: column;
        gap: 2.5rem;
    }

    .form-submit-help .form__actions {
        padding: 0rem 1.6rem;
    }

    .form-submit-help .form__actions .form__hint {
        margin-bottom: 0.4rem;
    }

    .form-submit-help .form__captcha {
        margin-bottom: 1.6rem;
    }

    .form-submit-help .form__btn {
        max-width: 31.1rem;
    }
}

@media only screen and (max-width: 389px) {
    .form-submit-help .form__col--size2 {
        max-width: 31.5%;
        flex: 0 0 31.5%;
    }

    .form-submit-help .form__col--size3 {
        max-width: 37%;
        flex: 0 0 37%;
    }
}

#submit-error-container {
    margin-bottom: 24px;
}

/* ------------------------------------------------------------ *\
	select help
\* ------------------------------------------------------------ */

.select-help {
    position: relative;
}

.select-help:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1.6rem;
    width: 0;
    height: 0;
    transform: translateY(-50%);
    border-style: solid;
    border-width: 0.6rem 0.75rem 0 0.75rem;
    border-color: var(--input-border-color-subtle) transparent transparent
        transparent;
    z-index: 1;
    pointer-events: none;
}

.select-help select {
    padding: 0rem 1.5rem;
    width: 100%;
    border: solid 0.1rem var(--input-border-color-subtle);
    border-radius: 0.4rem;
    font-size: 1.8rem;
    letter-spacing: -0.008em;
    line-height: 1.2;
    height: 4.6rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.select-help select::-ms-expand {
    display: none;
}

@media only screen and (max-width: 767px) {
    .select-help select {
        font-size: 1.6rem;
        height: 4.3rem;
    }

    .select-help:after {
        right: 1rem;
    }
}

/* ------------------------------------------------------------ *\
	section__hidden
\* ------------------------------------------------------------ */

.section__hidden {
    margin-top: 24px;
}

.section__hidden h4 {
    text-align: center;
}

.section__hidden h4 + h4 {
    margin-bottom: 32px;
}

.section__hidden .success__footer {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.section__hidden .success__footer button {
    width: 32.8rem;
}

@media only screen and (max-width: 767px) {
    .section__hidden .success__footer {
        flex-direction: column;
        align-items: center;
    }
}

/* ------------------------------------------------------------ *\
	Disclaimer
\* ------------------------------------------------------------ */

.disclaimer {
    background: var(--disclaimer-background-color);
    font-size: 1.2rem;
    line-height: 1.67;
    letter-spacing: -0.018em;
    padding: 2.4rem 0 2.3rem;
    color: var(--disclaimer-text-color-base);
}

.disclaimer .disclaimer__inner {
    max-width: 112rem;
    margin: 0 auto;
}

.disclaimer a {
    color: inherit;
}

@media only screen and (max-width: 767px) {
    .disclaimer {
        padding: 1.5rem 0 1.3rem;
        line-height: 1.33;
        letter-spacing: -0.017em;
    }

    .disclaimer .disclaimer__inner {
        padding-right: 0.2rem;
    }
}

/* ------------------------------------------------------------ *\
	SEO changes
\* ------------------------------------------------------------ */

.section-dark-alt .SEO-h1 {
    margin-left: 0.2rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--nav-text-color);
    margin-bottom: 0;
    font-size: 4rem;
}

@media only screen and (max-width: 767px) {
    .section-dark-alt .SEO-h1{
        font-size: 3.4rem;
        letter-spacing: -0.004rem;
    }
}