@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Sintony:wght@400;700&display=swap');
:root {
    --cayuse_blue: #064B8D;
    --cayuse_blue_dark: #152737;
    --cayuse_blue_med: #8AC6FF;
    --cayuse_blue_light: #B4DBFF;
}

* {
    box-sizing: border-box;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

body, html {
    margin: 0;
    padding: 0;
    background: #7E7E7E;
}

body {
    background-color: #EEE;
    font-family: "Poppins", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

pre {
    white-space: pre-wrap;
    word-break:break-word;
    background-color: #EEE;
    padding: 0.5em;
    border: 1px solid red;
}

h2 {
    font-family: "Sintony", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.container {
    display: grid;
    grid-template-columns: 1fr minmax(320px, 20%);
    grid-template-rows: auto auto auto 1fr auto;
    grid-auto-flow: row;
    grid-template-areas: "header header" "quicklinks quicklinks" "admin_msg sidebar" "main_content sidebar" "footer footer";
    /*grid-template-areas: "header header" "quicklinks quicklinks" "admin_msg sidebar" "main_content sidebar" "footer sidebar";*/
}

.main_container {
    display: grid;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    grid-template-areas: "header" "main_content" "footer";
}

.header {
    grid-area: header;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, auto));
    gap: 1em;
    padding: 1em 0;
    background-color:var(--cayuse_blue);
    color: #FFF;
}

.header a {
    text-decoration: none;
    color: #FFF;
}

.header a:hover {
    text-decoration: underline;
}

a {
    color: #000;
}

p {
    padding-bottom: 1em;
}

mark {
    background: none;
}

.marker-blue {
    background-color: hsl(201, 97%, 72%);
}

.marker-green {
    background-color: hsl(120, 93%, 68%);
}

.marker-pink {
    background-color: hsl(345, 96%, 73%);
}

.marker-yellow {
    background-color: hsl(60, 97%, 73%);
}

.pen-green {
    color: hsl(112, 100%, 27%);
}

.pen-red {
    color: hsl(0, 85%, 49%);
}

.text-tiny {
    font-size: 0.7em;
}

.text-small {
    font-size: 0.85em;
}

.text-big {
    font-size: 1.4em;
}

.text-huge {
    font-size: 1.8em;
}

blockquote {
    overflow: hidden;
    padding: 0 1.5em;
    font-style: italic;
    border-left: solid 5px hsl(0, 0%, 80%);
}

.image {
    margin: 0 auto;
    display: table;
    line-height: 0;
}

figcaption {
    display: table-caption;
    caption-side: bottom;
    background: #DDD;
    padding: 0.75em 0;
    line-height: 1em;
    text-align: center;
    font-size: 0.75em;
}

.ck-content p {
    padding-bottom: 1em;
}

.header div {
    align-self: center;
}

.head_logo {
    text-align: center;
    line-height: 0;
}

.head_logo a:hover {
    text-decoration: none;
    filter: drop-shadow(0 0 1em rgba(255, 255, 255, 1));
}

.quicklinks {
    grid-area: quicklinks;
    padding: 1em 0 1em 0;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    position: relative;
    min-height: 206px;
}

.quicklinks h2 {
    text-align: center;
    font-size: 2em;
    letter-spacing: 0.2em;
    z-index: 1;
    position: relative;
}

.quicklinks a {
    display: block;
    width: 100%;
    height: 100%;
    color: #000;
    border-radius: 0.4em;
    box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.75);
}

.quicklinks a:hover {
    color: #FFF;
    background-color:var(--cayuse_blue);
}

.quick_link_items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50px, 100px));
    justify-content: center;
    list-style-type: none;
    align-items: center;
    gap: 1em;
    font-size: 1em;
    line-height: 1.1em;
    padding: 2em 0 0 0;
}

.quick_link_items li {
    background-color:var(--cayuse_blue_med);
    text-align: center;
    aspect-ratio:1 / 1;
    border-radius: 0.5em;
    position: relative;
}

.quicklink_mustang {
    max-height: 100%;
    position: absolute;
    z-index: 0;
    top: 50%;
    margin-top: -103px;
}

.portal_quicklinks {
    padding: 0 0 2em 0;
}

.portal_items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50px, 300px));
    justify-content: center;
    gap: 2em;
    position: relative;
}

