@import url("/custom-colors.css");

:root{
    --body-text-size: 14px;
    --body-text-color: #252525;
    --content-spacing: 1rem;
}

body{
    display: flex;
    font-family: 'Open Sans';
    color: var(--body-text-color);
    font-size: var(--body-text-size);
    background-color: var(--light-minor-accent);
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

a{
    color: var(--main-accent);
    text-decoration: none;
}
a:hover{
    color: var(--minor-accent);
    text-decoration: none;
}

.main-content a{
    /* text-decoration: underline; */
    font-weight: bold;
    transition: .4s;
}


.skip{display:none;}

.policy-banner {
    position: fixed;
    z-index: 100;
    bottom: 40px;
    left: 10%;
    right: 10%;
    width: 80%;
    padding: 5px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #eee;
    border-radius: 5px;
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}

#main-container.container{
    background-color: var(--main-background);
    padding: 0;
}

.main-content .section{
    padding: var(--content-spacing) 0;
}

.main-content{
    padding: var(--content-spacing);
    background-color: var(--main-background);
}
.main-content .page-desc{
    margin: 0;
    padding: 0;
}
.main-content .internal-menu{
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: var(--content-spacing);
    padding: var(--content-spacing) 0;
}
.main-content .internal-menu-label label{
    font-size: 0.8rem;
    font-weight: normal !important;
    font-style: italic;
}

.main-content .internal-menu select{
    width: 100%;
}

#frmMain{
    width: 100%;
}



/* global styles*/

h1{
    font-size: 1.75rem;
    text-align: center;
    color: var(--dark-minor-accent);
}
h2{
    font-size: 1.2rem;
    font-weight: bold;
    margin:0;
    padding:0;
}
.myrec-flex-col h1,
.myrec-flex-col h2{
    margin: 0;
    padding: 0;
}
.bold{font-weight: bold;}

.myrec-style-btn{
    display: flex;
    align-items: center;
    justify-content: center;
}

.myrec-style-btn a{
    display: block;
    font-weight: 500;
    padding: .25rem 0.5rem;
    transition: .4s;
}
.myrec-style-btn.dark a, .myrec-style-btn.dark a:visited{
    color: white;
    background-color: var(--main-accent);
}
.myrec-style-btn.dark a:hover, .myrec-style-btn.dark a:focus, .myrec-style-btn.dark a:active{
    background-color: var(--minor-accent);
}
.myrec-style-btn.light a{
    color: var(--main-accent);
    background-color: var(--light-minor-accent);
}
.myrec-style-btn.light a:hover, .myrec-style-btn.light a:visited, .myrec-style-btn.light a:focus, .myrec-style-btn.light a:active{
    background-color: var(--highlight);
}

.myrec-style-list{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn{
    font-weight: bold;
    font-size: var(--body-text-size);
    background-color: var(--main-background);
    border: 1px solid var(--main-accent);
    color: var(--main-accent);
}
.btn:hover{
    color: var(--main-background);
    background-color: var(--minor-accent);
}
.btn.btn-light{
    background-color: transparent;
    color: var(--main-background);
    border-color: var(--main-background);
    text-decoration: none;
}
.btn.btn-primary{
    background-color: var(--minor-accent);
    border: 1px solid var(--main-accent);
    color: var(--main-background);
}

.btn.btn-primary:hover {
    background-color: var(--main-accent); 
}


.btn.btn-secondary{
    background-color: transparent;
    border: 1px solid var(--main-accent);
    color: var(--main-accent);
}
.btn.btn-secondary:hover{
    color: var(--minor-accent);
    border-color: var(--minor-accent);
}

.btn.small{
    padding: .25rem .5rem;
}

.center{
    text-align: center;
}

.fltRight{
    float: right;
    padding: 0 0 2rem 2rem;
    border: none !important;
}


.section{
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--content-spacing);
}
.section.full-width{
    background: var(--main-gradient);
    color: var(--main-background);
}

.section.full-width a, .section.full-width a:visited{
    color: var(--highlight);
    font-weight: bold;
    text-decoration: underline;
    transition: 0.4s;
}
.section.full-width a:hover, .section.full-width a:focus, .section.full-width a:active{
    color: var(--main-background);
    text-decoration: none;
    transition: 0.4s;
}
.section.internal-menu{
    width: 75%;
    margin: 0 auto;
    text-align: center;
    gap: .5rem;
}
.section.internal-menu .internal-menu-label{
    font-size: 0.9rem;
    font-style: italic;
    color: #898989; /* HL color */
}
.myrec-flex-row{
    display: flex;
    flex-direction: column;
    gap: var(--content-spacing);
    align-items: center;
}

