﻿/* --------------- STYLES FOR COS V2 --------------- */

/* Global */

body {
    background: var(--cosBackground);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.row {
    width: 100% !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
}

a {
    text-decoration: none;
    /*color: var(--cosBlue);*/
    color: var(--cosLink);
}

    a:hover {
        text-decoration: underline;
        color: var(--cosLinkHover);
    }

.uniRight {
    justify-content: flex-end;
    text-align: right;
    float: right !important;
}


/* Variables */

.offcanvas {
    --bs-offcanvas-width: 300px !important;
}

:root {
    --cosBlue: #34396e;
    --cosBlueHover: #24274d;
    --cosOrange: #f4a528;
    --cosGray: #323232;
    --cosBackground: linear-gradient(0deg, #34396E, #FFFFFF);
    --cosLinkHover: rgb(0, 100, 255);
    --cosLink: rgb(0, 100, 200);
}

.btn.fa {
    background-color: transparent;
    border: none;
    color: white !important;
}

    .btn.fa:hover {
        color: rgb(0, 100, 255) !important;
    }

p {
    font-size: 14px !important;
}

ol li {
    font-size: 14px !important;
}

ul li {
    font-size: 14px !important;
}


/* --------------- TopNav --------------- */


/* STUFF FOR MOBILE NAVBAR */

@media only screen and (min-width: 1026px) {
    .mobileOnly {
        display: none;
    }
}

@media only screen and (max-width: 1026px) {
    .desktopOnly {
        display: none;
    }
}

.nav-item {
    font-size: 20px !important;
}

.nav-link:hover {
    color: var(--cosOrange) !important;
}

/* STUFF FOR NAVBAR - > DO NOT DELETE UNDER ANY CIRCUMSTANCES EVER OR ELSE THE WORLD MIGHT IMPLODE*/

/* For showing dropdown on hover */
@media (min-width: 576px) {
    .dropdown-menu {
        display: block;
        opacity: 0;
        transition: all 0.2s;
    }
}


.dropdown-menu {
    display: none;
}

.navbar-nav .nav-link.active {
    color: var(--cosOrange);
}

.dropdown:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    animation: slideDown 0.3s ease-in-out;
    filter: drop-shadow(5px 5px 10px #000000);
    border-top: 4px solid var(--cosOrange);
    /*width: 55vw;*/
/*    min-width: 30vw;
    max-width: 55vw;*/
    left: -70%;
}

.dropdown:hover > .nav-link {
    color: var(--cosOrange);
}

    /*.dropdown > .nav-link::after {
    content: '';
    position: absolute;
    height: 5px;
    left: 0;
    bottom: 0;
    width: 0;
    background: var(--cosOrange);
    transition: width .2s;
}

.dropdown > .nav-link:hover::after {
    width: 100%;
}*/

    .dropdown:hover > .nav-link::after {
        content: '';
        position: absolute;
        height: 5px;
        left: 0;
        bottom: 0;
        width: 0;
        background: var(--cosOrange);
        transition: width .2s;
    }



.dropdown-menu a {
    color: var(--cosBlue);
    text-decoration: none;
}

    .dropdown-menu a:hover {
        color: var(--cosLinkHover);
        text-decoration: underline;
    }

        .dropdown-menu a:hover::after {
            width: 100%;
        }

.dropdown-menu-heading {
    color: black !important;
}

    .dropdown-menu-heading.nolink {
        padding: 0px;
        margin: 0px;
    }

    .dropdown-menu-heading:not(.nolink):hover {
        color: var(--cosLinkHover) !important;
    }

.list-unstyled li a {
    padding-left: 15px;
}



.navbar {
    padding: 0px;
    background-color: white;
}

.navbar-brand {
    /*height: 100px;*/
    margin-top: -15px;
}


/*Buttons / dropdowns on navbar */

.navbar-nav {
}

    .navbar-nav > li {
        padding-bottom: 0px;
    }

.nav-link {
    /*color: black;*/
    color: var(--cosBlue);
    /*padding: 0px;*/
}


@keyframes slideDown {
    from {
        top: 20px;
        opacity: 0;
    }

    to {
        top: 38px;
        opacity: 1;
    }
}

/*@keyframes slideDownOut {
    from {
        top: 38px;
        opacity: 1;
    }

    to {
        top: 20px;
        opacity: 0;
    }
}*/

/* ICON NAVBAR (BELOW CAROUSEL) */

.iconNavbar {
    background-color: var(--cosBlue);
    width: 100%;
    margin-left: 0px;
    color: white;
    padding-left: 100px;
    padding-right: 100px;
    padding-top: 0px;
    padding-bottom: 0px;
}

.iconNavbar-icon {
    color: white;
    font-size: 50px;
    padding-bottom: 10px;
}

    .iconNavbar-icon:hover {
        color: var(--cosOrange);
        transform: scale(1.1);
    }

.uniCenter {
    justify-content: center;
    text-align: center;
}

/* CALENDAR */

.fc .fc-col-header-cell-cushion {
    color: black;
}

.fc .fc-button {
    height: auto;
    background-color: var(--cosBlue);
}

.fc .fc-button-primary:not(:disabled).fc-button-active {
    background-color: #4d54a3;
}

.fc-toolbar-title {
    color: var(--cosBlue);
}

.fc-daygrid-day-number {
    color: black;
}

.fc .fc-daygrid-day.fc-day-today {
    background-color: rgba(244, 165, 40, 0.2);
}

.fc-direction-ltr .fc-daygrid-event {
    /*color: black;*/
    /*color: var(--cosGray);*/
    overflow: hidden;
}

.fc-event {
    /*color: var(--cosGray);*/
    /*background-color: white;*/
}

    .fc-event:hover {
        /*background-color: #3a87ad;*/
        color: var(--cosGray);
    }

/*.fc-today-button:after {
    content: 'This Month';
}*/

.fc .fc-toolbar {
    display: block;
}

.fc .fc-toolbar-title {
    padding-left: 25px !important;
}

/* Navigation panels */

.cosNav-container {
    display: flex;
    height: 100%;
    max-width: 98%;
    width: 100%;
    padding-right: 100px;
    padding-left: 100px;
}

@media only screen and (max-width: 1026px) {
    .cosNav-container {
        padding-left: 10px !important;
        padding-right: 10px !important;
        max-width: 100% !important;
        display: flex;
    }
}


.cosNav-tabs {
    flex-direction: column;
    width: 15%;
    margin-right: 70px;
}

@media only screen and (max-width: 1026px) {
    .cosNav-tabs {
        width: 100%;
        margin-right: 0px;
    }
}


.cosNav-btn {
    /*background-color: rgb(200, 200, 200);*/
    background-color: var(--cosBlue);
    color: white;
    margin-top: 4px;
    text-align: left;
    cursor: pointer;
    /*font-size: 16px;*/
    font-size: 14px;
    transition: background-color 0.3s ease;
    border-radius: 8px;
    width: 100%;
    min-width: 185px;
}

    .cosNav-btn span {
        /*margin-left: 45%;*/
        /*padding-left: 10%;*/
        /*display: inline-block;*/
        /*text-align: right;*/
        float: right;
        margin-top: 11px;
    }

    .cosNav-btn:hover {
        /*background-color: rgb(180, 180, 180);*/
        background-color: var(--cosBlueHover);
        left: 0px !important;
        transition: left 0.2s ease-in-out, background-color 0.2s ease-in-out;
        color: white;
    }

    .cosNav-btn:not(:hover) {
        transition: left 0.2s ease-in-out, background-color 0.2s ease-in-out;
    }

    .cosNav-btn.active {
        /*background-color: rgb(230, 230, 230);*/
        background-color: var(--cosBlue);
        border-left: 8px solid var(--cosOrange);
        border-top: none;
        border-bottom: none;
        border-right: none;
        left: 0;
        color: white;
        font-weight: bold;
    }

.cosNav-btn-dd {
    /*background-color: rgb(200, 200, 200);*/
    background-color: var(--cosBlue);
    color: white;
    margin-top: 4px;
    text-align: left;
    cursor: pointer;
    /*font-size: 16px;*/
    font-size: 14px;
    transition: background-color 0.3s ease;
    border-radius: 8px;
    width: 100%;
}

    .cosNav-btn-dd:hover {
        /*background-color: rgb(180, 180, 180);*/
        background-color: var(--cosBlueHover);
        left: 0px !important;
        transition: left 0.2s ease-in-out, background-color 0.2s ease-in-out;
        color: white;
    }

    .cosNav-btn-dd:not(:hover) {
        transition: left 0.2s ease-in-out;
    }

    .cosNav-btn-dd.active {
        /*background-color: rgb(230, 230, 230);*/
        background-color: var(--cosBlue);
        border-left: 8px solid var(--cosOrange);
        border-top: none;
        border-bottom: none;
        left: 0;
        color: white;
    }


.cosNav-dd-container {
    background-color: rgb(200, 200, 200);
    color: black;
    margin-top: 4px;
    text-align: left;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    border-radius: 8px;
    width: 100%;
}

    .cosNav-dd-container .cosNav-dd {
        display: none;
    }

    .cosNav-dd-container .active .cosNav-dd {
        display: block;
    }

.cosNav-dd {
    max-height: 0px;
    overflow: hidden;
    opacity: 0;
    /*transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;*/
    transition: max-height 0.3s ease-in-out, opacity 0.5s ease-in-out;
    color: white;
}

    .cosNav-dd.active {
        max-height: 1000px;
        opacity: 1;
        color: white;
        position: relative;
        /*right: 15px;*/
        margin-left: -15px;
        /*animation: cosNav-dd-anim 0.3s ease-in-out forwards;*/
        transition: max-height 0.3s ease-in-out;
    }

@keyframes cosNav-dd-anim {
    0% {
        height: 0px;
    }

    100% {
        height: max-content;
    }
}

/*.cosNav-dd-items {
    list-style-type: none;
    right: 25px;
    width: 112%;
    position: relative;
}*/



.cosNav-btn-dd {
    transition: margin-bottom 0.3s ease-in-out;
}

.cosNav-panels {
    width: 100%;
    z-index: 1;
}

@media only screen and (max-width: 1026px) {
    .cosNav-panels {
        /* idk... */
        width: 100%;
        padding: 0px;
        margin: 0px;
    }
}





@media only screen and (max-width: 1026px) {
    .cosNav-tabs {
        width: 0%;
        margin-right: 0px;
        display: none;
    }
}

.cosNav-panel {
    background-color: transparent;
    color: black;
    width: 100%;
    display: none;
    filter: drop-shadow(5px 5px 10px #000000);
}

@media only screen and (max-width: 1026px) {
    .cosNav-panel {
        width: 100%;
        padding: 0px;
        margin: 0px;
    }
}

.cosNav-panel.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}


.cosNav-panel-heading {
    background-color: white;
    color: var(--cosBlue);
    /*text-decoration: underline;*/
    /*text-decoration-color: var(--cosOrange);*/
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-top: 2px solid var(--cosBlue);
    border-left: 2px solid var(--cosBlue);
    border-right: 2px solid var(--cosBlue);
    width: 100%;
    /*padding-left: 10px;*/
}

    .cosNav-panel-heading h3 {
        position: relative;
        left: 10px;
    }

    .cosNav-panel-heading:after {
        content: '';
        display: block;
        margin: 0 auto;
        width: 98%;
        /*padding-top: 20px;*/
        padding: 0;
        border-bottom: 2px solid var(--cosOrange);
    }



.cosNav-panel-body {
    padding: 10px;
    margin: auto;
    width: 100%;
    overflow: auto;
    border-left: 2px solid var(--cosBlue);
    border-right: 2px solid var(--cosBlue);
    border-bottom: 2px solid var(--cosBlue);
    background-color: white;
    overflow: auto;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* Blog stuff */

.blog {
    width: 300px;
    height: 300px;
    border-radius: 10px;
    transform: scale(1);
    transition: transform 0.2s ease-in-out, filter 0.2s ease-in-out;
    z-index: 1;
    position: relative;
    background-size: cover;
    justify-content: center;
    text-align: center;
    filter: none;
    color: white !important;
    background-position: center;
    border: 1px solid rgb(100, 100, 100);
    filter: drop-shadow(5px 5px 10px #000000);
}

.blog-lg {
    width: 400px;
    height: 400px;
    border-radius: 10px;
    position: relative;
    background-size: cover;
    justify-content: center;
    text-align: center;
    color: white !important;
    background-position: center;
    filter: drop-shadow(5px 5px 10px #000000);
}

.blog:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease-in-out, filter 0.2s ease-in-out;
    z-index: 2;
    filter: drop-shadow(5px 5px 10px #000000);
}

.blogMsg {
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
    /*background-color: rgb(0, 0, 0, 0.5);*/
    background-color: rgba(255, 255, 255, 0.8);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    top: 75%;
    height: 75px;
    /*position: sticky;*/
    position: relative;
    color: black;
}

.pressRelease {
    width: 400px;
    min-height: 150px;
    max-height: 200px;
    border-radius: 10px;
    transform: scale(1);
    transition: transform 0.2s ease-in-out, filter 0.2s ease-in-out;
    z-index: 1;
    position: relative;
    border: 1px solid rgb(100, 100, 100);
    background-color: rgb(230, 230, 230);
}

.pressRelease:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease-in-out, filter 0.2s ease-in-out;
    z-index: 2;
    filter: drop-shadow(5px 5px 10px #000000);
    text-decoration: none !important;
}


/* Misc. */

.cosPanel {
    background-color: transparent;
    /*max-width: 95%;*/
    color: white;
    margin: 0 auto;
    box-sizing: border-box;
}

.cosPanel-heading {
    background-color: var(--cosBlue);
    color: white;
    width: 100%;
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 5px;
    padding-bottom: 0px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
}

.cosPanel-body {
    border-left: 2px solid var(--cosBlue);
    border-right: 2px solid var(--cosBlue);
    border-bottom: 2px solid var(--cosBlue);
    background-color: rgb(230, 230, 230);
    color: black;
    padding: 15px;
    margin: auto;
    width: 100%;
    overflow: auto;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.cosPanel-plain {
    border: 1px solid rgb(227, 227, 227);
    background-color: rgb(245, 245, 245);
    border-radius: 8px;
    padding: 5px;
}

.imageGallery {
    width: 300px;
    height: 300px;
    border-radius: 30px;
    transform: scale(1);
    transition: transform 0.2s ease-in-out, filter 0.2s ease-in-out;
    z-index: 1;
    position: relative;
    background-size: cover;
    justify-content: center;
    text-align: center;
    filter: none;
    color: white !important;
    background-position: center;
    /*border: 1px solid black;*/
}

    .imageGallery:hover {
        transform: scale(1.1);
        transition: transform 0.2s ease-in-out, filter 0.2s ease-in-out;
        z-index: 2;
        filter: drop-shadow(5px 5px 10px #000000);
    }

.msg {
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    background-color: rgb(0, 0, 0, 0.5);
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    top: 81%;
    height: 57px;
    position: relative;
}

.imageGallery:hover .msg {
    /*display: block;*/
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
}


.personImg {
    width: auto;
    height: 250px;
    border-radius: 8px;
    border: 2px solid rgb(200, 200, 200);
}




.cosPanel-collapse {
    border-radius: 5px;
}

.cosPanel-collapse-heading {
    background-color: rgb(170, 170, 170);
    color: black;
    padding-top: 4px;
    /*padding: 0px;*/
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.cosPanel-collapse-body {
    background-color: rgb(230, 230, 230);
    padding: 8px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: height 0.3s ease, opacity 0.3s ease;
    border: 2px solid rgb(170, 170, 170);
}

.cosPanel-collapse-heading.collapsed {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}



/*.cosPanel-collapse-heading:not(collapsed) {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}*/


.socialMediaIcon {
    /*padding-right: 10%;*/
    margin-left: 10%;
    margin-right: 10%;
    font-size: 60px;
    width: 50px;
    text-align: center;
    text-decoration: none;
}

    .socialMediaIcon:hover {
        opacity: 0.7;
    }

.socialMediaIcon-sm {
    margin-left: 10%;
    margin-right: 10%;
    font-size: 30px;
    width: 50px;
    text-align: center;
    text-decoration: none;
}

.socialMediaIcon-sm:hover {
    opacity: 0.7;
}


/* --------------- 4) Buttons --------------- */

.uniBtn {
    background-color: rgb(60, 60, 60);
    color: white;
    border-radius: 4px;
}

    .uniBtn:hover {
        background-color: rgb(50, 50, 50);
        color: white;
    }

    .uniBtn.blue {
        background-color: rgb(0, 100, 255);
    }

        .uniBtn.blue:hover {
            background-color: rgb(0, 50, 255);
        }

    .uniBtn.green {
        background-color: rgb(0, 100, 0);
    }

        .uniBtn.green:hover {
            background-color: rgb(0, 90, 0);
        }

    .uniBtn.orange {
        background-color: rgb(255, 125, 0);
    }

        .uniBtn.orange:hover {
            background-color: rgb(240, 100, 0);
        }

    .uniBtn.white {
        background-color: rgb(230, 230, 230);
        color: black;
    }

        .uniBtn.white:hover {
            background-color: rgb(200, 200, 200);
            color: black;
        }

    .uniBtn.red {
        background-color: rgb(200, 0, 0);
    }

        .uniBtn.red:hover {
            background-color: rgb(170, 0, 0);
        }

    .uniBtn.gray {
        background-color: rgb(100, 100, 100);
    }

        .uniBtn.gray:hover {
            background-color: rgb(90, 90, 90);
        }

    .uniBtn.lightblue {
        background-color: rgb(0, 185, 255);
    }

        .uniBtn.lightblue:hover {
            background-color: rgb(0, 155, 230);
        }

    .uniBtn.purple {
        background-color: rgb(150, 0, 150);
    }

        .uniBtn.purple:hover {
            background-color: rgb(130, 0, 130);
        }

    .uniBtn.fa {
        background-color: transparent;
    }

    .uniBtn.txt {
        padding: 0;
        margin: 0;
        background-color: transparent;
        /*color: black;*/
        color: var(--cosLink);
    }

    .uniBtn.txt:hover {
        text-decoration: underline; 
    }


    .uniBtn.clear {
        background-color: transparent;
        backdrop-filter: blur(10px);
    }

        .uniBtn.clear:hover {
            background-color: rgba(50, 50, 50, 0.5);
        }


a.uniBtn {
    text-decoration: none;
}

.req {
    display: inline;
    padding: 0px !important;
    margin: 0px !important;
    color: red;
}

.form-control {
    max-height: 300px;
    font-size: 14px;
}

.control-label {
    font-size: 14px;
}

label {
    font-size: 14px;
}


.customCheckbox input {
    width: 25px;
    height: 25px;
}

.customCheckbox-md input {
    width: 20px;
    height: 20px;
}

.form-select {
    height: 35px !important;
}

/* Some custom panels */

.cosPnl {
    background-color: white;
    /*filter: drop-shadow(5px 5px 10px #000000);*/
    border: 1px solid rgb(0, 0, 0, 0.3);
    padding: 8px;
    border-radius: 8px;
}

.cosPnl_shadow {
    background-color: white;
    filter: drop-shadow(5px 5px 10px #000000);
    border: 1px solid rgb(0, 0, 0, 0.3);
    padding: 8px;
    border-radius: 8px;
}

a.cosNav-btn {
    text-decoration: none !important;
}



/* MODALS */

.blurBackground {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 999;
}

.cosModal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgb(230,230,230);
    border: 2px solid rgb(210, 210, 210);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    /*max-width: 90%;*/
    display: none;
    flex-direction: column;
    transform-origin: center;
    color: black;
}

@media only screen and (min-width: 1026px) {
    .cosModal {
        width: 40vw;
        height: auto;
    }
}

@media only screen and (max-width: 1026px) {

    .cosModal {
        width: 70vw;
        height: auto;
    }
}


.modalIn {
    animation: modalIn 0.3s ease-in-out;
}

.modalOut {
    animation: modalOut 0.3s ease-in-out;
}

@keyframes modalIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes modalOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.textDisabled {
    cursor: pointer;
    pointer-events: none;
}

.textDisabled:hover {
    cursor: not-allowed !important;
}

/*.cityNavIcon {
    position: absolute;
    transform: translate(-50%, -50%);
    bottom: 144px;
    border-radius: 50%;
    border: 2px solid var(--cosBlue);
    width: 130px;
    height: 130px;
    filter: drop-shadow(5px 5px 10px #000000);
}

    .cityNavIcon:hover {
        position: absolute;
        transform: translate(-50%, -50%);
        bottom: 144px;
        border-radius: 50%;
        border: 2px solid var(--cosOrange);
        width: 200px;
        height: 130px;
    }*/

    .cityNavIcon-img {
        border-radius: 50%;
        border: 2px solid white;
    }

    .cityNavIcon-img:hover {
        border-radius: 50%;
        border: 2px solid var(--cosOrange);
    }

.customHeading {
    color: var(--cosBlue);
    font-family: 'Open Sans', sans-serif;
    text-decoration: underline;
    
}

        .customHeading:hover {
            color: rgb(0, 100, 255) !important;
        }