.calendar{
  color: #005589;
  background: #ffffff;
  padding:10px;
/*   padding: 60px 40px 80px 40px; */
  width: 100%;
  margin:0 auto;
/*   height: 325px; */
/*   border-radius: 5px; */
/*   box-shadow: 0px 2px 6px #005589; */
  position: relative;
}
.calendar__title{
  text-align: center;
}
.calendar--day-view{
  position: absolute;
  border-radius: 3px;
  top: -2.5%;
  left: -2.5%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,1);
 -webkit-box-shadow: 3px 12px 5px #005589;
         box-shadow: 3px 12px 5px #005589;
  z-index: 2;
  overflow: hidden;
  -webkit-transform: scale(0.9) translate(30px,30px);
      -ms-transform: scale(0.9) translate(30px,30px);
          transform: scale(0.9) translate(30px,30px);
  opacity: 0;
  visibility: hidden;
/*   border-radius: 5px; */
  display: none;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.day-view-content{
  color: #005589;
  width: 100%;
  padding-top: 55px;
}
.day-highlight, .day-add-event{
  color: #fff; 
   background:#04b6e2; 
/*    width: 35px; */
/* margin: 0 auto; */
text-align: center;
font-weight:bolder;
border-radius: 30px;
}

.day-add-event{
  background: #04b6e2;
  color: #fff;
  padding: 16px;
  display: none;
  -webkit-transform: translateY(-15px);
      -ms-transform: translateY(-15px);
          transform: translateY(-15px);
  opacity: 0;
}
.day-add-event[data-active="true"]{
  display: block;
  -webkit-animation: popIn 250ms 1 forwards;
          animation: popIn 250ms 1 forwards;
}
.add-event-label{
  padding: 10px 0;
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  font-size: 12px;
  color: rgba(255,255,255,0.8);
}
.add-event-edit{
  display: block;
  margin: 4px 0;
  max-width: 70%;
  border-bottom: 2px solid #fff;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}
.add-event-edit--long{
  max-width: 90%;
}

input.add-event-edit{
  border: none;
  border-bottom: 2px solid #fff;
  background: transparent;
  outline: none;
  font: inherit;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}
.add-event-edit--error, input.add-event-edit--error{
  border-color: #ff5151;
  -webkit-animation: shake 300ms 1 forwards;
          animation: shake 300ms 1 forwards;
}
@-webkit-keyframes shake {
  20%, 60%{
    -webkit-transform: translateX(4px);
            transform: translateX(4px);
  }
  40%, 80%{
    -webkit-transform: translateX(-4px);
            transform: translateX(-4px);
  }
}
@keyframes shake {
  20%, 60%{
    -webkit-transform: translateX(4px);
            transform: translateX(4px);
  }
  40%, 80%{
    -webkit-transform: translateX(-4px);
            transform: translateX(-4px);
  }
}
input.add-event-edit::-webkit-input-placeholder {
   color: #fff;
}

input.add-event-edit:-moz-placeholder { /* Firefox 18- */
   color: #fff;  
}

input.add-event-edit::-moz-placeholder {  /* Firefox 19+ */
   color: #fff;  
}

input.add-event-edit:-ms-input-placeholder {  
   color: #fff;  
}
.event-btn{
  padding: 3px 8px;
  border: 3px solid #fff;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  width: 65px;
  margin: 5px 0;
  text-align: center;
}

.event-btn--save{
  border-color: #fff;
   background: #74c500;
  color: #fff;
  border-color: transparent;
}
.event-btn--save:hover{
  -webkit-box-shadow: 0px 2px 4px rgba(2,2,2,0.2);
          box-shadow: 0px 2px 4px rgba(2,2,2,0.2);
}
.event-btn--cancel{
  background: #ff5151;
  color: #fff;
  border-color: transparent;
}
.event-btn--cancel:hover{
  -webkit-box-shadow: 0px 2px 4px rgba(2,2,2,0.2);
          box-shadow: 0px 2px 4px rgba(2,2,2,0.2);
}
/* .add-event-btn:hover, .add.event-btn:focus{
  background: #00258e;
  box-shadow: 0px -1px 2px rgba(3,2,2,0.2);
} */
.day-highlight .day-events-link{
  border-bottom: 2px solid #005589;
  padding: 0;
  cursor: pointer;
  background: #005589;
  color:#fff;
}
#add-event{
  color: #04b6e2;
  border-color: #04b6e2;
}
.day-view-exit{
  position: absolute;
  top: 24px;
  line-height: 1em;
  left: 22px;
  font-size: 22px;
  color: #252525;
  font-weight: 800;
  cursor: pointer;
  opacity: 0;
  -webkit-animation: popIn 200ms 1 forwards;
          animation: popIn 200ms 1 forwards;
  text-transform: uppercase;
}
.day-view-date{
  position: absolute;
  top: 19px;
  right: 22px;
  text-align: right;
  font-size: 22px;
  font-weight: 800;
  color: #393939;
  border-bottom: 2px solid #005589;
  cursor: pointer;
}
.day-inspiration-quote{
  position: absolute;
/*   top: 90px; */
  margin-top: -40px;
  left: 10%;
  width: 80%;
  height: calc(100% - 110px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1px;
  color: #ddd;
  line-height: 1.1em;
  z-index: -1;
}
.day-event-list-ul{
  list-style: none;
  margin: auto;
  width: 95%;
  padding: 0;
  max-height: 300px;
  overflow: auto;
}
.day-event-list-ul li {
  padding: 10px;
  margin: 10px 0;
/*   background: #04b6e2; */
/*   box-shadow: 0px 1px 1px  rgba(2,2,2,0.5); */
  position: relative;
}
.event-dates small{
  font-size: 0.65em;
  color: #444;
}
.event-dates{
  font-weight: 800;
  color: #04b6e2;
  font-size: 18px;
  text-transform: lowercase;
/*   position: relative; */
}
.event-delete{
  position: absolute;
  right: 10px;
  top: 0px;
  font-size: 12px;
  color: #f25656;
  cursor: pointer;
}
.event-name{
  font-size: 19px;
  color: #005589;
  padding:10px;
  background: #f7f7f7;
  margin: 2px 0;
  display: block;
  text-transform: initial;
}
.calendar--day-view-active{
  -webkit-animation: popIn 200ms 1 forwards;
          animation: popIn 200ms 1 forwards;
  visibility: visible;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: visibility 0ms;
  -o-transition: visibility 0ms;
  transition: visibility 0ms;

}
.calendar--view{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  
}
.cview__month{
  width: 100%;
  text-align: center;
  font-weight: 800;
  font-size: 22px;
  padding-bottom: 20px;
  color: #005589;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cview__month-last,.cview__month-next,.cview__month-current{
  width: auto;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  color: #005589;
}
.cview__month-last:hover,.cview__month-next:hover{
  color: #00acd7;
}

.cview__month-current{
  font-size: 16px;
  cursor: default;
  -webkit-animation: popIn 200ms 1 forwards;
          animation: popIn 200ms 1 forwards;
  -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
          transform: translateY(20px);
  opacity: 0;
  position: relative;
}
.cview__month-reset{
  -webkit-animation: none;
          animation: none;
}
.cview__month-activate{
  -webkit-animation: popIn 100ms 1 forwards;
          animation: popIn 100ms 1 forwards;
}
.cview--spacer, .cview__header, .cview--date{
  width: 44px;
  max-width: 44px;
  height: 44px;
  max-height: 44px;
  margin-right: calc((100% - 315px)/14);
  margin-left: calc((100% - 315px)/14);
  padding: 11px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  text-align: center;
  overflow: hidden;
  -o-text-overflow: clip;
     text-overflow: clip;
  font-size: 11px;
  font-weight: 1000;
}
.cview--date{
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  color:#6d6e71;
}
.has-events::after{
  border-radius:100%;
  -webkit-animation: popIn 200ms 1 forwards;
          animation: popIn 200ms 1 forwards;
  background: rgba(255,255,255,0.95);
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  content: '';
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  top: 8px;
  left: 12px;
  
}


.cview--date:hover::before{
  background: rgb(152, 211, 135);
  opacity: 0.6;
  border-radius: 30px;
  
}
.cview--date.today{
  color: #fff; 
   background:#60bb46; 
/*    width: 35px; */
/* margin: 0 auto; */
text-align: center;
border-radius: 30px;
}
.cview--date.today::before{
  -webkit-animation: popIn 200ms 1 forwards;
          animation: popIn 200ms 1 forwards;
  background: rgba(255,255,255,0.2);
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  color:#fff;
}
@-webkit-keyframes popIn{

  100%{
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes popIn{

  100%{
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
.cview--date::before{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
  
  z-index: 0;
}