.calendar {
  position: inherit;
  display: grid;
  width: 100%;
  padding-bottom: 3px;
  min-width: 100px;
  grid-template-columns: repeat(7, minmax(200px, 1fr));
  grid-auto-rows: minmax(200px, auto);
  border-left: 1px solid rgba(166, 168, 179, 0.3);
}
.calendar-container {
  width: 100%;
  margin: auto;
  overflow: hidden;
  background: #fff;
}
.calendar-main {
  height: 80vh;
  overflow-y: scroll;
  position: relative;
}
.calendar-header {
  margin-right: 10px;
  grid-column: 1/span 7;
  position: relative;
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 20px 0;
  background: linear-gradient(to bottom, rgb(250, 251, 253) 0%, rgba(255, 255, 255, 0) 100%);
  border: 1px solid rgba(166, 168, 179, 0.3);
}
.calendar-header h1 {
  margin: 0;
  font-size: 23px;
}
.calendar-header__inner-container {
  display: flex;
  justify-content: center;
  width: 300px;
}
.calendar-current {
  position: absolute;
  top: 5px;
  left: 5px;
}
.calendar-title {
  position: relative;
}
.calendar-button, .calendar-button__active {
  padding: 5px 20px 5px 20px;
  user-select: none;
  border: 1px solid rgba(141, 187, 255, 0.7);
  border-radius: 5px;
  background: radial-gradient(circle at 50% 0%, rgb(255, 255, 255) 30%, rgb(228, 237, 250) 120%);
  transition: all 0.25s ease;
  color: rgb(120, 120, 120);
  box-sizing: border-box;
  cursor: pointer;
}
.calendar-button:hover, .calendar-button__active:hover {
  background: rgb(84, 114, 212);
}
.calendar-button:hover h1, .calendar-button__active:hover h1 {
  color: #f8f8f8;
  user-select: none;
}
.calendar-button:hover span, .calendar-button__active:hover span {
  color: #f8f8f8;
  line-height: 0.5rem;
  user-select: none;
}
.calendar-button__active {
  background: radial-gradient(circle, rgb(255, 255, 255) 30%, rgb(171, 200, 241) 140%);
  border: 1px solid rgb(84, 114, 212);
  cursor: unset;
}
.calendar-button__active:hover {
  background: radial-gradient(circle, rgb(255, 255, 255) 30%, rgb(171, 200, 241) 140%);
}
.calendar-button__active:hover span {
  color: rgb(120, 120, 120);
}
.calendar-previous, .calendar-next {
  user-select: none;
  position: absolute;
  font-size: 0.7rem;
  margin-top: 1rem;
}
.calendar-previous h1, .calendar-next h1 {
  position: relative;
  padding-top: 4px;
  font-size: 1.1rem;
  font-weight: 400;
  opacity: 0.5;
}
.calendar-previous:hover h1, .calendar-next:hover h1 {
  font-weight: 400;
  opacity: 0.75;
  cursor: pointer;
}
.calendar-previous {
  transform: translateX(-150px);
}
.calendar-previous h1:before {
  content: "";
  position: absolute;
  transform: translate(-30px, 6px) rotate(-135deg);
  border-right: 2px solid rgba(166, 168, 179, 0.75);
  border-top: 2px solid rgba(166, 168, 179, 0.75);
  height: 15px;
  width: 15px;
}
.calendar-next {
  display: flex;
  transform: translateX(150px);
}
.calendar-next h1:after {
  content: "";
  position: absolute;
  transform: translate(10px, 6px) rotate(45deg);
  border-right: 2px solid rgba(166, 168, 179, 0.75);
  border-top: 2px solid rgba(166, 168, 179, 0.75);
  height: 15px;
  width: 15px;
}
.calendar-names {
  grid-column: 1/8;
  margin-right: 10px;
  display: grid;
  grid-template-columns: repeat(7, minmax(200px, 1fr));
  border-left: 1px solid rgba(166, 168, 179, 0.3);
  font-size: 12px;
  text-transform: uppercase;
  color: #99a1a7;
  text-align: center;
  line-height: 50px;
  font-weight: 500;
}

