@media print {
    tr.row-question,
    div.question {
        page-break-inside: avoid;
    }
}

html, body {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    padding: 0;
    margin: 0;
}

*, *::before, *::after {
    box-sizing: border-box;
}

/* Prevent horizontal overflow from long strings */
body {
    overflow-x: hidden;
}

.question,
.question p,
.question .lead,
.question label,
.question td,
.question th,
.field-row label {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.question table {
    width: 100%;
    table-layout: fixed;
}

#container {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

header {
    border-bottom: 3px solid #121c5e;
    position: fixed;
    height: 100px;
    width: 100%;
    z-index: 1;
}

header #visual {
    display: none;
}

header #custom-logo img {
    max-height: 100px;
    width: auto;
}

main {
    display: flex;
    top: 100px;
    bottom: 60px;
    justify-content: center;
    position: fixed;
    width: 100%;
}

footer {
    background-color: #2a6adf;
    height: 60px;
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 8px;
    overflow: hidden;
    justify-content: space-between;
}

div#progress-holder {
    padding: 0 5px;
    min-width: 60%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

div#progress-bar {
    background-color: #fff;
    border-radius: 2em;
    display: inline-block;
    left: auto;
    margin: 10px 0;
    height: 40px;
    width: 100%;
    position: relative;
}

div#progress-indicator {
    background-color: #82D9a8;
    border-radius: 2em;
    height: 100%;
}

div#progress-indicator span {
    color: #fff;
    height: 40px;
    line-height: 1.6rem;
    font-size: 1.4rem;
    padding: 5px;
    display: inline-block;
    font-weight: bold;
    width: 100%;
    text-align: center;
    text-shadow: 2px 2px 1px #000;
}

#logo {
    height: 80px;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#logo img {
    max-height: 100%;
    width: auto;
}

.button-action {
    border: none;
    background: none;
    color: #fff;
    font-size: 1.8rem;
    padding: .35em 1rem;
    min-width: 56px;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    flex: 0 0 auto;
    position: relative;
    z-index: 1;
}

.button-action:hover {
    background-color: #82D9a8;
    cursor: pointer;
    outline: none;
}

.error-summary-link {
    color: inherit;
    text-decoration: underline;
}

.error-summary-link:hover,
.error-summary-link:focus {
    color: inherit;
}

#action-close,
#action-next {
    position: relative;
    right: auto;
    margin-left: auto;
}

#action-previous,
#action-home {
    position: relative;
}

.button-action__label {
    white-space: nowrap;
}

sidebar#alert-test {
    background-color: #82D9a8;
    opacity: .80;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
}

sidebar#alert-test p {
    color: #fff;
    font-size: .8em;
    font-weight: bold;
    margin: 0;
    padding: .25em 0;
    text-align: center;
    text-shadow: 0 0 .25em #000;
}

form {
    border: 3px solid #121c5e;
    border-radius: .25em;
    margin: 1em;
    padding: 1em;
    min-width: 0;
    width: 80%;
    max-width: 1280px;
    overflow-y: auto;
    overflow-x: hidden;
}

.question {
    border-bottom: 2px solid #3e8cea;
    padding: .5em .5em 1em;
    margin-bottom: 1em;
    overflow-x: hidden;
}

.question .lead {}

.question th {
    font-weight: normal;
    text-align: left;
}

.question td {
    text-align: center;
}

.question thead td {
    border-bottom: 2px solid #121c5e;
}

.question select,
.question input[type=text],
.question-open textarea {
    border: 2px solid #121c5e;
    padding: .5em;
    font-family: 'Open Sans', sans-serif;
    box-sizing: border-box;
    border-radius: .25em;
    width: 80%;
}

.question .field-row input.text-an {
    width: 50%;
}

.question-open textarea {
    height: 6em;
}

.question .datepicker {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    width: 100%;
}

.question .wrapper-datetime select {
    margin-right: .5em;
    max-width: 20%;
    width: 4em;
}

.question select.datetime-date,
.question select.datetime-month,
.question select.datetime-year {
    display: none;
}

.question select.datetime-month {
    min-width: 6em;
    width: 8em;
}

.question select.datetime-year {
    margin-right: 1em;
    min-width: 5em;
    width: 6em;
}

