.main__header > div:first-of-type button::before,
main .dialog-content-overflow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
main {
    padding: 0;
    font-size: .725rem;
}
main .dialog-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    z-index: 3;
    background: rgba(0,0,0,.5);
    backdrop-filter: blur(5px);
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .175s ease-in-out;
    padding: 1rem;
}
main .dialog-content-container {
    display: flex;
    background: hsla(210, 100%, 56%, .275);
    border: 1px solid hsla(210, 100%, 56%, .75);
    outline: 1px dashed hsla(210, 100%, 56%, .75);
    outline-offset: -4px;
    max-width: 30rem;
    width: 100%;
    max-height: calc(100vh - 2rem);
    transform: scale(0);
    transition: transform .175s ease-in-out;
    position: relative;
}
main .dialog-content-overflow {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
}
main .dialog-content-overflow::before {
    background-image:
    linear-gradient(to right, hsla(210, 100%, 56%, .125) 1px, transparent 1px),
    linear-gradient(to top, hsla(210, 100%, 56%, .125) 1px, transparent 1px);
    background-size: 7px 7px;
    z-index: -1;
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 50%, black calc(100% - 50%), transparent 100%), linear-gradient(to top, transparent 0, black 50%, black calc(100% - 50%), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, black 50%, black calc(100% - 50%), transparent 100%), linear-gradient(to top, transparent 0, black 50%, black calc(100% - 50%), transparent 100%);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    mask-composite: intersect;
}
main .dialog-content-overflow * {
    color: var(--solid-blue);
}
main .dialog-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: hsla(210, 100%, 56%, .125);
    padding: 1rem;
}
main .dialog-header h2 {
    text-transform: none;
    margin: 0 auto;
}
main .dialog-content-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    overflow: auto;
    max-height: calc(30rem - 53px);
}
main .dialog-content-body ol {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
main .dialog-content-body li {
    list-style-type: style;
    list-style-position: inside;
}
main p,
main span {
    line-height: 1.5 !important;
}
.main__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-image: linear-gradient(to right, var(--transparent-primary-purple), transparent)
}
.main__header > div {
    display: flex;
    align-items: center;
    gap: .5rem;
}
.main__header h1 {
    font-size: 1.25rem;
}
.main__header > div:first-of-type button {
    position: relative;
}
.main__header > div:first-of-type button::before {
    background: #fff;
    border-radius: 100vw;
    z-index: -1;
    width: calc(100% - 5px);
    height: calc(100% - 5px);
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}
.main__header > div:last-of-type {
    background: hsla(43, 74%, 49%, .125);
    padding-right: .5rem;
}
.main__header > div:last-of-type img {
    margin-left: -12px;
}
/* Viable screening */
main .viable-screening {
    position: relative;
    height: 15rem;
}
main .viable-screening .br-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: absolute;
    bottom: 50%;
    right: 1.5rem;
    transform: translateY(50%);
}
main .viable-screening button {
    background: var(--transparent-primary-purple);
    outline: 3px solid var(--transparent-accent-purple);
    outline-offset: -6px;
    padding: .275rem;
    border-radius: 100vw;
    position: relative;
}
main .viable-screening button span {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    font-weight: 600;
    font-size: .725rem;
}