.gap-0{gap: 0 !important;}

.myrec-flex-row > *{
    flex: 1;
    width: 100%;
    align-items: center;
    gap: var(--content-spacing);
    display: flex;
    flex-direction: column;
    text-align: center;
}

.myrec-flex-col{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.text-standout{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background-color: var(--highlight);
    padding: 0.5rem;
}
.text-standout a{
    font-weight: bold;
    color: var(--main-accent);
    text-decoration: underline;
}
.text-standout a:hover{
    text-decoration: none;
    color: var(--minor-accent);
}

.text-standout.dark a:hover{
    text-decoration: none;
    color: var(--highlight);
}

.text-standout.dark a.btn:hover{
    background-color: var(--main-accent);
    color: white;
}

.text-standout.dark{
    background-color: var(--minor-accent);
    color: var(--main-background);
}

.form-error{
    background-color: var(--warning);
    color: white;
    padding: 0.5rem;
    text-align: center;
    width: 100%
}

.form-inline{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
}

.form-inline input[type="radio"]{
    margin-right: 0.5rem;
}
.form-inline label{
    margin-right: 1rem;
}

/* home page specific */

#page-content .index-content{
    display: flex;
    flex-direction: column;
    gap: var(--content-spacing);
}

#page-content .index-content .section:first-child{
    padding: var(--content-spacing) 0 0 0;
}

/* alerts */

#public-alert-group{
    width: 100%;

}

.public-alert{
    padding: .5rem;
    background-color: var(--warning);
    color: var(--main-background);
    font-weight: 600;
    font-size: 1.25rem;
    text-align: center;
    border-top: 1px solid var(--main-background);
    line-height: 1.75rem;
}

.public-alert:first-child{
    border: none;
}

/* HEADER */

header .siteName{
    background-color: var(--main-accent);
    color: var(--main-background);
    font-size: 1.1rem;
    padding: .25rem 0;
    text-align: center;
}

header .banner img{
    width: 100%;
}

/* Main Navigation */

nav#myrec-main-nav{
    background: var(--main-gradient);
    padding: 0;
    display: none;
}

nav#myrec-main-nav .navbar-nav{
    flex-direction: row;
    width: 100%;
    align-items: stretch;
    text-align: center;
    justify-content: space-between;

}

nav#myrec-main-nav .navbar-nav .nav-item.dropdown .dropdown-toggle::after,
nav#myrec-mobile-nav .dropdown-toggle::after{
    content: none;
}

nav#myrec-main-nav .nav-item{
    border-right: 1px solid var(--main-background);
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
}

nav#myrec-main-nav .nav-item:last-child{
    border-right: none;
}

nav#myrec-main-nav .nav-item > a{
    color: var(--main-background);
    text-decoration: none;
    font-weight: 500;
    width: 100%;
    padding: 0.5rem 0;
    background-color: transparent;
    transition: 0.8s background-color;
}
nav#myrec-main-nav .nav-item > a.show{
    background-color: var(--main-accent);
}

nav#myrec-main-nav .nav-item > a:hover{
    background-color: var(--main-accent);
}

nav#myrec-main-nav .navbar-nav .dropdown-menu{
    position: absolute;
    background-color: var(--main-accent);
    margin: 0;
    padding: 0;
    border-radius: 0 0 1em 1em;
    overflow: hidden;
}
.dropdown-container{
    display: flex;
    flex-direction: column;
}
nav#myrec-main-nav .navbar-nav .dropdown-menu li a{
    color: var(--main-background);
    padding: 0.5em 1em;
    box-sizing: border-box;
    display: block;
    background-color: transparent;
    font-size: var(--body-text-size);
}
nav#myrec-main-nav .navbar-nav .dropdown-menu li a:hover{
    background-color: var(--minor-accent);
}

/** MOBILE MENU **/

nav#myrec-mobile-nav{
    background: var(--main-accent);
}

nav#myrec-mobile-nav ul.navbar-nav{
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}

nav#myrec-mobile-nav > ul.navbar-nav i{
    font-size: 1.5rem;
    color: var(--main-background);
}

nav#myrec-mobile-nav ul.mobile-menu{
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

nav#myrec-mobile-nav ul.mobile-menu > li{
    display: flex;
    flex-direction: column;
    padding: .5rem 1rem;
    border-color: var(--highlight);
    border-width: 1px 0 0 0;
    border-style: solid;
}

