/* BOOTSTRAP */

:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-black: #000;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-primary: #0b0959;
    --bs-secondary: #cda349;
    --bs-success: #198754;
    --bs-info: #1E6A9E;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-primary-rgb: 11,9,89;
    --bs-secondary-rgb: 205,163,73;
    --bs-success-rgb: 25,135,84;
    --bs-info-rgb: 30,106,158;
    --bs-warning-rgb: 255,193,7;
    --bs-danger-rgb: 220,53,69;
    --bs-light-rgb: 248,249,250;
    --bs-dark-rgb: 33,37,41;
    --bs-white-rgb: 255,255,255;
    --bs-black-rgb: 0,0,0;
    --bs-body-color-rgb: 33,37,41;
    --bs-body-bg-rgb: 255,255,255;
    --bs-font-sans-serif: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
    --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #212529;
    --bs-body-bg: #fff;
    --bs-border-width: 1px;
    --bs-border-style: solid;
    --bs-border-color: #dee2e6;
    --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
    --bs-border-radius: 0.375rem;
    --bs-border-radius-sm: 0.25rem;
    --bs-border-radius-lg: 0.5rem;
    --bs-border-radius-xl: 1rem;
    --bs-border-radius-2xl: 2rem;
    --bs-border-radius-pill: 50rem;
    --bs-link-color: #cda349;
    --bs-link-hover-color: #0b0959;
    --bs-code-color: #d63384;
    --bs-highlight-bg: #fff3cd;
}

/* BUTTONS */
.btn{
    border-radius: 0;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #0b0959;
    --bs-btn-border-color: #0b0959;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #1E6A9E;
    --bs-btn-hover-border-color: #1E6A9E;
    --bs-btn-focus-shadow-rgb: 49,132,253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #1E6A9E;
    --bs-btn-active-border-color: #1E6A9E;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #45494b;
    --bs-btn-disabled-border-color: #45494b;
}

.btn-secondary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #cda349;
    --bs-btn-border-color: #cda349;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #886d32;
    --bs-btn-hover-border-color: #cda349;
    --bs-btn-focus-shadow-rgb: 130,138,145;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0b0959;
    --bs-btn-active-border-color: #cda349;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #6c757d;
    --bs-btn-disabled-border-color: #6c757d;
}

.btn-outline-secondary {
    --bs-btn-color: #cda349;
    --bs-btn-border-color: #cda349;
    --bs-btn-hover-color: #0b0959;
    --bs-btn-hover-bg: #cda349;
    --bs-btn-hover-border-color: #cda349;
    --bs-btn-focus-shadow-rgb: 108,117,125;
    --bs-btn-active-color: #0b0959;
    --bs-btn-active-bg: #cda349;
    --bs-btn-active-border-color: #cda349;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #6c757d;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #6c757d;
    --bs-gradient: none;
}

.btn-slide {
    position: relative;
    overflow: hidden;
    border: none;
    padding-left: 20px;
    --bs-btn-font-weight: 600;
    --bs-btn-color: #ffffff;
    --bs-btn-bg: #0b0959;
    --bs-btn-border-color: #0b0959;
    --bs-btn-border-radius: 0;
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: #0b0959;
    --bs-btn-hover-border-color: #0b0959;
    --bs-btn-focus-shadow-rgb: #0b0959;
    --bs-btn-active-color: #ffffff;
    --bs-btn-active-bg: #0b0959;
    --bs-btn-active-border-color: #0b0959;
}

.btn-slide::after {
    background-color: #cda349;
    content: '';
    position: absolute;
    top: 0;
    left: 0.7em;
    height: 110%;
    width: calc(100% + 5em);
    transform: translate(-100%,0) skew(25deg);
    transition: transform .3s ease 0s;
    z-index: 1;
}

.btn-slide span {
    position: relative;
    z-index: 2;
}

.btn-slide:hover::after {
    transform: translate(calc(0% - 2.5em), 0) skew(35deg);
}

.bg-muted {
    opacity: .2;
}

.bg-muted:hover{
    opacity: 1;
}

.form-check-input:checked {
    background-color: #0b0959;
    border-color: #0b0959;
}

/* Profile Editor */
.vich-image img{
    max-height: 249px;
    display: block;
    margin-bottom: 4px;
}

.vich-image img:hover{
    cursor: pointer;
    filter: brightness(50%);
}

.submit-container-show-change {
    position: fixed;
    bottom: 0;
    left: 0;
    background: #cda349;
    z-index: 2;
    width: 100vw;
    padding-left: 20%;
    padding-top: 1rem;
    padding-bottom: 1px;
}

/* CUSTOM */

body{
    font-family: 'Work Sans', sans-serif;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
    font-family: 'Noto Serif', serif;
}

h1 sup{
    font-size: .2em;
    top: -2em;
}

