body {
    scroll-behavior: smooth;
}

.survey-container {
    background-color: white;
    font-size: 0.9rem;
}

.survey-container div.q-row:nth-child(even) {
    background-color: #f6f6f6;
}

.survey-container div.q-row {
    border-top: solid 1px #c4c4c4;
    border-left: solid 1px #c4c4c4;
    border-right: solid 1px #c4c4c4;
}

.survey-container div.q-row li {
    color: #717171;
}

.survey-container div.q-row div.col-5 {
    padding: 0.5rem 0.5rem;
}

.survey-container div.q-row div.radios-container {
    height: 100%;
}

.survey-container div.q-row div.radios-container div.col {
    border-left: #c4c4c4 solid 1px;
    align-items: center;
    display: flex;
    justify-content: center;
}

.survey-container div.q-row.last {
    border-bottom: solid 1px #c4c4c4;
    margin-bottom: 3rem;
}

.survey-container input[type="radio"] {
    /* Add if not using autoprefixer */
    -webkit-appearance: none;
    appearance: none;
    /* For iOS < 15 to remove gradient background */
    background-color: #fff;
    /* Not removed via appearance */
    margin: 0;
    font: inherit;
    color: #bebfc3;
    width: 1.5em;
    height: 1.5em;
    border: 0.015em solid #bebfc3;
    border-radius: 50%;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
}

* .survey-container input[type="radio"]::before {
    content: "";
    width: 1em;
    height: 1em;
    border-radius: 50%;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1.25em 1.25em #2ec5ea;
}

.survey-container input[type="radio"]:checked::before {
    transform: scale(1);
}

.survey-container input[type="radio"]:focus {
    outline: 0;
    box-shadow: none;
}

.survey-container ol {
    list-style: none;
    counter-reset: my-awesome-counter;
    margin: 0;
    padding: 0;
}

.survey-container ol li {
    counter-increment: my-awesome-counter;
    text-align: left;
}

.survey-container div.col-6 li {
    line-height: 17px;
}

.survey-container ol li::before {
    content: counter(my-awesome-counter) ". ";
    color: #717171;
    margin-right: 10px;
    margin-left: 10px;
    font-size: 0.9rem;
    float: left;
    height: 50px;
}

.survey-container div.q-container {
    border: solid 1px blue;
}

.survey-container div.responses-container {
    height: 100%;
    border: solid 1px #c4c4c4;
    border-bottom: 0;
}

.survey-container div.responses-container div.col {
    border-left: solid 1px #c4c4c4;
    align-items: center;
    display: flex;
    justify-content: center;
    line-height: 16px;
    font-size: 0.9rem;
}

.survey-container div.responses-container div.col:first-child {
    border-left: 0;
}

.survey-container div.responses-container div.col {
    padding: 1rem 0.5rem;
    color: #717171;
}

.survey-container.mobile {
    color: #717171;
}

.survey-container.mobile div.mbl-question div.col-12 {
    padding-top: 1.5rem;
}

.survey-container.mobile div.mbl-question label {
    padding: 0.5rem 1rem !important;
}

.survey-container.mobile div.mbl-question input {
    margin-right: 1rem;
}

#submitSurvey.btn {
    background-color: #03153f !important;
    border-color: none;
    color: white;
}