/***********************************************************************/
/****************************** %overrides% ****************************/
/***********************************************************************/

/*#region Overrides*/
.card {
    background-color: inherit;
    border: none;
    border-radius: 0;
}

.modal-header,
.modal-body,
.modal-footer {
    background-color: var(--backgroundL5);
    color: var(--color);
}

.modal-header {
    border-bottom-color: var(--borderL6);
}

.modal-footer {
    border-top-color: var(--borderL6);
}

.modal .close {
    color: var(--color);
    text-shadow: 0 1px 0 var(--color-dim);
}

.captcha img {
    filter: invert(1) brightness(100%);
}

label.RadLabel {
    color: var(--color);
    font-family: var(--sansserif);
}
/*#endregion*/

/***********************************************************************/
/******************************** %basics% *****************************/
/***********************************************************************/

/*#region Basics*/
*, *:before, *:after {
    box-sizing: border-box;
}

*::selection {
    background: var(--selection);
}

html {
    width: 100%;
    height: 100%;
}

body {
    font-family: var(--sansserif);
    background-color: var(--background);
    color: var(--color);
}

body.no-scroll {
    overflow-y: hidden;
}

main {
    min-height: 100vh;
    position: relative;
    z-index: 1;
    background-color: var(--background);
    padding-bottom: 3rem;
    height: 100%;
    overflow-x: hidden; /*Necessary to prevent horizontal scrolling due to h2 backgrounds*/
    overflow-x: clip; /*Allows sticky positioning, but is not yet supported in Safari*/
}

main section {
    padding: 3rem 0;
}

main section:last-of-type {
    padding-bottom: 0;
}

main section.nospace {
    padding-block: 0;
}

section .container {
    max-width: 1300px;
    margin: 0 auto;
}

.notransition {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}

.hidden {
    display: none !important;
}

hr {
}

img {
    width: 100%;
}

img.center {
    display: block;
    margin-inline: auto;
}

@media screen and (max-width: 699px) {
    img.embed-right,
    img.embed-left {
        margin: 0.5rem auto;
        width: auto;
        height: auto;
        display: block;
    }
}

@media screen and (min-width: 700px) {
    img.embed-right {
        float: right;
        margin: 0.5rem 0 0.5rem 1rem;
        width: auto;
        height: auto;
        z-index: 2;
        position: relative;
    }

    img.embed-left {
        float: left;
        margin: 0.5rem 1rem 0.5rem 0;
        width: auto;
        height: auto;
    }
}

.dim {
    color: var(--color-dim);
}

.panel {
    background-color: var(--background);
    border: 1px solid var(--border);
    box-shadow: 0 0 20px -10px black;
    border-radius: var(--corner-radius);
    overflow: hidden;
}

@media (prefers-color-scheme: dark) {
    .panel {
        background: linear-gradient(rgba(0,0,0,.1),hsla(0,0%,100%,.025)),radial-gradient(rgba(206,211,229,.1),rgba(20,22,26,.1));
    }
}

p.initial::first-letter {
    color: var(--tertiary);
    float: left;
    font-family: Georgia;
    font-size: 5rem;
    line-height: 60px;
    padding-top: 8px;
    padding-right: 8px;
    padding-left: 3px;
}

iframe.youtube {
    width: 100%;
    aspect-ratio: 16 / 9;
}

select {
    width: 100%;
    margin: 0;
    padding: 0.5rem;
}

.center {
    text-align: center;
}
/*#endregion*/

/***********************************************************************/
/******************************** %links% ******************************/
/***********************************************************************/

/*#region Links*/
a {
    text-decoration: none;
}

a,
a:link,
a:visited,
a:focus,
a:hover,
a:active {
    color: var(--link-color);
}

.link-group a {
    transition: opacity 0.5s ease-in-out;
}

.link-group:hover a,
.link-group:focus-within a {
    opacity: 0.3;
}

.link-group:hover a:hover,
.link-group:focus-within a:focus {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}
/*#endregion*/

/***********************************************************************/
/******************************** %lists% ******************************/
/***********************************************************************/

/*#region Lists*/

