/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

  Mixins available:
    -   css3-prefix             - arguments: Property, Value
    -   background-gradient     - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-radial       - arguments: Start Color: #FFFFFF, Start position: 0%, End Color: #000000, End position: 100%
    -   background-size         - arguments: Width: 100%, Height: 100%
    -   background-opacity      - arguments: Color: #000, Opacity: .85
    -   border-radius           - arguments: Radius: 5px
    -   border-radius-separate  - arguments: Top Left: 5px, Top Left: 5px, Bottom Left: 5px, Bottom Right: 5px
    -   box                     - arguments: Orientation: horizontal, Pack: center, Align: center
    -   box-rgba                - arguments: R: 60, G: 3, B: 12, Opacity: 0.23, Color: #3C3C3C
    -   box-shadow              - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   box-sizing              - arguments: Type: border-box
    -   columns                 - arguments: Count: 3, Gap: 10
    -   double-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Radius: 0
    -   flex                    - arguments: Value: 1
    -   flip                    - arguments: ScaleX: -1
    -   font-face               - arguments: Font Family: myFont, Eot File Src: myFont.eot, Woff File Src: myFont.woff, Ttf File Src: myFont.ttf
    -   opacity                 - arguments: Opacity: 0.5
    -   outline radius          - arguments: Radius: 5px
    -   resize                  - arguments: Direction: both
    -   rotate                  - arguments: Degree: 0, M11: 0, M12: 0, M21: 0, M22: 0
    CSS Matrix Rotation Calculator http://www.boogdesign.com/examples/transforms/matrix-calculator.html
    -   text-shadow             - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   transform               - arguments: Parameters: null
    -   transform-style         - arguments: Style: preserve-3d
    -   transition              - Default arguments: What: all, Length: 1s, Easing: ease-in-out
    -                            - Examples: @include transition (all 2s ease-in-out);
    -                                        @include transition (opacity 1s ease-in 2s, width 2s ease-out);
    -   triple-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Color Three: #000000, Radius: 0
    -   keyframes               - arguments: Animation name
                                - content:   Animation css
    -   animation               - arguments: name duration timing-function delay iteration-count direction fill-mode play-state
                                             (http://www.w3schools.com/cssref/css3_pr_animation.asp)

------------------------------------------------------------- */
/* ADDS A BROWSER PREFIX TO THE PROPERTY */
/* BACKGROUND GRADIENT */
/* BACKGROUND RADIAL */
/* BACKGROUND SIZE */
/* BACKGROUND COLOR OPACITY */
/* BORDER RADIUS */
/* BOX */
/* BOX RGBA */
/* BOX SHADOW */
/* BOX SIZING */
/* COLUMNS */
/* DOUBLE BORDERS */
/* FLEX */
/* FLIP */
/* FONT FACE */
/* OPACITY */
/* OUTLINE RADIUS */
/* RESIZE */
/* ROTATE*/
/* TEXT SHADOW */
/* TRANSFORM  */
/* TRANSFORM STYLE */
/* TRANSITION */
/* TRIPLE BORDERS */
/* KEYFRAMES */
/* ANIMATION */
.calbutton-wrapper {
  overflow: hidden;
  position: relative;
  margin-top: 10px; }
  .calbutton-wrapper .monthprev {
    float: left;
    width: 32%;
    margin-right: 5px; }
  .calbutton-wrapper .monthnext {
    float: right;
    width: 32%;
    margin-left: auto; }
  .calbutton-wrapper .gotoday {
    float: left;
    width: 33%;
    margin-left: 0; }

.calendar {
  width: 100%;
  margin-top: 10px; }
  .calendar .days-of-week, .calendar .days-of-month {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 2px; }
    .calendar .days-of-week .day-block, .calendar .days-of-month .day-block {
      -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
      text-align: center;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      margin-bottom: 2px;
      border-bottom: 1px solid #ccc; }
  .calendar .days-of-week {
    margin-bottom: 0px;
    display: none; }
    .calendar .days-of-week .day-block {
      height: 27px;
      position: relative;
      background: #f4f4f4;
      color: #999999;
      font-size: 10px;
      line-height: 20px;
      padding: 2px 0 2px 0;
      border-bottom: 1px solid #ccc; }
  .calendar .days-of-month .day-block {
    position: relative;
    background: #fdfdfd;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 49px;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    height: 49px;
    width: 53px;
    border: 2px solid #fdfdfd;
    border-bottom: 1px solid #ccc; }
    .calendar .days-of-month .day-block.bggreen {
      background: #d8f5d5 !important;
      color: #444 !important; }
    .calendar .days-of-month .day-block.bgwarning {
      background: #ffe4c9 !important;
      color: #444 !important; }
    .calendar .days-of-month .day-block .calnum {
      width: 100%;
      text-align: center;
      position: relative;
      top: 2px;
      font-family: 'roboto-bold', arial;
      font-size: 16px; }
    .calendar .days-of-month .day-block .body {
      position: absolute;
      left: 0;
      top: 24px;
      font-size: 11px;
      width: 100%;
      text-align: center; }
      .calendar .days-of-month .day-block .body .body-price {
        font-size: 11px; }
        .calendar .days-of-month .day-block .body .body-price.lowest {
          color: #66aa66; }
        .calendar .days-of-month .day-block .body .body-price.medium {
          color: #f5800c; }
        .calendar .days-of-month .day-block .body .body-price.highest {
          color: #770000; }
    .calendar .days-of-month .day-block.didrun {
      opacity: 0.3; }
    .calendar .days-of-month .day-block.best-price .body-price {
      font-size: 12px; }
      .calendar .days-of-month .day-block.best-price .body-price.lowest {
        color: #66aa66; }
  @media (min-width: 383px) {
    .calendar {
      width: 309px; }
      .calendar .days-of-week, .calendar .days-of-month {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
        .calendar .days-of-week .day-block, .calendar .days-of-week .day-block-inner, .calendar .days-of-month .day-block, .calendar .days-of-month .day-block-inner {
          -webkit-box-pack: end;
          -ms-flex-pack: end;
          justify-content: flex-end;
          -ms-flex-preferred-size: 44px;
          flex-basis: 44px;
          margin-bottom: 0;
          border: 2px solid #fdfdfd;
          border-bottom: 1px solid #ccc; }
      .calendar .days-of-month .day-block:nth-of-type(even), .calendar .days-of-month .day-block-inner:nth-of-type(even) {
        background: #fdfdfd; } }
