:root {
    --afdc-red-rgb: 218, 0, 46;
    --afdc-blue-rgb: 37, 102, 187;
    --afdc-dark-gray-rgb: 77, 77, 77;
    --afdc-teal-rgb: 58, 153, 166;
    --afdc-red-faded: #FAD9E0;
    --afdc-blue-faded: #D1E5FF;
    --afdc-teal-faded: #CDE5E8;
    --afdc-purple-faded: #e2d1e1;
    --afdc-yellow-faded: #EEE5C8;
    --afdc-green-faded: #C8EEDC;

    --afdc-red: rgb(var(--afdc-red-rgb));
    --afdc-blue: rgb(var(--afdc-blue-rgb));
    --afdc-dark-gray: rgb(var(--afdc-dark-gray-rgb));
    --afdc-teal: rgb(var(--afdc-teal-rgb));
    --afdc-yellow: #FFC977;
    --afdc-dark-yellow:  #af7d31;
    --afdc-purple:  #6a4468;
}

/*****************
 *** Overrides ***
 *****************/

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.5;
}

h2, h3, h4, h5 {
    color: var(--afdc-red);
}

@media (min-width: 768px) {
    .md-w-50 {
        width: 50% !important;
    }
}

.btn,
.btn.btn-sm {
    font-weight: 600;
}

.btn.btn-xs {
    --bs-btn-padding-y: 0.125rem;
    --bs-btn-padding-x: 0.25rem;
    --bs-btn-font-size: 0.875rem;
}

.dropdown-toggle::after {
    display: none;
}

.nav-buttons .dropdown-item:visited{
    color:black !important;
}
.nav-buttons .dropend .dropdown-menu li a:visited{
    color:white !important;
}

/*****************
         *** Utilities ***
         *****************/

.btn-afdc-red {
    --bs-btn-bg: var(--afdc-red);
    --bs-btn-border-color: var(--afdc-red);
    --bs-btn-color: white;
    --bs-btn-hover-bg: var(--afdc-red);
    --bs-btn-hover-border-color: var(--afdc-red);
    --bs-btn-hover-color: white;
    --bs-btn-active-bg: var(--afdc-red);
    --bs-btn-active-border-color: var(--afdc-red);
    --bs-btn-active-color: white;
}
.btn-outline-afdc-red {
    color: var(--afdc-red);
    background: transparent;
    border-color: var(--afdc-red);
}

.btn-afdc-blue {
    --bs-btn-bg: var(--afdc-blue);
    --bs-btn-border-color: var(--afdc-blue);
    --bs-btn-color: white;
    --bs-btn-hover-bg: var(--afdc-blue);
    --bs-btn-hover-border-color: var(--afdc-blue);
    --bs-btn-hover-color: white;
    --bs-btn-active-bg: var(--afdc-blue);
    --bs-btn-active-border-color: var(--afdc-blue);
    --bs-btn-active-color: white;
}

.btn-afdc-dark-gray {
    --bs-btn-bg: var(--afdc-dark-gray);
    --bs-btn-border-color: var(--afdc-dark-gray);
    --bs-btn-color: white;
    --bs-btn-hover-bg: var(--afdc-dark-gray);
    --bs-btn-hover-border-color: var(--afdc-dark-gray);
    --bs-btn-hover-color: white;
    --bs-btn-active-bg: var(--afdc-dark-gray);
    --bs-btn-active-border-color: var(--afdc-dark-gray);
    --bs-btn-active-color: white;
}

.btn-afdc-teal {
    --bs-btn-bg: var(--afdc-teal);
    --bs-btn-border-color: var(--afdc-teal);
    --bs-btn-color: white;
    --bs-btn-hover-bg: var(--afdc-teal);
    --bs-btn-hover-border-color: var(--afdc-teal);
    --bs-btn-hover-color: white;
    --bs-btn-active-bg: var(--afdc-teal);
    --bs-btn-active-border-color: var(--afdc-teal);
    --bs-btn-active-color: white;
}

.btn-afdc-red.btn-subtle {
    background: var(--afdc-red-faded);
    border-color: var(--afdc-red-faded);
    color: var(--afdc-red);
}

