/* ELEMENTARY EDUCATION 2025 CUSTOM COLORS:

PRIMARY ACCENT COLOR: #394c96 
(Must be accessibility compliant / H1, H3, etc.)

LINK/BUTTON COLOR: #D0412A
(Must be accessibility compliant)

LINK BUTTON HOVER COLOR: #A13221
(Must be accessibility compliant)

SECONDARY ACCENT COLOR: #f79732
(Can be accessibility non-compliant / Blockquote border, Nav menu bullet points) 

*/

/* BANNER BACKGROUND */

@media (min-width: 1500px) {
    .Banner {
		background-image: linear-gradient(90deg, rgba(57, 76, 150, 1), rgba(57, 76, 150, 0.95) 5%, rgba(57, 76, 150, 0.2) 25%, rgba(57, 76, 150, 0) 50%, rgba(57, 76, 150, 0.2) 75%, rgba(57, 76, 150, 0.95) 95%, rgba(57, 76, 150, 1));
  }
}

/* NAVBAR */

@media (max-width: 959px) {
    a.secondaryNavItem.registerNow, a.secondaryNavItem.registerNow:hover {
        color: #D0412A !important;
    }
}

#mobileNavDropdown.reveal {
    background-color: #D0412A;
}

/* H1 and H3 */

.Main h1,
.Main h3{
    color: #394c96 !important;
}

/* SIDECOL BULLETPOINTS */

.SideCol li::before {
    color: #f79732 !important;
}

/* INLINE LINKS */

.Main a {
	color: #D0412A;
}

.Main a:hover {
	color: #A13221;
}

/* BUTTONS */

.Main .btn,
.Main a.btnCard {
	background-color: #D0412A;
}

.Main a.btn:hover,
.Main a.btnCard:hover {
    color: #fff;
	background-color: #A13221 !important;
}

/* BLOCKQUOTE */

.Main blockquote {
	border-left: 5px solid #f79732;
}

/* HRs */

.Main hr {
    background: linear-gradient(110deg, rgba(57, 76, 150) 0%, rgba(208, 65, 42) 45%, rgba(251, 178, 31) 100%);
}

/* TABLES */

.Main table th.tableHeader,
td.tableBottom {
    background: linear-gradient(110deg, rgba(57, 76, 150) 0%, rgba(208, 65, 42) 45%, rgba(251, 178, 31) 100%);
}

td,
th {
    border-right: 3px solid #f79732 !important;
}

/* BIO MODAL */

.btn-info.active.focus,
.btn-info.active:focus,
.btn-info.active:hover,
.btn-info:active.focus,
.btn-info:active:focus,
.btn-info:active:hover,
.open>.dropdown-toggle.btn-info.focus,
.open>.dropdown-toggle.btn-info:focus,
.open>.dropdown-toggle.btn-info:hover,
.Main button.btn.btn-info:hover,
.btn-info.focus,
.btn-info:focus {
    color: #fff;
	background-color: #A13221 !important;
}

/* FORM COLOR OVERRIDES */

.Main .EPiServerForms h2.Form__Title {
    color: #394c96 !important;
}

.Main .EPiServerForms select,
.EPiServerForms .FormTextbox__Input,
.EPiServerForms input[type=text] {
    box-shadow: 0 3px 2px rgb(17, 115, 151 / 35%) !important;
}

.Main .EPiServerForms button[type="submit"] {
    background-color: #D0412A !important;
}

.Main .EPiServerForms button[type="submit"]:hover {
    background-color: #A13221 !important;
}

/* LIVESTREAM AND REGISTRATION FORM EMBED BORDER */
.videoContainer iframe, 
.videoContainer .boxcast-player-container,
#iframeContainer {
    border: solid 15px !important;
    border-image-source: linear-gradient(180deg, rgba(57, 76, 150) 0%, rgba(208, 65, 42) 45%, rgba(251, 178, 31) 100%) !important;
    border-image-slice: 1 !important;
}