html {
    --brown: #2e180a;
    --tan: #5a3925;
    --orange: #f07e2b;
    --burgandy: #621318;
    --gray: #ccc;
    --gradient: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    overflow-x: hidden;
    font-size: 19px;
    font-family: 'Nunito Sans', sans-serif;
}

body {
    font-size: inherit;
    font-family: inherit;
    color: var(--brown);
}

p {
    margin: 0;
}

p+p {
    margin-top: .75em;
}

@media (max-width: 990px) {
    html {
        font-size: 16px;
    }
}

@media (max-width: 500px) {
    body {
        overflow-x: hidden;
    }
}


/*--------------------------------------------------------
    Headings
--------------------------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'EB Garamond', serif;
    margin: 0 0 .75em;
    padding: 0;
    /* text-transform: capitalize; */
    font-weight: bold;
    color: var(--burgandy);
}

h1 {
    font-size: 50px;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 26px;
}

h5 {
    font-size: 23px;
}

h6 {
    font-size: 21px;
}

@media (max-width: 990px) {
    h1 {
        font-size: 40px;
    }
    h2 {
        font-size: 35px;
    }
    h3 {
        font-size: 31px;
    }
    h4 {
        font-size: 27px;
    }
    h5 {
        font-size: 23px;
    }
    h6 {
        font-size: 21px;
    }
}

@media (max-width: 990px) {
    html {
        font-size: 17px;
    }
    h1 {
        font-size: 36px;
    }
    h2 {
        font-size: 31px;
    }
    h3 {
        font-size: 28px;
    }
    h4 {
        font-size: 24px;
    }
    h5 {
        font-size: 21px;
    }
    h6 {
        font-size: 19px;
    }
}


/*--------------------------------------------------------
    Links
--------------------------------------------------------*/

a {
    color: var(--orange);
    transition: color .125s ease-in-out;
    text-decoration: underline;
}

a:hover,
a:focus {
    color: var(--burgandy);
}

a.button-link,
input[value="Join mailing list"] {
    text-transform: uppercase;
    display: inline-block;
    background-color: var(--orange);
    color: white;
    text-align: center;
    padding: .8em 2.5ch;
    text-decoration: none;
    line-height: 1;
    transition: background .125s ease-in-out, color .125s ease-in-out;
    font-weight: bold;
    text-shadow: none;
}

.button-link:not(:first-child) {
    margin-top: 2em;
}

.button-link:not(:last-child) {
    margin-bottom: 2em;
}

a.button-link:hover,
a.button-link:focus,
[value="Join mailing list"]:hover,
[value="Join mailing list"]:focus {
    background-color: var(--burgandy);
}

#mms-main a {
    text-decoration: none;
}


/*--------------------------------------------------------
    Objects
--------------------------------------------------------*/

.offscreen {
    /* This class allows an element to be read by a screenreader without appearing in the viewport  */
    position: absolute;
    left: -666vw;
}


/*  Wrappers
    *.wrapper acts as a more symantic stand in for <container><row><col-md-12></col-md-12></row></container> in sections of this build that don't require stacking columns 
 */

.wrapper {
    margin-right: auto;
    margin-left: auto;
    max-width: 100%;
    position: relative;
    height: inherit;
    padding-left: 15px;
    padding-right: 15px;
}

.full-width {
    /* Make an element span the width of the viewport */
    --side-margin: calc((100vw - var(--page-width) + 13px) / -2);
    /* 13px to compensate for width of scrollbar */
    position: relative;
    left: var(--side-margin);
    right: var(--side-margin);
    width: calc(100vw + 13px);
}

#gm-canvas .full-width {
    left: unset;
    right: unset;
    width: unset;
}

@media (min-width:768px) {
     :root {
        --page-width: 100%;
    }
}

@media (min-width:991px) {
     :root {
        --page-width: 970px;
    }
    .wrapper {
        width: 970px;
    }
}