div.choices {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

div.choices > .field-row {
    padding: 0 .5em .5em;
}

ul.choices {
    list-style: none;
    padding: 0;
}

ul.choices li {
    list-style: none;
    padding: 0 0 .5em;
}

.field-row {
    position: relative;
    min-height: 24px;
}

.question-multiplechoice .field-row label,
.question-singlechoice .field-row label,
.question-singlechoiceopen .field-row label {
    display: inline-block;
    margin-left: 0;
    padding-left: 2em;
}

.field-row input[type="checkbox"],
.field-row input[type="radio"] {
    cursor: pointer;
    height: 24px;
    width: 24px;
    left: 0;
    top: 0;
    position: absolute;
    opacity: 0;
}

.field-row label {
    margin-left: 0;
    padding-left: 2em;
    display: inline-block;
    min-height: 24px;
}

.checkmark,
.radiomark {
    border: 2px solid #121c5e;
    background-color: #ffffff;
    border-radius: .25em;
    height: 25px;
    left: 0;
    position: absolute;
    top: 0;
    width: 25px;
}

.radiomark {
    border-radius: 1em;
}

.question-matrix .checkmark,
.question-likert .radiomark,
.question-semantic .radiomark {
    margin-left: -12px;
    left: 50%;
}

.question-likert .radiomark,
.question-semantic .radiomark {
    top: 50%;
    transform: translate(0, -50%);
}

.question-smiley .radiomark {
    top: 0;
    left: 0.5em;
    transform: unset;
}

.field-row:hover input ~ .checkmark,
.field-row:hover input ~ .radiomark {
    background-color: #d1d5db;
}

.field-row input:focus ~ .checkmark,
.field-row input:focus ~ .radiomark,
.field-row input:focus-visible ~ .checkmark,
.field-row input:focus-visible ~ .radiomark {
    box-shadow: 0 0 0 3px #2a6adf;
}

.checkmark:after,
.radiomark:after {
    content: "";
    display: none;
    position: absolute;
}

.field-row input:checked ~ .checkmark:after,
.field-row input:checked ~ .radiomark:after {
    display: block;
}

.field-row .checkmark:after,
.field-row .radiomark:after {
    border: solid #82D9a8;
    border-width: 0 3px 3px 0;
    left: 8px;
    height: 12px;
    transform: rotate(45deg);
    top: 4px;
    width: 6px;
}

.question-matrix .field-row .checkmark:after,
.question-likert .field-row .radiomark:after,
.question-semantic .field-row .radiomark:after {
    border: solid #82D9a8;
    border-width: 0 3px 3px 0;
    left: 50%;
    margin-left: -4px;
    height: 12px;
    transform: rotate(45deg);
    top: 4px;
    width: 6px;
}

.question input[type=text].open-numeric {
    width: 5%;
    min-width: 100px;
    text-align: right;
}

.question-total span.total-sum {
    text-align: right;
    display: inline-block;
    width: 5%;
    min-width: 100px;
}

.question-smiley ul {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.question-smiley ul li:hover,
.question-smiley ul li img:hover {
    cursor: pointer;
}

.question input.text-an:disabled {
    display: none;
}

.question-semantic th.label-left {
    text-align: right;
}

.question-matrix td,
.question-likert td,
.question-semantic td {
    min-height: 24px;
}

.priority-wrapper {
    display: flex;
    flex-direction: row;
}

.priority-box {
    border: 2px solid #6b7280;
    box-sizing: border-box;
    border-radius: .25em;
    width: 50%;
    margin: 1em;
    min-height: 3em;
}

.priority-item {
    background-color: #e5e7eb;
    border: 2px solid #6b7280;
    border-radius: .25em;
    box-sizing: border-box;
    margin: .25em;
    padding: .25em;
    cursor: pointer;
}

.checked-bg {
    background-color: #82D9a8;
}

.attribute {
    border-bottom: unset;
}

.attribute > h3 {
    width: 100%;
    text-align: center;
    margin-top: unset;
}

.attribute .choices .field-row > label {
    display: inline-block;
    width: 20%;
}

.slider-wrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.slider-block {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.slider-label {
    width: auto;
    max-width: 16%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.slider-inputs {
    width: 84%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.slider-handler-wrapper {
    width: 75%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.slider-handler-wrapper span:first-of-type {
    text-align: right;
    padding-right: 1em;
}

.slider-handler-wrapper span:last-of-type {
    text-align: left;
    padding-left: 1em;
}

.slider-handler {
    width: 80%;
}

.slider-handler-wrapper .slider-handler span {
    padding: unset;
}

.slider-input {
    width: 25%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.slider-input label {
    position: relative;
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 4px 0;
}

.slider-input .checkmark {
    height: 24px;
    width: 24px;
    top: 2px;
    left: 0;
}

.slider-input .checkmark:after {
    border: solid #82D9a8;
    border-width: 0 3px 3px 0;
    left: 7px;
    height: 12px;
    transform: rotate(45deg);
    top: 3px;
    width: 6px;
}

.slider-input input:checked ~ .checkmark:after {
    display: block;
}

.priority-wrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.priority-label {
    margin-right: 2em;
    text-align: right;
}

.priority-label-mob {
    width: 100%;
    text-align: right;
    display: none;
}

.priority-label-mob:first-of-type {
    margin-top: 1em;
}

.priority-widget {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.priority-widget .draggable {
    background-color: #e5e7eb;
    border: 2px solid #6b7280;
    border-radius: .25em;
    box-sizing: border-box;
    cursor: pointer;
    padding: .25em;
    margin: .25em 0;
}

.priority-divider {
    width: 5%;
}

.priority-draggables {
    border: 2px solid #6b7280;
    border-radius: .25em;
    box-sizing: border-box;
    padding: .5em;
    width: 45%;
}

.priority-box-wrapper {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 1em;
}

.priority-droppable {
    border: 2px solid #6b7280;
    border-radius: .25em;
    box-sizing: border-box;
    padding: .5em;
    width: 100%;
    margin: unset;
}

.priority-buttons {
    width: 10%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.priority-buttons a {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    background-color: #8a8a8a;
    border: 2px solid #6b7280;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
    color: #111111;
    cursor: pointer;
}

.priority-buttons a:first-of-type {
    margin-bottom: 20px;
}

.priority-item.selected-item {
    background-color: #ffffff;
    border-color: #333333;
}

.priority-selected-indicator {
    display: none;
    font-size: 0.85em;
    font-weight: bold;
    margin-left: 0.5em;
}

.priority-item.selected-item .priority-selected-indicator {
    display: inline-block;
}

.priority-selected-indicator .fa {
    margin-right: 0.35em;
}

.table-responsive {
    overflow-y: hidden !important;
    padding: 0 0 10px;
}
.table-responsive::-webkit-scrollbar {
    height: 4px;
    margin-top: 5px;
}
.table-responsive::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 2px;
}
.table-responsive::-webkit-scrollbar-thumb {
    background: #333333;
    border-radius: 2px;
}
.table-responsive::-webkit-scrollbar-thumb:hover {
    background: #333333;
    border-radius: 2px;
}

#auth-container {
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: scroll;
}

#auth-container section {
    box-sizing: border-box;
    margin: 0 0 1rem;
    max-width: 960px;
    width: 80%;
}

#auth-container form {
    box-sizing: border-box;
    margin: 0;
    width: 100%;
}

@media screen and (max-width: 1350px) {
    .slider-label {
        width: auto;
        max-width: 20%;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
    }

    .slider-inputs {
        width: 80%;
        height: auto;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .slider-handler-wrapper {
        width: 65%;
        height: auto;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }

    .slider-handler {
        width: 70%;
    }

    .slider-input {
        width: 35%;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }
}

@media screen and (max-width: 1023px) {
    .slider-block {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .slider-label {
        width: auto;
        max-width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        margin-bottom: 5px;
    }

    .slider-inputs {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .slider-handler-wrapper {
        width: 65%;
        height: auto;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }

    .slider-handler {
        width: 70%;
    }

    .slider-input {
        width: 35%;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }
}

@media screen and (max-width: 1040px) {
    header {
        height: 100px;
        position: fixed;
    }

    main {
        position: fixed;
        top: 100px;
        bottom: 60px;
        width: 100%;
    }

    footer {
        flex-wrap: nowrap;
    }

    #logo {
        position: static;
        margin: 10px auto 0;
        left: auto;
        height: 60px;
    }

    div#progress-holder {
        width: min(56%, 440px);
        min-width: 180px;
    }

    div#progress-bar {
        position: relative;
        left: auto;
        transform: none;
    }

    header #custom-logo img {
        max-height: 80px;
    }

    #logo {
        height: 60px;
        left: 40%;
        /*margin-left: -25%;*/
        /*margin-top: 10px;*/
        /*position: absolute;*/
    }

    main > h1 {
        text-align: center;
    }

    form {
        min-width: unset;
        width: 80%;
        max-width: 1280px;
    }

    footer {
        height: 60px;
    }

    .question input[type=text],
    .question-open textarea {
        font-size: 1rem;
    }

    select.question-dropdown {
        font-size: 1rem;
        color: #111111;
    }

    .slider-handler-wrapper {
        width: 50%;
        height: auto;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }

    .slider-handler {
        width: 65%;
    }

    .slider-input {
        width: 50%;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }

    div#progress-holder {
        position: absolute;
    }

    div#progress-bar {
        width: 100%;
        margin: 10px 0;
        transform: none;
    }

    .button-action {
        padding: 0 12px;
        height: 100%;
    }

    .button-action__label {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    header {
        height: 60px;
    }

    header #custom-logo img {
        max-height: 60px;
    }

    #logo {
        height: 50px;
        left: 30%;
        margin-top: 5px;
    }

    #logo img {
        width: auto;
        max-height: 100%;
    }

    main {
        top: 60px;
        bottom: 60px;
    }

    main > h1 {
        text-align: center;
        margin: 0 20px;
    }

    form#intaketoken {
        width: 100%!important;
        height: auto!important;
    }

    form {
        border: none;
        min-width: unset;
        width: 100%;
        max-width: unset;
        margin: unset;
        padding: 0 1em;
        box-sizing: border-box;
    }

    .question input[type=text],
    .question-open textarea {
        width: 100%!important;
        font-size: 1rem;
    }

    .question input[type=text].open-numeric {
        width: 5%!important;
        min-width: 100px;
    }

    .question .field-row input.text-an {
        margin-top: 10px;
    }

    select.question-dropdown {
        font-size: 1rem;
        color: #111111;
    }

    .priority-wrapper .priority-widget {
        flex-direction: column;
    }

    .priority-wrapper .priority-draggables,
    .priority-wrapper .priority-droppable {
        width: 100%;
        margin-left: unset;
        margin-right: unset;
    }

    .priority-wrapper .priority-droppable {
        margin-top: 1em;
        margin-bottom: 1em;
    }

    .priority-wrapper .priority-box-wrapper {
        width: 100%;
        margin-left: unset;
        margin-right: unset;
        margin: unset;
    }

    .priority-wrapper .priority-buttons {
        width: 100%;
        flex-direction: row;
    }

    .priority-wrapper .priority-buttons > a {
        transform: rotate(90deg);
    }

    .priority-wrapper .priority-buttons > a:first-of-type {
        margin-bottom: 0;
        margin-right: 20px;
    }

    .priority-wrapper .priority-label {
        display: none;
    }

    .priority-wrapper .priority-label-mob {
        display: block;
    }

    .slider-block {
        margin-bottom: 20px;
    }

    .slider-label {
        margin-bottom: 10px;
    }

    .slider-inputs {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .slider-handler-wrapper {
        width: 100%;
        justify-content: center;
        margin-bottom: 10px;
    }

    .slider-handler {
        width: 70%;
    }

    .slider-input {
        width: 100%;
        justify-content: center;
    }

    div.choices > .field-row img {
        max-width: 100px;
    }

    footer {
        height: 60px;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
    }

    #action-close, #action-previous, #action-next  {
        position: relative;
    }

    #action-previous {
        margin-right: auto;
    }

    #action-next {
        margin-left: auto;
    }

    div#progress-holder {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: min(50%, 280px);
        min-width: 130px;
        margin: 0;
    }

    div#progress-bar {
        width: 100%;
        margin: 10px 0;
        transform: none;
    }

    .button-action {
        padding: 0 10px;
        height: 100%;
    }

    .button-action > i {
        font-size: 1.8rem;
    }

    .button-action__label {
        display: none;
    }

    #auth-container p {
        font-size: .9rem;
    }

    #auth-container form {
        padding: 0;
    }
}

