/*CSS*/
@media (min-width: 768px) {
    .survey-header .question {
        max-width: 992px;
        margin-left: auto;
        margin-right: auto;
    }
}

.progress {
    background-color: #eee !important;
}
.progress .progress-bar {
    background-color: #44C90488;
    background-color: rgba(68,201,4,0.5);
}

/* Button */
.btn.btn-primary:not(:disabled) {
    background-color: #ff4d00;
    border-color: #ff4d00;
}
.btn.btn-primary:not(:disabled):hover,
.btn.btn-primary:not(:disabled):active {
    background-color: #EA4600;
    border-color: #EA4600;
}
.btn.btn-primary:not(:disabled):focus,
.btn.btn-primary:not(:disabled):active:focus {
    box-shadow: 0 0 0 .2rem rgba(255,77,0,.5);
}

body:not(.longform) .cta-button {
    width: 100%;
    max-width: 420px;
    padding-top: 1.2rem;
    padding-bottom: 1.25rem;
    font-size: 1.5rem;
    line-height: 1.2;
    text-transform: uppercase;
    border-radius: 0.75rem;
}
body:not(.longform) .cta-button > span {
    display: block;
    font-size: 0.5em;
}
@media (min-width: 576px) {
    body:not(.longform) .cta-button {
        font-size: 1.8rem;
    }
}


/* Comparison table */
@media (max-width: 479px) {
    table#comparo {
        width: 100%;
    }
    table#comparo thead tr:last-child {
        display: none;
    }
    table#comparo tbody tr {
        display: block;
    }
    table#comparo tbody tr td {
        display: flex;
        border-top: 0;
    }
    table#comparo tbody tr td:not(:last-child) {
        border-bottom: 0;
    }
    table#comparo tbody tr td::before {
        content: attr(data-title) ": ";
        font-weight: bold;
        flex: 0 0 120px;
    }
}
