/*
 * Shortcode: opening-hours.scss
 * -----------------------------------------------
*/
.opening-hours, .working-hours {
  list-style: none;
  padding: 0;
  @include transition(all .3s ease);
  
  li {
    border-bottom: 1px solid $gray-eee;
    padding: 10px 0;
    margin: 10px 0;
    @include transition(all .3s ease);
    &:last-child {
      border-bottom: 0;
    }
    .day {
      @include transition(all .3s ease);
    }
    .time {
      @include transition(all .3s ease);
    }
    &.active {
      font-weight: $body-font-bold;
    }
  }
  &.border-light li {
    border-bottom-color: $gray-ddd;
  }
  &.border-dark li {
    border-bottom-color: #333;
  }
}
.widget {
  .opening-hours, .working-hours {
    li {
      * {
        line-height: $line-height-widget-li;
      }
    }
  }
}