.time-complexity-charts{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.time-complexity-charts > *{
    aspect-ratio: 1 / 1;
    flex-basis: 33%;
    height: auto;
}
.text-plot {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}
.text-plot > div:first-child{
    flex-basis: 60%;
}
.text-plot > div:last-child{
    flex-basis: 40%;
}
@media screen and (max-width: 1024px) {
    .time-complexity-charts > *{
        flex-basis: 100%;
    }
    .text-plot > div:first-child{
        flex-basis: 100%;
    }
    .text-plot > div:last-child{
        flex-basis: 100%;
    }
    }

.quote{
    display: block;
    padding-top: 8px;
    padding-bottom: 8px;
}
.quote::before{
    content: '';
    border-left: #eaeaea solid 4px;
    min-height: 2rem;
    margin-right: 0.5rem;
    border-radius: 2px;
}
.standalone-demo-chart{
    width: 100%;
    text-align: right;
}
.standalone-demo-chart > div{
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
.standalone-demo-chart > button{
    margin-top: 10px !important;
}

.button-disable-text-transform{
   text-transform: none !important;
}

#task_buttons_bigo, #task_buttons_runtime{
    display: flex;
    justify-content: space-between;
}
#task_buttons_bigo > button, #task_buttons_runtime > button{
    width: 100%;
    margin: 0 10px;
}

#task_question_runtime .code-snippet-row-oc {
    border-left: 4px solid transparent;
    padding-left: 0.5rem;
    padding-right: 0.75rem;
    transition:
        background-color 120ms ease,
        border-color 120ms ease;
}

#task_question_runtime .runtime-code-line-highlighted {
    background-color: rgba(255, 193, 7, 0.22);
    border-left-color: #ffb300;
}

.runtime-explanation-point {
    border-radius: 0.25rem;
    cursor: pointer;
    padding: 0.35rem 0.5rem;
    transition: background-color 120ms ease;
}

.runtime-explanation-point:hover,
.runtime-explanation-point:focus-visible {
    background-color: rgba(38, 166, 154, 0.12);
    outline: none;
}
