#v-cal *,
#v-cal :after,
#v-cal :before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#v-cal {
  background-color: #fff;
  border-radius: 0;
  margin: 0 auto;
  overflow: hidden;
  width: 100%;
}
#v-cal svg {
  margin: 0;
}
#v-cal .vcal-btn {
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-appearance: button;
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  line-height: normal;
  min-width: 27px;
  outline: none;
  overflow: visible;
  padding: 0;
  text-align: center;
}
#v-cal .vcal-btn:active {
  border-radius: 0;
  -webkit-box-shadow: 0 0 0 2px rgba(16, 152, 158, 0.1);
  box-shadow: 0 0 0 2px rgba(16, 152, 158, 0.1);
}
#v-cal .vcal-header {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

#v-cal .vcal-header__label {
  font-weight: 700;
  text-align: center;
}
#v-cal .vcal-week {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#v-cal .vcal-week span {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 14.28%;
  flex: 0 0 14.28%;
  max-width: 14.28%;
  text-align: center;
  text-transform: uppercase;
}
#v-cal .vcal-body {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#v-cal .vcal-body,
#v-cal .vcal-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#v-cal .vcal-date {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
  border-radius: 0;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 45px;
  font-size: 14px;
  flex: 0 0 14.28%;
  font-weight: 500;
  color: var(--dark);
  border-radius: 18px;
  transition: all 0.4s ease-out;
}
@media only screen and (max-width: 1799px) {
  #v-cal .vcal-date {
    height: 42px;
    border-radius: 14px;
  }
}
@media only screen and (max-width: 1399px) {
  #v-cal .vcal-date {
    height: 60px;
  }
}
@media only screen and (max-width: 991px) {
  #v-cal .vcal-date {
    height: 55px;
  }
}
@media only screen and (max-width: 870px) {
  #v-cal .vcal-date {
    height: 49px;
  }
}
@media only screen and (max-width: 767px) {
  #v-cal .vcal-date {
    height: 44px;
  }
}
@media only screen and (max-width: 650px) {
  #v-cal .vcal-date {
    height: 38px;
    border-radius: 10px;
  }
}
@media only screen and (max-width: 575px) {
  #v-cal .vcal-date {
    height: calc(35px + (45 - 35) * ((100vw - 320px) / (575 - 320)));
  }
}
#v-cal .vcal-date:hover {
  background-color: #f4f3ff;
  color: #6659ff;
}
#v-cal .vcal-date--active {
  cursor: pointer;
}
#v-cal .vcal-date--today {
  background-color: #6659ff;
  color: #fff;
}
#v-cal .vcal-date--selected {
  background-color: #6659ff;
  color: #fff;
}
#v-cal .vcal-date--disabled {
  cursor: not-allowed;
  color: #7690ac;
}
