/* MY CUSTOM STYLE */
.avail {
    display: inline-block;
    float: left;
    width: 14.28%;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
    border: 1px solid white;
    background-color: #00bd93;
    color: white;
    font-weight: bold;
}

.buttons-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

    .buttons-container .label-container {
        display: inline-block;
        -webkit-box-flex: 1;
        -moz-box-flex: 1;
        -webkit-flex: 1;
        -ms-flex: 1;
        flex: 1;
        text-align: center;
        text-transform: uppercase;
        font-weight: bold;
        color: #007bff;
    }

.year-dropdown {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
    padding: 5px 20px;
    color: #007bff;
}

.prev-button,
.next-button {
    background: transparent;
    border: none;
    padding: 10px;
    font-family: lato,sans-serif;
    font-size:14px;
    font-weight:bold;
    color:#1565c0;
    cursor:pointer;
}

.week {
  margin: 10px 0;
}

.week.highlight {
  border-radius: 5px;
}

.weeks-wrapper.header {
  border-bottom: 1px solid #eee;
}

.week .day.header {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 110%;
    color: #676767;
}

.day span {
    display: inline-block;
    width: 38px;
    height: 38px;
    line-height: 35px;
    border-radius: 50%;
    vertical-align: middle;
    font-family: lato,sans-serif;
    font-weight:bold;
    font-size:14px;
}

.day.today span {
    position: relative;
    display: inline-block;
    /*font-size: 110%;*/
}

/* weekend */
.week:not(.start-on-monday) .day:first-child, .week:not(.start-on-monday) .day:last-child {
    color: #676767;
}

/* sunday */
.week:not(.start-on-monday) .day:first-child {
    color: #676767;
}

/* start on monday - weekend */
.week.start-on-monday .day:nth-child(6),
.week.start-on-monday .day:last-child {
    color: #676767;
}

/* start on monday - sunday */
.week.start-on-monday .day:last-child {
    color: #676767;
}

.day.today span::after {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: 2px solid orange;
  width: 10px;
  height: 1px;
}

.day.sunday span {
  color: #ff8a80;
}

.week .day.highlight span {
  color: #2196f3;
}

.week .day.selected span {
    /*background: #1565c0;
  color: white;*/
}

.week .day[disabled="disabled"] span {
  color: #aaa;
  text-align:center;
  cursor: not-allowed;
  margin-right:13px;
}

.months-wrapper .month span {
    display: inline-block;
    padding: 10px;
    text-transform: capitalize;
    margin-bottom: 10px;
    font-family: lato,sans-serif;
    font-weight: bold;
    font-size: 14px;
}

.special-buttons {
  text-align: center;
  border-top: 1px solid #eee;
  padding-top: 10px;
}

.today-button {
  margin: 0 auto;
  background: transparent;
  border: none;
  padding: 5px;
}


/* FROM style.css*********************************************************************************** */



.calendar-box {
}

.buttons-container {
    cursor: pointer;
}

.week {
    overflow: hidden;
}

    .week.highlight {
        background: #efefef;
    }

    /* weekend */
    .week .day:first-child, .week .day:last-child {
        /*color: orange;*/
    }

    /* sunday */
    .week .day:first-child {
        /*color: red;*/
    }

.day {
    display: inline-block;
    float: left;
    width: 14.28%;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
}

    .day.disabled span {
        color: #AAA;
        opacity: 0;
    }

/* vertical highlight */
.week .day.highlight span {
    /*color: blue;*/
}

.day.selected span {
    /*background: orange;*/
}

.day.today span {
    font-weight: bold;
}

.months-container.hidden, .weeks-container.hidden {
    display: none;
}

.months-wrapper {
    overflow: hidden;
}

    .months-wrapper .month {
        display: inline-block;
        float: left;
        width: 25%;
        text-align: center;
        cursor: pointer;
    }

        .months-wrapper .month.one-third {
            width: 33.33%;
        }

/* FROM page.css*********************************************************************************** */


.codeflask {
    position: relative !important;
    min-height: 400px;
}

.codeflask--has-line-numbers .codeflask__flatten {
    /* width: auto !important; */
}

.calendar-wrapper {
    width: 100%;
    max-width: 400px;
    min-width: 310px;
    margin: auto;
    border: 1px solid #eee;
    padding: 5px;
}

footer {
    font-size: 10px;
    color: #777;
    margin-top: 20px;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    display: inline-block;
    left: 0;
}

#content pre {
    background-color: #eee;
    padding: 8px;
    border-radius: 4px;
    overflow-y: auto;
}

#content code {
    background-color: #eee;
    padding: 0 4px;
    line-height: 20px;
    border-radius: 4px;
    font-size: 16px;
}