@media screen and (max-height: 576px) and (orientation: landscape) {
    header {
        height: 60px;
        background-color: white;
    }

    header #custom-logo img {
        max-height: 60px;
    }

    #logo {
        height: 50px;
        left: 40%;
        /*margin-left: -25%;*/
        margin-top: 5px;
        /*position: absolute;*/
    }

    #logo img {
        width: auto;
        max-height: 100%;
    }

    main {
        top: 60px;
        bottom: 60px;
    }

    main > h1 {
        text-align: center;
        margin: 0 20px;
    }

    form#intaketoken {
        width: 100%!important;
        height: 100%!important;
        padding: 60px 0 20px;
    }

    form#intaketoken div.flash {
        margin-top: 60px;
    }

    form {
        border: none;
        min-width: unset;
        width: 100%;
        max-width: unset;
        margin: unset;
        padding: 0 1em;
        box-sizing: border-box;
    }

    .question input[type=text],
    .question-open textarea {
        width: 80%!important;
        font-size: 1rem;
    }

    .question input[type=text].open-numeric {
        width: 5%!important;
        min-width: 100px;
    }

    .question .field-row input.text-an {
        margin-top: 10px;
    }

    select.question-dropdown {
        font-size: 1rem;
        color: #111111;
    }

    footer {
        height: 60px;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
    }

    #action-close, #action-previous, #action-next  {
        position: relative;
    }

    #action-previous {
        margin-right: auto;
    }

    #action-next {
        margin-left: auto;
    }

    div#progress-holder {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: min(52%, 320px);
        min-width: 150px;
        margin: 0;
    }

    div#progress-bar {
        width: 100%;
        margin: 10px 0;
        transform: none;
    }

    .button-action {
        padding: 0 10px;
        height: 100%;
    }

    .button-action > i {
        font-size: 1.8rem;
    }

    .button-action__label {
        display: none;
    }
}

