:root {
    --vcal-bg-color: #fff;
    --vcal-border-radius: 15px;
    --vcal-border-color: #e1e1e1;
    --vcal-today-bg-color: #10989E;
    --vcal-today-color: #fff;
    --vcal-selected-bg-color: #E7E9ED;
    --vcal-selected-color: #333;
  }
  #v-cal *, #v-cal *:before, #v-cal *:after {
    box-sizing: border-box;
  }
  
  #v-cal {
    background-color: #fff;
    border-radius: 15px;
    border: solid 1px #e1e1e1;
    margin: 0 auto;
    overflow: hidden;
    width: 100%;
    max-width: 360px;
    font-family: 'FiraGO-Regular';
  }
  
  #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: 15px;
    box-shadow: 0 0 0 2px rgba(#10989E, 0.1)
  }
  #v-cal .vcal-btn[data-calendar-toggle="previous"] {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 3.5px 3px 3.5px 0;
    border-color: transparent #000000 transparent transparent;
  }
  #v-cal .vcal-btn[data-calendar-toggle="next"] {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 3.5px 0 3.5px 3px;
    border-color: transparent transparent transparent #000000;
  }
  #v-cal .vcal-header {
    align-items: center;
    display: flex;
    padding: 27px 20px;
    border-bottom: solid 1px #e1e1e1;
  }

  
  #v-cal .vcal-header__label {
      font-size: 16px;
    text-align: center;
    width: 100%;
  }
  
  #v-cal .vcal-week {
    display: flex;
    flex-wrap: wrap;
  }
  
  #v-cal .vcal-week span {
    flex-direction: column;
    flex: 0 0 14.28%;
    font-size: 1.2rem;
    max-width: 14.28%;
    padding: 2rem 1.4rem 1.2rem;
    font-family: 'FiraGO-Medium';
    text-align: center;
    font-size: 15px;
  }
  
  #v-cal .vcal-body {
    background-color: rgba(#E7E9ED, 0.3);
    display: flex;
    flex-wrap: wrap;
  }
  
  #v-cal .vcal-date {
    align-items: center;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    flex: 0 0 10.28%;
    max-width: 14.28%;
    padding: 0.5rem 0;
    margin: 3px 7px;
    font-size: 16px;
  }
  
  #v-cal .vcal-date--active {
    cursor: pointer;
  }
  
  #v-cal .vcal-date--today {
    background-color: #0d5242;
    color: #fff;
  }
  
  #v-cal .vcal-date--selected {
    background-color: #e6b03d;
    color: #fff;
  }
  
  #v-cal .vcal-date--disabled {
    border-radius: 0;
    cursor: not-allowed;
    opacity: 0.5;
  }