.portal_item {
    background-color:var(--cayuse_blue_med);
    text-align: center;
    border-radius: 0.5em;
    box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
}

.portal_items img {
    max-width: 100%;
    max-height: 3em;
}

.portal_items a {
    color: #000 !important;
    text-decoration: none !important;
    padding: 1em;
    border-radius: 0.4em;
}

.portal_items a:hover {
    background-color:var(--cayuse_blue_light);
}

.mustang_left {
    left: 1em;
}

.mustang_right {
    right: 1em;
}

.vert_center {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.admin_msg {
    grid-area: admin_msg;
    padding: 1em;
    cursor: pointer;
    background-color:var(--cayuse_blue_dark);
    color: #EEE;
    /*text-align: center;*/
}

#supt_header {
    text-align: center;
}

#supt_message {
    padding: 1em;
}

#supt_message p {
    padding: 0 0 1em 0;
}

.main_content {
    grid-area: main_content;
    padding: 1em 2em;
}

.main_content h2 {
    padding: 0 0 1em 0;
    text-align: center;
}

.template_area h2 {
    text-align: left;
    padding: 0;
}

.main_content img {
    max-width: 100%;
    height: auto;
}

.image-style-block-align-left {
    margin: 1em auto 0 0;
}

.image-style-block-align-right {
    margin: 1em 0 0 auto;
}

.image-style-align-left {
    float: left;
    margin: 0 1em 0 0;
}

.image-style-align-right {
    float: right;
    margin: 0 0 0 1em;
}

.content_heading {
    text-align: center;
    padding: 0 0 1em 0;
}

.special_events {
    text-align: center;
}

.special_events iframe {
    text-align: center;
    width: 98%;
    height: 50vh;
    outline: 1px solid #333;
    margin-top: 1em;
}

.mission_values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    row-gap: 1em;
    column-gap: 2em;
    padding-bottom: 1em;
}

.value_header {
    grid-column: 1 / -1;
    text-align: center;
}

.bottom_space {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1em;
    place-items: center;
    font-size: 0.8em;
}

.bottom_space img {
    max-height: 200px;
    max-width: 100%;
    line-height: 0;
}

.grief_sensitive_esser {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-items: center;
    gap: 1.0em;
}

.grief_sensitive_esser img {
    max-height: 130px;
}

.values img {
    border: 1px solid black;
}

.sidebar {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    grid-auto-flow: row;
    grid-template-areas: "additional_links" "sidebar_scroller";
    grid-area: sidebar;
    background-color:var(--cayuse_blue);
    color: #EEE;
}

.additional_links {
    padding: 1em;
    text-align: center;
}

.additional_links a {
    padding: 0.5em 0.75em;
    margin: 0.5em 0;
    display: inline-block;
    color: #DDD;
    text-decoration: none;
    background-color:var(--cayuse_blue_dark);
    border-radius: 0.5em;
    box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.75);
    border:1px solid var(--cayuse_blue_dark);
}

.additional_links a:hover {
    background-color:var(--cayuse_blue_med);
    color: #333;
    box-shadow: none;
    border: 1px solid black;
}

.additional_links ul {
    list-style-type: none;
}

.sidebar_scroller {
    padding: 1em;
    grid-area: sidebar_scroller;
    margin: 0 auto;
}

.footer {
    grid-area: footer;
    border-top: 1px solid black;
    padding: 1em 1em 0 1em;
}

.staff_directory_div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0.5em;
}

.staff_directory_item {
    background-color: #DDD;
    padding: 0.75em;
    border: 1px solid #333;
    border-radius: 0.5em;
}

.staff_directory_image {
    float: left;
    margin: 0 1em 0 0;
    border: 1px solid #666;
    box-shadow: 0px 0px 6px black;
}

.staff_directory_email {
    font-size: 0.75em;
    padding: 1em 0 0 0;
    display: inline-block;
}

.award_listing_div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0.5em;
    padding-bottom: 2em;
}

.award_item {
    background-color: #DDD;
    padding: 0.75em;
    border: 1px solid #333;
    border-radius: 0.5em;
}

.award_item img {
    float: left;
    max-width: 120px;
    height: auto;
    /*height: 100%;*/
    margin: 0 1em 0 0;
    border: 1px solid #333;
    box-shadow: 0px 0px 6px black;
}