@media (min-width:1201px) {
     :root {
        --page-width: 1170px;
    }
    .wrapper {
        width: 1170px;
    }
}

.row-background {
    position: relative;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.row-background::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc((100vw - var(--page-width) + 13px) / -2);
    right: calc((100vw - var(--page-width) + 13px) / -2);
    display: block;
    background-color: var(--tan);
    z-index: -1;
}

.row-background *:not(input):not(#mycanvas *) {
    color: white;
}

#homepage-main .row-background h2,
#subpage-main .row-background h2 {
    font-size: 60px;
}

@media (max-width: 990px) {
    .container,
    .wrapper {
        /* Extra wiggle room at a breakpoint that needs it  */
        width: 100%;
    }
    .full-width {
        --side-margin: -15px;
        left: var(--side-margin);
        right: var(--side-margin);
        width: calc(100vw + 30px);
    }
    .row-background::before {
        left: 0;
        right: 0;
    }
}


/*--------------------------------------------------------
    Header
--------------------------------------------------------*/

body,
header,
footer,
main,
header+nav {
    font-family: inherit !important;
    font-size: inherit !important;
    /* Prevent MMS pages with hard-coded fonts from overwriting this  */
}

header {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    padding: .75em 0;
    align-items: center;
}

header>section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

@media (min-width: 991px) {
    header>section {
        margin-left: 2ch;
    }
}

.fcia-logo {
    max-width: 100%;
    height: auto;
}

header .fcia-logo {
    width: 315px;
}

.header-links {
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: .9rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 10px;
    font-weight: bold;
}

.header-links li+li {
    margin-left: 1ch;
}

.header-links li:last-child {
    font-weight: initial;
}

.header-links a {
    color: var(--tan);
}

.header-links li:not(:last-child) a {
    padding-right: 1ch;
    position: relative;
    border-right: 1px solid var(--tan);
    white-space: nowrap;
}

@media (max-width: 990px) {
    .org-name {
        transform: translateX(-10%);
    }
}

@media (max-width: 600px) {
    header .wordmark {
        transform: scale(1.3) translateY(-10%);
    }
    header .org-name {
        display: none;
    }
}

@media (max-width: 550px) {
    header .wordmark {
        transform: scale(1.5) translateY(-14%);
    }
}


/* --- Search ---  */

.searchbox {
    border: 1px solid var(--gray);
    max-width: 100%;
    position: relative;
    width: 310px;
    height: 40px;
    transition: border .125s ease-in-out;
    overflow: hidden;
    background: white;
}

.searchbox::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    border: 0;
    background-image: url(../images/search-icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-color: white;
    background-size: 1rem;
    padding: 0 1.5ch;
    z-index: 1;
}

.searchbox:hover,
.searchbox:focus,
.searchbox:focus-within {
    border: 1px solid var(--burgandy);
}

.search-input {
    border: none;
    padding: .5em 3ch;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.search-input:focus {
    outline: none;
}

.search-button {
    display: none;
}

@media (max-width: 767px) {
    .header-links [data-toggle="modal"] {
        /* Member Login button */
        display: none;
    }
}


/*--------------------------------------------------------
    Desktop Navigation
--------------------------------------------------------*/

header+nav {
    position: relative;
}

header+nav::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -666vw;
    right: -666vw;
    background: var(--tan);
    z-index: -1;
}

#nav_menu {
    position: relative;
    z-index: 102;
    padding: 0;
}

#nav_menu>ul {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

#nav_menu>ul::before,
#nav_menu>ul::after {
    content: none;
}

#nav_menu li {
    position: relative;
}

#nav_menu>ul>li>a {
    color: white;
    transition: background .125s ease-in-out, color .125s ease-in-out;
    position: relative;
    padding: .8em 1.75ch;
    background: transparent;
    text-transform: capitalize;
    border-left: 1px solid #75594a;
}

#nav_menu>ul>li:last-child>a {
    border-right: 1px solid #75594a;
}

