/* Base CSS */
body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  background-image: url(../img/bg.jpg); /* fallback for older browsers */
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0%,rgba(255, 255, 255, 0.2) 100%), url(../img/bg.jpg);
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-attachment: fixed;
  padding-bottom: 30px;
}
@media (min-width: 1200px){
  .container.small {
      max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container.small {
      max-width: 720px;
  }
}
@media (min-width: 1200px){
  .container.x-small {
      max-width: 300px;
  }
}
@media (min-width: 992px) {
  .container.x-small {
      max-width: 300px;
  }
}
@media (min-width: 992px) {
  .col-lg-8, .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.col-lg, .col-lg-8, .col-sm-4 {
  background-color: #fdfdfd;
}
.card {
  box-shadow: 0 16px 48px #E3E7EB;
}
.card.h-90 {
  height: 90%;
}
.card-text.truncate {
  max-height: 180px;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  content: "";
}
.card-text.truncate:before {
  content:'';
  width:100%;
  height:100%;    
  position:absolute;
  left:0;
  top:0;
  background:linear-gradient(transparent 100px, white);
}
.shadow {
  box-shadow: 0 4px 2px -2px rgba(0,0,0,0.1);
}
footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 30px;
}
.footer-text {
  display: inline-block;
  line-height: 30px;
  font-size: small;
}
/* Calendar CSS */
.calendar-toolbar{
  display: none !important;
}
.calendar-body-content{
  border-top: 10px solid #E3E7EB;
}