*{
    font-family: "Poppins", sans-serif;
}
.h-font{
    font-family: "Libre Bodoni", sans-serif;
}
.print-font{
    font-family: "Source Serif 4", serif;
}

.h-line{
    width: 150px;
    margin: 0;
    height: 1.7px;
}

.line{
  width: auto;
  margin: auto;
  height: 2px;
}

/*Color Palette*/

:root{
    --fbc_color: #303183;
    --fbc_color_light: #6364c4;
    --pale_blue: #6060ff;
    --dark_blue: #222549;
    --blue: #3e438a;
    --pastel_blue: #e3ffff;
    --dark_red: #9c1a1a;
    --red: #dd6161;
    --white: #ffffff;
    --black: #000000;
    --transparent: #00000000;
    --dark_gray: #353535;
    --gray: #909090;
    --gold: #fffb00;
    --orange_gold: #eeca00;
}

/*Background Colors*/

.menu-bg{
    background-color: var(--blue);
    padding-right: 10px;
    padding-top: 10px;
}

.navbar-bg{
    background-image: linear-gradient(var(--fbc_color), var(--fbc_color_light), var(--transparent));
}

.button-bg{
    background-color: var(--pastel_blue);
    border: 1px solid var(--pale_blue);
}

.button-bg:hover{
    background-color: var(--pale_blue);
    border-color: var(--pale_blue);
}

.abutton-bg{
    background-color: var(--blue);
    border: 1px solid var(--dark_blue);
}

.abutton-bg:hover{
    background-color: var(--dark_blue);
    border-color: var(--dark_blue);
}

.rbutton-bg{
    background-color: var(--red);
    border: 1px solid var(--dark_red);
}

.rbutton-bg:hover{
    background-color: var(--dark_red);
    border-color: var(--dark_red);
}

.hf-color{
    color: var(--fbc_color);
}

.f-color{
    color: var(--white);
}

.fform-color{
    color: var(--black);
}

.formf-color{
  color: var(--gray);
}

.fbcf-color{
    color: var(--fbc_color);
}

.fbclf-color{
    color: var(--fbc_color_light);
}

.goldf-color{
    color: var(--gold);
}

.ogoldf-color{
    color: var(--orange_gold);
}

.graf-color{
    background: -webkit-linear-gradient(var(--gold), var(--orange_gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.icon-color{
    background: -webkit-linear-gradient(var(--gold), var(--orange_gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-color{
    color: var(--fbc_color);
}

body {
    position: relative;
    height: 100%;
  }

  body {
    background: #eee;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #000;
    margin: 0;
    padding: 0;
  }

.logo{
    width: 50px;
    height: 50px;
}

.fit_image{
    width: 100%;
    height: 100%;
}


.nonlist {
    list-style: none;
}

.fill {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden
}
.fill img {
    flex-shrink: 0;
    min-width: 100%;
    min-height: 100%
}

.sidemenu {
    position: absolute;
    height: 100%;
    width: auto;
    z-index: 1;
    padding: 0;
}

/* The Modal (background) */
.loginmodal {
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* Modal Content/Box */
  .loginmodal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
  }
  
  /* The Close Button */
  .loginclose {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .loginclose:hover,
  .loginclose:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

  .login-form {
    background-color: #fefefe;
    margin: 8% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%; 
  }

  .login-alert{
    position: fixed;
    top: 25px;
    right: 25px;
  }

#dashboard-menu{
    position: fixed;
    height: 100%;
}

.sched-font{
    font-size: 100%;
}

#announcement_carousel {
    height: 600px;
}
.carousel-item .d-block {
    object-fit: cover;
    max-height: 600px;
    max-width: 100%;
    margin: auto;
}

@media screen and (max-width: 992px){
    #dashboard-menu{
        height: auto;
        width: 100%;
        z-index: 1;
    }
    #main-content{
        margin-top: 60px;
    }
    .sched-font{
        font-size: 80%;
        word-wrap: break-word;
    }
    #announcement_carousel {
        height: 300px;
    }
    .carousel-item {
        max-height: 300px;
    }
}

.loader{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f7f9fb;
    transition: opacity 0.75s, visibility 0.75s;
}

.loader-hidden{
    opacity: 0;
    visibility: hidden;
}

.loader::after{
    content: "";
    width: 75px;
    height: 75px;
    border: 15px solid #dddddd;
    border-top-color: var(--fbc_color);
    border-radius: 50%;
    animation: loading 0.75s ease infinite;
}

@keyframes loading {
    from{
        transform: rotate(0turn);
    }
    to{
        transform: rotate(1turn);
    }
}