#nav_menu a {
    text-decoration: none;
    background: transparent;
    font-size: 16px;
    transition: background .125s ease-in-out, color .125s ease-in-out;
}

#nav_menu a:hover,
#nav_menu a:focus,
#nav_menu .nav .open>a,
#nav_menu .nav .open>a:focus,
#nav_menu .nav .open>a:hover {
    background: var(--burgandy);
    color: white;
}

#nav_menu .caret {
    margin-left: .5ch;
}

#nav_menu .dropdown-menu {
    /* Dropdown menu  */
    font-size: inherit;
    padding: 0.5em 0;
    border: none;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

#nav_menu .dropdown-menu:not(.men-level-):not(.men-level-0) {
    top: 0;
}

#nav_menu .dropdown-menu a {
    padding: .5em 20px;
}

@media (max-width: 990px) {
    #nav_menu>ul>li>a {
        padding: .8em 1ch;
    }
}

@media (max-width: 870px) {
    b.caret {
        display: none;
    }
}

@media (max-width: 800px) {
    #nav_menu a {
        font-size: 14px;
    }
}


/* Mobile menu trigger  */

nav .mobileMenuTrigger {
    background: none;
    border: none;
    padding: 10px 0;
    color: white;
    transition: color .125s ease-in-out;
    display: inline-flex;
}

nav .mobileMenuTrigger:hover,
nav .mobileMenuTrigger:focus {
    color: var(--orange);
    outline: none;
}

@media (min-width: 768px) {
    nav .mobileMenuTrigger {
        display: none;
    }
}

@media (max-width: 767px) {
    header+nav {
        text-align: right;
    }
}


/* Login modal */

.modal-open .modal {
    display: flex;
}

.modal-dialog {
    max-width: 100%;
    font-size: 16px;
    margin: auto;
    width: 300px;
}

.modal-content {
    margin-top: 20px;
    border-radius: 0;
}

.modal-header,
.modal-body {
    padding: .5rem 1rem;
}

.modal-header .close {
    opacity: 1;
    z-index: 1;
    position: relative;
}

.modal h2 {
    font-size: 24px;
}

.modal-header,
.modal-body {
    padding: 1em 2ch;
}

.modal input[name="Username"],
.modal input[name="Password"] {
    width: 100%;
    padding-left: .25em;
    padding-right: .25em;
    margin-bottom: 0.5em;
    height: 2em;
    border: 1px solid var(--gray);
}

.modal a {
    display: block;
    margin-bottom: .5em;
}


/*--------------------------------------------------------
    Mobile navigation
--------------------------------------------------------*/

#mobileMenuWrapper {
    position: fixed;
    background: white;
    top: 0;
    bottom: 0;
    z-index: 50;
    overflow-y: auto;
    overflow-x: hidden;
    left: -120%;
    width: 300px;
    box-shadow: 0 3px 14px -2px rgba(0, 0, 0, 0.4);
    transition: left .125s ease-in-out;
}

#mobileMenuWrapper.open {
    left: 0;
}

#mobileMenuWrapper ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

#mobileMenuWrapper li {
    display: block;
    margin-bottom: .7rem;
}

#mobileMenuWrapper a {
    background-color: transparent;
    text-decoration: none;
    color: var(--tan);
}

#mobileMenuWrapper a.mToggle {}

#mobileMenuWrapper .mDropdown {
    display: none;
    padding-top: .7rem;
    color: var(--orange);
}

#mobileMenuWrapper .mDropdown.open {
    display: block;
}

#mobileMenuWrapper .mDropdown a {
    color: var(--light-green);
}

#triggerClose {
    font-size: 22px;
    cursor: pointer;
    text-align: right;
}

#mobileMenuWrapper #mobile-menu {
    overflow: auto;
    padding: 1rem;
}


/*--------------------------------------------------------
    Main
--------------------------------------------------------*/

#subpage-main,
#mms-main {
    padding-top: 3rem;
    min-height: calc(100vh - 123px - 50px - 231px);
}