#map {
    border: .05em solid #6b7280;
    border-radius: .5em;
    box-shadow: 0 .25em .5em #000; 
    box-sizing: border-box;
    height: 50vh;
    width: 100%;
}

.new-comment {
    border: 2px solid #007887;
    border-radius: .25em;
    padding: .25em;
    margin-bottom: 1em;
    width: 320px;
    max-width: 100%;
}

.new-comment:focus {
    border-color: #007887;
}

.save-comment {
    background-color: #007887;
    border: .25em solid #007887;
    border-radius: .25em;
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 0 1em;
    cursor: pointer;    
}

.save-comment:hover {
    background-color: #c2410c;
    border-color: #c2410c;
}


fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

legend {
    padding: 0;
}

.error-summary {
    background: #ffffff;
    color: #7a3f00;
    padding: 0.75rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 6px;
    border: 1px solid #7a3f00;
}

.error-summary > p {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin: 0;
    font-weight: 700;
}

.error-summary ul {
    margin: 0.5rem 0 0;
    padding-left: 1.25rem;
    list-style: disc;
}

.error-icon {
    display: inline-flex;
    flex: 0 0 auto;
    line-height: 1.2;
    color: inherit;
}

.error-text {
    font-weight: 600;
}

.error-summary li {
    margin-bottom: 0.25rem;
}

.error-summary li::marker {
    color: #7a3f00;
}

.error-summary li p,
.error-summary li a {
    color: inherit;
}

.error-summary li:last-child {
    margin-bottom: 0;
}

.time-limit-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.time-limit-modal__content {
    background: #fff;
    color: #111;
    max-width: 520px;
    width: calc(100% - 2rem);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.time-limit-modal__text {
    margin: 0.5rem 0;
}

.time-limit-modal__countdown {
    font-weight: bold;
    margin: 0.5rem 0 1rem;
}

.time-limit-modal__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.time-limit-modal__actions .button-action {
    background-color: #3e8cea;
    border-radius: 6px;
    color: #111;
    padding: 0.4rem 1rem;
    font-size: 1rem;
}

.time-limit-modal__actions .button-action:hover {
    background-color: #6fc18f;
}

.time-limit-modal__actions .button-action:focus,
.time-limit-modal__actions .button-action:focus-visible {
    box-shadow: 0 0 0 3px #82D9a8;
}

.time-limit-modal[aria-hidden="false"] {
    display: flex;
}