.btn-afdc-blue.btn-subtle {
    background: var(--afdc-blue-faded);
    border-color: var(--afdc-blue-faded);
    color: var(--afdc-blue);
}

.btn-afdc-red:visited,
.btn-afdc-blue:visited,
.btn-afdc-dark-gray:visited,
.btn-afdc-teal:visited {
    color: white;
}

.btn-outline-afdc-red:visited {
    color: var(--afdc-red);
}

.btn-afdc-red.btn-subtle:visited {
    color: var(--afdc-red);
}

.btn-afdc-blue.btn-subtle:visited {
    color: var(--afdc-blue);
}

.btn[data-bs-target="#mobileMenu"] {
    color: black;
}

.dropdown-item:visited {
    color: var(--bs-dropdown-link-color);
}

.nav-links a {
    font-weight: normal;
}

.fw-extrabold {
    font-weight: 800;
}

.text-afdc-red {
    color: var(--afdc-red);
}

.text-afdc-blue {
    color: var(--afdc-blue);
}

.text-afdc-dark-gray {
    color: var(--afdc-dark-gray);
}

.text-afdc-teal {
    color: var(--afdc-teal);
}
 
.text-afdc-purple {
    color: var(--afdc-purple);
}
.text-afdc-dark-yellow{
    color: var(--afdc-dark-yellow);
}

.bg-afdc-blue {
    background-color: var(--afdc-blue);
}
.bg-afdc-purple {
    background-color: var(--afdc-purple);
}
.bg-afdc-teal {
    background-color: var(--afdc-teal);
}
.bg-afdc-red {
    background-color: var(--afdc-red);
}

.bg-afdc-dark-gray {
    background-color: var(--afdc-dark-gray);
}

.bg-afdc-yellow {
    background-color: var(--afdc-yellow);
}
.bg-afdc-dark-yellow {
    background-color: var(--afdc-dark-yellow);
}

.bg-afdc-blue-faded {
    background-color: var(--afdc-blue-faded);
}

.bg-afdc-red-faded {
    background-color: var(--afdc-red-faded);
}

.bg-afdc-teal-faded {
    background-color: var(--afdc-teal-faded);
}

.bg-afdc-purple-faded {
    background-color: var(--afdc-purple-faded);
}

.bg-afdc-yellow-faded {
    background-color: var(--afdc-yellow-faded);
}

.bg-afdc-green-faded {
    background-color: var(--afdc-green-faded);
}

.w-fit {
    width: fit-content;
}

.h-fit {
    height: fit-content;
}

.f-playfair {
    font-family: 'Playfair Display', serif;
}

.max-w-100 {
    max-width: 100%;
}

.my-6 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
}

.border-afdc-red {
    border-color: var(--afdc-red);
}

.border-afdc-blue {
    border-color: var(--afdc-blue);
}

.border-afdc-teal {
    border-color: var(--afdc-teal);
}

.border-afdc-dark-gray {
    border-color: var(--afdc-dark-gray) !important;
}

@media (min-width: 992px) {
    .w-lg-25 {
        width: 25% !important;
    }
    .w-lg-auto {
        width: auto !important;
    }
}
/*********************
 *** Page-specific ***
 **********************/

html {
    overflow-x: hidden;
}

body {
    width: 100%;
    overflow-x: hidden;
}

nav .nav-buttons>button {
    min-width: 100px;
}

header {
    min-height: 500px;
    position: relative;
    isolation: isolate;
    margin-bottom: 3rem;
}

header h1 {
    z-index: 1;
    isolation: isolate;
    padding-top: 325px;
    text-align: left;
}

header h1>.text::before {
    content: " ";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    z-index: -1;
    padding-left: 1000px;
    margin-left: -1000px;
    box-sizing: content-box;
    margin-top: -1rem;
}

header h1.afdc-header-blue>.text::before {
    background-color: rgba(var(--afdc-blue-rgb), 0.6);
}

header h1.afdc-header-red>.text::before {
    background-color: rgba(var(--afdc-red-rgb), 0.6);
}

header h1 {
    font-size: 60px;
    text-shadow: 0px 1px 8px rgba(0, 0, 0, 0.75);
}

.btn {
    transition: filter 200ms;
    color:white;
}

