
    /* Float four columns side by side */
    .column {
    float: left;
    width: 25%;
    padding: 0 5px;
    }

    .row {margin: 0 -5px;}

    /* Clear floats after the columns */
    .row:after {
    content: "";
    display: table;
    clear: both;
    }

    /* Responsive columns */
    @media screen and (max-width: 600px) {
    .column {
    width: 100%;
    display: block;
    margin-bottom: 10px;
    }
    }

    /* Style the counter cards */
    .card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    padding: 16px;
    text-align: center;
    background-color: #444;
    color: white;
    }

    .fa {font-size:50px;}




    html {
      background-color: black;
    }
    body{ 
    opacity:0;
    transition: opacity 2s;
    -webkit-transition: opacity 2s; /* Safari */
    }
    .animated {
    background-color: green;
    background-position: left top;
    padding-top:95px;
    margin-bottom:60px;
    -webkit-animation-duration: 15s;animation-duration: 15s;
    -webkit-animation-fill-mode: both;animation-fill-mode: both;
    }

    @-webkit-keyframes fadeOut {
    0% {opacity: 1;}
    100% {opacity: 0;}
    }

    @keyframes fadeOut {
    0% {opacity: 1;}
    100% {opacity: 0;}
    }

    .fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
    }



    .div_text {
        position: fixed;
        z-index: 99;
    }


    #hideAll
    {
    position: fixed;
    left: 0px; 
    right: 0px; 
    top: 0px; 
    bottom: 0px; 
    background-color: white;
    z-index: 99; /* Higher than anything else in the document */

    }


/* 
//------------------------------------------
// CALENDAR WEEK DIV
//------------------------------------------
*/



ul.cal_week  {
  list-style: none;
  padding: 0;
  margin: 0;
    opacity: 0;
}

ul li.cal_week  {
  display: inline-block;
  width: 120px;
  margin: 10px;

}


time.icon {
  display:block;
  position:relative;
  width:100%;
  height:100%;
  background-color:#fff;
  margin:0;
  border-radius:4px;
  -webkit-border-radius:4px;
  -moz-border-radius:4px;
  overflow:hidden;
animation: fade-out .5s 1;

  }

time.icon * {
  display:block;
  width:100%;
  font-weight:700;
  font-style:normal;
  text-align:center;
  animation: fade-out .5s 1;
}

time.icon .month {
  text-transform:uppercase;
  font-size:10px;
  color:#fff;
  background-color:rgba(0,0,0,.1);
  padding:7px 0;
  border-bottom:1px solid rgba(0,0,0,.2);
}

time.icon .day {
  font-size:28px;
  color:#fff;
  padding:0;
  padding-top:10px;
  
}
time.icon .bigday {
  font-size:28px;
  color:#fff;
  padding:0;
  padding-top:10px;
    -webkit-animation-name: example; /* Safari 4.0 - 8.0 */
    -webkit-animation-duration: 2s; /* Safari 4.0 - 8.0 */
    animation-name: example;

    animation: example 3s linear infinite;
}


/* Safari 4.0 - 8.0 */
@-webkit-keyframes example {

0%{opacity: 0;}
50%{opacity: .5;}
100%{opacity: 1;}  
}

/* Standard syntax */
@keyframes example {

 0%{opacity: 0;}
50%{opacity: .5;}
100%{opacity: 1;} 
}


time.icon .week {
  font-size:12px;
  line-height:16px;
  color:#fff;
  padding:5px 0;
  padding-bottom:10px;

}



.icon.sunday {

background: rgba(23, 61, 105, 0.2);
  width: 320px;
  color:#fff!important;
   
transition: opacity 1.25s ease-in-out;
}

.icon.monday {

background: rgba(31, 81, 139, 0.2);
  height: 500px;
  width: 320px;
  color:#fff!important;
     bottom:10px;
transition: opacity 1.25s ease-in-out;
}


.icon.tuesday {
background: rgba(20, 136, 200, 0.2);
  width: 320px;
  color:#fff!important;
     bottom:15px;

}

.icon.loading {
background: rgba(20, 136, 200, 0.1);
  height: 100px;
  width: 720px;
  color:#fff!important;
    font-size:50px;
  position: absolute;
  left: 485px;

     bottom:48px;  

}

.icon.loading.hide {
  visibility: hidden;
  display:none;

  animation: fade-out .5s 1;
}
@keyframes fade-out {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

time.icon .week p {
  text-align: left;
  margin-left: 25px;

}


/* 
//------------------------------------------
// BOTTOM FIXED NAV BAR
//------------------------------------------
*/


.navbarbottom {
  overflow: hidden;

  position: fixed;
  bottom: 0;
  width: 100%;

}
.navbarbottom div{
     position:absolute;
     bottom:15px;
     right:15px;

}


.navbarbottom a {
  float: right;
  display: block;
  color: #999;
  text-align: center;
  padding: 21px 26px;
  text-decoration: none;
  font-size: 12px;
  font-family: "Verdana";  


}

.navbarbottom a:hover {
background: rgba(20, 136, 200, 0.2);
  color: white;
    display: block;
}

.navbarbottom a.active {
  background-color: #FFF;
  color: #999;
    display: block;
}