ul.no-dots {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

/*#endregion*/

ul.col2 {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
}

ul.col3 {
    columns: 3;
    -webkit-columns: 3;
    -moz-columns: 3;
}

ul.col4 {
    columns: 4;
    -webkit-columns: 4;
    -moz-columns: 4;
}

/*#endregion*/

/*#endregion*/

/***********************************************************************/
/******************************* %tables% ******************************/
/***********************************************************************/

/*#region Tables*/

table, .table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 1rem;
    color: var(--color);
}

table.fixed {
    table-layout: fixed;
}

table.pad-none td {
    padding: 0;
}

table.pad-small td {
    padding: 0.35rem;
}

table.pad-large td {
    padding: 0.5rem;
}

th {
    padding: 0.5rem;
}

table:not(.borderless) thead tr,
table:not(.borderless) tbody tr {
    border: 1px solid #777777;
}

td {
    padding: 0.2rem;
}

thead tr {
    background-color: var(--primaryL7);
    color: white;
}

thead.center {
    text-align: center;
}

table.striped-h tbody tr:nth-child(2n) {
    background-color: var(--shading);
}

table.striped-v tbody tr td:nth-child(2n) {
    background-color: var(--shading);
}

table tfoot .source {
    font-size: 0.8rem;
    font-style: italic;
}

table tfoot .footnote {
    font-size: 0.8rem;
}

table.center-page {
    margin-inline: auto;
}

/*#endregion*/

/***********************************************************************/
/*************************** %section_headers% *************************/
/***********************************************************************/

/*#region Section Headers*/

h1, h2, h3, h4, h5, h6 {
    font-family: var(--display);
    font-weight: 400;
}

h1:not(.no-clear),
h2:not(.no-clear),
h3:not(.no-clear),
h4:not(.no-clear),
h5:not(.no-clear),
h6:not(.no-clear) {
    clear: both;
}


main section h1 {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
}

main section h2 {
    font-size: 1.5rem;
    text-align: center;
    letter-spacing: 0.3rem;
    margin-bottom: 2rem;
    background-color: var(--background);
    padding: 1rem 0;
    z-index: 1;
    box-shadow: 0 10px 10px var(--background);
}

main section h2:not(.no-stick) {
    position: sticky;
    top: 0;
}

main section h2:before,
main section h2:after {
    content: "";
    height: 10%;
    position: absolute;
    top: 45%;
    z-index: -1;
}

main section h2 span {
    padding-inline: 1rem;
    background-color: var(--background);
}

main section h2:before {
    width: 2000px;
    right: -30px;
    border-top: 1px solid var(--tertiary);
    border-bottom: 1px solid var(--tertiary);
}

main section h2:after {
    width: 2000px;
    left: -30px;
    border-top: 1px solid var(--tertiary);
    border-bottom: 1px solid var(--tertiary);
}











main section h2.no-bar {
    color: var(--color);
}

main section h2.no-bar:before,
main section h2.no-bar:after {
    content: none;
}

main section h2.no-padding,
main section h3.no-padding {
    padding: 0;
}

main section h3 {
    font-size: 1.3rem;
    border-bottom: 2px solid var(--tertiary);
    margin-bottom: 1rem;
}

main section h3.no-decoration {
    border-bottom: none;
}

main section h3.no-decoration:before,
main section h3.no-decoration:after {
    content: none;
}

main section h4 {
    font-size: 1.2rem;
}

main section h5 {
    font-size: 1.1rem;
}

main section h6 {
    font-size: 1.0rem;
}


main section h3 {
    position: relative;
    padding: 1rem 0;
    z-index: 1;
}

main section h3:before {
    content: "";
    height: 20%;
    position: absolute;
    top: 40%;
    z-index: -1;
}

main section h3:before {
    width: 30px;
    left: -30px;
    top: 2px; /*https://stackoverflow.com/a/54389914*/
}

main section h3:before {
    border-bottom: 2px solid var(--tertiary);
}

@media screen and (min-width: 800px) {
    main section h2.drop {
        margin-top: 1rem;
    }
}

/*#endregion*/

/***********************************************************************/
/***************************** %blockquote% ****************************/
/***********************************************************************/

/*#region Blockquotes*/