nav#myrec-mobile-nav ul.mobile-menu > li:has(.show){
    background-color: var(--minor-accent);
}

nav#myrec-mobile-nav ul.mobile-menu > li > a{
    width: 100%;
    color: var(--main-background);
}

nav#myrec-mobile-nav ul.mobile-menu > li > a.dropdown-toggle:after{
    content: '\25bc';
    border: none;
    margin: 0 0 0 7px;
    vertical-align: middle;
    font-size: 8px;
}

nav#myrec-mobile-nav ul.mobile-menu > li > a.dropdown-toggle.show:after{
    content: '\25b2';
    border: none;
    margin: 0 0 0 7px;
    vertical-align: middle;
    font-size: 8px;
}

nav#myrec-mobile-nav ul.mobile-menu-submenu{
    width: 100%;
    position: relative;
    background-color: transparent;
    border: none;
    border-radius: 0;
    margin: .5rem 0 0 0;
    padding: 0;
}

nav#myrec-mobile-nav ul.mobile-menu-submenu > li{
    padding: 0;
    margin: 0;
}

nav#myrec-mobile-nav ul.mobile-menu-submenu > li > a{
    width: 100%;
    color: var(--main-background);
    font-size: 14px;
}
nav#myrec-mobile-nav ul.mobile-menu-submenu > li > a:before{
    content: '\2015';
    margin: 0 10px 0 0;
}

nav#myrec-mobile-nav .nav-item{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav#myrec-mobile-nav.navbar{
    padding: 0;
}

nav#myrec-mobile-nav .mobile-menu-toggle{
    flex: 100%;
    color: var(--main-background);
}

/* register now link area under navigation */

.linkStandout{
    display: none;
}

/* PAGE CONTENT */

#page-content{
    display: flex;
    flex-direction: column;

}

/* home page icons */

#home-page-icons{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1em;
    align-items: flex-start;
}
#home-page-icons .home-page-icon{
    display: flex;
    flex: 0 0 30%;
    text-align: center;
    flex-direction: column;
}
#home-page-icons .home-page-icon a, #home-page-icons .home-page-icon a:visited{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--main-accent);
    transition: 0.4s;
}

#home-page-icons .home-page-icon a:hover{
    color: var(--minor-accent);
}

#home-page-icons .home-page-icon .icon{
    font-size: 40px;
}

#home-page-icons .icon-label{
    font-weight: 600;
    font-size: 13px;
}

/* announcements */

#announcements ul{
    margin: 0;
    padding: 0 0 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* home page photos */

#home-page-photos .bucket{
    display: flex;
    flex-direction: column;
    background-color: var(--highlight);
    gap: 1rem;
    padding: 0.75rem;
    text-align: center;
    align-items: center;
}
#home-page-photos .bucket-image{
    width: 100%;
}
#home-page-photos .bucket-image img{
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
}

#home-page-photos .bucket-bottom{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    gap: 1rem;
}

#home-page-photos .bucket-desc{
    display: -webkit-box;
    -webkit-line-clamp: var(--line-clamp, 4);
    -webkit-box-orient: vertical;
    word-break: var(--word-break, 'none');
    overflow: hidden;
    hyphens: none;
    text-align: var(--align, left);
    font-size: 0.9rem;
    text-align: center;
}

#home-page-photos .bucket .bucket-button a:hover{
    background-color: var(--minor-accent);
}

#home-page-photos .bucket .bucket-button:empty{
    display: none;
}


#home-page-photos .home-page-photos-list{
    gap: var(--content-spacing);
    justify-content: center;
}
#home-page-photos .home-page-photos-list .list-photo{
    gap: var(--content-spacing);
    width: 70%;
    min-width: 150px;
}
#home-page-photos .home-page-photos-list .list-image{
    border: 2px solid var(--text-accent);
    border-radius: 5px;
}

#home-page-photos .home-page-photos-list .list-image img{

}

/* featured sponsors */

#featured-sponsors a{
    text-decoration: none;
    font-weight: normal;
}

/* FOOTER */

footer{
    border-top: 30px solid var(--main-accent);
}
footer a{
    color: #C4C0FB;
    text-decoration: underline;
    transition: 0.2s;
}
footer a:hover{
    color: white;
    text-decoration: none;
    transition: 0.2s;
}
#footer-top{
    background-color: #202020;
    color: #cbcbcb;
    border-top: 10px solid #898989;
    padding: var(--content-spacing);
}
#footer-top .footer-group{
    align-items: stretch;
    text-align: left;
    gap: var(--content-spacing);
}

