/* GENERAL STYLING FOR DATEPICKER PLUGIN */
.simple_calendar {
  padding: 8px;
  background-color: #f8f8f8;
  border-radius: 6px;
  margin-bottom: 20px; }
  .simple_calendar .sc_header {
    width: 100%;
    position: relative;
    padding: 1em 0px;
    text-align: center;
    font-weight: bold;
    color: white;
    background-color: #262626;
    font-size: 20px;
    border-radius: 6px; }
    .simple_calendar .sc_header .sc_prev, .simple_calendar .sc_header .sc_next {
      position: absolute;
      cursor: pointer;
      font-size: 35px;
      width: 35px; }
      .simple_calendar .sc_header .sc_prev.disabled, .simple_calendar .sc_header .sc_next.disabled {
        cursor: default;
        pointer-events: none;
        opacity: 0.5; }
    .simple_calendar .sc_header .sc_prev {
      left: 12px; }
    .simple_calendar .sc_header .sc_next {
      right: 12px; }
  .simple_calendar .sc_table {
    width: 100%;
    border-collapse: separate;
    table-layout: fixed;
    border-spacing: 5px;
    border: none;
    margin: 0; }
    .simple_calendar .sc_table th, .simple_calendar .sc_table td {
      text-align: center; }
    .simple_calendar .sc_table th {
      padding: 1rem 0 0.5rem;
      font-weight: bold;
      font-size: 14px; }
    .simple_calendar .sc_table td {
      position: relative;
      border: 1px solid #e9e9e9;
      color: #c3c3c3;
      width: 100%/7;
      min-height: 58px;
      background-color: #f8f8f8;
      transition: all 0.3s ease; }
      .simple_calendar .sc_table td > div {
        padding-bottom: 100%;
        position: relative; }
      .simple_calendar .sc_table td .sc_date {
        position: absolute;
        top: 3px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 16px; }
      .simple_calendar .sc_table td.sc_available {
        cursor: pointer;
        background-color: #fff;
        color: #363636;
        border-color: #fff; }
      .simple_calendar .sc_table td.sc_locked {
        cursor: initial;
        opacity: 0.8; }
      .simple_calendar .sc_table td.sc_selected {
        background-color: #58a157;
        color: white;
        font-weight: bold; }

/*# sourceMappingURL=simple-calendar.css.map */
