@charset "UTF-8";

/*--------------------------------------------------------------
# Calendar Light
--------------------------------------------------------------*/

/* Container */
.mobile-wrapper {
  background: #fff;
  z-index: 1;
  position: relative;
  min-height: 100%;
  margin: auto;
  padding-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  font-size: 14px;
}
.mobile-wrapper .container {
  width: 90%;
  margin: auto;
}
.mobile-wrapper .header {
  padding-bottom: 15px;
  margin-bottom: 40px;
}
.mobile-wrapper .header .container {
  position: relative;
}
.mobile-wrapper .header .container span {
  color: #444;
  font-size: 21px;
  font-weight: 700;
}
.mobile-wrapper .header .container h1 {
  margin-top: 5px;
  color: #919294;
  font-size: 13px;
  font-weight: 300;
}

/* Today DIV */
.mobile-wrapper .today-box {
  color: #FFF;
  padding: 20px 30px;
  position: relative;
  box-shadow: 0px 0px 40px -9px #485fed;
  margin-bottom: 50px;
}
.mobile-wrapper .today-box::before {
  content: "";
  background: linear-gradient(to left, #485fed, rgba(255, 44, 118, 0.25)), #485fed;
  opacity: 0.4;
  z-index: -1;
  display: block;
  width: 100%;
  height: 40px;
  margin: auto;
  position: absolute;
  bottom: -13px;
  left: 50%;
  transform: translatex(-50%);
  border-radius: 50%;
  box-shadow: 0px 0px 40px 0 #485fed;
}
.mobile-wrapper .today-box .breadcrumb-2 {
  font-weight: 300;
  position: relative;
}
.mobile-wrapper .today-box .date-title {
  font-size: 20px;
  margin: 7px 0 0 0;
  letter-spacing: 1px;
  font-weight: 600;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.15);
}

/* Calendar icon */
.mobile-wrapper .today-box .calendar-icon {
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  box-shadow: 0px 10px 30px -14px #000;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
  cursor: pointer;
  transition: all 350ms ease;
  transition-timing-function: cubic-bezier(0.05, 1.8, 1, 1.57);
}
.mobile-wrapper .today-box .calendar-icon:hover {
  transform: translateY(-40%);
}
.mobile-wrapper .today-box .calendar-icon i {
  font-size: 22px;
  font-weight: 700;
  background: #fff;
  color: #777;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-wrapper .today-box .calendar-icon:active {
  top: 52%;
  transform: translatey(-52%);
  right: 38px;
  box-shadow: 0px 8px 30px -14px #000;
}

/* Events list */
.mobile-wrapper .upcoming-events {
  height: 420px;
  overflow-x: auto;
}
.mobile-wrapper .upcoming-events .container .events-wrapper {
  margin-bottom: 30px;
}
.mobile-wrapper .upcoming-events .container .events-wrapper .event {
  position: relative;
  margin-bottom: 25px;
  cursor: pointer;
}
.mobile-wrapper .upcoming-events .container .events-wrapper .event .event__point {
  margin: 0;
  color: #555;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
}
.mobile-wrapper .upcoming-events .container .events-wrapper .event .event__duration {
  position: absolute;
  top: 5px;
  right: 0;
  color: #999;
  font-size: 10px;
  font-weight: 800;
  font-style: italic;
}

/* Global event description */
.mobile-wrapper .upcoming-events .container .events-wrapper .event .event__description {
  margin-top: 10px;
  color: #919294;
  font-size: 13px;
  font-weight: 300;
}

/* Truncate event description */
.mobile-wrapper .upcoming-events .container .events-wrapper .event:not(.active) .event__description {
  display: block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Truncate words for active event description */
.mobile-wrapper .upcoming-events .container .events-wrapper .event.active .event__description {
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
}

.mobile-wrapper .upcoming-events .container .events-wrapper .event.active {
  background: #e8e8e8;
  padding: 17px 10px 5px 10px;
  margin-bottom: 38px;
  border-radius: 5px;
}
.mobile-wrapper .upcoming-events .container .events-wrapper .event.active::after {
  content: "";
  display: block;
  width: 90%;
  height: 10px;
  background: #fff;
  border: 2px solid #ddd;
  border-top: 0;
  border-radius: 0 0 5px 5px;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translatex(-50%);
}