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

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

.shell-report {
    max-width: calc(117rem + 1.8rem * 2);
    padding: 0rem 1.8rem;
    margin: 0 auto;
}

/* ------------------------------------------------------------ *\
	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;
    }
}

/* ------------------------------------------------------------ *\
	Breadcrumbs
\* ------------------------------------------------------------ */

.breadcrumbs {
    margin-bottom: 0.8rem;
}

.breadcrumbs ul {
    display: flex;
    align-items: center;
}

.breadcrumbs ul li {
    position: relative;
}

.breadcrumbs ul li + li {
    margin-left: 0.2rem;
    padding-left: 0.9rem;
}

.breadcrumbs ul li + li:after {
    content: ">";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    color: var(--nav-text-color);
    font-size: 1.4rem;
}

.breadcrumbs ul li {
    color: var(--nav-text-color);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.57;
}

.breadcrumbs ul li a {
    color: var(--anchor-text-color-white);
    text-decoration: none;
}

/* ------------------------------------------------------------ *\
	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 report  */

.section-alt--report {
    padding: 1.9rem 0 3rem;
    font-size: 1.6rem;
    line-height: 1.2;
    margin: 0 auto;
}

.section-alt--report .section__head {
    padding: 0;
    margin-bottom: 2.5rem;
    background-color: transparent;
}

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

.section-alt--report .section__content + .section__content {
    margin-top: 2.5rem;
}

.section-alt--report h2 {
    margin-bottom: 2.2rem;
    color: var(--header-text-primary);
}

@media only screen and (max-width: 767px) {
    .section-alt--report {
        padding: 1.7rem 0 0rem;
        font-size: 1.4rem;
    }

    .section-alt--report .section__head h1 {
        font-size: 2.7rem;
        margin-bottom: 0.8rem;
    }

    .section-alt--report h2 {
        margin-bottom: 1.6rem;
    }
}

/* ------------------------------------------------------------ *\
	cards reports
\* ------------------------------------------------------------ */

.cards-reports .cards__cols {
    display: flex;
    flex-flow: row wrap;
}

.cards-reports .cards__col {
    max-width: 50%;
    width: 50%;
}

.cards-reports .cards__items {
    margin-bottom: -2.2rem;
}

.cards-reports .cards__item {
    margin-bottom: 2.2rem;
}

@media only screen and (max-width: 1023px) {
    .cards-reports .cards__cols {
        margin-bottom: -2.2rem;
    }

    .cards-reports .cards__col {
        display: contents;
    }

    .cards-reports .cards__items {
        display: contents;
    }

    .cards-reports .cards__item {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .mobile-order-1 {
        order: 1;
    }

    .mobile-order-2 {
        order: 2;
    }

    .mobile-order-3 {
        order: 3;
    }

    .mobile-order-4 {
        order: 4;
    }

    .mobile-order-5 {
        order: 5;
    }
}

@media only screen and (max-width: 767px) {
    .cards-reports .cards__cols {
        margin-bottom: 0;
    }

    .cards-reports .cards__item {
        margin-bottom: 1.6rem;
    }
}

/* ------------------------------------------------------------ *\
	card report
\* ------------------------------------------------------------ */

.card-report {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
}

.card-report .card__aside {
    flex: 0 0 61.6%;
    max-width: 36rem;
}

.card-report .card__content {
    flex: 1;
    padding-left: 0.8rem;
}

.card-report h3 {
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 1.6rem;
    color: var(--header-text-prominent);
}

.card-report ul {
    margin-left: 0.9rem;
    list-style-type: none;
}

.card-report li {
    padding-right: 3.1rem;
    position: relative;
    padding-left: 1.6rem;
}

.card-report li:before {
    content: "";
    position: absolute;
    top: 0.8rem;
    left: 0;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background-color: var(--vector-fill-color-shadegray);
}

.card-report .card__report h6 {
    font-size: 1.6rem;
    line-height: 1.36;
    font-weight: 700;
    color: var(--container-head-text-color);
    margin-bottom: 0;
    font-family: "Open Sans", sans-serif;
}

.card-report .card__report-head {
    background-color: var(--system-agnostic-color-brown);
    padding: 0.5rem 1.7rem;
    display: flex;
    align-items: center;
    border-radius: 0.6rem 0.6rem 0 0;
}

.card-report .card__report-head i {
    display: flex;
    align-items: center;
    margin-left: 0.8rem;
}

.card-report .card__report-body {
    border: solid 0.1rem var(--system-agnostic-color-brown);
    border-top: none;
}

@media only screen and (max-width: 1023px) {
    .card-report li {
        padding-right: 1rem;
    }
}

@media only screen and (max-width: 767px) {
    .card-report {
        display: block;
    }

    .card-report .card__content {
        padding-left: 0;
        margin-bottom: 0.7rem;
    }

    .card-report h3 {
        font-size: 1.75rem;
        margin-bottom: 0.8rem;
    }

    .card-report ul {
        margin-left: 0.7rem;
        list-style-type: none;
    }

    .card-report li {
        padding-left: 1.2rem;
    }

    .card-report li:before {
        top: 0.6rem;
        width: 0.5rem;
        height: 0.5rem;
    }

    .card-report .card__report {
        max-width: 25rem;
    }
}

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

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

/* ------------------------------------------------------------ *\
	Form contact help
\* ------------------------------------------------------------ */

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

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

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

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

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

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

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

.form-contact-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-contact-help .form__hint {
    font-size: 1.2rem;
    line-height: 1.2;
    font-style: italic;
    display: block;
    margin-top: 0.9rem;
}

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

.form-contact-help .form__controls {
    width: 100%;
}

.form-contact-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-contact-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-contact-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-contact-help .form__controls.has-error .form__error-message {
    display: block;
}

.form-contact-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)ade-active);
}

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

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

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

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

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

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

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

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

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

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

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

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

.form-contact-help .form__textarea {
    height: 17rem;
    resize: none;
}

.form-contact-help .form__actions {
    text-align: center;
    margin-top: 1.3rem;
}

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

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

.form-contact-help .form__btn {
    width: 32.8rem;
}

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

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

    .form-contact-help .form__entry {
    }

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

    .form-contact-help .form__body {
        padding-right: 3.1rem;
    }

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

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

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

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

    .form-contact-help .form__textarea {
        height: 10rem;
    }

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

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

    .form-contact-help .form__actions {
        margin-top: 1rem;
        padding: 0rem 1.6rem;
    }

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

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

    .form-contact-help .form__btn {
        width: 100%;
        max-width: 32.8rem;
    }
}

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

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

/* ------------------------------------------------------------ *\
	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;
    }
}

/* ------------------------------------------------------------ *\
	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;
    }
}
