/* Use this file for quick css fixes */

/*"Andy needs to add this to the main style sheet."  TS: don't think this is needed;
 .container {
   text-align: center;
 }
 
 .container div {
    display: inline-block;
    padding: 50px;
    padding-top: 0px;
    padding-right: 50px;
    padding-bottom: 50px;
    padding-left: 50px;
    width: 250px;
 }
 
 .rbc-label-start {
   font-family: 'fontawesome';
   font-weight: bold;
   font-size: 30px;
 }
 
 .rbc-center-text {
   font-family: 'Roboto', 'Myriad Set Pro', 'Lucida Grande', 'Helvetica Neue', Helvetica, Arial;
    fill: #14467F;
   font-size: 45px;
   font-weight: bold;
 }
  Style the list 
ul.tab {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

 Float the list items side by side 
ul.tab li {float: left;}

 Style the links inside the list items 
ul.tab li a {
    display: inline-block;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    transition: 0.3s;
    font-size: 17px;
}

 Change background color of links on hover 
ul.tab li a:hover {background-color: #ddd;}

 Create an active/current tablink class 
ul.tab li a:focus, .active {background-color: #ccc;}

 Style the tab content 
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}*/
