:root {
    --primary: #1B0050;
    --secondary: #4493C0;
    --tertiary: #724CBF;
    --background: #D1BDF8;
    --high-contrast: #FFEE00;
    --flex-background: white;
}

body, html {
    margin: 0px;
    padding: 0px;
    font-size: 20px;
    font-family: 'Lato', sans-serif;
}

.mwidth {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0px 30px;
}

/* Accessibility */

.accessibility-font-medium {font-size: 18px !important;}
.accessibility-font-small {font-size: 16px !important;}
.accessibility-font-large {font-size: 22px !important;}
.accessibility-font-verylarge {font-size: 26px !important;}

.accessibility-optn {
    display: inline-block;
    vertical-align: top;
    margin-left: 20px;
    text-align: left;
}

label.access-lbl {
    display: block;
    margin-bottom: 6px;
    font-size: 18px;
}

.header-accessibility-optns {
    text-align: right;
}

.page-background, .page-background-yellow {
    background-color: var(--flex-background);
    box-sizing: border-box;
    padding-top: 30px;
    padding-bottom: 30px;
    opacity: 0.95;
}
.page-background-yellow {background-color: var(--high-contrast);}

p {
    line-height: 1.65;
}
p.txt-purple {
    color: var(--primary);
}
p.large-txt-purple {
    color: black;
}

h3 {color: var(--primary);}

header {
    box-sizing: border-box;
    padding-top: 20px;
    background-color: var(--flex-background);
}

.header-row {
    box-sizing: border-box;
    padding-bottom: 20px;
}

.header-top-grid {
    display: grid;
    grid-template-columns: 440px 1fr;
    column-gap: 40px;
}

img.header-logo {
    width: 100%;
}

.header-nav-wrap {
    background-color: var(--primary);
}

nav.header-nav {
    background-color: var(--primary);
    width: 100%;
    box-sizing: border-box;
}

ul.header-nav-list {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

li.header-nav-item {
    display: inline-block;
    vertical-align: top;
    box-sizing: border-box;
    padding: 20px 0px;
    color: white;
    margin-right: 30px;
}
li.header-nav-item:last-child {
    float: right;
    font-weight: 600;
    margin-right: 0px;
}

a.header-nav-link {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 18px;
}

h1.page-title {
    color: var(--primary);
    font-weight: 900;
    font-size: 40px;
    margin: 0px 0px 20px 0px;
}

h1.purple-box-title, h2.purple-box-name-title {
    background-color: var(--tertiary);
    color: white;
    margin: 0px;
    box-sizing: border-box;
    padding: 20px 20px;
    text-align: center;
    width: 100%;
    font-style: italic;
    border: 2px solid black;
}
h2.purple-box-name-title {
    width: 50%;
    margin-bottom: 20px;
}
h1.purple-title-light {
    background-color: var(--background);
    color: var(--primary);
    border: none;
    margin-top: 30px;
}

.white {
    border-color: white;
    color: white;
}

.section {
    box-sizing: border-box;
    padding: 60px 0px;
}

/* Header accessibility options */

label.access-lbl {
    font-weight: 600;
}

select.access-select {
    font-family: 'Lato', sans-serif;
    box-sizing: border-box;
    padding: 6px;
    font-size: 16px;
    border: 2px solid black;
    border-radius: 4px;
}

/* Welcome Page */

img.welcome-logo-lrg {
    width: 75%;
}

.welcome-photo-wrap {
    text-align: center;
    width: 100%;
    margin: 30px 0px;
}

img.welcome-photo {
    width: 75%;
}

img.home-float {
    float: right;
    box-sizing: border-box;
    margin-left: 30px;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 3px 4px 10px #c5c5c5;
}

/* What we do page */

.team-member {
    height: auto;
    margin-top: 30px;
}

img.team-member-img {
    padding-right: 20px;
    height: 200px;
    clear: left;
}

/* Volunteer Roles Page */

.volunteer-role-row {
    box-sizing: border-box;
    padding: 30px 0px;
}

.volunteer-role-info {
    width: 300px;
    display: inline-block;
    padding-right: 20px;
    vertical-align: top;
}

img.volunteer-role-image {
    width: 30%;
    display: inline-block;
    vertical-align: top;
}

/* Archive */

.archive-top-right p {
    margin: 0px;
}

table.archive-results-table {
    width: 100%;
    text-align: left;
    margin-top: 20px;
    border-collapse: collapse;
}

button.archive-listen, a.archive-download {
    background-color: var(--primary);
    color: white;
    box-sizing: border-box;
    padding: 6px;
    border-radius: 3px;
    border: none;
    font-family: 'Lato', sans-serif;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
}
button.archive-listen {margin-left: 6px;}

tr, th, td {
    box-sizing: border-box;
    padding: 12px;
    border: 1px solid #d9d9d9;
}

tr:nth-child(even) {
    background-color: #efefef;
}

.archive-modal-background {
    background-color: rgba(0,0,0,0.8);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    z-index: 99;
    display: none;
}

.archive-modal-player {
    background-color: white;
    border-radius: 10px;
    z-index: 999;
    position: fixed;
    top: 200px;
    left: 25%;
    width: 50%;
    height: 75%;
    overflow-y: scroll;
    box-sizing: border-box;
    padding: 10px 30px;
    display: none;
    border: 10px solid var(--tertiary);
}

figure {margin-left: 0px;}
figcaption {margin-bottom: 5px; font-weight: 600;}

button.modal-player-close {
    float: right;
    background-color: red;
    color: white;
    box-sizing: border-box;
    padding: 8px 12px;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    border: none;
    position: relative;
    left: 20px;
    border-radius: 5px;
}

.archive-donation-call {
    background: linear-gradient(to right, var(--secondary), var(--primary));
    box-sizing: border-box;
    padding: 30px 0px;
    border-radius: 20px;
    margin-top: 40px;
}

.donation-call-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    column-gap: 50px;
    box-sizing: border-box;
    color: white;
}