.award_item img:hover {
    cursor: pointer;
}

.sports_sport {
    display: block;
    font-size: 1.25em;
    font-weight: bold;
}

.sports_header {
    display: block;
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    padding-bottom: 1rem;
}

#pop_image_cover {
    height: 100%;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
}

#pop_image {
    place-self: center;
    position: relative;
    text-align: center;
    width: calc(100% - 4em);
    background-color: #CCC;
    border-radius: 1em;
    box-shadow: 0 0 10px 10px #333;
    padding: 2em 70px 1em 70px;
    max-height: 90vh;
}

#img_to_show_wrap {
    /*position: relative;*/
    /*max-width: 100%;*/
    height: 80vh;
}

#img_to_show {
    max-width: 90%;
    max-height: 90%;
    outline: 2px solid black;
}

#pop_image_footer {
    text-align: center;
    padding-top: 0.5em;
}

.close_button {
    position: absolute;
    right: -15px;
    top: -15px;
    cursor: pointer;
}

.prev_btn {
    position: absolute;
    top: 45%;
    left: 5px;
    width: 56px;
    height: 32px;
    max-height: 32px;
    display: block;
    background: url(/public/assets/images/prev_next.gif) 0 0;
    cursor: pointer;
}

.prev_btn:hover {
    background: url(/public/assets/images/prev_next.gif) 0 -32px;
}

.next_btn {
    position: absolute;
    top: 45%;
    right: 5px;
    width: 56px;
    max-height: 32px;
    height: 32px;
    display: block;
    background: url(/public/assets/images/prev_next.gif) -56px 0;
    cursor: pointer;
}

.next_btn:hover {
    background: url(/public/assets/images/prev_next.gif) -56px -32px;
}

.clear_both {
    clear: both;
}

.alumni_table {
    border: 1px solid black;
    padding: 0.25em;
}

.alumni_table td {
    padding: 0.5em;
}

.alumni_hs_year {
    text-align: right;
}

.alumni_table tbody tr:nth-child(odd) {
    background-color: #DDD;
}

.alumni_form textarea {
    height: 6rem;
}

.admin_footer {
    /*grid-area: footer;*/
    grid-area: admin_footer;
    border: 1px solid black;
    padding: 0.25em 0;
    text-align: center;
    background-color:var(--cayuse_blue_light);
    font-size: 0.7em;
    margin: 0 0 0.5em 0;
}

.admin_footer a {
    text-decoration: none;
}

.admin_container {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: auto auto 1fr auto;
    gap: 1em;
    grid-template-areas: "admin_header" "admin_content" "admin_footer";
    max-width: 95%;
    margin: 0 auto;
}

.admin_container a {
    color: blue;
    text-decoration: underline;
}

.admin_header {
    grid-area: admin_header;
    text-align: center;
    /*padding-bottom: 1em;*/
}

.admin_header img {
    height: 3em;
    margin: 0.5em 0 0 0;
}

.admin_menu {
    grid-area: admin_menu;
}

.admin_menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: grid;
    /*grid-template-columns: repeat(3, auto);*/
    grid-auto-columns: auto;
    grid-auto-flow: column;
    column-gap: 2em;
    justify-items: center;
    justify-content: center;
}

.admin_menu a {
    text-decoration: none;
    color: #000;
    border: 1px solid #333;
    padding: 0.25em;
}

.admin_menu a:hover {
    /*text-decoration: underline;*/
    background-color: #CCC;
}

.admin_content {
    grid-area: admin_content;
    /*border-top: 1px solid black;*/
}

.admin_page_title {
    font-size: 1.6em;
    text-align: center;
    display: block;
    padding: 0 0 0.5em 0;
}

#admin_category_list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 50%;
    margin: 0 auto;
}

#admin_category_list li {
    padding: 0.75em 1.75em 0.75em 1em;
    border: 1px solid black;
    cursor: all-scroll;
    background-color: #FFF;
    position: relative;
}

.admin_sub_category {
    margin-left: 2em;
}

.admin_category_disabled {
    background-color: #FCD2D2 !important;
}

.admin_category_edit_btn {
    position: absolute;
    right: 0.5em;
    top: 0.5em;
}

