/* Customisations */
:root {
    --button-color: #43C801;
    --button-hover-color: #39AF01;
}
body {
    color: #555550;
    font-family: 'Inter',sans-serif !important;
}
.container {
    max-width: 980px;
}
header {
    border-width: 2px;
    border-color: #ccc;
}
.possibly-branding {
    display: block;
    max-width: 200px;
}
.caption {
    font-size: 0.75rem;
}
ol.circled {
    list-style: none;
    counter-reset: custom-counter;
}
ol.circled li {
    counter-increment: custom-counter;
    position: relative;
    margin-bottom: 0.5rem;
}
ol.circled li::before {
    content: counter(custom-counter);
    display: block;
    width: 26px;
    height: 26px;
    position: absolute;
    left: -34px;
    color: white;
    font-size: 14px;
    font-weight: 700;
    line-height: 26px;
    text-align: center;
    background-color: var(--bs-danger, #F64C3C);
    border-radius: 50%;
}

/* Buttons */
.btn-brand-color {
    color: #fff;
    line-height: 1.125;
    background-color: var(--button-color);
    outline: 1px solid transparent;
}
.btn-brand-color:hover {
    color: #fff;
    background-color: var(--button-hover-color);
}
.btn-brand-color:focus,
.btn-brand-color:active,
.btn-brand-color:active:focus {
    color: #fff;
    background-color: var(--button-hover-color);
    box-shadow: 0 0 0px 4px rgba(57,175,1,0.25);
}

header .btn-brand-color,
button.btn-brand-color {
    box-shadow: none;
    font-size: 1rem;
    box-shadow: 0 4px 0 0 var(--button-hover-color);
}
@media (min-width: 576px) {
    header .btn-brand-color,
    button.btn-brand-color {
        font-size: 1.25rem;
    }
}

.button-wrapper .btn-brand-color {
    padding-top: 1rem;
    padding-bottom: 1rem;
    width: 100%;
    font-size: 1.25rem;
    font-weight: 700;
}