img.donation-hands {
    width: 100%;
    position: relative;
    left: -7px;
}

.donation-call-text {
    text-align: left;
    box-sizing: border-box;
    padding: 0px 20px 20px 20px;
}

h2.stacked-header {
    text-transform: uppercase;
    font-weight: 900;
    font-size: 26px;
}
h2.stacked-header span {
    font-size: 46px;
}

a.donation-call-btn {
    background-color: white;
    color: var(--primary);
    font-size: 16px;
    font-weight: 900;
    box-sizing: border-box;
    padding: 8px 12px;
    border-radius: 5px;
    text-decoration: none;
    text-transform: uppercase;
}

/* Footer */

footer {
    width: 100%;
    background-color: var(--primary);
    color: white;
    box-sizing: border-box;
    padding: 30px 0px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    column-gap: 80px;
}

.footer-second-col {
    text-align: right;
}

.footer-contact-group {
    margin-bottom: 6px;
}

img.footer-contact-icon {
    height: 18px;
    position: relative;
    top: 3px;
}

img.footer-logo {
    width: 100%;
}

img.footer-place-icon {float: left; height: 20px;}

a.footer-contact-link {
    font-size: 20px;
    color: white;
    transition: 0.2s;
    text-decoration: none;
}
a.footer-contact-link:hover {
    text-decoration: underline;
}

p.footer-charity-info {
    opacity: 0.95;
}

p.footer-place-info {
    font-size: 18px;
    margin-top: 0px;
}

h4.footer-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0px 0px 10px 0px;
}

/* COVID-19 */

.covid-alert {
    border: 2px solid #856404;
    background-color: #fff3cd;
    box-sizing: border-box;
    width: 100%;
    padding: 30px;
    color: #674d00;
    margin-bottom: 25px;
}

/* END COVID-19 */

/* Media Queries */

@media only screen and (max-width: 1100px)
{
    .archive-modal-player {
        width: 80%;
        left: 10%;
    }
}

@media only screen and (max-width: 990px)
{
    li.header-nav-item:last-child {float: none;}
}

@media only screen and (max-width: 900px)
{
    .volunteer-role-info {width: 100%;}
    img.volunteer-role-image {width: 45%;}
}

@media only screen and (max-width: 880px)
{
    .header-top-grid {grid-template-columns: 1fr; text-align: center;}
    img.header-logo {max-width: 400px; margin: 0 auto;}
    .header-accessibility-optns {
        border-top: 1px solid black;
        margin-top: 20px;
        padding-top: 20px;
    }
    .accessibility-optn {
        display: inline-block;
        vertical-align: top;
        margin: 10px;
    }
    .donation-call-grid {grid-template-columns: 1fr;}
    img.donation-hands {display: none;}
    span.table-instructions {display: block; margin-top: 10px;}
}

@media only screen and (max-width: 700px)
{
    img.footer-logo {display: none;}
    .footer-grid {grid-template-columns: 1fr;}
    .archive-modal-player {
        width: 100%;
        left: 0%;
        height: 100%;
        top: 0px;
    }
    .archive-top-wrap {grid-template-columns: 1fr;}
    .donation-call-text {text-align: center;}
    .donation-call-grid {
        column-gap: 0px;
        padding: 0px 20px;
    }
    th, td {font-size: 16px;}
}

@media only screen and (max-width: 475px)
{
    label.access-lbl {display: block;}
    select.access-select {margin: 0px; margin-top: 5px;}
}