.btn:not(.btn-subtle):hover {
    filter: brightness(1.1);
}

.btn-subtle:hover {
    filter: brightness(0.95);
}

header>.header-buttons {
    transform: translateY(45px);
}

@media (max-width: 767px) {
    header > .header-buttons {
        transform: translateY(72px);
    }
}

header>.header-buttons button {
    transition: transform 200ms, box-shadow 200ms;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.25);
}

header>.header-buttons button:hover {
    transform: scale(105%);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.home-paragraph a {
    text-decoration: none;
}

.home-paragraph a:hover {
    text-decoration: underline;
}

.home-icon-links>a {
    text-align: center;
    color: black;
    min-width: 125px;
}

.home-icon-links>a>p {
    margin-top: 1rem;
}

/* 
=========================
This is for the login 
and sign up modal popup on 
the browse courses page
==========================
*/
a#feedback_send_button {
    float: none;
    width: 60px;
    background: #2D3E50;
    padding: 0px;
    color: #fff;
}

.address_editor {
    display: block;
    /*min-width: 640px;*/
    font-size: 85%;
}

.address_editor .address {
    display: block;
    width: 45%;
    float: left;
}

.address_editor .address_controls {
    width: 40%;
    float: left;
    display: block;
}

label.login_modal {
    display:block;
}

label:after {
    content:"\a";
    white-space: pre;
}
input.login_modal_el{
    margin-bottom:10px;
    height:30px;
}

.sign_in_modal{
background-color: #fff !important;
border-radius:5px;
	min-height: 540px;
}

a.sign_in_modal_close[style]:hover{
color:red !important;
}

.sign_up_modal{
	background-color:black;
	border-radius: 5px;
	min-height: 540px;
}

.dialog_body
{
	padding: 20px;
	overflow-Y: auto; 
}

.dialog_body label
{
	font-weight: 400;
}

.dialog_header 
{
    background: none repeat scroll 0 0 #eee;
    border-radius: 8px 8px 0 0;
    color: #333;
    font-size: 125%;
    font-variant: normal;
    font-weight: bold;
    padding: 15px 20px;
    border-bottom: solid 1px #bbb;
}

.dialog {
  background-color: #FFFFFF;
  border: 1px solid #000000;
  border-radius: 8px;
  box-shadow: 2px 2px 20px #333333;
  display: none;
}

.dialog_header a, .dialog_header a:link, .dialog_header a:hover, .dialog_header a:visited {
    font-size: 125%;
    color: #333;
    margin: 0;
    display: inline-block;
    position: absolute;
    top: 15px;
    right: 10px;
}

.password_complexity_panel .pass {
    display: block;
    color: #008800;
    background: url(/fakoli/images/on.png) 0 0 no-repeat;
    padding-left: 25px;
}

.password_complexity_panel .fail {
    display: block;
    color: #880000;
    background: url(/fakoli/images/off.png) 0 0 no-repeat;
    padding-left: 25px;
}

#sign_up_panel label
{
	white-space: nowrap;
}

#login_heading {
    background: #d3dde7;
    margin-top: -20px;
    height: 80px;
    margin-bottom: 80px;
    margin-left: -20px;
    margin-right: -20px;
}

#login_face {
    width: 120px;
    margin: 0 auto;
    display: block;
    padding-top: 5px;
}

#sign_in_modal_form {
    width: 270px;
    margin: 0 auto;
}

button#sign_up,
input#sign_in_button 
{
    display: block;
    width: 100%;
    margin: 5px 0px;
}

button#sign_up
{
	margin-bottom: 15px;
}

.dialog
{
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}
.dialog.error
{
  animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}

/* Curtain */

@keyframes curtain-fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 0.7;
    }
}

@keyframes curtain-fade-out {
    0% {
        opacity: 0.7;
    }

    100% {
        opacity: 0;
    }
}

#curtain
{
	background-color: #333;
	z-index: 149;
	position: absolute;
    animation: curtain-fade-out .5s ease-in;
    width: 0;
    height: 0;
    opacity: 0;
}

body.curtain_lowered #curtain 
{
	display: block;
	opacity: 0.7;
    animation: curtain-fade-in .5s ease-in;
}