.fs-large{
    font-size: 2rem;
}

.fs-small{
    font-size: 10px;
    padding-top: 11px;
}

blockquote {
    background: #f9f9f9;
    border-left: 10px solid #ccc;
    padding: 1.5em 10px;
    position: relative;

}
blockquote:before {
    color: #ccc;
    content: open-quote;
    font-family: auto;
    font-size: 4em;
    line-height: 0.1em;
    margin-right: 0.25em;
    vertical-align: -0.4em;
}
blockquote:after {
    position: absolute;
    right: 10px;
    bottom: -0.5em;
    color: #ccc;
    content: close-quote;
    font-family: auto;
    font-size: 4em;
}
blockquote p {
    display: inline;
}
blockquote footer {
    padding-top: 10px;
}

.navbar-brand img{
    width:50px;
    height:auto;
    filter:brightness(999);
}

.small-icon{
    font-size: 10px;
}

.big-icon{
    font-size: 50px;
}

.icon-image{
    max-width: 100%;
    height: auto;
    padding-top: 20px;
    margin:auto;
    display: block;
}

.headshot-image{
    max-width: 200px;
    display: block;
    margin: auto;
}

a{
    text-decoration: none;
}

img{
    max-width: 100%;
}

.min-height-100{
    min-height: 100vh;
}

.min-height-100p{
    min-height: 100%;
}

.min-height-90{
    min-height: 90vh;
}

.min-height-50{
    min-height: 70vh;
}

.other-neutral-info label{
    font-size: 1.5em;
    margin-top: 20px;
}

/* Global Header and Footer  */
#navbarNavDropdown{
    font-size: 14px;
}

/* Home  */
.contact-palette{
    background: rgba(11,9,89, .9);
}

.contact-palette i {
    font-size: 30px;
}

.home hr{
    border-top-color: #cda349;
    border-top-width: 3px;
    opacity: 1;
}

/* Nuetrals Page */
.neutral-card{
    background-size: cover;
    background-position: top center;
}
.archived-neutral{
    filter: grayscale(1);
}
.archive-btn:hover{
    cursor: pointer;
    color:#0b0959;
}

.neutral-card-image-link{
    min-height: 350px;
    display: block;
}

.neutral-card-link-title a{
    color:#ffffff;
}

.cal-btn:hover, .neutral-card-link-title a:hover{
    cursor: pointer;
    color:#0b0959;
}

.neutral-card:hover .neutral-card-link-title{
    background: rgba(205,163,73, 1);
}

.neutral-card-link-title{
    background: rgba(205,163,73, .7);
    transition: .3s ease;
}

/* Schedule */
.schedule-thumbnail {
    width: 80px;
    height: 100px;
    background-size: cover;
    background-position: top center;
    display: block;
    margin: auto;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* Request */

.required::after{
    content: '*';
    color:red;
}

/* Profile */
.headshot{
    max-height: 300px;
    width: auto;
}

/* Public Calendar */
.public-calendar.fc h2{
    font-size: 1em;
}

.public-calendar .fc-button {
    font-size: .5em;
    line-height: .5;
    background: transparent;
    border: none;
    min-width: 100px;
    padding: 10px 30px;
}

.public-calendar.fc .fc-toolbar.fc-header-toolbar {
    margin-bottom: 0em;
    background: rgb(11, 9, 89);
    color:#fff;
    border-radius: 5px 5px 0px 0px;
}

.public-calendar.fc th {
    background: #cda349;
}
.public-calendar.fc th a{
    color: rgb(11, 9, 89);
    font-size: .8em;
}

.public-calendar.fc .fc-daygrid-day-top {
    display: flex;
    flex-direction: row-reverse;
    position: absolute;
    width: 100%;
}

.public-calendar.fc .fc-daygrid-bg-harness{
    top: 50%;
}
.public-calendar.fc .fc-daygrid-bg-harness:first-child{
    top: 0;
    height: 50%;
}

.public-calendar.fc .fc-daygrid-day-frame{
    height: 50px;
}

.public-calendar .fc-daygrid-event-dot{
    display:none;
}

.public-calendar .fc-theme-standard td{
    line-height: normal;
}

.cal-key{
    padding:10px;
    border: 1px solid #ddd;
}
.open-key{
    background: #ffffff;
}

.fc .fc-bg-event.tentative-event{
    background: rgb(249 245 219);
    opacity: 1;
}
.tentative-key{
    background: rgba(255,220,40,.15);
}

.fc .fc-bg-event.confirmed-event{
    background:#393939;
    opacity: 1;
}
.booked-key{
    background: #393939;
}

.public-calendar .fc-h-event .fc-event-title {
    font-size: 10px;
}

.public-calendar .fc-event .fc-event-title{
    font-size: 10px;
    color: #fff;
    font-weight: 500;
}

.public-calendar .tentative-event .fc-event-title{
    color: #393939;
}

.public-calendar .fc-daygrid-event-harness .fc-event{
    margin: 0;
    border: none;
    height: 27px;
    border-radius: 0;
    margin-top: -1px;
}
.public-calendar .tentative-event.fc-event{
    background: rgb(249 245 219);
}
.public-calendar .tentative-event.fc-event .fc-event-main{
    color: #000 !important;
}

.public-calendar .confirmed-event.fc-event{
    background:#393939;
}

.public-calendar.fc .fc-daygrid-day.fc-day-today{
    background-color: rgba(11,9,89, .4) !important;
}

.public-calendar.fc .fc-daygrid-day-number {
    color: #4f4f4f;
    z-index: 9;
    font-size: 12px;
}

.public-calendar .fc-daygrid-day-frame:hover{
    background: #d7d5d5;
    cursor: pointer;
    border:1px solid #000000;
}
.public-calendar .fc-day-past .fc-daygrid-day-frame:hover{
    background: none;
    cursor: default;
    border: none;
}

.public-calendar.fc .fc-bg-event .fc-event-title {
    font-size: 12px;
}

.public-calendar .pm-event{
    position: absolute;
    width: 100%;
    margin-top: 26px !important;
}

.public-calendar .am-event{
    position: absolute;
    width: 100%;
}

.public-calendar .fc-daygrid-event-harness .allday-event{
    position: absolute;
    width: 100%;
    height:53px;
    z-index: 9;
}

.loading-calendar{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 20%;
    z-index: 9;
    background: rgba(255,255,255,.5);
}

/* Calendar */

#cal-modal {
    z-index: 9;
    position: absolute;
    left: 50%;
    top: 20%;
    background: #ffffff;
    width: 300px;
    height:440px;
    box-shadow: 2px 2px 30px #a7a7a7;
    transition: .3s ease;
}