blockquote {
    width: 100%;
    padding: 10px 0;
}

blockquote:not(.no_border) {
    border-top: 1px solid #DDDDDD;
    border-bottom: 1px solid #DDDDDD;
}

blockquote > * {
    width: 75%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

blockquote .body {
    padding: 0 30px;
    position: relative;
}

blockquote .body:before, blockquote .body:after {
    font-family: var(--fontawesome);
    position: absolute;
    font-weight: 900;
    font-size: 2.5rem;
    color: #666666;
    line-height: 1;
}

blockquote .body:before {
    content: "\f10d";
    left: -15px;
    top: 0;
}

blockquote .body:after {
    content: "\f10e";
    right: -15px;
    bottom: 0;
}

blockquote .signature {
    text-align: right;
    margin-top: 10px;
    font-style: italic;
}

blockquote .signature:before {
    content: "--";
}

/*#endregion*/

/***********************************************************************/
/***************************** %grid-layout% ***************************/
/***********************************************************************/

/*#region Sidebar Grid*/

.grid-sidebar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.grid-sidebar .mainbar {
    grid-row-start: 1;
}

@media screen and (min-width: 800px) {
    .grid-sidebar .sidebar-left,
    .grid-sidebar .sidebar-right {
        --STATIC-WIDTH: auto;
        width: var(--STATIC-WIDTH);
    }
}

.grid-sidebar .sidebar-left > div:not(:first-of-type),
.grid-sidebar .sidebar-right > div:not(:first-of-type) {
    margin-top: 1rem;
}

.grid-sidebar .sidebar-right {
    grid-row-start: 1;
    grid-column-start: 2;
}

.grid-sidebar .sidebar-left {
    grid-row-start: 1;
    grid-column-end: -2;
}

.sidebar {
    z-index: 2;
    position: relative;
}

.sidebar:not(:first-of-type) {
    margin-top: 2rem;
}

.sidebar .header,
.sidebar .body,
.sidebar .footer {
    padding: 1rem;
}

.sidebar .header {
    border-bottom: 1px solid var(--border);
    padding-block: 0.5rem;
    font-size: 1.3rem;
    font-family: var(--serif);
    text-align: center;
    background-color: var(--background);
    color: var(--color);
}

.sidebar .header h5 {
    margin: 0;
}

.sidebar .body {
    font-size: 0.9rem;
}

.sidebar .body.flush {
    padding: 0;
}

.mainbar {
    z-index: 1;
    position: relative;
}

.mainbar h3,
.mainbar h4,
.mainbar h5,
.mainbar h6 {
    clear: none;
}

@media screen and (min-width: 800px) {
    .mainbar.scrollable {
        overflow-y: scroll;
        height: 0;
        min-height: 100%;
        scroll-snap-type: y mandatory;
    }
}

@media screen and (max-width: 799px) {
    .grid-sidebar {
        display: flex;
        gap: 1rem;
        flex-direction: column;
    }

    .grid-sidebar > * {
        flex: 1 0 auto;
    }
}

/*#endregion*/

/***********************************************************************/
/****************************** %% ****************************/
/***********************************************************************/

/*#region Inputs*/


input[type="text"]:focus, 
input[type="password"]:focus {
    outline: none;
}

input[type="text"], 
input[type="password"] {
    width: 100%;
    background-color: var(--background);
    border: none;
    border-bottom: 2px solid var(--border);
    color: var(--color);
    font-size: 1.2rem;
}

label > input[type="checkbox"] {
    margin-right: 0.5rem;
}

.input-search {
    position: relative;
}

.input-search input {
    padding-left: 2rem;
}

.input-search:before {
    font-family: var(--fontawesome);
    content: "\f002";
    color: var(--color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0.5rem;
}

.input-results-count {
    float: right;
    color: var(--color-dim);
}

button[type='button'] {
    color: var(--color);
}

/*#endregion*/

/***********************************************************************/
/******************************* %buttons% *****************************/
/***********************************************************************/

/*#region Buttons*/

.bttn {
    font-family: var(--serif);
    text-align: center;
    font-size: 1.2rem;
    line-height: normal;
    display: inline-block;
    cursor: pointer;
    transition: 1s;
    border: none;
}

.bttn .subtext {
    font-size: 0.9rem;
    display: block;
    font-family: var(--sansserif);
    margin-top: 0.5rem;
}

.bttn,
.bttn:hover,
.bttn:focus {
    text-decoration: none;
    font-weight: 400;
}

/* Bootstrap Styling */
.btn {
    font-family: var(--serif);
    text-align: center;
    font-size: 1.2rem;
    line-height: normal;
    display: inline-block;
    cursor: pointer;
    transition: 1s;
}

/***********************************************************************/
/***************************** %bttn_colors% ***************************/
/***********************************************************************/

/*#region Button (Primary)*/

.bttn.bttn-primary {
    background-color: var(--bttn-background);
    color: var(--bttn-color);
}

.bttn-primary:hover,
.bttn-primary:focus {
    background-color: var(--bttn-background-hover);
    color: black;
}

.bttn-primary.bttn-ghost {
    background-color: transparent;
    border: 1px solid var(--primaryL10);
}

.bttn-primary.bttn-ghost:hover,
.bttn-primary.bttn-ghost:focus {
    border-color: var(--tertiary);
    color: var(--link);
}

.bttn.bttn-primary + .bttn.bttn-close {
    background-color: var(--bttn-background);
    color: var(--bttn-color);
}

.bttn.bttn-primary + .bttn.bttn-close:hover,
.bttn.bttn-primary + .bttn.bttn-close:focus {
    background-color: var(--bttn-background-hover);
    color: black;
}

.btn.btn-primary {
    background-color: var(--primaryL5);
    border: 1px solid var(--primaryL5);
    color: #fff;
}

.btn.btn-primary:hover, .btn.btn-primary:focus {
    background-color: var(--primaryL10);
    color: #fff;
}

.btn.btn-outline-primary {
    color: var(--primaryL5);
    background-color: transparent;
    border: 1px solid var(--primaryL5);
}

.btn.btn-outline-primary:hover, .btn.btn-outline-primary:focus {
    background-color: var(--primaryL8);
    border: 1px solid var(--primaryL8);
    color: #fff;
}

/*#endregion*/

/*#region Button (Secondary)*/

.bttn-secondary {
}

.bttn-secondary {
}

/*#endregion*/

/***********************************************************************/
/***************************** %bttn_styles% ***************************/
/***********************************************************************/

/*#region Button (Classic)*/

.bttn-classic {
    padding: 8px 11px;
}

.bttn-classic .text {
}

.bttn-classic .subtext {
}

.bttn-classic span.icon {
    padding: 0 5px;
}

.bttn.bttn-classic.bttn-closeable {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.bttn.bttn-classic + .bttn.bttn-close {
    padding: 15px 30px 15px 5px;
    margin-left: -4px;
}

/*#endregion*/

/*#region Button (Text)*/

.bttn-text {
    background-color: transparent;
    color: #2F4172;
}

.bttn-text:hover,
.bttn-text:focus {
    color: #AA3939;
    background-color: transparent;
}

/*#endregion*/

/*#region Button (Link)*/

.bttn-link {
    background-color: transparent;
    color: var(--link);
}

.bttn-link:hover,
.bttn-link:focus {
    background-color: transparent;
    color: var(--link);
    text-decoration: underline;
}

/*#endregion*/

/***********************************************************************/
/****************************** %bttn_mods% ****************************/
/***********************************************************************/

/*#region Button (Small)*/

.bttn.bttn-small {
    font-size: 1rem;
    padding: 10px 20px;
}

.bttn.bttn-small.bttn-closeable {
    padding: 10px 5px 10px 20px;
}

.bttn.bttn-small + .bttn.bttn-close {
    font-size: 1em;
    padding: 10px 20px 10px 10px;
}

/*#endregion*/

/*#region Button (Tiny)*/

.bttn.bttn-tiny {
    padding: 5px 12px;
    font-size: 1rem;
}

/*#endregion*/

/*#region Button (Pill)*/

.bttn.bttn-pill {
    border-radius: 1000px;
}

.bttn.bttn-pill + .bttn.bttn-close {
    border-radius: 1000px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/*#endregion*/

/*#region Button (Disabled)*/

.bttn.bttn-disabled {
    pointer-events: none;
    background-color: #757575;
    color: black;
}

.bttn.bttn-disabled:after {
    border-color: lightgray;
}

/*#endregion*/

/*#region Button (Hidden)*/

.bttn-hidden {
    display: none !important;
}

.bttn-hidden + .bttn-close {
    display: none;
}

/*#endregion*/

/***********************************************************************/
/*************************** %bttn_containers% *************************/
/***********************************************************************/

/*#region Button Containers*/

.bttn-container {
    margin-bottom: 1rem;
}

.bttn-container.bttn-container-same-height {
    display: flex;
    align-items: stretch;
}

.bttn-container.bttn-container-same-height > .bttn-classic {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bttn-container + .bttn-container {
    margin-top: 15px;
}

.bttn-container + p {
    margin-top: 15px;
}

.bttn-container.bttn-container-full-width .bttn {
    display: block;
    width: 100%;
}

.bttn-container.bttn-container-full-width .bttn:not(:first-child) {
    margin-left: 0;
    margin-top: 20px;
}

.bttn-container-uniform {
    display: flex;
}

.bttn-container-uniform .bttn-classic {
    flex-grow: 1;
}

@media screen and (max-width: 800px) {
    .bttn-container-uniform {
        flex-flow: column;
    }

    .bttn-container.bttn-container-uniform .bttn:not(:first-child) {
        margin-left: 0;
        margin-top: 30px;
    }
}

.bttn-container .bttn:not(:first-child) {
    margin-left: 30px;
}

/*#endregion*/

/*#endregion*/

/***********************************************************************/
/*************************** %flex-alignment% **************************/
/***********************************************************************/

/*#region Flex Alignment*/

.flex-container {
    display: flex;
}

.flex-center-vertical {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.flex-center-horizontal {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.flex-center-both {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-justify-right {
    display: flex;
    justify-content: flex-end;
}

.flex-justify-left {
    display: flex;
    justify-content: flex-start;
}

.flex-justify-center {
    display: flex;
    justify-content: center;
}

.flex-push-left {
    margin-right: auto !important;
}

.flex-push-right {
    margin-left: auto !important;
}

.flex-push-center {
    margin-left: auto !important;
    margin-right: auto !important;
}

/*#endregion*/

:root {
    --abs-margin: 0;
}

.abs-0-00 {
    --abs-margin: 0;
}

.abs-0-25 {
    --abs-margin: 0.25rem;
}

.abs-0-50 {
    --abs-margin: 0.5rem;
}

.abs-0-75 {
    --abs-margin: 0.75rem;
}

.abs-1-00 {
    --abs-margin: 1rem;
}

.abs-container {
    position: relative;
}

.abs-n, .abs-e, .abs-s, .abs-w, .abs-ne, .abs-se, .abs-sw, .abs-nw {
    position: absolute;
}

.abs-s {
    bottom: var(--abs-margin);
}

.abs-n {
    top: var(--abs-margin);
}

.abs-e {
    right: var(--abs-margin);
    top: 50%;
    transform: translateY(-50%);
}

.abs-w {
    left: var(--abs-margin);
    top: 50%;
    transform: translateY(-50%);
}

.abs-ne {
    top: var(--abs-margin);
    right: var(--abs-margin);
}

.abs-se {
    bottom: var(--abs-margin);
    right: var(--abs-margin);
}

.abs-sw {
    bottom: var(--abs-margin);
    left: var(--abs-margin);
}

.abs-nw {
    top: var(--abs-margin);
    left: var(--abs-margin);
}

/***********************************************************************/
/******************************** %grid% *******************************/
/***********************************************************************/

.grid {
    display: grid;
    --COLUMNS: auto;
    --ROWS: auto;
    grid-template-columns: var(--COLUMNS);
    grid-template-rows: var(--ROWS);
}

@media screen and (max-width: 700px) {
    .grid-collapse {
        grid-template-columns: 1fr;
    }
}

/***********************************************************************/
/******************************* %loader% ******************************/
/***********************************************************************/

/*#region Loader*/

.loader {
    width: 4px;
    aspect-ratio: 1;
    border-radius: 50%;
    box-shadow: 19px -19px 0 0px, 38px -19px 0 0px, 57px -19px 0 0px, 19px 0 0 5px, 38px 0 0 5px, 57px 0 0 5px, 19px 19px 0 0px, 38px 19px 0 0px, 57px 19px 0 0px;
    transform: scale(3) translateX(-38px);
    animation: loader 2s infinite linear;
    color: var(--tertiary);
}

@keyframes loader {
    12.5% {
        box-shadow: 19px -19px 0 0px, 38px -19px 0 0px, 57px -19px 0 5px, 19px 0 0 5px, 38px 0 0 0px, 57px 0 0 5px, 19px 19px 0 0px, 38px 19px 0 0px, 57px 19px 0 0px
    }

    25% {
        box-shadow: 19px -19px 0 5px, 38px -19px 0 0px, 57px -19px 0 5px, 19px 0 0 0px, 38px 0 0 0px, 57px 0 0 0px, 19px 19px 0 0px, 38px 19px 0 5px, 57px 19px 0 0px
    }

    50% {
        box-shadow: 19px -19px 0 5px, 38px -19px 0 5px, 57px -19px 0 0px, 19px 0 0 0px, 38px 0 0 0px, 57px 0 0 0px, 19px 19px 0 0px, 38px 19px 0 0px, 57px 19px 0 5px
    }

    62.5% {
        box-shadow: 19px -19px 0 0px, 38px -19px 0 0px, 57px -19px 0 0px, 19px 0 0 5px, 38px 0 0 0px, 57px 0 0 0px, 19px 19px 0 0px, 38px 19px 0 5px, 57px 19px 0 5px
    }

    75% {
        box-shadow: 19px -19px 0 0px, 38px -19px 0 5px, 57px -19px 0 0px, 19px 0 0 0px, 38px 0 0 0px, 57px 0 0 5px, 19px 19px 0 0px, 38px 19px 0 0px, 57px 19px 0 5px
    }

    87.5% {
        box-shadow: 19px -19px 0 0px, 38px -19px 0 5px, 57px -19px 0 0px, 19px 0 0 0px, 38px 0 0 5px, 57px 0 0 0px, 19px 19px 0 5px, 38px 19px 0 0px, 57px 19px 0 0px
    }
}

/*#endregion*/

/***********************************************************************/
/******************************** %main% ******************************/
/***********************************************************************/

@media (prefers-color-scheme: light) {
    main {
        box-shadow: 0 5px 10px var(--border);
    }
}

/*#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}*/

/***********************************************************************/
/**************************** %skip_to_main% ***************************/
/***********************************************************************/

/*#region Skip to Main Link*/

#skipToMain {
    position: absolute;
    display: inline-block;
    left: 50%;
    transform: translate(-50%, -100%);
    padding: 5px 15px 10px 15px;
    color: black;
    background-color: white;
    z-index: 999;
}

#skipToMain:focus {
    transform: translateX(-50%);
}

/*#endregion*/

.pagination{display:block; width:100%; text-align:center; clear:both;}
.pagination li{display:inline-block; margin:0 2px 0 0;}
.pagination li:last-child{margin-right:0;}
.pagination a, .pagination strong{display:block; padding:8px 11px; border:1px solid; background-clip:padding-box; font-weight:normal;}

a.bttn {
    padding: 8px 11px;
    border: 1px solid;
    display: block;
}

.dual-action-button {
    display: grid;
    grid-template-columns: 1fr auto;
}

.dual-action-button a {
    padding: 8px 11px;
    border: 1px solid;
    text-align: center;
}

.dual-action-button a:nth-of-type(1) {
    padding: 8px 11px;
    border: 1px solid;
}

.dual-action-button a:nth-of-type(2) {
    padding: 8px 11px;
    border: 1px solid;
    margin-left: -1px;
    border-left: none;
}

.divider {
    position: relative;
    text-align: center;
}

.divider span {
    background-color: var(--background);
    padding-inline: 1rem;
}

.divider:before {
    content: '';
    position: absolute;
    width: 100%;
    border-top: 1px solid var(--tertiary);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: -1;
}