button.button, a.button, a.button:link, input.button, button.button:hover, input.button:hover, a.button:hover, a.button:active {
    background: var(--afdc-red) none repeat scroll 0 0;
    border: 1px solid #FFF;
    color: #FFF;
    font-weight: 400;
    padding: 5px 10px;
    margin: 0px 10px 0px 0px;
    width: auto;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    border-radius: 10px;
    font-size: 100%;
    -webkit-appearance: none;
    text-decoration: none;
}

.registration_prompt_buttons{
    clear:left;
    padding-top:20px !important;
}

.registration_prompt_suggested_text{
    clear:left;
    padding-bottom:10px;
    color:red;
}

#registration_prompt_total{
    border-top:solid;
    border-width:1px;
    clear:left;
}

p.validation.warning, 
p.validation.alert {
    border: solid 1px #BA0C2F;
    padding: 20px;
    border-radius: 8px;
    background-color: #ffffee;
    font-size: 125%;
}

p.validation.warning:before
{
	font-family: 'fontello';
	content: '\e80a';
	display: inline-block;
	margin-right: 10px;
}

p.validation.alert:before
{
	font-family: 'fontello';
	content: '\e865';
	display: inline-block;
	margin-right: 10px;
}

p.validation.alert
{
	border-color: #000;
}

p.validation.warning.small,
p.validation.alert {
    font-size: 100%;
}

/* TABLE Styles */
table.list {
    
    background-color: #ffffff;
    border-collapse: collapse;
    border: none;
    border-spacing: 0;
    box-shadow: none;
    clear: both;
    empty-cells: show;
    vertical-align: top;
    font-size: 100%;
    width: 100%;
	margin-top: 30px;
	margin-bottom: 30px;
}

table.list th {
    background: #fff none repeat scroll 0 0;
    border: none;
    border-bottom: solid 2px #333;
    color: #333;
    font-weight: bold;
    padding: 10px;
    text-align: center;
    white-space: nowrap;
}

table.list td {
   
    border: none;
    border-bottom: dashed 1px #000;
    padding: 10px;
}

table.list.small {
    font-size: 80%;
}

table.list.small td {
    padding: 6px;
}

table.list.small th {
    padding: 6px;
}

table.list a, table.list a:visited {
	font-weight: 400;
    color: #000;
}

table.list a.button, table.list a.button:visited {
    color: #fff;    
    text-decoration: none;
}

table.list tfoot tr {
    background: #eee;
    border-top: solid 2px #000;
}

table.list tr.subheading
{
    background-color: #eee;
}

table.list tr.subheading td
{
    padding-left: 30px;
}

td.label {
    vertical-align: top;
}

a.toggle.closed:before {
    font-family: 'BOOTSTRAP-ICONS';
    content: '\F285';
    font-size: 85%;
    color: #666;
    display: inline-block;
    margin-right: 10px;
}
a.toggle.open:before {
    font-family: 'BOOTSTRAP-ICONS';
    content: '\F282';
    font-size: 85%;
    color: #666;
    display: inline-block;
    margin-right: 10px;
}

.clickable
{
	cursor: pointer;
}

table.list.select tr
{
	cursor: pointer;
}

table.list.select tr:hover
{
	background-color: #f5f5f5;
}

table.list.select tr.selected,
table.list.select tr.selected:hover
{
	color: #fff;
	background: url(/templates/images/white_checkmark.svg) 10px center no-repeat #C60032;
	background-size: 22px;
}	

table.list.select.small tr.selected {
    background-size: 15px;
}

table.list.select span.check
{
	display: block;
	width: 25px;
}

/** END TABLE STYLES **/

/** PAGINATION **/
.paginate {
    background-color: #Fff;
    border-bottom: none;
    border-radius: 4px;
    box-shadow: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-weight: normal;
    line-height: 1;
    padding: 6px 10px;
    position: relative;
    text-decoration: none;
    text-shadow: none;
    background: var(--afdc-blue);
}

.paginate:hover, .paginate:active 
{
	text-decoration: none;
	background: var(--afdc-blue);
	font-weight: normal;
}

.paginator ul 
{
	display: block;
	float: right;
	margin-bottom: 25px;
}