.user_admin {
    background-color: #A0E9B9 !important;
}

.user_disabled {
    background-color: #E9D2D2 !important;
}

#loginForm {
    min-width: 280px;
    width: 50%;
    margin: 0 auto 2em;
    padding: 1em 2em 0 2em;
    background-color: #EEE;
    border: 1px solid #999;
    border-radius: 0.5em;
    background: #E0E0E0;
    box-shadow: 20px 20px 60px #BEBEBE, -20px -20px 60px #FFFFFF;
    position: relative;
}

.pw_forgot {
    position: absolute;
    bottom: 2em;
    right: 3em;
    font-size: 0.75em;
}

.pw_forgot a {
    color: #000;
}

.standardForm input[type=text], .standardForm input[type=number], .standardForm input[type=password], .standardForm input[type=email], .standardForm textarea {
    width: 100%;
    padding: 1em;
    margin: 0.5em 0 1em 0;
    display: inline-block;
    border: 1px solid #CCC;
    font-size: 1em;
}

.standardForm select {
    padding: 0.5em 1.5em 0.5em 0.5em;
    font-size: inherit;
    border: 1px solid #CCC;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(/public/assets/images/arrows-up-down.svg) 90% / 0.7em no-repeat #FFF;
}

#myTable a {
    color: #000;
    text-decoration: none;
}

#staff_profile_edit_form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1em 3em;
}

#staff_profile_edit_content {
    grid-column: 1 / -1;
}

.profile_img_div img {
    width: 150px;
    border: 1px solid black;
}

.error_msg {
    color: #F00;
    border: 1px solid red;
    padding: 1em;
    display: block;
    margin: 1em 0 1em 0;
    background-color: #FFF;
}

.blink_me {
    animation: blinker 1s linear infinite;
    font-size: 1.5em;
}

/*.table TABLE, .table TBODY, .table THEAD, .table TR
{
	display: block;
	width: 100%;
}*/
/*.table TR
{
	display: flex;
	flex-wrap: wrap;
}*/
/*.table TD, .table TH
{
	display: block;
	width: 100%;
	box-sizing: border-box;
}*/
@keyframes blinker {
    50% {
        opacity: 0.25;
    }
}

.section_head {
    text-align: center;
    font-size: 2em;
    padding: 0.5em 0;
}

.button {
    background-color: #13AA52;
    border: 1px solid #13AA52;
    border-radius: 0.5em;
    display: inline-block;
    color: #FFF;
    cursor: pointer;
    padding: 0.5em 1em;
    margin: 1em 0;
    text-align: center;
    text-decoration: none;
    font-size: 1em;
}

.button:hover {
    background-color: #084D25;
    color: #FFF;
}

a.button {
    color: #FFF !important;
    text-decoration: none;
}

.button_small {
    font-size: 0.75em;
    padding: 0.25em 0.5em;
}

.margin-left {
    margin-left: 1em;
}

.admin_icon {
    width: 1.25em;
    margin: 0 0.5em 0 0;
    vertical-align: text-top;
}

#admin-tabs {
    padding: 1em 1em 0 1em;
}

.ql_sl {
    border: 1px solid black;
    padding: 0.5em;
    margin: 0 0 1em 0;
}

div.dt-layout-cell.dt-start {
    padding: 0 0 0 1em !important;
}

div.dt-search, .paging_full_numbers {
    padding: 0 1em 0 0 !important;
}

.admin_file_manager_content {
    grid-area: admin_content;
    padding: 1em 1em 0 1em;
    height: 75vh;
}

#elfinder {
    /*width: 95% !important;*/
    height: 100% !important;
    /*margin: 0 auto;*/
}

.admin_content #p_date {
    width: auto;
}

.admin_edit_form_label {
    width: auto;
    padding: 0.75em 0 0 0;
    display: block;
    margin: 0;
    font-size: 1.25em;
}

.post_edit_form_categories {
    display: grid;
    border: 1px solid black;
    padding: 0.5em;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.25em;
}

.post_edit_form_categories > label {
    border: 1px solid black;
    padding: 0.5em;
}

.post_edit_form_categories > label:hover {
    cursor: pointer;
}

.category_label:has(.category_checked) {
    background-color: #D6F1B9;
}

