.c-calendar {
  background-color: white;
  margin-bottom: 20px;
  padding: 0 5px;
  box-shadow: 0 2px 40px 20px rgba(0, 7, 87, 0.1);
  overflow-x: auto;
}
.c-calendar table {
  text-align: center;
  width: 100%;
}
.c-calendar table .old {
  opacity: 0.25;
}
.c-calendar table .new {
  opacity: 0.25;
}
.c-calendar table .datepicker-switch {
  color: #343434;
  cursor: pointer;
  font-size: 1.25em;
  font-weight: bold;
  text-transform: uppercase;
}
.c-calendar table .day {
  color: #343434;
  font-size: 0.875em;
  font-weight: normal;
  padding: 12px 5px;
  pointer-events: none;
  line-height: 1.43;
}
.c-calendar table .day.old, .c-calendar table .day.new {
  color: #979797;
  line-height: 1.43;
}
.c-calendar table .day.startDate {
  color: white !important;
  cursor: pointer;
  font-weight: 500;
  position: relative;
  z-index: 1 !important;
  pointer-events: auto !important;
}
.c-calendar table .day.startDate:before {
  background-color: #ff6600 !important;
  border-radius: 50%;
  content: "";
  height: 30px;
  left: 50%;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  z-index: -1;
}
.c-calendar table .day.eventDate {
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  position: relative;
  z-index: 0;
  pointer-events: auto !important;
}
.c-calendar table .day.eventDate:before {
  background-color: #ff6600;
  border-radius: 50%;
  content: "";
  height: 30px;
  left: 50%;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  z-index: -1;
}
.c-calendar table .month, .c-calendar table .year, .c-calendar table .decade {
  cursor: pointer;
  display: inline-block;
  padding: 10px;
  text-transform: uppercase;
}
.c-calendar table .month.old, .c-calendar table .month.new, .c-calendar table .year.old, .c-calendar table .year.new, .c-calendar table .decade.old, .c-calendar table .decade.new {
  color: #DEDEDE;
}
.c-calendar table .month.active, .c-calendar table .year.active, .c-calendar table .decade.active {
  color: white;
  font-weight: 500;
  position: relative;
  z-index: 0;
}
.c-calendar table .month.active:before, .c-calendar table .year.active:before, .c-calendar table .decade.active:before {
  background-color: #ff6600;
  border-radius: 50%;
  content: "";
  height: 30px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 30px;
  z-index: -1;
}
.c-calendar table .today {
  font-weight: bold;
  position: relative;
  z-index: 1 !important;
}
.c-calendar table .today:before {
  background-color: #ff6600;
  border-radius: 50%;
  content: "";
  height: 30px;
  left: 50%;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  z-index: -1;
}
.c-calendar table .dow {
  color: #979797;
  font-weight: normal;
  line-height: 1.7;
  font-size: 0.625em;
  text-transform: uppercase;
}
.c-calendar table thead th {
  padding: 15px 0 0;
}
.c-calendar__prev {
  border-right: 4px solid #ff6600;
  border-bottom: 4px solid #ff6600;
  cursor: pointer;
  height: 12px;
  margin: 0 auto;
  transform: rotate(136deg);
  width: 12px;
}
.c-calendar__next {
  border-right: 4px solid #ff6600;
  border-bottom: 4px solid #ff6600;
  cursor: pointer;
  height: 12px;
  margin: 0 auto;
  transform: rotate(-45deg);
  width: 12px;
}