.paginator {
    color: #666;
    margin-bottom: 15px;
    margin-top: -15px;
}

.notification {
    border: solid 1px #666;
    border-radius: 0;
    font-size: 125%;
    line-height: 1.2;
    font-weight: bold;
    background-color: #fff;
    color: #333;
    box-shadow: 1px 1px 5px #ccc;
    z-index: 400;
    padding: 20px;
    border-top: solid 5px #666;
    font-weight: normal;
}

/* Calendar */

#fullcalendar {
	border: none;
	border-collapse: collapse;
	width: 100%;
}

#fullcalendar table {
	border-collapse: collapse;
	border: solid 1px #666;
	width: 100%;
}

#fullcalendar th {
	text-align: center;
	border: none;
	background-color: #325E9E;
	color: #fff;
	height: 25px;
}

#fullcalendar td {
	border: solid 1px #666;
	height: 60px;
	line-height: 100%;
	padding: 1px;
	vertical-align: top;
	background: white;
}

#fullcalendar td.month {
	border: solid 1px #FFF;
	margin-bottom: 5px;
	height: 33px;
	text-align: center;
	vertical-align: middle;
	background: #FFF;
	font-weight: bold;
	color:#333333;
	font-size: 20px;
}

#fullcalendar td.empty {
	background-color: #eee;
	border: none;
	border-top: solid 1px #666;
}

#fullcalendar .small {
	font-size: 8pt;
}

#fullcalendar .time {
	font-size: 11px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
}

.event_summary {
	border: 0px;
    border-radius: 0px;
 	box-shadow: 0px 0px 0px #FFF;
    background-color: #FFF;
    color: #000;
    cursor: pointer;
    display: block;
    font-size: 11px;
    line-height: 110%;
    padding: 1px;
}

.event_summary h4 {
    background-color: #d3dde7;
    border-bottom: 0px solid #EEE;
    color: #333;
    display: block;
    font-size: 12px;
    margin-bottom: 0;
    margin-top: 0;
    padding: 2px;
    font-weight: 600;
    letter-spacing: 2px;
    text-align: center;
}

#fullcalendar th {
    background-color: #333;
    border: medium none;
    color: #d3dde7;
    height: 25px;
    text-align: center;
}


#fullcalendar td.month {
    border: solid 1px #FFF;
    margin-bottom: 5px;
    height: 60px;
    text-align: center;
    vertical-align: middle;
    background: #FFF;
    font-weight: 500;
    color: #C60032;
    font-size: 30px;
    letter-spacing: 4px;
	text-transform: uppercase;
}

#fullcalendar td{
	height: 100px;
	
}
.event_summary:hover {
background-color: #fff;
	}
	
.message {
    background-color: #ffffff;
    margin-bottom: 8px;
    border: 0px;
	padding: 5px 0px;
    width: 640px;
	border-radius: 0px;
}

/* Inline Editor Styles */

#inline_editing,
.inline_editor_toolbar {
  background-color: #F5F5F5;
  border: 1px solid #666;
  border-radius: 0;
  box-shadow: 1px 1px 3px #888888;
  padding: 4px;
  margin: 0;
}


#inline_editing a,
#inline_editing a:visited,
.inline_editor_toolbar a,
.inline_editor_toolbar a:visited
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9pt;
	color: #050505;
	padding: 4px 10px;
	background: #f8f8f8; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIyNCUiIHN0b3AtY29sb3I9IiNmOGY4ZjgiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSI5MyUiIHN0b3AtY29sb3I9IiNiYmJiYmIiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  #f8f8f8 24%, #bbbbbb 93%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(24%,#f8f8f8), color-stop(93%,#bbbbbb)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #f8f8f8 24%,#bbbbbb 93%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #f8f8f8 24%,#bbbbbb 93%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #f8f8f8 24%,#bbbbbb 93%); /* IE10+ */
	background: linear-gradient(to bottom,  #f8f8f8 24%,#bbbbbb 93%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f8f8f8', endColorstr='#bbbbbb',GradientType=0 ); /* IE6-8 */		

	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	border: 1px solid #ccc;
	text-shadow:
		0px -1px 0px rgba(000,000,000,0),
		0px 1px 0px rgba(255,255,255,0.3);
	text-decoration: none;
	display: inline-block;
}

