:root {
  --vcal-bg-color: #fff;
  --vcal-border-radius: 0;
  --vcal-border-color: #e7e9ed;
  --vcal-today-bg-color: #10989E;
  --vcal-raceDay-bg-color: #10c080;
  --vcal-today-color: #fff;
  --vcal-selected-bg-color: #E7E9ED;
  --vcal-selected-color: #333;
}

* {
    font-size: 12px;
    font-family: Sans-Serif;
}

#v-cal *, #v-cal *:before, #v-cal *:after {
  box-sizing: border-box;
}

#v-cal {
  background-color: #fff;
  border-radius: 0;
  border: solid 1px #e7e9ed;
  box-shadow: 0 4px 22px 0 rgba(0, 0, 0, 0.05);
  margin: 0 auto;
  overflow: hidden;
  width: 100%;
}

#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;
  &:active {
    border-radius: 0;
    box-shadow: 0 0 0 2px #10989E
  }
}

#v-cal .vcal-header {
  align-items: center;
  display: flex;
  padding: 1rem 1rem;
}

#v-cal .vcal-header svg {
  fill: #10989E;
}

#v-cal .vcal-header__label {
  font-weight: bold;
  text-align: center;
  width: 100%;
}

#v-cal .vcal-week {
  background-color: #E7E9ED;
  display: flex;
  flex-wrap: wrap;
}

#v-cal .vcal-week span {
  flex-direction: column;
  flex: 0 0 14.28%;
  font-size: 0.6rem;
  font-weight: bold;
  max-width: 14.28%;
  padding: 1rem 1rem;
  text-align: center;
  text-transform: uppercase;
}

#v-cal .vcal-body {
  /*background-color: #E7E9ED;*/
  display: flex;
  flex-wrap: wrap;
}

#v-cal .vcal-date {
  align-items: center;
  background-color: #fff;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  flex: 0 0 14.28%;
  max-width: 14.28%;
  padding: 1rem 0;
}

#v-cal .vcal-date--active {
  cursor: pointer;
}

#v-cal .vcal-date--today {
  background-color: #10989E;
  color: #fff;
}

#v-cal .vcal-date--raceDay {
  background-color: #10c080;
  color: #fff;
}

#v-cal .vcal-date--selected {
  background-color: #E7E9ED;
  color: #333;
}

#v-cal .vcal-date--disabled {
  border-radius: 0;
  cursor: not-allowed;
  opacity: 0.5;
}
