@import url(https://fonts.googleapis.com/css?family=Open+Sans:700,300);
.frame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  margin-top: -200px;
  margin-left: -200px;
  border-radius: 2px;
  box-shadow: 4px 8px 16px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background: #42a7a1;
  color: #333;
  font-family: "Open Sans", Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.center .calendar {
  top: 50%;
  height: 220px;
  width: 280px;
  background: #fff;
  border-radius: 3px;
  box-shadow: 10px 10px 15px 0 rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
.center .calendar .calendar-header {
  background: #f1ba64;
  height: 35px;
  padding: 12px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.center .calendar .calendar-header .header-wrap {
  display: flex;
  justify-content: space-between;
}
.center .calendar .calendar-header .calendar-header-title {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
}
.center .calendar .calendar-header .calendar-header-subtitle {
  font-weight: 400;
  font-size: 12px;
}
.center .calendar .calendar-body {
  padding: 12px;
}
.center .calendar .calendar-body .parameter {
  font-size: 10px;
  text-align: right;
  margin-bottom: 15px;
}
.center .calendar .calendar-body .parameter .red:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 4px;
  background: #fa7373;
  border-radius: 10%;
  margin-right: 4px;
}
.center .calendar .calendar-body .parameter .red {
  margin-right: 10px;
}
.center .calendar .calendar-body .parameter .blue:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 4px;
  background: #7ba2ff;
  border-radius: 10%;
  margin-right: 4px;
}
.center .calendar .calendar-body .line-wrap {
  height: 81px;
  width: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.center .calendar .calendar-body .line-wrap .line-1 {
  height: 1px;
  width: 100%;
  background: #ccc;
}
.center .calendar .calendar-body .line-wrap .line-2 {
  height: 1px;
  width: 100%;
  background: #ccc;
}
.center .calendar .calendar-body .line-wrap .line-3 {
  height: 1px;
  width: 100%;
  background: #ccc;
}
.center .calendar .calendar-body .data-red {
  width: 260px;
  height: 81px;
  position: absolute;
  top: 95px;
}
.center .calendar .calendar-body .data-red svg {
  width: 100%;
  height: 100%;
}
.center .calendar .calendar-body .data-red svg polyline {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke: #fa7373;
}
.center .calendar .calendar-body .data-red .data-point-red-wrap {
  position: absolute;
  z-index: 100;
}
.center .calendar .calendar-body .data-red .data-point-red-wrap .data-point-red {
  position: absolute;
  visibility: hidden;
}
.center .calendar .calendar-body .data-red .data-point-red-wrap .data-point-red .tooltip {
  visibility: hidden;
  position: relative;
  z-index: 100;
  font-size: 15px;
  left: -12px;
  top: 5px;
  padding: 3px;
  width: 25px;
  text-align: center;
  font-size: 12px;
  color: #fff;
  background: #fa7373;
  border-radius: 5px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}
.center .calendar .calendar-body .data-red .data-point-red-wrap .data-point-red .tooltip:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #fa7373 transparent transparent transparent;
}
.center .calendar .calendar-body .data-red .data-point-red-wrap .data-point-red:hover .tooltip {
  visibility: visible;
}
.center .calendar .calendar-body .data-red .data-point-red-wrap .data-point-red::after {
  content: "";
  visibility: visible;
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #fa7373;
  border-radius: 50%;
}
.center .calendar .calendar-body .data-red .data-point-red-wrap .data-point-red:nth-child(1) {
  top: -77px;
  left: 8px;
}
.center .calendar .calendar-body .data-red .data-point-red-wrap .data-point-red:nth-child(2) {
  top: -110px;
  left: 47px;
}
.center .calendar .calendar-body .data-red .data-point-red-wrap .data-point-red:nth-child(3) {
  top: -99px;
  left: 87px;
}
.center .calendar .calendar-body .data-red .data-point-red-wrap .data-point-red:nth-child(4) {
  top: -110px;
  left: 128px;
}
.center .calendar .calendar-body .data-red .data-point-red:nth-child(5) {
  top: -85px;
  left: 168px;
}
.center .calendar .calendar-body .data-red .data-point-red:nth-child(6) {
  top: -74px;
  left: 208px;
}
.center .calendar .calendar-body .data-red .data-point-red:nth-child(7) {
  top: -102px;
  left: 248px;
}
.center .calendar .days {
  width: 280px;
  margin: 0 auto;
}
.center .calendar .days .day {
  display: block;
  float: left;
  width: 14.2857142857%;
  font-size: 9px;
  color: #949494;
  line-height: 30px;
  text-transform: uppercase;
  text-align: center;
}/*# sourceMappingURL=style.css.map */