@charset "UTF-8";
/*------------------------------------------------------------------
[Master Stylesheet]

Project        :   JumpstartLMS - #1 Learning Management System for Corporates
Version        :   V.2
Create Date    :   01/11/22
Copyright      :   Jumpstart Systems LLP 
Author         :   Jumpstart LMS
Author URL     :   https://jumpstartlms.com
Support		   :   sales@jumpstartlms.com
License        :   SaaS License for Learning Product Only

-------------------------------------------------------------------*/
/* ------ Table Of Contents
	* Bootstrap Framework
	* Calendar and Learning Events
*/
/*-------- Bootstrap Framework -------*/
@import "compass/css3";

.calendar {
  // Module Variables
  $color-red: #FFC000;
  $color-grey: #E7E6E6;
  
  // Demo Styles
  min-width: 350px;
  max-width: 30%;
  margin: 1em auto;
  padding: 1em;
  background: $color-grey;
  font-family: 'Lato', sans-serif;
  box-shadow: 0 0 0.1em rgba(0,0,0, 0.5);
  border-radius: 0.2em;
  &:last-child {
    border-top: 6px solid red;
  }
  h1 { 
    margin: 0 0 0.4em;
    font-weight: bold;
  }
  .event {
    color: rgb(15, 6, 97);
    display: block;
    padding: 0.1em;
    transition: all 0.25s ease;
    margin-bottom: 0.5em;
    &:hover {
      background: darken($color-grey, 10%);
      text-decoration: none;
      color: black;
    }
  }
  .event_icon {
    width: 3em;
    float: left;
    margin-right: 0.05em;
  }
  .event_month, .event_day { 
    text-align: center;
  }
  .event_month {
    padding: 0.1em;
    margin-bottom: 0.05em;
    background: $color-red;
    font-size: 0.05em;
    color: white;
    border-top-left-radius: 0.3em;
    border-top-right-radius: 0.3em;
  }
  .event_day {
    border: 1px solid #999;
    background: white;
    color: black;
    font-size: 1.25em;
    font-weight: bold;
    border-bottom-left-radius: 0.1em;
    border-bottom-right-radius: 0.1em;
  }
  .event_title {
    font-size: 1.1em;
    height: 3em;
    display: table-cell;
    vertical-align: middle;
  }
  .btn { 
    margin-top: 0.5em;
    width: 100%;
    font-size: 1.5em;
  }
}