#cal-modal .modal-header{
    border-radius: 0;
}

.active-cal{
    background:#569ff7;
    color: #ffffff;
}
.active-cal a{
    color: #ffffff;
}

.flatpickr-calendar.inline {
    margin: auto;
}

#status-confirmed-pill:hover, #status-cancelled-pill:hover, #side-status-confirmed-pill:hover, #side-status-cancelled-pill:hover{
    cursor: pointer;
}

.allDay-container label{
    font-size: 11px;
    padding: 2px;
}

.allDay-container div{
    margin-top: .25rem !important;
}

.event-min-allDay-container{
    margin-top: 2.5rem;
}

.allDay-container label:hover, .event-min-allDay-container label:hover{
    cursor: pointer;
}

.allDay-container .form-check, .event-min-allDay-container .form-check{
    padding-left: 0;
}

/*Mobile*/
#mobile-admin-menu{
    background: #0b0959;
    color: #fff;
    padding: 14px 18px;
    position: fixed;
    bottom: 10px;
    right: 10px;
    border-radius: 50%;
    z-index: 9;
    display:none;
}

/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .fs-large {
        font-size: 1.6rem;
    }

    .home-section{
        padding:0px !important;
    }

    .home-location-image{
        min-height:300px;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    .navbar-text{
        display:block !important;
    }

    .navbar-text .dropdown  {
        width: 50%;
        display: inline-block;
        margin-top: 20px;
    }

    .navbar-text .dropdown .dropdown-toggle i{
        margin-top: 10px;
    }

    #mobile-admin-menu{
        display:block;
    }
    #admin-side-nav{
        display:none;
    }
    #admin-side-nav.mobile-side-nav{
        display: block;
        position: fixed !important;
        min-height: 0;
        bottom: 70px;
    }
    div .flatpickr-calendar.inline{
        display:none;
    }
    #cal-modal{
        display:none !important;
    }
    #admin-calendar-page .fc .fc-toolbar{
        display:block;
        text-align: center;
    }
    .fc-toolbar-chunk{
        margin: 10px 0px;
    }
}

/*  Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    .home-section-location{
        background: none !important;
        padding:0!important;;
    }

    .home-section-location .container{
        max-width: 100% !important;
    }

    .home-location-image{
        display: block!important;
    }

    div .flatpickr-calendar.inline{
        display:none;
    }
    #admin-calendar-page .fc .fc-toolbar{
        display:block;
        text-align: center;
    }
    .fc-toolbar-chunk{
        margin: 10px 0px;
    }
}

@media (max-width: 1650px) {
    .flatpickr-calendar.inline{
        width:100%;
    }
    .flatpickr-innerContainer{
        overflow: auto !important;
    }
}

/*THESE ARE MIN WIDTH NOT MAX*/

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .admin-nav-item{
        display: block !important;
    }
    .fs-small {
        font-size: 12px;
        padding-top: 0.5rem;
    }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
    #navbarNavDropdown{
        font-size: 16px;
    }
}