#footer-top ul{
    padding: 0 0 0 15px;
    margin: 0;
    list-style-type: none;
}

#footer-top h3{
    font-size: 18px;
    font-weight: bold;
    border-bottom: 1px solid #cbcbcb;
    margin: 0;
    padding: 0 0 0.5rem 0;
}

#footer-top h3 a{
    text-decoration: none;
}

#footer-top .footer-socials{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

/** SPONSORS AREA **/

#footer-slider{
    text-align: center;
    /* height: 190px; */
}

#footer-slider .footer-slider-image img{
    width: 70%;
    aspect-ratio: 3/2;
    object-fit: cover;
}

#footer-slider .footer-slider-caption {
    /* display: -webkit-box;
    -webkit-line-clamp: var(--line-clamp, 2);
    -webkit-box-orient: vertical;
    word-break: var(--word-break, 'none');
    overflow: hidden;
    hyphens: none;
    text-align: var(--align, left); */
    font-size: 0.9rem;
    text-align: center;
    margin: 1rem 0 0 0;
}


#footer-slider .carousel-control-next, #footer-slider .carousel-control-prev{
    opacity: 1;
    color: #C4C0FB;
    font-size: 1.5rem;
    width: 15%;
    z-index: 100;
    height: 145px;
}

#footer-bottom{
    display: flex;
    background-color: #333;
    color: #cbcbcb;
    padding: 0.5rem;
    gap: 0.5rem;
    font-size: 0.8rem;
}

#footer-bottom .footer-bottom-section{
    display: block;
}

#footer-bottom ul{
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    list-style: none;
    width: 100%;
}



/* /INFO/ACTIVITIES/DEFAULT.ASPX */


#program-list .category-name{
    font-weight: bold;
}
#program-list .category-name a{
    text-decoration: none;
}
#program-list ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    align-items: stretch;
}
#program-list ul li{
    display: flex;
}
#program-list ul a{
    background: var(--main-gradient);
    color: var(--main-background);
    font-weight: normal;
    text-decoration: none;
    padding: .25rem .5rem;
    border-radius: 5px;
    border: 1px solid var(--main-background);
    width: 100%;
    transition: 0s;
}
#program-list ul a:hover{
    background: linear-gradient(to bottom, var(--light-minor-accent), var(--main-background));
    color: var(--body-text-color);
    border-color: var(--main-accent);
}

/* tables - using #no-more-tables to avoid editing individual pages */

