html {
    box-sizing: border-box;
    font-size: 10px;
  }
  
  *, *:before, *:after {
    box-sizing: inherit;
  }
  
  .cal-container {
    width: 96%;
    margin: 0rem auto 8rem;
    max-width: 76rem;
    text-align: center;
    
    /*font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";*/
    color: #333;
    font-size: 1.6rem;
    background-color: #FAFAFA;
    -webkit-font-smoothing: antialiased;
  }
  
  .cal__header button {
    background: none;
    border: 0;
    outline: none;
    color: inherit;
    font: inherit;
    line-height: normal;
    overflow: visible;
    padding: 0;
    -webkit-appearance: button;
    -moz-user-select: none;
    -ms-user-select: none;
    cursor: pointer;
    opacity: 0.9;
  }
  
  
  .cal__header button:hover {
    opacity: 1;
    background: none;
  }
  
  .cal button:active {
    box-shadow: 0 0 0 2px rgba(10, 146, 151, 0.1)
  }
  
  .cal {
    width: 100%;
    /*max-width: 48rem;*/
    margin: 0 auto;
    /*background-color: #fff;*/
    overflow: hidden;
    /*box-shadow: 0 4px 22px 0 rgba(0, 0, 0, 0.05);
    border: solid 1px #e7e9ed;
    border-bottom: solid 4px #e7e9ed;*/
  }
  
  .cal__header {
    display: flex;
    padding: 1.2rem 1.4rem;
    align-items: center;
  }
  
  .cal__header svg {
    fill: #000;
  }
  
  .cal__header__label {
    width: 100%;
    text-align: center;
    font-weight: bold;
  }
  
  .cal__week {
    display: flex;
    flex-wrap: wrap;
    /*background-color: #006a82;*/
    /*color: #ffffff;*/
  }
  
  .cal__week span {
    font-size: 14px;
    max-width: 14.28%;
    padding: 1.2rem 1.4rem;
    flex: 0 0 14.28%;
    flex-direction: column;
    text-transform: uppercase;
    text-align: center;
  }
  
  .cal__body {
    display: flex;
    flex-wrap: wrap;
    background-color: #3a3a3a;
  }
  
  .cal__date {
    /*background-color: #fff;*/
    color: #fff;
    display: flex;
    max-width: 14.28%;
    flex: 0 0 14.28%;
    flex-direction: column;
    align-items: center;
    padding: 1.2rem 0;
  }
  
  .cal__date span {
    font-size: 18px;
    width: 40px;
    height: 40px;
    display: inline-block;
    line-height: 40px;
    border-radius: 40px;
    font-size: 18px;
  }

  .cal__date--free span {
    border: 1px solid #F0AC0E;
  }
  .cal__date--full span {
    background: #646464;
  }
  .cal__date--selected span {
    background: #F0AC0E;
    color: #323232;
  }

  .cal__date--active:hover {
    cursor: pointer;
  }
  
  .cal__date--today {
    background-color: #a49f95;
    color: #ffffff;
  }
  
  .cal__date--hasEvent {
    background-color: #ea5151;
    color: #ffffff;
  }
  
  .cal__date--selected {
    /*background-color: #000000;
    color: #ffffff;
    font-weight: bold;*/
  }
  
  .cal__date--disabled {
    opacity: 0.3;
  }
  
  .cal__date--disabled:hover {
    cursor: not-allowed;
  }
  
  .demo-picked {
    font-size: 1.2rem;
    text-align: center;
  }
  
  .demo-picked span {
    font-weight: bold;
  }
  
  .calendar-button {
    margin-top: 15px;
  }
  