/* The main calendar widget.  DIV containing a table. */

.active {
	color:#212529;
	margin-right:0;
	background: none;
	filter: none;
	-webkit-border-top-left-radius: 0px;
	-webkit-border-top-right-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-topright: 0px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	font-size:inherit;
}

.calendar {
  position: relative;
  display: none;
 -webkit-box-shadow: 0px 0px 15px 1px rgba(69,65,78,0.2);
  box-shadow: 0px 0px 15px 1px rgba(69,65,78,0.2);
  font-size: 12px;
  color: #212529;
  cursor: default;
  background: #fff;
  font-family: Poppins;
  z-index: 9999;
  border-radius:4px;
}

.calendar table {
  cursor: default;
  padding:10px;
}

/* Header part -- contains navigation buttons and day names. */

.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
  text-align: center;
  padding: 1px;
  font-weight:500;
}

.button  {cursor:pointer;font-size:14px;}

.calendar .nav {
  background: transparent url(menuarrow.gif) no-repeat 100% 100%;
}

.calendar thead .title { /* This holds the current "month, year" */
  font-weight: 500;
  padding: 4px;
  text-align: center;
}

.calendar thead .headrow { /* Row <TR> containing navigation buttons */
  font-size:14px;
}

.calendar thead .headrow .button {background:#ebedf2;}

.calendar thead .daynames { /* Row <TR> containing the day names */
	padding:5px;
}

.calendar thead .name { /* Cells <TD> containing the day names */
  font-weight:500;
  padding: 10px 5px 5px 5px;
  text-align: center;
}


.calendar thead .hilite { /* How do the buttons in header appear when hover */
	color: #5867dd;
}

.calendar thead .active { /* Active (pressed) buttons in header */
   color: #5867dd;
}

/* The body part -- contains all the days in month. */

.calendar tbody .day { /* Cells <TD> containing month days dates */
  text-align: center;
  padding: 5px;
    width: 2em;

}
.calendar tbody .day.othermonth {
  padding: 5px;
 
}
.calendar tbody .day.othermonth.oweekend {
  padding: 5px;
}

.calendar table .wn {
  padding: 5px;
  background: #ebedf2;
}

.calendar tbody .rowhilite td {
  padding: 5px;
}

.calendar tbody .rowhilite td.wn {
  background: #ebedf2;  padding: 5px;
}

.calendar tbody td.hilite { /* Hovered cells <TD> */
  padding: 5px;
  background:#ebedf2;
  color:#fff;
  border-radius: 4px;
  color:#575962;
  cursor:pointer;
}

.calendar tbody td.active { /* Active (pressed) cells <TD> */
  padding: 5px;
}

.calendar tbody td.selected { /* Cell showing selected date */
  padding: 5px;
}

.calendar tbody td.weekend { /* Cells showing weekend days */
  padding: 5px;
}

.calendar tbody td.today { /* Cell showing today date */
  font-weight: 500;
  background:#828ee6;
  color:#fff;
  border-radius:4px;
  padding: 5px;
}

.calendar tbody .disabled { color: #999; }

.calendar tbody .emptycell { /* Empty cells (the best is to hide them) */
  visibility: hidden;
}

.calendar tbody .emptyrow { /* Empty row (some months need less than 6 rows) */
  display: none;
}

/* The footer part -- status bar and "Close" button */

.calendar tfoot .footrow { /* The <TR> in footer (only one right now) */
  border:5px solid #fff;
}

.calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */
  font-size:12px;
  padding:2px;
  color: #36a3f7;
  font-weight:500;
  text-align: center;
  border-radius:4px;
}

.calendar tfoot .hilite { /* Hover style for buttons in footer */

  background: #ebedf2;
}

/* Combo boxes (menus that display months/years for direct selection) */

.calendar .combo {
  position: absolute;
  display: none;
  width: 4em;
  top: 0px;
  left: 0px;
  cursor: default;
  background: #ebedf2;
  font-size: 90%;
  z-index: 100;
}

.calendar .combo .label,
.calendar .combo .label-IEfix {
  text-align: center;
}

.calendar .combo .label-IEfix {
  width: 4em;
}

.calendar .combo .active {
  background: #C3C4C0;
  padding: 0px;
}

.calendar .combo .hilite {

color:#5867dd;
}

.calendar td.time {
  padding: 1px 0px;
  text-align: center;
}

.calendar td.time .hour,
.calendar td.time .minute,
.calendar td.time .ampm {
  padding: 0px 3px 0px 4px;
  font-weight: bold;
  background-color: #fff;
}

.calendar td.time .ampm {
  text-align: center;
}

.calendar td.time .colon {
  padding: 0px 2px 0px 3px;
  font-weight: 500;
}

.calendar td.time span.hilite {
  background-color: #667;
  color: #fff;
}