#inline_editing a:hover,
#inline_editing a:active,
.inline_editor_toolbar a:hover,
.inline_editor_toolbar a:active
{
	border: solid 1px #888;
}

#inline_editing a.pushbutton.first,
.inline_editor_toolbar a.pushbutton.first
{
    border-left: 1px solid #888;
    border-radius: 5px 0 0 5px;
}

.inline_border_shim
{
	display: none;
	position: absolute;
	border: dashed 1px #666;
	pointer-events: none;
}

#inline_editing a.pushbutton.last,
.inline_editor_toolbar a.pushbutton.last 
{
    border-radius: 0 5px 5px 0;
}

#inline_editing a.pushbutton.selected,
.inline_editor_toolbar a.pushbutton.selected 
{
    background: #316b14;
    color: #fff;
}

#inline_editing span.version,
.inline_editor_toolbar span.version 
{
  display: inline-block;
  font-size: 10pt;
  margin: 0 10px;
  vertical-align: middle;
  color: #333;
}

.inline_editor_toolbar a.edit:before {
    font-family: 'BOOTSTRAP-ICONS';
    font-weight: 900;
    margin-right: 5px;
    content: '\F4C9';
    vertical-align: middle;
}

.inline_editor_toolbar a.approve:before
{
    font-family: 'BOOTSTRAP-ICONS';
    content: '\f272';
    font-weight: 900;
    margin-right: 5px;
    vertical-align: middle;
}

.inline_editor_toolbar a.revert:before
{
    font-family: 'BOOTSTRAP-ICONS';
    content: '\f62a';
    font-weight: 900;
    margin-right: 5px;
    vertical-align: middle;
}

/* Version Info Styles */

p.version_info 
{
  background-color: #fffff5;
  border: 1px solid #666;
  border-radius: 5px;
  margin: 10px 5px;
  padding: 5px;
  position: relative;
}	


p.version_info a.approve {
  padding: 2px 8px;
  position: absolute;
  right: 2px;
  text-decoration: none;
  top: 2px;
  vertical-align: middle;
}

