/* --- EVENTS CALENDAR STYLES -- */
/* .cal-data {
  overflow:hidden;
}
.cal-data > h2 {
  float:left;
  margin:0;
}
.cal-data > p {
  float:right;
  margin:7px 10px 0 0;
  text-align:right;
}

.cal-row {
  clear:both;
  overflow:hidden;
}

.cal-item {
  border-right: 1px solid #cecece;
  float:left;
  padding:0;
  width:16.6%;
}

.cal-item a {
  color:#333;
  display:block;
  padding-bottom:2em;
  text-decoration:none;
}

.cal-header {
  background-color:#cc0000;
  color: #fff;
  padding: 20px 20px 1px 20px;
}
.cal-header h3 {
  font-size:1.5em;
  font-weight: 300;
}
.cal-header h3 span {
  font-size:1.8em;
  display:block;
}

.cal-item:last-child { border:none;}

.cal-item:nth-child(2n+0) .cal-header { background-color:#000;}
.cal-item:nth-child(3n+0) .cal-header { background-color:#808080;}

.cal-body { padding:5px 10px 0 5px;}
.cal-body h4 {
  font-size:14px;
  margin:5px 0;
  text-transform:uppercase;
}

.cal-time, .cal-dur { font-size:86%; line-height:1.2em;}
.cal-loc { font-size:75%; line-height:1.2em;}
.cal-row .cal-item:hover { opacity:1;}
.cal-row .cal-item a:hover,
.cal-row .cal-item a:focus { background-color:#f1f1f1;} */



.cal-data {
  box-sizing: border-box;
  padding: 20px 1%;
}

.cal-data.week .cal-row {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: stretch;
  -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.cal-data.week .cal-item {
  box-sizing: border-box;
  flex: 1 1 20%;
  min-width: 200px;
  border-right: 1px solid #ffffff;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.cal-data.week .cal-item:last-child {
  margin-right: 0px;
}

.cal-data.week .cal-item:nth-child(2n+0) .cal-header {
  background: #585858;
}

.cal-header {
  box-sizing: border-box;
  position: relative;
  background: #372C2C;
  padding: 20px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.cal-header::before {
  position: absolute;
  top: calc(50% - 12px);
  right: 30px;
  content: '\f105';
  font-family: "FontAwesome";
  color: #ffffff;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.cal-header h3 {
  margin: 0px;
  padding: 0px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  line-height: 30px;
}

.cal-header h3 span {
  font-size: 40px;
  font-weight: 800;
  display: block;
}

.cal-body {
  box-sizing: border-box;
  background: #ffffff;
  padding: 20px;
  font-size: 12px;
  height: 100%;
}

.cal-body h4 {
  font-size: 14px;
}

.cal-loc {
  color: #CC0000;
}

.cal-item:hover {
  transform: translateY(-4px) scale(1.02);
  -webkit-box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.1);
}

.cal-item a {
  color: #372C2C;
}

.cal-item a:hover {
  text-decoration: none;
}

.cal-item:hover .cal-header {
  background: #CC0000;
}

.cal-item:hover .cal-header::before {
  opacity: 1;
  transform: translateX(-5px);
}

.cal-data.list {
  background: none;
  padding: 30px;
}

.cal-data.list .cal-row {
  display: block;
}

.cal-data.list h3.group-title {
  background: #847A7A;
  color: #ffffff;
  font-size: 18px;
  padding: 10px 20px;
  margin: 0px;
}

.cal-data.list .cal-item {
  margin-right: 1px;
  cursor: pointer;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.cal-data.list .cal-header {
  display: flex;
  background: #ffffff;
  border-bottom: 1px solid #F7F9FB;
  padding-bottom: 5px;
}

.cal-data.list .cal-header::before {
  display: none;
}

.cal-data.list .cal-header .cal-date, .cal-data.list .cal-header .cal-loc {
  flex-grow: 1;
}

.cal-data.list .cal-header h4 {
  color: #372C2C;
  font-size: 16px;
  line-height: 18px;
  font-weight: 700;
  margin: 0px;
}

.cal-data.list .cal-header .cal-loc {
  text-align: right;
  font-size: 12px;
}

.cal-data.list .cal-body {
  display: flex;
  background: #ffffff;
}

.cal-data.list .cal-body .cal-img, .cal-data.list .cal-body .cal-info {
  flex-grow: 1;
}

.cal-data.list .cal-body .cal-img {
  max-width: 100px;
  margin-right: 20px;
}

.cal-data.list .cal-body .cal-info {
  color: #372C2C;
}

.cal-data.list h4.cal-title {
  color: #CC0000;
  font-weight: 600;
  margin-bottom: 5px;
}

/* LARGE */
@media only screen and (max-width: 992px) {
  .cal-item { width:33%; }
  .cal-item:nth-child(3n+0) {border-right:none;}
}

/*  MEDIUM */
@media only screen and (max-width: 768px) {
  .cal-item { width:50%; }
  .cal-item:nth-child(2n+0) {border-right:none;}
}

/*  SMALL */
@media only screen and (max-width: 480px) {
  .cal-item { width:100%; border-right:none; }
}
/* --- END EVENTS CALENDAR STYLES -- */
