.reactLoading {
    margin-top: 40px;
    height: 60px;
    box-sizing: content-box;
    background: image-url('loading.gif') 50% 50% no-repeat;
}

.newSmartCard {
  text-align: right;
}

.smartCardsList {
  display: table;
  width: 100%;

  .smartCard {
    text-decoration: none;
    color: #222;
    display: table-row;
    transition: all 150ms linear;

    .smartCard-cell {
      display: table-cell;
      padding: 5px 10px;
    }

    .smartCard-id {
      width: 5%;
      text-align: right;
      color: #777;
    }

    .smartCard-target {
      width: 30%;
      $size: 30px;
      line-height: $size;

      .smartCard-target-icon {
        display: inline-block;
        width: $size;
        height: $size;
        line-height: $size;
        text-align: center;
        border-radius: 5px;
        overflow: hidden;
        vertical-align: middle;
        margin-right: 5px;

        img { max-width: 100%; max-height: 100%; vertical-align: middle; display: inline-block; }
      }
      .smartCard-target-title {
        display: inline-block;
        vertical-align: middle;

        span {
          color: #999;
        }
      }
    }

    .smartCard-trigger {
      width: 30%;

      .smartCard-trigger-when { color: #777; }
    }
  }

  a.smartCard:hover {
    background: #ffc;
  }

  .smartCard--header {
    text-transform: uppercase;
    font-weight: 200;
  }
}

#smartCardBuilder {
  .smartCardForm {
    margin-top: 60px;

    .smartCardForm-header {
      text-transform: uppercase;
      color: #aaa;
      font-size: 36px;
      font-weight: 200;
      line-height: 1em;
    }

    .smartCardForm-section {
      margin-bottom: 120px;
    }

    .smartCardForm-section-header {
      text-transform: uppercase;
      color: #aaa;
      font-size: 36px;
      font-weight: 100;
      line-height: 1em;
    }
  }

  .appSelectInput-icon {
      min-width: 20px;
      max-height: 20px;
      display: inline-block;
      vertical-align: middle;
      margin-right: 10px;
  }

  .appSelectInput-label {
      display: inline-block;
      vertical-align: middle;
  }

  .rangeInput {
    position: relative;
    padding-bottom: 30px;
    margin-left: 10px;
    margin-right: 10px;

    .rangeInput-valueLabel {
      position: absolute;
      font-size: 14;
      line-height: 26px;
      margin-top: 10px;
      width: 40px;
      margin-left: -20px;
      color: #333;
      text-align: center;
      transition: background .125s linear;
      border-radius: 4;
    }

    .rangeInput-valueLabel--active {
      // background: #eee;
      background: #fff;
      color: #000;
      z-index: 5;
    }
  }

  .smartCardForm-label {
    display: block;
    margin-bottom: 10px;
  }

  // ui.slider
  .ui-slider {
      position: relative;
      text-align: left;
      background: #d2d5db;

      .ui-slider-handle {
          position: absolute;
          z-index: 2;
          width: 1.125em;
          height: 1.125em;
          cursor: default;
          outline: 0;
          cursor: pointer;
          background: #fff;

          transition: all .125s linear;
          transition-property: box-shadow,transform;
          border-radius: .5625em;
          box-shadow: 0 1px 1px 0 rgba(0,0,0,0.25),0 0 2px 0 rgba(0,0,0,0.1),inset 0 -2px 0 0 rgba(0,0,0,0.05);

          // &.ui-state-hover {
          //     box-shadow: 0 1px 1px 0 rgba(0,0,0,0.25),0 0 4px 0 rgba(0,0,0,0.2),inset 0 -2px 0 0 rgba(0,0,0,0.05);
          //     transform: scale(1.25);
          // }

          &.ui-state-active {
              box-shadow: 0 1px 1px 0 rgba(0,0,0,0.25),0 0 4px 0 rgba(0,0,0,0.2),inset 0 -2px 0 0 rgba(0,0,0,0.05);
              transform: scale(1.25);
          }
      }
  }

  .ui-slider-horizontal {
      height: .375em;
      border-radius: 3px;

      .ui-slider-handle {
          top: -0.4375em;
          margin-left: -0.5em;
      }
      .ui-slider-range {
          top: 0;
          height: 100%;
      }

      .ui-slider-horizontal .ui-slider-range-min {
          left: 0;
      }
      .ui-slider-horizontal .ui-slider-range-max {
          right: 0;
      }
  }

  .ui-widget-header {
      // background-color: #4f82e9;
      background-color: #e46700;
      border-radius: 3px;
      position: absolute;
  }


  // react-select
  /**
  * React Select
  * ============
  * Created by Jed Watson and Joss Mackison for KeystoneJS, http://www.keystonejs.com/
  * https://twitter.com/jedwatson https://twitter.com/jossmackison https://twitter.com/keystonejs
  * MIT License: https://github.com/keystonejs/react-select
  */
  .Select {
    position: relative;
  }
  .Select-control {
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border-color: #d9d9d9 #cccccc #b3b3b3;
    border-radius: 4px;
    box-sizing: border-box;
    color: #333333;
    cursor: default;
    outline: none;
    padding: 8px 52px 8px 10px;
  }
  .Select-control:hover {
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  }
  .is-searchable.is-open > .Select-control {
    cursor: text;
  }
  .is-open > .Select-control {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    background: #ffffff;
    border-color: #b3b3b3 #cccccc #d9d9d9;
  }
  .is-open > .Select-control > .Select-arrow {
    border-color: transparent transparent #999999;
    border-width: 0 5px 5px;
  }
  .is-searchable.is-focused:not(.is-open) > .Select-control {
    cursor: text;
  }
  .is-focused:not(.is-open) > .Select-control {
    border-color: #0088cc #0099e6 #0099e6;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 0 5px -1px rgba(0, 136, 204, 0.5);
  }
  .Select.is-invalid .Select-control {
    border-color: #CC6666;
    background: #FFFAFA;
  }
  .Select-placeholder {
    color: #aaaaaa;
    padding: 8px 52px 8px 10px;
    position: absolute;
    top: 0;
    left: 0;
    right: -15px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .has-value > .Select-control > .Select-placeholder {
    color: #333333;
  }
  .Select-value {
    color: #aaaaaa;
    padding: 8px 52px 8px 10px;
    position: absolute;
    top: 0;
    left: 0;
    right: -15px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .has-value > .Select-control > .Select-value {
    color: #333333;
  }
  .Select-input > input {
    cursor: default;
    background: none transparent;
    box-shadow: none;
    height: auto;
    border: 0 none;
    font-family: inherit;
    font-size: inherit;
    margin: 0;
    padding: 0;
    outline: none;
    display: inline-block;
    -webkit-appearance: none;
  }
  .is-focused .Select-input > input {
    cursor: text;
  }
  .Select-control:not(.is-searchable) > .Select-input {
    outline: none;
  }
  .Select-loading {
    -webkit-animation: Select-animation-spin 400ms infinite linear;
    -o-animation: Select-animation-spin 400ms infinite linear;
    animation: Select-animation-spin 400ms infinite linear;
    width: 16px;
    height: 16px;
    box-sizing: border-box;
    border-radius: 50%;
    border: 2px solid #cccccc;
    border-right-color: #333333;
    display: inline-block;
    position: relative;
    margin-top: -8px;
    position: absolute;
    right: 30px;
    top: 50%;
  }
  .has-value > .Select-control > .Select-loading {
    right: 46px;
  }
  .Select-clear {
    color: #999999;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    padding: 6px 10px;
    position: absolute;
    right: 17px;
    top: 0;
  }
  .Select-clear:hover {
    color: #c0392b;
  }
  .Select-clear > span {
    font-size: 1.1em;
  }
  .Select-arrow-zone {
    content: " ";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 30px;
    cursor: pointer;
  }
  .Select-arrow {
    border-color: #999999 transparent transparent;
    border-style: solid;
    border-width: 5px 5px 0;
    content: " ";
    display: block;
    height: 0;
    margin-top: -ceil(2.5px);
    position: absolute;
    right: 10px;
    top: 14px;
    width: 0;
    cursor: pointer;
  }
  .Select-menu-outer {
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border-top-color: #e6e6e6;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
    margin-top: -1px;
    max-height: 200px;
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: 1000;
    -webkit-overflow-scrolling: touch;
  }
  .Select-menu {
    max-height: 198px;
    overflow-y: auto;
  }
  .Select-option {
    box-sizing: border-box;
    color: #666666;
    cursor: pointer;
    display: block;
    padding: 8px 10px;
  }
  .Select-option:last-child {
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
  }
  .Select-option.is-focused {
    background-color: #f2f9fc;
    color: #333333;
  }
  .Select-option.is-disabled {
    color: #cccccc;
    cursor: not-allowed;
  }
  .Select-noresults {
    box-sizing: border-box;
    color: #999999;
    cursor: default;
    display: block;
    padding: 8px 10px;
  }
  .Select-search-prompt, .Select-searching {
    box-sizing: border-box;
    color: #999999;
    cursor: default;
    display: block;
    padding: 8px 10px;
  }
  .Select.is-multi .Select-control {
    padding: 2px 52px 2px 3px;
  }
  .Select.is-multi .Select-input {
    vertical-align: middle;
    border: 1px solid transparent;
    margin: 2px;
    padding: 3px 0;
  }
  .Select-item {
    background-color: #f2f9fc;
    border-radius: 2px;
    border: 1px solid #c9e6f2;
    color: #0088cc;
    display: inline-block;
    font-size: 1em;
    margin: 2px;
  }
  .Select-item-icon,
  .Select-item-label {
    display: inline-block;
    vertical-align: middle;
  }
  .Select-item-label {
    cursor: default;
    border-bottom-right-radius: 2px;
    border-top-right-radius: 2px;
    padding: 3px 5px;
  }
  .Select-item-label .Select-item-label__a {
    color: #0088cc;
    cursor: pointer;
  }
  .Select-item-icon {
    cursor: pointer;
    border-bottom-left-radius: 2px;
    border-top-left-radius: 2px;
    border-right: 1px solid #c9e6f2;
    padding: 2px 5px 4px;
  }
  .Select-item-icon:hover,
  .Select-item-icon:focus {
    background-color: #ddeff7;
    color: #0077b3;
  }
  .Select-item-icon:active {
    background-color: #c9e6f2;
  }
  .Select.is-disabled .Select-control {
    opacity: .7;
  }
  .Select.is-multi.is-disabled .Select-item {
    background-color: #f2f2f2;
    border: 1px solid #d9d9d9;
    color: #888888;
  }
  .Select.is-multi.is-disabled .Select-item-icon {
    cursor: not-allowed;
    border-right: 1px solid #d9d9d9;
  }
  .Select.is-multi.is-disabled .Select-item-icon:hover,
  .Select.is-multi.is-disabled .Select-item-icon:focus,
  .Select.is-multi.is-disabled .Select-item-icon:active {
    background-color: #f2f2f2;
  }
  @keyframes Select-animation-spin {
    to {
      transform: rotate(1turn);
    }
  }
  @-webkit-keyframes Select-animation-spin {
    to {
      -webkit-transform: rotate(1turn);
    }
  }

  .row {
    margin-right: -20px;
  }

  .col {
      padding-right: 20px;
  }

}

.weekdaysInput {

  .day {
    display: inline-block;
    margin-right: .5em;
    margin-bottom: .5em;
    font-size: .875em;
    cursor: pointer;
    $size: 2.5em;
    width: $size;
    height: $size;
    text-align: center;
    line-height: $size;
    border-radius: $size;
    border: 1px solid #ccc;
    color: 1px solid #ccc;
    transition: all 150ms linear;
    background: #f4f4f4;

    &:hover {
      background: lighten(#e46700, 50);
    }

    &.selected {
      background: #e46700;
      color: #fff;
    }
  }
}