p.version_info a.approve:hover
{
	color: #000;
	background: #f8f8f8; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIxMyUiIHN0b3AtY29sb3I9IiNmOGY4ZjgiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSI2MyUiIHN0b3AtY29sb3I9IiNjZmNlZWYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  #f8f8f8 13%, #cfceef 63%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(13%,#f8f8f8), color-stop(63%,#cfceef)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #f8f8f8 13%,#cfceef 63%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #f8f8f8 13%,#cfceef 63%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #f8f8f8 13%,#cfceef 63%); /* IE10+ */
	background: linear-gradient(to bottom,  #f8f8f8 13%,#cfceef 63%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f8f8f8', endColorstr='#cfceef',GradientType=0 ); /* IE6-8 */
	
}

/* Multi-select Box Styles */
a.multi_select_dropdown
{
	display: inline-block;
	border: solid 1px #333;
	border-radius: 5px;
	box-shadow: inset -2px -2px 3px #888;
	padding: 2px 20px 2px 5px;
	color: #333;
	text-decoration: none;
	background: url(/fakoli/images/open.gif) right 5px center no-repeat #e8e8e8;
	margin-right: 5px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	vertical-align: middle;
}

.multi_select_dropdown_list
{
	position: absolute;
	display: none;
	border: solid 1px #666;
	background: #fff;
	box-shadow: 2px 2px 5px #333;
	z-index: 700;
}

.multi_select_dropdown_list label
{
	font-weight: normal;
}

.selectbox label, .scrollbox label {
  font-size: 10pt;
  font-weight: normal;
  border-radius: 2px 2px 2px 2px;
  display: block;
  font-weight: normal;
  margin: 2px 2px 4px 24px;
  vertical-align: top;
  cursor: pointer;
  line-height: 1.2;
}

.selectbox input, .scrollbox input {
  display: block;
  float: left;
  margin-left: -20px;
  margin-top: 2px;
}

.selectbox label:hover,
.scrollbox label:hover
{
	background-color: #ddd;
}

/* Child Placement Testing styles */

table.scheduler {
    border: solid 1px #666;
    border-radius: 6px;
    border-collapse: collapse;
    width: 100%;
    margin: 10px 0;
}

table.scheduler td {
    padding: 10px;
    border: dotted 1px #666;
}

table.scheduler th {
    padding: 10px;
    /* border: dotted 1px #666; */
    text-align: center;
    vertical-align: middle;
    background-color: #f5f5f5;
}

table.scheduler th.schedule_day {
    border-bottom: solid 1px #666;
}

table.scheduler th.schedule_period {
	border-right: solid 1px #666;
}

table.scheduler th, table.scheduler td {
    height: 60px;
}

table.scheduler td {
    background-color: #eee;
    cursor: pointer;
    width: 12.5%;
    font-size: 85%;
}

table.scheduler td:hover,
table.scheduler td.available:hover,
table.scheduler.public td.available:hover
{
	background-color: #ffe;
}

table.scheduler td.available
{
	background-color: #fff;
}

table.scheduler td.period.scheduled {
    background-color: #cfe3f7;
}

table.scheduler td.period {
    width: 13.25%;
}

table.scheduler.public td
{
	cursor: initial;
}

table.scheduler.public td.available
{
	cursor: pointer;
}

table.scheduler.public td:hover
{
	background-color: #eee;
}

.date_navigation {
    margin-bottom: 20px;
    display: block;
    width: 100%;
}

.date_navigation:after
{
	content: "";
	display: table;
	clear: both;
}

.date_navigation a.button.prev
{
	float: left;
}

.date_navigation a.button.next
{
	float: right;
}

.dialog_body .parent_details label,
.dialog_body .child_details label 
{
    min-width: 125px;
    font-weight: bold;
}

.dialog_body .parent_details,
.dialog_body .child_details 
{
    font-size: 110%;
    line-height: 1.2;
    margin-top: -10px;
}

/* Small-medium breakpoint */
@media only screen and (max-width: 1000px) {

    /* Remove line breaks on smaller screens */
    .home-paragraph>p>br {
        display: none;
    }
}

/* Small breakpoint */
@media only screen and (max-width: 576px) {
    header h1>.text::before {
        padding-right: 1000px;
    }
}

/* Announcement Banner Styles */

div#announcements {
    display: block;
    position: fixed;
    top: 0px;
    width: 100%;
    left: 0;
    padding: 0;
    z-index: 99;

}

.announcement_panel {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #ffc;
    padding: 20px;
    position: relative;
    border-bottom: solid 1px #666;
    border-top: solid 1px #666;
    box-shadow: 0px 7px 20px #888;
}

#announcement .announcement {
    color: #4d4d4d;
}

a.announcement_dismiss {
    position: absolute;
    color: #4d4d4d;
    top: 12px;
    right: 20px;
    line-height: 36px;
    text-decoration: none;
}
a.announcement_dismiss:before {
    font-family: 'BOOTSTRAP-ICONS';
    content: '\F659';
}

/* Event Filter Styles */
.filter-btn {
    min-width: 80px;
    text-align: center;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    line-height: 1.2;
    color: var(--afdc-blue);
}

.filter-btn i {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    display: block;
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.filter-btn.active {
    background-color: var(--afdc-blue);
    color: white;
    border-color: var(--afdc-blue);
}

.filter-btn.active:hover {
    background-color: var(--afdc-blue);
    color: white;
    border-color: var(--afdc-blue);
}

.page-header-small{
    padding-top:20px;
    height:auto !important;
    min-height:auto !important;
    margin-bottom: 0px !important;
}
.page-header-small h1{
    padding-top:0px;
    height:80px !important;
    min-height:80px !important;
}
#frame{
    padding:20px !important;
}
#footer{
    padding:0px !important;
    background-color: transparent !important;
}

/* Responsive filter layout */
@media (max-width: 768px) {
    .filter-btn {
        min-width: 70px;
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .filter-btn i {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .filter-btn {
        min-width: 60px;
        padding: 0.3rem 0.5rem;
        font-size: 0.75rem;
    }
    
    .filter-btn i {
        font-size: 0.9rem;
    }
}