/* main:not(#homepage-main) .row+.row {
    margin-top: 3rem;
} */

#homepage-main .row:not(#join-row, #what-is-row, #shop-row, #slideshow-row) {
    position: relative;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

#subpage-main .row:not(:last-child) {
    margin-bottom: 1rem;
}

main:not(#homepage-main)+footer {
    margin-top: 3rem;
}

#event-row>.column,
#member-feed-row>.column,
#affiliate-feed-row>.column {
    /* Centered rows  */
    text-align: center;
}

@media (max-width: 990px) {
    main:not(#homepage-main) {
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {
    main:not(#homepage-main) {
        margin-top: 1rem;
    }
    #homepage-main {
        overflow-x: hidden;
        /* display: flex; */
    }
}


/* Slideshows defaults */

.carousel {
    font-size: 20px;
}


/* Slideshow row  */

#homepage-main #slideshow-row {
    padding-top: 0;
    padding-bottom: 0;
}

#slideshow-row .item::before {
    /* Gradient overlay  */
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient);
}

#slideshow-row img {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
}

#slideshow-row .carousel-caption {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    max-width: 1170px;
    padding-left: 15px;
    padding-right: 15px;
    align-items: center;
    text-align: left;
    line-height: 1.1;
    display: block;
}

#slideshow-row .caption-text {
    font-size: 60px;
    font-weight: bold;
    font-family: 'EB Garamond', serif;
    max-width: 750px;
}

#slideshow-row .alt-text {
    margin-top: 30px;
    display: flex;
}

#slideshow-row .alt-text .button-link {
    margin-left: auto;
}

#slideshow-row .carousel-control {
    display: none;
}

#slideshow-row .carousel-indicators {
    bottom: 0;
    padding: 0;
    margin-bottom: 0;
    left: calc((var(--side-margin) * -1) + 15px);
}

@media (max-width: 1200px) {
    #slideshow-row .caption-text {
        font-size: 50px;
    }
}

@media (max-width: 990px) {
    #slideshow-row .caption-text {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    #slideshow-row .carousel-caption {
        padding: 2rem;
        text-align: left;
        line-height: 1.2;
    }
    #slideshow-row .caption-text {
        font-size: 30px;
    }
    #slideshow-row .alt-text {
        font-size: 1rem;
        margin-top: 5px;
    }
}

@media (max-width: 500px) {
    #slideshow-row .caption-text {
        font-size: 1rem;
    }
    #slideshow-row .alt-text {
        font-size: 16px;
    }
}


/* Events row  */

.events-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1em 30px;
    margin-bottom: 2rem;
}

.event-item {
    display: flex;
    flex-direction: column;
    text-align: left;
    font-size: 16px;
    color: var(--tan);
}

.event-item img {
    margin-bottom: 1em;
}

.event-item h3 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 24px;
    font-weight: bold;
    text-align: left;
    text-transform: none;
}

.event-item time:not(:empty),
.event-item .where,
.event-item .read-more {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 20px;
}

.event-item time:first-child:not(:empty)::before {
    content: 'When';
    font-weight: normal;
    text-align: right;
}

.event-item time:nth-child(2):not(:empty)::before {
    content: '';
}

.event-item .date {
    font-weight: bold;
}

.event-item .where {
    font-weight: bold;
    margin-bottom: 1em;
}

.event-item .end:not(:empty)::before {
    content: ' - ';
}

.event-item .where:not(:empty)::before {
    content: 'Where';
    font-weight: normal;
    text-align: right;
}

.event-item .read-more {
    font-weight: bold;
}

.event-item .read-more::before {
    content: '';
}

.button-list {
    display: inline-flex;
    list-style: none;
    margin: auto;
    align-items: center;
    padding: 0;
    /* --orange: #2e180a80;
    --burgandy: #62131880; */
}

.button-list li {
    margin: 0 1ch 1rem;
}


/* .button-list .button-link {
    background-image: url('../images/background1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
} */


/* Join row  */

