/*
 * css for creating dynamic date figures
 * 
 * Taken from: https://codepen.io/kamil/pen/jkzcd.css
 */
/* @group Mixins */

/* switched out
* {
  border: 0;
  margin: 0;
  padding: 0;
  outline: 0;
}
html {
  background-color: #282e3a;
}
body {
  width: 400px;
  margin: 0 auto;
}
*/

.calicon {
  /*margin: 0 15px 15px 0;*/
  width: 64px;
  height: 55px;
  background-color: #ffffff;
  border-radius: 5px;
  border: 1px solid #bdbdbd;
  position: relative;
  box-shadow: 0 1px 0 #bdbdbd, 0 2px 0 #fff;
}
.calicon:before {
  content: '';
  display: block;
  width: 64px;
  height: 34px;
  border-radius: 5px 5px 0 0;
  background-image: -webkit-linear-gradient(white 0%, #edeeef 100%);
  background-image: -moz-linear-gradient(white 0%, #edeeef 100%);
  background-image: -o-linear-gradient(white 0%, #edeeef 100%);
  background-image: linear-gradient(white 0%, #edeeef 100%);
}
.calicon header {
  width: 64px;
  height: 13px;
  position: absolute;
  top: -1px;
  background-color: #3366CC; /* was: #fa565a; */
  border-radius: 5px 5px 0 0;
  border-bottom: 1px solid #e5e5e5;
  font: 200 7.5px/13.5px Arial, Helvetica, Geneva, sans-serif;
  letter-spacing: 0.5px;
  color: #fff;
  text-align: center;
}
.calicon section {
  width: 64px;
  height: 40px;
  position: absolute;
  top: 14px;
  font: 200 27.5px/37.5px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
  letter-spacing: -1px;
  color: #4c566b;
  text-align: center;
  z-index: 10;
}
.calicon section:before {
  content: '';
  display: block;
  position: absolute;
  top: 17px;
  width: 1.5px;
  height: 5px;
  background-image: -webkit-linear-gradient(#b5bdc5 0%, #e5e5e5 100%);
  background-image: -moz-linear-gradient(#b5bdc5 0%, #e5e5e5 100%);
  background-image: -o-linear-gradient(#b5bdc5 0%, #e5e5e5 100%);
  background-image: linear-gradient(#b5bdc5 0%, #e5e5e5 100%);
}
.calicon section:after {
  content: '';
  display: block;
  position: absolute;
  top: 17px;
  right: 0;
  width: 1.5px;
  height: 5px;
  background-image: -webkit-linear-gradient(#b5bdc5 0%, #e5e5e5 100%);
  background-image: -moz-linear-gradient(#b5bdc5 0%, #e5e5e5 100%);
  background-image: -o-linear-gradient(#b5bdc5 0%, #e5e5e5 100%);
  background-image: linear-gradient(#b5bdc5 0%, #e5e5e5 100%);
}
/* @end */