.day {
  border-bottom: 1px solid rgba(166, 168, 179, 0.3);
  border-right: 1px solid rgba(166, 168, 179, 0.3);
  padding: 0px 10px 10px 10px;
  letter-spacing: 1px;
  box-sizing: border-box;
  position: relative;
}
.day__active {
  background: white;
  padding: 0 10px 10px 10px;
  letter-spacing: 1px;
  box-sizing: border-box;
  position: relative;
  border: 3px solid #0a6aa1;
}
.day-date-title, .day-date-title__active {
  text-align: left;
  width: calc(100% + 19.5px);
  background: white;
  align-items: baseline;
  font-weight: 500;
  position: sticky;
  padding-left: 10px;
  top: 0;
  margin-bottom: 10px;
  z-index: 500;
  transform: translateX(-10px);
  border-bottom: 1px solid rgba(166, 168, 179, 0.3);
}
.day-date-title {
  color: #98a0a6;
  padding-top: 5px;
  font-size: 13px;
  height: 30px;
}
.day-date-title__active {
  height: 28px;
  font-size: 13px;
  color: #0a6aa1;
  padding-top: 5px;
}
.day-name {
  border-bottom: 1px solid rgba(166, 168, 179, 0.3);
  border-right: 1px solid rgba(166, 168, 179, 0.3);
  background: rgba(240, 240, 240, 0.5);
  font-size: 12px;
  text-transform: uppercase;
  padding: 0 10px 10px 10px;
  color: #99a1a7;
  text-align: center;
  border-bottom: 1px solid rgba(166, 168, 179, 0.3);
  line-height: 50px;
  font-weight: 500;
}
.day::-webkit-scrollbar, .day__active::-webkit-scrollbar {
  display: none;
}
.day, .day__active {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

@media screen and (max-width: 1806px) {
  .calendar-header {
    margin-right: 0;
  }
}
.calendar-picker {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 30px);
  padding: 20px;
  border-radius: 10px;
  opacity: 0;
  background: white;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.calendar-picker .year-navigation {
  display: flex;
  justify-content: center;
  margin-left: 2rem;
  margin-right: 2rem;
  margin-bottom: 20px;
}
.calendar-picker-month-tile {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(auto, 1fr));
  grid-gap: 10px;
}
.calendar-picker-month-tile-button {
  padding: 10px 30px;
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
}
.calendar-picker-year {
  padding: 0 2rem;
  font-size: 1.2rem;
}
.calendar-picker-previous, .calendar-picker-next {
  user-select: none;
  font-size: 0.7rem;
}
.calendar-picker-previous h1, .calendar-picker-next h1 {
  position: relative;
  padding-top: 4px;
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.5;
}
.calendar-picker-previous:hover h1, .calendar-picker-next:hover h1 {
  font-weight: 400;
  opacity: 0.75;
  cursor: pointer;
}
.calendar-picker-previous h1:before {
  content: "";
  position: absolute;
  transform: translate(-22px, 6px) rotate(-135deg);
  border-right: 2px solid rgba(166, 168, 179, 0.75);
  border-top: 2px solid rgba(166, 168, 179, 0.75);
  height: 10px;
  width: 10px;
}
.calendar-picker-next h1:after {
  content: "";
  position: absolute;
  transform: translate(10px, 6px) rotate(45deg);
  border-right: 2px solid rgba(166, 168, 179, 0.75);
  border-top: 2px solid rgba(166, 168, 179, 0.75);
  height: 10px;
  width: 10px;
}

.show-cp {
  z-index: 9000;
  animation: picker-animate 0.25s forwards;
}

.hide-cp {
  z-index: -1;
}

@keyframes picker-animate {
  0% {
    transform: translate(-50%, 30px);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, 0px);
    opacity: 1;
  }
}
.is-past {
  opacity: 0.5;
}

.calendar-element {
  display: flex;
  justify-content: start;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 2px;
}
.calendar-element:hover {
  opacity: 0.8;
  scale: 1.02;
}
.calendar-element:active {
  scale: 0.99;
}
.calendar-element-status {
  display: flex;
  flex-grow: 1;
}
.calendar-element-status .status-color {
  width: 10px;
}
.calendar-element-status .status-divider {
  background: white;
  width: 1.5px;
  height: 23px;
}
.calendar-element-status .status-content {
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 5px 8px 5px;
  font-size: 0.8rem;
}

.spinner-main {
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  width: 98.5%;
  height: 98.5%;
  z-index: 5000;
  text-align: center;
  align-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 250ms ease-in, visibility 0ms ease-in 250ms;
}
.spinner-main__small {
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
  width: 100%;
  height: 100%;
  z-index: 5000;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 250ms ease-in, visibility 0ms ease-in 250ms;
}
.spinner-main-glyph {
  position: absolute;
  top: 50%;
  border: 0.6em solid currentColor !important;
  width: 5rem !important;
  height: 5rem !important;
  border-right-color: transparent !important;
}
.spinner-main-glyph__small {
  position: absolute;
  top: 15%;
  left: 47%;
  border: 0.2em solid currentColor !important;
  width: 1rem !important;
  height: 1rem !important;
  border-right-color: transparent !important;
}
.spinner-main-glyph__medium {
  position: absolute;
  top: 14.5%;
  left: 40%;
  border: 0.4em solid currentColor !important;
  width: 2.5rem !important;
  height: 2.5rem !important;
  border-right-color: transparent !important;
}

.show {
  visibility: visible;
  opacity: 1;
  transition: opacity 250ms ease-in, visibility 0ms ease-in 0ms;
}

.hover-change:hover {
  opacity: 0.7;
  transform: scale(1.01);
  transition: all 0.3s ease;
}

.hover-change:active {
  opacity: 1;
  transform: scale(0.99);
}

/*# sourceMappingURL=index.css.map */