#join-row {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

#join-row::before,
#shop-row::before {
    background: var(--gradient);
    display: block;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#join-row::before {
    background-image: url('../images/stages-of-producing-chocolate.jpg');
}

@media (min-width: 768px) {
    #join-row>.column:first-child::before,
    #shop-row>.column:first-child::before {
        content: '';
        position: absolute;
        top: -4rem;
        bottom: -4rem;
        left: -666vw;
        right: -666vw;
        display: block;
        background: var(--gradient);
        z-index: -1;
    }
}

@media (max-width: 767px) {
    #join-row::before,
    #shop-row::before {
        background-color: rgb(0 0 0 / 50%);
        background-blend-mode: multiply;
    }
}

/* what is row */

#what-is-row {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* shop row */

#shop-row {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* News column */

.news-item+.news-item {
    margin-top: 1rem;
}

.news-item *:not(:last-child) {
    margin-bottom: .25em;
}

.news-item h3 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 23px;
    font-weight: bold;
}

.news-item time {
    display: block;
    font-size: 17px;
}


/* Contact form column  */

#contact-form-column form {
    margin-top: 2rem;
}

#contact-form-column input[type="email"],
#contact-form-column input[type="text"] {
    display: block;
    border: 1px solid var(--gray);
    padding: .5em 1.5ch;
    width: 100%;
}

#contact-form-column input:not([type="submit"]) {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

input[value="Join mailing list"] {
    margin-top: 1.5rem;
    border: none;
}

@media (max-width: 720px) {
    #news-and-signup-row>.column {
        width: 100%;
    }
    #news-and-signup-row>.column:first-child {
        margin-bottom: 2rem;
    }
}


/* Shop row  */

#shop-row::before {
    background-image: url('../images/shop-background.jpg');
}


/* Homepage full-width background sections */

@media (max-width: 767px) {
    main:not(#mms-main) .row-background {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    #join-row>.column:first-child::before,
    #shop-row>.column:first-child::before {
        top: -1rem;
        bottom: -1rem;
    }
}


/* Model and News row */

#impact-model div {
    display: grid;
    grid-template-columns: 75px 1fr;
    gap: 2ch;
    align-items: center;
}

#impact-model div+div {
    margin-top: .5rem;
}

#impact-model p:last-child {
    margin-bottom: 0;
}


/* Grant row */

.grant-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2ch;
    align-items: stretch;
}

.grant-grid>* {
    max-width: 100%;
    padding: 1rem 9ch;
    background: white;
    max-height: 180px;
    border-radius: 1rem;
}

@media (max-width: 800px) {
    .grant-grid a {
        display: contents;
    }
    .grant-grid img {
        max-width: 100%;
        padding: 1rem 9ch;
        background: white;
        max-height: 180px;
        border-radius: 1rem;
        width: 350px;
    }
}


/* Member feed and Affiliate feed rows*/

#homepage-main [id*="-feed-row"]+[id*="-feed-row"] {
    padding-top: 0;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 2rem 3vw;
    align-items: center;
}

.members-grid img {
    max-height: 170px;
    display: block;
    margin: auto;
    max-width: 100%;
    z-index: 2;
}


/*--------------------------------------------------------
    Footer
--------------------------------------------------------*/

#homepage-main+footer {
    margin-top: 0;
}

footer {
    display: grid;
    align-items: center;
    color: white;
    gap: 1rem 30px;
    padding-top: 4rem;
    padding-bottom: 4rem;
    grid-template-columns: repeat(auto-fit, minmax(305px, 1fr));
}

footer::before,
#footer-credits::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -666vw;
    right: -666vw;
    background: var(--tan);
    z-index: -1;
}

footer a:not(.social-wrapper a) {
    color: white;
    text-decoration: underline;
    transition: color .125s ease-in-out;
}

footer a:not(.social-wrapper a):hover,
footer a:not(.social-wrapper a):focus {
    color: var(--pink);
    text-decoration: underline;
}

