
.calendar {
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  user-select: none;
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
  background-color: #fff;
  color: #1E94A0;
  border: 3px solid #3C8DBC;
  border-radius: 23px;
}
.calendar__head {
  width: 100%;
  height: 21%;
  text-align: center;
  box-sizing: border-box;
  cursor: default;
}
.calendar__head-text {
  font-size: 20px;
}
.calendar__head-days {
  width: 100%;
  text-decoration: none;
}
.calendar__head-days-item {
  position: relative;
}
.calendar__head-days-item:after {
  content: '';
  display: block;
  position: absolute;
  left: calc(100% - 2px);
  top: 50%;
  margin-top: -10px;
  width: 2px;
  height: 20px;
  background-color: #fff;
}
.calendar__head-days-item:last-child:after {
  display: none;
}
.calendar__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2%;
}
.calendar__btn {
  cursor: pointer;
  font-size: 26px;
}
.calendar__body {
  width: 100%;
  height: 79%;
  border-spacing: 4px 3px;
  padding: 3px 0;
  text-align: center;
}
.calendar-cell {
  margin-left: 10px;
  border-radius: 20%;
  cursor: pointer;
  transition: box-shadow 0.22s ease-in;
}
.calendar-cell:hover {
  box-shadow: inset 0px 0px 0px 2px #001a33;
}
.calendar-cell-selected {
  border-radius: 9px;
  background: #00172D;
}
.calendar-cell-selected.calendar-cell-today {
  box-shadow: inset 0px 0px 0px 2px #001a33;
}
.calendar-cell-gray {
  color: #4b5457;
  cursor: default;
}
.calendar-cell-gray:hover {
  box-shadow: none;
}
.calendar-cell-green {
  color: #1aecc2;
}
.calendar-cell-today {
  background-color: #4b5457;
}

.calendar-wrap {
  width: 242px;
  height: 280px;
  margin: 2px auto;
}
