@import 'fonts/fonts.css';

* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 200;
}

h1 {
    font-size: 2em;
}

.page-width {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
}

.heading {
    font-weight: 700;
    text-align: center;
    text-decoration-line: underline;
    text-decoration-style: initial;
    text-decoration-color: initial;
    font-size: 25px;
    font-family: Arial, Helvetica, sans-serif;
}

.subheading {
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    font-weight: 700;
}

.faq {
    display: block;
    margin: 1rem 0;
    cursor: pointer;
}

.faq-checkbox {
    display: none;
}

.faq-question {
    font-weight: bold;
}

.faq-answer {
    display: none;
    max-height: 0;
    overflow: hidden;
}

.faq-checkbox:checked + .faq-question + .faq-answer, .faq-answer[data-highlightable] {
    display: block;
    padding: 1rem;
    max-height: 800px;
}

.gradient-box {
    box-shadow: 0 0 3px rgba(0,0,0,.5);
    background: linear-gradient(to right,#0a7bc5 0%,#11285e 100%);
    color: #fff;
    padding: 2rem;
    display: grid;
    grid-template-columns: 350px 1fr;
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
}

.gradient-box > .full-width {
    grid-column: 1 / 3;
}

.help-center.row {
    background-color: #fff;
    padding: 3em 0 3rem;
    flex-grow: 1;
}

.help-center .cell {
    min-height: auto;
}

.help-center .tabs {
    justify-content: center;
}

.help-center .tab-content {
    border-top: none;
}

.help-center .tab {
    color: #000;
    background-color: #fff;
    font-size: 20px;
    padding: 0;
    border-radius: 0;
    margin: 0 2rem 2rem;
}

.help-center .tab-checkbox:checked + .tab {
    color: #000;
    background-color: #fff;
    border-bottom: 4px solid #026;
}

.help-center .form-grid {
    display: grid;
    grid-column-gap: 2rem;
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 600px) {
    .help-center .form-grid {
        grid-template-columns: 1fr;
    }
}

strong > em, em > strong {
    margin-right: .2em;
}