.switch {
    position: relative;
    display: inline-block;
    width: 3.25em;
    height: 1.5em;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #CCC;
    -webkit-transition: .4s;
    transition: 0.4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 1em;
    width: 1em;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: 0.4s;
}

input:checked + .slider {
    background-color: #00DD00;
}

input:focus + .slider {
    box-shadow: 0 0 1px #00DD00;
}

input:checked + .slider:before {
    transform: translateX(1.6em);
}

.slider.round {
    border-radius: 2em;
}

.slider.round:before {
    border-radius: 50%;
}

.connectedSortable {
    min-height: 20px;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.connectedSortable li {
    margin: 0.7em 0 0 0;
    padding: 0.25em;
    font-size: 1em;
    width: 200px;
    border: 1px solid black;
    background-color: #DDD;
}

.ui-state-highlight {
    min-height: 3em;
    min-width: 10em;
}

.ui-datepicker-today .ui-state-highlight {
    min-width: 0;
    min-height: 0;
}

.droppable {
    width: 15em;
    background-color: #CCC;
    padding: 1em;
    border: 1px solid black;
    border-radius: 1em;
    text-align: center;
}

.promote {
    float: left;
}

.droppable.active {
    background: #CFC;
}

.droppable.hovered {
    background: #CCF;
}

.dropped {
    background: #F52;
}

.draggable_div {
    border: 1px solid black;
    background-color: #AAA;
    padding: 1em;
}

.menu_drag {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1em;
}

.menu_disabled {
    background-color: #FCC !important;
}

.menu_unused {
    background-color: #CFC !important;
}

.scroller_drag, .scroller_container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 290px));
    grid-auto-rows: 1fr;
    gap: 1em;
}

.admin_slide_wrap, .slide_wrap {
    display: grid;
    background-color:var(--cayuse_blue);
    border-radius: 1em;
    color: #FFF;
    text-align: center;
    position: relative;
    padding: 1em;
    border: 1px solid #FFF;
}

.admin_slide_disabled {
    background-color: #BB3131;
}

.admin_slide_wrap > a {
    position: absolute;
    bottom: 0;
    right: 0.5em;
    width: 1.5em;
    z-index: 10;
}

.admin_slide_wrap a img {
    max-width: 100%;
}

.admin_slide_item, .slide_item {
    margin: auto;
    max-width: 100%;
    max-height: 100%;
    position: relative;
}

.admin_slide_item img {
    max-width: 240px;
    height: auto;
    box-shadow: 0px 0px 10px rgba(50, 50, 50, 0.8);
    border: 1px solid #333;
}

#scroller_edit_form img {
    max-width: 280px;
}

.formTable input[type=text], .formTable input[type=number], .formTable input[type=password], .formTable input[type=email], .formTable textarea {
    width: calc(100% - 1em);
    padding: 0.5em;
    margin: 0.5em;
}

.formTable select {
    margin: 0.5em;
}

#equip_admin_edit_table {
    border-collapse: collapse;
    width: 100%;
}

#equip_admin_edit_table th {
    text-align: right;
    padding: 0.5em 0.5em 0.5em 0;
    vertical-align: top;
    line-height: 2em;
}

#equip_admin_edit_table th, #equip_admin_edit_table td {
    border: 1px solid black;
}

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

@media all and (max-width: 850px) {
    .header {
        grid-template-columns: 1fr 1fr;
        text-align: center;
    }
    
    .mission_values {
        grid-template-columns: 1fr;
    }
    
    .bottom_space {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1em;
        place-items: center;
        font-size: 0.8em;
        padding: 1em 0;
    }
}

@media all and (max-width: 600px) {
    #staff_profile_edit_form {
        grid-template-columns: 1fr;
        gap: 1em 3em;
    }
    
    .container {
        grid-template-columns: 1fr;
        grid-template-areas: "header" "quicklinks" "sidebar" "admin_msg" "main_content" "footer";
    }
}

@media all and (max-width: 500px) {
    .header {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .bottom_space {
        padding: 1em 1em;
    }
    
    .table table, .table tbody, .table thead, .table tr {
        display: block;
        width: 100%;
    }
    
    .table tr {
        display: flex;
        flex-wrap: wrap;
    }
    
    .table td, .table th {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
}
