/*!
JC Staneke Styles
1 em = 16 px
rem = root em
*/

body {
  padding-top:56px;
  padding-bottom: 100px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.5rem 0 0;
    font-size: 1rem;
    color:  rgb(49, 72, 177);
    text-align: left;
    list-style: none;
    background-color: rgb(237, 156, 48);
    background-clip: padding-box;
    border: 0px solid;
    border-radius: 0.25rem;
  }

  .dropdown-item:hover, .dropdown-item:focus {
    color: rgb(237, 156, 48);
    text-decoration: none;
    background-color: #f8f9fa;
  }

  .bg-light-jcs {
    background-color: #e9e9e9 !important;
  }

  .bg-secondary-jcs {
    background-color: #686868 !important;
  }

  .copyright {
    font-size: 0.7rem;
    /*color: rgb(237, 156, 48);*/
    text-align: center;
    padding: 10px;
  }

  .vertical-center-jcs {
    min-height: 100%;  /* Fallback for browsers do NOT support vh unit */
    min-height: 100vh; /* These two lines are counted as one :-)       */

    display: flex;
    align-items: center;
  }