.myrec-style-table .trTitle td{
    background-color: var(--main-accent);
    color: white;
    font-weight: bold;
}
.myrec-form .row{
    display: flex;
    row-gap: 1rem;
    padding: 1rem;
}
label{
    font-weight: bold;
}
.myrec-form input, .myrec-form button{
    font-size: 13px;
}
.accent{
    background-color: var(--highlight);
}
.form-field{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.form-check-input{
    background-color: transparent;
    margin-top: 0;
}

.main-content h1{
    margin-bottom: var(--content-spacing);
}
.vertical-row{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vertical-row.left{
    align-items: flex-start;
    gap: var(--content-spacing);
}



/* MISC */

#translate_element{
    display: none;
}



.row{
    margin-left: 0;
    margin-right: 0;
}

h3{
    font-size: 1rem;
    font-weight: bold;
}



/* JUST A BUNCH OF CRAP FROM OLD CODE */

table.styled {
	margin: 0 auto;
}
table.styled tr.def {
	border: 1px solid var(--main-background)
}
table.styled tr.def td, ul li.def {
    padding: .25rem .5rem;
	background-color: var(--highlight);
}
table.styled tr.def td.registertd,table.styled tr.alt td.registertd {
	border-bottom: 1px solid var(--main-background); 
	background-color: var(--minor-accent); 
	color: var(--main-background);
}

table.styled tr.alt td, ul li.alt {
    padding: .25rem .5rem;
	background-color: var(--main-background);
}


table.styled tr.def td.registertd a, table.styled tr.alt td.registertd a {
	color: var(--main-background);
}
table.styled tr.def td.registertd a:hover, table.styled tr.alt td.registertd a:hover, table.styled tr.def td.registertd a:focus, table.styled tr.alt td.registertd a:focus {
	color: var(--highlight);
}
table.styled tr.def td.registertd hr, table.styled tr.alt td.registertd hr {
	color: var(--highlight); 
	background: var(--highlight); 
}

table.styled tr.trTitle {
	border: 1px solid var(--main-background);
}
table.styled tr.trTitle td, table.styled tr.trTitle th {
	background-color: var(--main-accent); 
	color: var(--main-background); 
	font-weight: normal; 
	text-align: center;
    padding: .25rem .5rem;
}
table,styled tr.trTitle td b, table.styled tr.trTitle th b {
	font-weight: normal !important;
}
table.styled tr.trTitle td a, table.styled tr.trTitle th a {
	color: var(--main-background);
}

table.styled tr.highlight td, table.styled tr td.highlight {
	background-color: var(--minor-accent); 
	color: var(--main-background); 
	border: 1px solid var(--main-background);
}
table.styled tr.highlight td a, table.styled tr td.highlight a {
	color: var(--main-background);
	text-decoration: underline;
}
table.styled tr.highlight td a:hover, table.styled tr.highlight td a:focus, table.styled tr td.highlight a:hover, table.styled tr td.highlight a:focus {
	color: var(--main-background);
	text-decoration: none;
}

table.styled tr.warning td, table.styled tr td.warning {
	background-color: var(--warning); 
	color: var(--main-background); 
	border: 1px solid var(--main-background);
}
table.styled tr.warning td a, table.styled tr td.warning a {
	color: var(--main-background);
	text-decoration: underline;
}
table.styled tr.warning td a:hover, table.styled tr.warning td a:focus, table.styled tr td.warning a:hover, table.styled tr td.warning a:focus {
	color: var(--main-background);
	text-decoration: none;
}

table.styled tr.spc td {line-height: 0; border: none;}

table.styled tr.notes {
	border-top: none;
}
table.styled tr.nobord {
	border-bottom: none;
}
table.fullWidth {
	width: 100%;
}
table.styled tr.row:before, table.styled tr.row:after {
  content: normal;
}

table.center {
	margin: 0 auto;
}



ul.left{
    text-align: left;
}

.gryBox{
    border-left: 2px solid var(--dark-minor-accent);
    background-color: #F9F9F9;
    padding: 0.5rem;
    font-style: italic;
    font-size: 0.9rem;
    margin: 1rem 0;
}
input.txt, select{
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: .25rem .5rem;
    width: 100% !important;
}

#no-more-tables.form-table{
    width: 100%;
}

#no-more-tables.form-table td, #no-more-tables.form-table th{
    flex: 1;
}
#no-more-tables.form-table tr{
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

#no-more-tables.form-table th label {
    margin: 1rem 0 .25rem 0;
}

#no-more-tables.form-table .myrec-style-radio span{
    display: flex;
    flex-direction: row;
    gap: 0.25rem;
}

#no-more-tables.form-table .myrec-style-radio{
    margin: 0.5rem 0;
}

#no-more-tables.form-table tr.row{
    display: flex;
    /* flex-direction: column; */
    width: 100%;
}

#no-more-tables.form-table input[type='checkbox']{
    margin-right: 0.25rem;
}

tr.row{
    display: table-row;
}
tr.row>*{
    width: unset;
    padding: 0;
}

/* ACCOUNT / HOUSEHOLD */

.myrec-account-header{
    display: flex;
    flex-direction: column;
    gap: var(--content-spacing);
}

.myrec-account-nav{
    display: none;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

.myrec-account-nav-item a{
    display: flex;
    flex-direction: column;
    gap: .25rem;
    justify-content: center;
    align-items: center;
    font-weight: normal;
}

.myrec-account-nav-item a:hover{
    color: var(--minor-accent);
}

.myrec-account-nav.subnav{
    font-size: 0.75rem;
    width: 80%;
    margin: 0 auto;
}

.overview-col ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.overview-col ul li{
    text-align: left;
}

.myrec-style-date-picker{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    gap: 1rem;
}

.myrec-style-date-picker img{
    margin-left: 3px;
}

.myrec-warning{
    color: var(--warning);
}

/* PRODUCTS & STORE */

ul.product-category-list{
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.5rem;
}

ul.product-category-list li.item{
    width: 100%;
    display: flex;
}

ul.product-category-list li.item a{
    background: transparent;
    color: var(--main-accent);
    font-weight: normal;
    width: 100%;
    padding: .25rem 0.5rem;
    border: 1px solid var(--second-accent);
    border-radius: 5px;
    transition: 0s;
    font-weight: bold;
}

ul.product-category-list li.item a:hover{
    background: var(--minor-gradient);
}

ul.product-category-list li.item.category-active{
    background: var(--main-gradient);
    color: white;
    padding: .25rem 0.5rem;
    border: 1px solid var(--main-accent);
    border-radius: 5px;
}