@font-face {
  font-family: 'arrows';
  src: url('../fonts/arrows.eot');
  src: url('../fonts/arrows.eot?#iefix') format('embedded-opentype'), url('../fonts/arrows.woff') format('woff'), url('../fonts/arrows.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
[class*='icon-']:before {
  display: inline-block;
  font-family: 'arrows';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-arrow-right:before {
  content: '\0042';
}
.icon-arrow-left:before {
  content: '\0041';
}
.calendar {
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  user-select: none;
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
  background-color: #ffffff;
#  color: #1E94A0;
  color: #404040;
  border: 0px solid #004E6D;
  border-radius: 11px;
}
.calendar__head {
  width: 100%;
  height: 21%;
  text-align: center;
  box-sizing: border-box;
  cursor: default;
}
.calendar__head-text {
  font-size: 18px;
  padding: 3px 3px;
}
.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: 18px;
  background-color: #00172D;
}
.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: 15px;
}
.calendar__body {
  width: 100%;
  height: 79%;
  border-spacing: 5px 2px;
  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;
  color: #a0a0a0;
  background: #00172D;
}
.calendar-cell-selected.calendar-cell-today {
  box-shadow: inset 0px 0px 0px 2px #001a33;
}
.calendar-cell-gray {
#  color: #4b5457;
  color: #a0a0a0;
  cursor: default;
}
.calendar-cell-gray:hover {
  box-shadow: none;
}
.calendar-cell-green {
  color: #ff0000;
}
.calendar-cell-today {
  color: #707070;
  background-color: #ffffff;
}
body {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  color: #000000;
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
  background-color: #ffffff; 
}
.calendar-wrap {
  width: 250px;
  height: 200px;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 1;
}