footer span {
    display: block;
}

footer .fcia-logo {
    width: 422px;
    margin-bottom: 2rem;
}

.social-wrapper {
    padding: 0;
    margin-top: 2rem;
    list-style: none;
    display: flex;
    flex-direction: row;
}

.social-wrapper li:not(:last-child) {
    margin-right: 1ch;
}

.social-wrapper a,
.social-wrapper a:hover,
.social-wrapper a:focus {
    text-decoration: none;
}

#footer-credits {
    padding: 1.5em 2ch;
    color: white;
    text-align: center;
}

#footer-credits::before {
    background: var(--brown);
}

#footer-credits a:hover,
#footer-credits a:focus {
    color: white;
}

@media (max-width: 990px) {}


/*--------------------------------------------------------
    MMS Styles
--------------------------------------------------------*/


/* MMS Member Menu icons */

@media (min-width: 1200px) {
    .nav-tabs li.dropdown {
        width: 190px;
    }
}

@media (min-width: 990px) and (max-width: 1200px) {
    .nav-tabs li.dropdown {
        width: 155px;
    }
}

@media (min-width: 767px) and (max-width: 990px) {
    .nav-tabs li.dropdown {
        width: 120px;
    }
}


/* News Archive styles per message #43 on https://mmsusersupport.com/users/request_detail.php?rid=223000180&internal=Y# ticket: 189257 */

.month-header {
    font-size: 30px !important;
}

.article-headline {
    font-size: 17px !important;
}

.article-HTML {
    font-size: 17px !important;
}

.result-headline {
    font-family: 'EB Garamond', serif !important;
    margin: 5px 0 !important;
    padding: 0 15px;
    font-weight: bold;
    color: var(--burgandy);
    display: inline-block;
    font-size: 30px !important;
}

#searchButton,
#clearSearch,
#returnToSearch {
    text-transform: uppercase;
    display: inline-block;
    background-color: var(--orange);
    color: white;
    text-align: center;
    padding: .8em 2.5ch;
    text-decoration: none;
    line-height: 1;
    transition: background .125s ease-in-out, color .125s ease-in-out;
    font-weight: bold;
    text-shadow: none;
    font-family: 'Nunito Sans', sans-serif !important;
    border-radius: 0;
    /* font-size: 19px !important; */
    border: none;
}

#searchButton.ui-state-hover,
#clearSearch.ui-state-hover,
#returnToSearch.ui-state-hover {
    background: var(--burgandy);
}

#searchButton>span,
#clearSearch>span,
#returnToSearch>span {
    all: revert;
}



/* six pack admin menu buttons fix*/

#ultra_button_block.row .col-md-2 #ultra-button {
    padding: 15px !important;
    background-color: #F3F3F3 !important;
    color: var(--orange) !important;
}

#ultra_button_block.row .col-md-2 #ultra-button:is(:hover, :focus) {
    color: var(--burgandy) !important;
}

#ultra_button_block.row {
    display: flex;
    justify-content: space-between;
}

#ultra_button_block.row .col-md-2 {
    width: 200px;
}

@media (max-width: 1201px) {
    #ultra_button_block.row #ultra-button {
        min-height: 190px;
    }
}

@media (max-width: 900px) {
    #ultra_button_block.row {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }
}

#ultra_button_block.row::before, #ultra_button_block.row::after {
    display: none;
}

/* members menu */

#member_menu_wrap_5 .navbar-default .navbar-nav>li>a {
    color: var(--orange);
}

#member_menu_wrap_5 .navbar-default .navbar-nav>li>a:is(:hover, :focus) {
    color: var(--burgandy);
}


/* Member Database buttons */

#members_table_mlist_wrapper #members_table_mlist_filter {
    margin-top: 15px;
}

#members_table_mlist_wrapper .table_add_member {
    margin-top: 4px;
    background-color: #621318;
    border: none;
    border-radius: 8px;
    color: white;
    padding: 16px 32px;
    font-size: 16px;
}