/* Fonts */

@import url('roboto-fonts.css');

/* General */

body {
    /* font-family: 'Roboto Light', sans-serif; */
}

/* Optional mobile header artwork */
.ci-header-image-mobile {
    display: none;
}

@media (max-width: 767.98px) {
    .ci-header-image-mobile {
        display: block;
    }

    .ci-has-mobile-header-image .ci-header-image-desktop {
        display: none;
    }
}

/* Buttons */

.button-chevron-toggle .bi {
    display: inline-block;
    transition: transform .2s ease;
}

.button-chevron-toggle[aria-expanded="true"] .bi {
    transform: rotate(90deg);
}
