/* line 41, ../../../submodules/compass-recipes/stylesheets/recipes/_webfont-icon.scss */
.webfont-icon-base {
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  position: absolute;
  top: 0;
  left: 0;
  text-indent: 0;
  text-shadow: none;
  -webkit-user-select: none;
  user-select: none;
}

/**
 * Includes a character into the specified selector, styled as an icon.
 * 
 *     @include webfont-icon('a');
 * 
 * @param {color} $color
 * The color of the icon. Defaults to {@link #$webfont-icon-default-background $webfont-icon-default-background}.
 * 
 * @param {measurement} $size
 * The size of the icon
 * 
 * @param {color} $stroke
 * The color of the border. Defautls to {@link #$webfont-icon-default-border $webfont-icon-default-border}.
 * 
 * @param {boolean} $include-staes
 * True to include states for hover and active. Defaults to `true`.
 */
/* line 1, ../../../themes/scss/include/_base.scss */
* {
  margin: 0;
  padding: 0;
  /*
  padding-top: 0;
  padding-bottom: env(safe-area-inset-bottom);
  padding-left: 0;
  padding-right: 0;
  */
}

/* line 6, ../../../themes/scss/include/_base.scss */
body {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
}

/* line 11, ../../../themes/scss/include/_base.scss */
#jqt {
  -webkit-text-size-adjust: none;
  -webkit-user-select: none;
  user-select: none;
  font-family: "Helvetica Neue", Helvetica;
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
}
/* line 21, ../../../themes/scss/include/_base.scss */
#jqt a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-drag: none;
}
/* line 25, ../../../themes/scss/include/_base.scss */
#jqt a :active {
  pointer-events: none;
}
/* line 30, ../../../themes/scss/include/_base.scss */
#jqt .selectable, #jqt input, #jqt textarea {
  -webkit-user-select: auto;
}
/* line 34, ../../../themes/scss/include/_base.scss */
#jqt.notransform {
  -webkit-transform: none !important;
}
/* line 39, ../../../themes/scss/include/_base.scss */
#jqt > * {
  display: block;
  left: 0;
  top: 0;
  min-height: 100%;
  width: 100%;
  overflow-x: hidden;
  position: absolute;
  z-index: 0;
  display: -webkit-box;
  display: box;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  -webkit-box-flex: 1;
  box-flex: 1;
}
/* line 53, ../../../themes/scss/include/_base.scss */
#jqt > .current {
  z-index: 10;
}
/* line 57, ../../../themes/scss/include/_base.scss */
#jqt > *:not(.current):not(.in):not(.out) {
  display: none;
}
/* line 61, ../../../themes/scss/include/_base.scss */
#jqt.touchscroll:not(.animating3d), #jqt.autoscroll:not(.animating3d) {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
/* line 65, ../../../themes/scss/include/_base.scss */
#jqt.touchscroll:not(.animating3d) > *, #jqt.autoscroll:not(.animating3d) > * {
  height: 100%;
}
/* line 68, ../../../themes/scss/include/_base.scss */
#jqt.touchscroll:not(.animating3d) .scroll, #jqt.autoscroll:not(.animating3d) .scroll {
  position: relative;
  -webkit-box-flex: 1;
  box-flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
/* line 77, ../../../themes/scss/include/_base.scss */
#jqt.touchscroll:not(.animating3d) .scroll {
  overflow-y: scroll;
}
/* line 83, ../../../themes/scss/include/_base.scss */
#jqt .scroll {
  -webkit-margin-collapse: separate;
}
/* line 87, ../../../themes/scss/include/_base.scss */
#jqt .in, #jqt .out {
  -webkit-animation-duration: 250ms;
  -webkit-animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in-out;
}
/* line 93, ../../../themes/scss/include/_base.scss */
#jqt .in:after, #jqt .out:after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
/* line 101, ../../../themes/scss/include/_base.scss */
#jqt .in input, #jqt .in a, #jqt .out input, #jqt .out a {
  pointer-events: none;
}
/* line 106, ../../../themes/scss/include/_base.scss */
#jqt .in {
  z-index: 10;
}
/* line 109, ../../../themes/scss/include/_base.scss */
#jqt .out {
  z-index: 0 !important;
}
/* line 113, ../../../themes/scss/include/_base.scss */
#jqt.supports3d {
  -webkit-perspective: 1000;
}
/* line 116, ../../../themes/scss/include/_base.scss */
#jqt.supports3d > * {
  -webkit-transform: translate3d(0, 0, 0) rotate(0) scale(1);
}

/* Fade */
/* line 3, ../../../themes/scss/include/_animations.scss */
#jqt .fade.in {
  -webkit-animation-name: fadeIn;
}

/* line 7, ../../../themes/scss/include/_animations.scss */
#jqt .fade.out {
  z-index: 10;
  -webkit-animation-name: fadeOut;
}

@-webkit-keyframes fadeIn {
  /* line 13, ../../../themes/scss/include/_animations.scss */
  0% {
    opacity: 0;
  }

  /* line 16, ../../../themes/scss/include/_animations.scss */
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeOut {
  /* line 22, ../../../themes/scss/include/_animations.scss */
  0% {
    opacity: 1;
  }

  /* line 25, ../../../themes/scss/include/_animations.scss */
  100% {
    opacity: 1;
  }
}

/* Disolve */
/* line 34, ../../../themes/scss/include/_animations.scss */
#jqt .dissolve.in {
  -webkit-animation-name: dissolveIn;
}

/* line 38, ../../../themes/scss/include/_animations.scss */
#jqt .dissolve.out {
  -webkit-animation-name: dissolveOut;
}

@-webkit-keyframes dissolveIn {
  /* line 43, ../../../themes/scss/include/_animations.scss */
  0% {
    opacity: 0;
  }

  /* line 46, ../../../themes/scss/include/_animations.scss */
  5% {
    opacity: 0;
  }

  /* line 49, ../../../themes/scss/include/_animations.scss */
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes dissolveOut {
  /* line 55, ../../../themes/scss/include/_animations.scss */
  5% {
    opacity: 1;
  }

  /* line 58, ../../../themes/scss/include/_animations.scss */
  100% {
    opacity: 0;
  }
}

/* #Popin' */
/* line 67, ../../../themes/scss/include/_animations.scss */
#jqt .pop.in {
  -webkit-animation-name: popIn;
}

/* line 71, ../../../themes/scss/include/_animations.scss */
#jqt .pop.out {
  -webkit-animation-name: popOut;
}

@-webkit-keyframes popIn {
  /* line 76, ../../../themes/scss/include/_animations.scss */
  0% {
    opacity: 0;
  }

  /* line 79, ../../../themes/scss/include/_animations.scss */
  5% {
    -webkit-transform: scale(0.2);
    opacity: 0;
  }

  /* line 83, ../../../themes/scss/include/_animations.scss */
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes popOut {
  /* line 90, ../../../themes/scss/include/_animations.scss */
  5% {
    -webkit-transform: scale(1);
    opacity: 1;
  }

  /* line 94, ../../../themes/scss/include/_animations.scss */
  100% {
    -webkit-transform: scale(0.2);
    opacity: 0;
  }
}

/* Slide Left */
/* line 104, ../../../themes/scss/include/_animations.scss */
#jqt .slideleft.in {
  -webkit-animation-name: slideLeftIn;
}

/* line 108, ../../../themes/scss/include/_animations.scss */
#jqt .slideleft.out {
  -webkit-animation-name: slideLeftOut;
}

@-webkit-keyframes slideLeftIn {
  /* line 113, ../../../themes/scss/include/_animations.scss */
  0% {
    -webkit-transform: translateX(90%);
  }

  /* line 116, ../../../themes/scss/include/_animations.scss */
  100% {
    -webkit-transform: translateX(0);
  }
}

@-webkit-keyframes slideLeftOut {
  /* line 122, ../../../themes/scss/include/_animations.scss */
  0% {
    -webkit-transform: translateX(-10%);
  }

  /* line 125, ../../../themes/scss/include/_animations.scss */
  100% {
    -webkit-transform: translateX(-100%);
  }
}

/* Slide Right */
/* line 134, ../../../themes/scss/include/_animations.scss */
#jqt .slideright.in {
  -webkit-animation-name: slideRightIn;
}

/* line 138, ../../../themes/scss/include/_animations.scss */
#jqt .slideright.out {
  -webkit-animation-name: slideRightOut;
}

@-webkit-keyframes slideRightIn {
  /* line 143, ../../../themes/scss/include/_animations.scss */
  0% {
    -webkit-transform: translateX(-90%);
  }

  /* line 146, ../../../themes/scss/include/_animations.scss */
  100% {
    -webkit-transform: translateX(0);
  }
}

@-webkit-keyframes slideRightOut {
  /* line 152, ../../../themes/scss/include/_animations.scss */
  0% {
    -webkit-transform: translateX(10%);
  }

  /* line 155, ../../../themes/scss/include/_animations.scss */
  100% {
    -webkit-transform: translateX(100%);
  }
}

/* Slide Up */
/* line 163, ../../../themes/scss/include/_animations.scss */
#jqt .slideup.in {
  -webkit-animation-name: slideUpIn;
}

/* line 166, ../../../themes/scss/include/_animations.scss */
#jqt .slideup.out {
  -webkit-animation-name: slideUpOut;
}

@-webkit-keyframes slideUpIn {
  /* line 171, ../../../themes/scss/include/_animations.scss */
  20% {
    -webkit-transform: translateY(80%);
  }

  /* line 174, ../../../themes/scss/include/_animations.scss */
  100% {
    -webkit-transform: translateY(0%);
  }
}

@-webkit-keyframes slideUpOut {
  /* line 180, ../../../themes/scss/include/_animations.scss */
  20% {
    -webkit-transform: translateY(-20%);
  }

  /* line 183, ../../../themes/scss/include/_animations.scss */
  100% {
    -webkit-transform: translateY(-100%);
  }
}

/* Slide Down */
/* line 192, ../../../themes/scss/include/_animations.scss */
#jqt .slidedown.in {
  -webkit-animation-name: slideDownIn;
}

/* line 195, ../../../themes/scss/include/_animations.scss */
#jqt .slidedown.out {
  -webkit-animation-name: slideDownOut;
}

@-webkit-keyframes slideDownIn {
  /* line 200, ../../../themes/scss/include/_animations.scss */
  0% {
    -webkit-transform: translateY(-80%);
  }

  /* line 203, ../../../themes/scss/include/_animations.scss */
  100% {
    -webkit-transform: translateY(0%);
  }
}

@-webkit-keyframes slideDownOut {
  /* line 209, ../../../themes/scss/include/_animations.scss */
  0% {
    -webkit-transform: translateY(20%);
  }

  /* line 212, ../../../themes/scss/include/_animations.scss */
  100% {
    -webkit-transform: translateY(100%);
  }
}

/* line 217, ../../../themes/scss/include/_animations.scss */
#jqt .slideleft, #jqt .slideright, #jqt .slideup, #jqt .slidedown {
  -webkit-animation-timing-function: ease-in-out;
}

/* Flip Left */
/* line 225, ../../../themes/scss/include/_animations.scss */
#jqt .flipleft {
  -webkit-backface-visibility: hidden;
}

/* line 229, ../../../themes/scss/include/_animations.scss */
#jqt .flipleft.in {
  -webkit-animation-name: flipLeftIn;
}

/* line 233, ../../../themes/scss/include/_animations.scss */
#jqt .flipleft.out {
  -webkit-animation-name: flipLeftOut;
}

@-webkit-keyframes flipLeftIn {
  /* line 238, ../../../themes/scss/include/_animations.scss */
  0% {
    opacity: 0;
  }

  /* line 241, ../../../themes/scss/include/_animations.scss */
  5% {
    opacity: 1;
    -webkit-transform: rotateY(180deg) scale(0.8);
  }

  /* line 245, ../../../themes/scss/include/_animations.scss */
  100% {
    -webkit-transform: rotateY(0deg) scale(1);
  }
}

@-webkit-keyframes flipLeftOut {
  /* line 251, ../../../themes/scss/include/_animations.scss */
  5% {
    -webkit-transform: rotateY(0deg) scale(1);
  }

  /* line 254, ../../../themes/scss/include/_animations.scss */
  100% {
    -webkit-transform: rotateY(-180deg) scale(0.8);
  }
}

/* Flip Right */
/* line 263, ../../../themes/scss/include/_animations.scss */
#jqt .flipright {
  -webkit-backface-visibility: hidden;
}

/* line 267, ../../../themes/scss/include/_animations.scss */
#jqt .flipright.in {
  -webkit-animation-name: flipRightIn;
}

/* line 271, ../../../themes/scss/include/_animations.scss */
#jqt .flipright.out {
  -webkit-animation-name: flipRightOut;
}

@-webkit-keyframes flipRightIn {
  /* line 276, ../../../themes/scss/include/_animations.scss */
  0% {
    opacity: 0;
  }

  /* line 279, ../../../themes/scss/include/_animations.scss */
  5% {
    -webkit-transform: rotateY(-180deg) scale(0.8);
  }

  /* line 282, ../../../themes/scss/include/_animations.scss */
  100% {
    -webkit-transform: rotateY(0deg) scale(1);
  }
}

@-webkit-keyframes flipRightOut {
  /* line 288, ../../../themes/scss/include/_animations.scss */
  5% {
    -webkit-transform: rotateY(0deg) scale(1);
  }

  /* line 291, ../../../themes/scss/include/_animations.scss */
  100% {
    -webkit-transform: rotateY(180deg) scale(0.8);
  }
}

/* Swap Right */
/* line 300, ../../../themes/scss/include/_animations.scss */
#jqt .swapright {
  -webkit-animation-duration: .7s;
  -webkit-transform: perspective(800);
  -webkit-animation-timing-function: ease-out;
}

/* line 305, ../../../themes/scss/include/_animations.scss */
#jqt .swapright.in {
  -webkit-animation-name: swapRightIn;
}

/* line 308, ../../../themes/scss/include/_animations.scss */
#jqt .swapright.out {
  -webkit-animation-name: swapRightOut;
}

@-webkit-keyframes swapRightIn {
  /* line 313, ../../../themes/scss/include/_animations.scss */
  0% {
    opacity: 0;
  }

  /* line 316, ../../../themes/scss/include/_animations.scss */
  5% {
    -webkit-transform: translate3d(0px, 0px, -800px) rotateY(70deg);
    opacity: 0;
  }

  /* line 320, ../../../themes/scss/include/_animations.scss */
  35% {
    -webkit-transform: translate3d(-180px, 0px, -400px) rotateY(20deg);
    opacity: 1;
  }

  /* line 324, ../../../themes/scss/include/_animations.scss */
  95% {
    -webkit-transform: translate3d(0px, 0px, 0px) rotateY(0deg);
    opacity: 1;
  }
}

@-webkit-keyframes swapRightOut {
  /* line 331, ../../../themes/scss/include/_animations.scss */
  5% {
    -webkit-transform: translate3d(0px, 0px, 0px) rotateY(0deg);
    opacity: 1;
  }

  /* line 335, ../../../themes/scss/include/_animations.scss */
  35% {
    -webkit-transform: translate3d(180px, 0px, -400px) rotateY(-20deg);
    opacity: .5;
  }

  /* line 339, ../../../themes/scss/include/_animations.scss */
  95% {
    -webkit-transform: translate3d(0px, 0px, -800px) rotateY(-70deg);
    opacity: 0;
  }
}

/* Swap Left */
/* line 347, ../../../themes/scss/include/_animations.scss */
#jqt .swapleft {
  -webkit-animation-duration: .7s;
  -webkit-transform: perspective(800);
  -webkit-animation-timing-function: ease-out;
}

/* line 352, ../../../themes/scss/include/_animations.scss */
#jqt .swapleft.in {
  -webkit-animation-name: swapLeftIn;
}

/* line 355, ../../../themes/scss/include/_animations.scss */
#jqt .swapleft.out {
  -webkit-animation-name: swapLeftOut;
}

@-webkit-keyframes swapLeftIn {
  /* line 360, ../../../themes/scss/include/_animations.scss */
  0% {
    opacity: 0;
  }

  /* line 363, ../../../themes/scss/include/_animations.scss */
  5% {
    -webkit-transform: translate3d(0px, 0px, -800px) rotateY(-70deg);
    opacity: 0;
  }

  /* line 367, ../../../themes/scss/include/_animations.scss */
  35% {
    -webkit-transform: translate3d(180px, 0px, -400px) rotateY(-20deg);
    opacity: 1;
  }

  /* line 371, ../../../themes/scss/include/_animations.scss */
  95% {
    opacity: 1;
    -webkit-transform: translate3d(0px, 0px, 0px) rotateY(0deg);
  }
}

@-webkit-keyframes swapLeftOut {
  /* line 378, ../../../themes/scss/include/_animations.scss */
  5% {
    -webkit-transform: translate3d(0px, 0px, 0px) rotateY(0deg);
    opacity: 1;
  }

  /* line 382, ../../../themes/scss/include/_animations.scss */
  35% {
    -webkit-transform: translate3d(-180px, 0px, -400px) rotateY(20deg);
    opacity: .5;
  }

  /* line 386, ../../../themes/scss/include/_animations.scss */
  95% {
    -webkit-transform: translate3d(0px, 0px, -800px) rotateY(70deg);
    opacity: 0;
  }
}

/* Cube Left */
/* line 400, ../../../themes/scss/include/_animations.scss */
#jqt .cubeleft.in, #jqt .cubeleft.out, #jqt .cuberight.in, #jqt .cuberight.out {
  -webkit-animation-duration: .6s;
  -webkit-transform: perspective(800);
}

/* line 407, ../../../themes/scss/include/_animations.scss */
#jqt .cubeleft.in {
  -webkit-transform-origin: 0% 50%;
  -webkit-animation-name: cubeLeftIn;
}

/* line 412, ../../../themes/scss/include/_animations.scss */
#jqt .cubeleft.out {
  -webkit-transform-origin: 100% 50%;
  -webkit-animation-name: cubeLeftOut;
}

@-webkit-keyframes cubeLeftIn {
  /* line 418, ../../../themes/scss/include/_animations.scss */
  0% {
    opacity: 0;
  }

  /* line 421, ../../../themes/scss/include/_animations.scss */
  5% {
    -webkit-transform: rotateY(90deg) translateZ(320px);
    opacity: .5;
  }

  /* line 425, ../../../themes/scss/include/_animations.scss */
  95% {
    -webkit-transform: rotateY(0deg) translateZ(0) translateX(0);
    opacity: 1;
  }
}

@-webkit-keyframes cubeLeftOut {
  /* line 432, ../../../themes/scss/include/_animations.scss */
  5% {
    -webkit-transform: rotateY(0deg) translateZ(0) translateX(0);
    opacity: 1;
  }

  /* line 436, ../../../themes/scss/include/_animations.scss */
  95% {
    -webkit-transform: rotateY(-90deg) translateZ(320px);
    opacity: .5;
  }
}

/* Cube Right */
/* line 444, ../../../themes/scss/include/_animations.scss */
#jqt .cuberight.in {
  -webkit-transform-origin: 100% 50%;
  -webkit-animation-name: cubeRightIn;
}

/* line 449, ../../../themes/scss/include/_animations.scss */
#jqt .cuberight.out {
  -webkit-transform-origin: 0% 50%;
  -webkit-animation-name: cubeRightOut;
}

@-webkit-keyframes cubeRightIn {
  /* line 455, ../../../themes/scss/include/_animations.scss */
  0% {
    opacity: 0;
  }

  /* line 458, ../../../themes/scss/include/_animations.scss */
  5% {
    -webkit-transform: rotateY(-90deg) translateZ(320px);
    opacity: .5;
  }

  /* line 462, ../../../themes/scss/include/_animations.scss */
  95% {
    -webkit-transform: rotateY(0deg) translateZ(0) translateX(0);
    opacity: 1;
  }
}

@-webkit-keyframes cubeRightOut {
  /* line 469, ../../../themes/scss/include/_animations.scss */
  5% {
    -webkit-transform: rotateY(0deg) translateZ(0) translateX(0);
    opacity: 1;
  }

  /* line 473, ../../../themes/scss/include/_animations.scss */
  95% {
    -webkit-transform: rotateY(90deg) translateZ(320px);
    opacity: .5;
  }
}

/* line 3, ../../../themes/scss/include/_skeleton.scss */
body {
  background: black;
}

/* line 7, ../../../themes/scss/include/_skeleton.scss */
.base-chevron, #jqt ul li.arrow:after, #jqt ul li.forward:after {
  content: '›';
  width: 22px;
  height: 100%;
  vertical-align: middle;
  font-size: 30px;
  line-height: 38px;
  font-family: Futura, "Futura Condensed", Helvetica, Arial, sans-serif;
  font-weight: bold;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
  position: absolute;
  right: 0;
  top: 0;
  pointer-events: none;
  z-index: 10;
}

/* line 24, ../../../themes/scss/include/_skeleton.scss */
.base-flatlists, #jqt ul.metal, #jqt ul.edgetoedge, #jqt ul.plastic {
  margin: 0;
  padding: 0;
  border-width: 0 0 0 1px;
  -webkit-border-radius: 0;
  border-radius: 0;
}

/* line 33, ../../../themes/scss/include/_skeleton.scss */
#jqt > * {
  background-color: #768ba7;
}
/* line 37, ../../../themes/scss/include/_skeleton.scss */
#jqt h1, #jqt h2 {
  font: bold 18px "Helvetica Neue", Helvetica;
  margin: 10px 20px 6px;
  color: #5c6d7b;
  text-shadow: #e8ebee 0 1px 0;
}
/* line 43, ../../../themes/scss/include/_skeleton.scss */
#jqt .toolbar {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #768ba7;
  border-bottom: 1px solid #2a3441;
  z-index: 10;
  position: relative;
  padding: 50px, 10px, 10px, 10px;
  /*height: 44px;*/
  -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0 1px 6px;
  box-shadow: rgba(0, 0, 0, 0.4) 0 1px 6px;
}
/* line 56, ../../../themes/scss/include/_skeleton.scss */
#jqt .toolbar > h1 {
  position: absolute;
  overflow: hidden;
  left: 50%;
  bottom: 9px;
  margin: 1px 0 0 -75px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3em;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: white;
  text-shadow: #5c718e 0 -1px 0;
}
/* line 75, ../../../themes/scss/include/_skeleton.scss */
#jqt.black-translucent .toolbar {
  padding-top: 30px;
  height: 64px;
}
/* line 79, ../../../themes/scss/include/_skeleton.scss */
#jqt.landscape .toolbar > h1 {
  margin-left: -125px;
  width: 250px;
}
/* line 84, ../../../themes/scss/include/_skeleton.scss */
#jqt .button, #jqt .back, #jqt .cancel, #jqt .add {
  position: absolute;
  overflow: hidden;
  width: auto;
  height: 30px;
  font-family: inherit;
  font-size: 12px;
  font-weight: bold;
  line-height: 30px;
  text-overflow: ellipsis;
  text-decoration: none;
  white-space: nowrap;
  background: none;
  bottom: 6px;
  right: 10px;
  margin: 0;
  padding: 0 10px;
  color: black;
  /* text-shadow: #3e5779 0 -1px 0; */
  /* border: 1px solid #2d3f57; */
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background-image: none;
  /*background-color: #50709a;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #7c97bb), color-stop(50%, #5a7caa), color-stop(51%, #50709a), color-stop(100%, #476489));
  background-image: -webkit-linear-gradient(top, #7c97bb, #5a7caa 50%, #50709a 51%, #476489);
  background-image: linear-gradient(top, #7c97bb, #5a7caa 50%, #50709a 51%, #476489);
  -webkit-box-shadow: rgba(255, 255, 255, 0.2) 0 1px 0, rgba(0, 0, 0, 0.2) 0 1px 2px inset;
  box-shadow: rgba(255, 255, 255, 0.2) 0 1px 0, rgba(0, 0, 0, 0.2) 0 1px 2px inset;
  */
}
/* line 115, ../../../themes/scss/include/_skeleton.scss */
#jqt .button.active, #jqt .back.active, #jqt .cancel.active, #jqt .add.active {
  border-color: #243346;
  background-image: none;
  background-color: #476489;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #6b89b2), color-stop(50%, #50709a), color-stop(51%, #476489), color-stop(100%, #3e5779));
  background-image: -webkit-linear-gradient(top, #6b89b2, #50709a 50%, #476489 51%, #3e5779);
  background-image: linear-gradient(top, #6b89b2, #50709a 50%, #476489 51%, #3e5779);
  color: white;
  text-shadow: #364b68 0 -1px 0;
}
/* line 123, ../../../themes/scss/include/_skeleton.scss */
#jqt .back {
  max-width: 60px;
  /*margin-left: 15px;*/
  overflow: visible;
  padding-left: 5px;
}
/* line 130, ../../../themes/scss/include/_skeleton.scss */
#jqt .back:after, #jqt .back:before {
  /*content: '';*/
  position: absolute;
  width: 20px;
  height: 20px;
  top: 1px;
  left: 1px;
  /*-webkit-transform: rotate(45deg) translate3d(0.2px, 0, 0);
  transform: rotate(45deg) translate3d(0.2px, 0, 0);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;*/
  background-image: none;
  /*background-color: #50709a;
  background-image: -webkit-gradient(linear, 0% 0%, 100% 100%, color-stop(0%, #7c97bb), color-stop(50%, #5a7caa), color-stop(51%, #50709a), color-stop(100%, #476489));
  background-image: -webkit-linear-gradient(top left, #7c97bb, #5a7caa 50%, #50709a 51%, #476489);
  background-image: linear-gradient(top left, #7c97bb, #5a7caa 50%, #50709a 51%, #476489);
  background-size: 100% 98%;
  -webkit-border-radius: 0 0 0 2px;
  border-radius: 0 0 0 2px;
  -webkit-mask-image: -webkit-linear-gradient(45deg, black, black 15px, rgba(0, 0, 0, 0) 15px);
  -webkit-mask-image: -webkit-gradient(linear, left bottom, right top, from(black), color-stop(50%, black), color-stop(50%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0)));
  -webkit-mask-clip: border-box;
  -webkit-background-clip: content-box;*/
}
/* line 160, ../../../themes/scss/include/_skeleton.scss */
/*
#jqt .back:after {
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 1px 0 0 inset, rgba(0, 0, 0, 0.2) 0 -1px 0 inset;
  box-shadow: rgba(0, 0, 0, 0.2) 1px 0 0 inset, rgba(0, 0, 0, 0.2) 0 -1px 0 inset;
}
*/
/* line 165, ../../../themes/scss/include/_skeleton.scss */
/*
#jqt .back:before {
  margin-left: -1px;
  background: #243346 none;
}*/
/* line 170, ../../../themes/scss/include/_skeleton.scss */
#jqt .back.active:after {
  background-image: none;
  background-color: #476489;
    /*
  background-image: -webkit-gradient(linear, 0% 0%, 100% 100%, color-stop(0%, #6b89b2), color-stop(50%, #50709a), color-stop(51%, #476489), color-stop(100%, #3e5779));
  background-image: -webkit-linear-gradient(left top, #6b89b2, #50709a 50%, #476489 51%, #3e5779);
  background-image: linear-gradient(left top, #6b89b2, #50709a 50%, #476489 51%, #3e5779);
  */
}
/* line 173, ../../../themes/scss/include/_skeleton.scss */
#jqt .back.active:before {
  background-color: #243346;
}
/* line 180, ../../../themes/scss/include/_skeleton.scss */
#jqt .whiteButton, #jqt .grayButton, #jqt .redButton, #jqt .blueButton, #jqt .greenButton {
  display: block;
  font-size: 20px;
  font-weight: bold;
  margin: 10px 20px;
  padding: 10px;
  text-align: center;
  text-decoration: inherit;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0 1px 3px, rgba(0, 0, 0, 0.4) 0 0 0 5px, rgba(255, 255, 255, 0.3) 0 1px 0 5px;
  box-shadow: rgba(0, 0, 0, 0.4) 0 1px 3px, rgba(0, 0, 0, 0.4) 0 0 0 5px, rgba(255, 255, 255, 0.3) 0 1px 0 5px;
}
/* line 69, ../../../themes/scss/include/_widgets.scss */
#jqt .whiteButton.active, #jqt .whiteButton:active, #jqt .grayButton.active, #jqt .grayButton:active, #jqt .redButton.active, #jqt .redButton:active, #jqt .blueButton.active, #jqt .blueButton:active, #jqt .greenButton.active, #jqt .greenButton:active {
  background-image: none;
  background-color: #2952a3;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4775d1), color-stop(50%, #2e5cb8), color-stop(51%, #2952a3), color-stop(100%, #24478f));
  background-image: -webkit-linear-gradient(top, #4775d1, #2e5cb8 50%, #2952a3 51%, #24478f);
  background-image: linear-gradient(top, #4775d1, #2e5cb8 50%, #2952a3 51%, #24478f);
  color: white;
  text-shadow: #1f3d7a 0 -1px 0;
}
/* line 184, ../../../themes/scss/include/_skeleton.scss */
#jqt .whiteButton {
  background-image: none;
  background-color: #eeeeee;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(50%, #fbfbfb), color-stop(51%, #eeeeee), color-stop(100%, #e1e1e1));
  background-image: -webkit-linear-gradient(top, #ffffff, #fbfbfb 50%, #eeeeee 51%, #e1e1e1);
  background-image: linear-gradient(top, #ffffff, #fbfbfb 50%, #eeeeee 51%, #e1e1e1);
  color: #151515;
  text-shadow: white 0 1px 0;
}
/* line 189, ../../../themes/scss/include/_skeleton.scss */
#jqt .grayButton {
  background-image: none;
  background-color: #444444;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #6a6a6a), color-stop(50%, #515151), color-stop(51%, #444444), color-stop(100%, #373737));
  background-image: -webkit-linear-gradient(top, #6a6a6a, #515151 50%, #444444 51%, #373737);
  background-image: linear-gradient(top, #6a6a6a, #515151 50%, #444444 51%, #373737);
  color: white;
  text-shadow: #2b2b2b 0 -1px 0;
}
/* line 194, ../../../themes/scss/include/_skeleton.scss */
#jqt .redButton {
  background-image: none;
  background-color: #d83b38;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e57a78), color-stop(50%, #dc504d), color-stop(51%, #d83b38), color-stop(100%, #ce2c28));
  background-image: -webkit-linear-gradient(top, #e57a78, #dc504d 50%, #d83b38 51%, #ce2c28);
  background-image: linear-gradient(top, #e57a78, #dc504d 50%, #d83b38 51%, #ce2c28);
  color: white;
  text-shadow: #b92724 0 -1px 0;
}
/* line 198, ../../../themes/scss/include/_skeleton.scss */
#jqt .redButton.active, #jqt .redButton:active {
  background-image: none;
  background-color: #c12926;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #de5856), color-stop(50%, #d52e2b), color-stop(51%, #c12926), color-stop(100%, #ac2422));
  background-image: -webkit-linear-gradient(top, #de5856, #d52e2b 50%, #c12926 51%, #ac2422);
  background-image: linear-gradient(top, #de5856, #d52e2b 50%, #c12926 51%, #ac2422);
  color: white;
  text-shadow: #97201e 0 -1px 0;
}
/* line 205, ../../../themes/scss/include/_skeleton.scss */
#jqt .blueButton {
  background-image: none;
  background-color: #2f7ce3;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #72a6ec), color-stop(50%, #458ae6), color-stop(51%, #2f7ce3), color-stop(100%, #1d6fdb));
  background-image: -webkit-linear-gradient(top, #72a6ec, #458ae6 50%, #2f7ce3 51%, #1d6fdb);
  background-image: linear-gradient(top, #72a6ec, #458ae6 50%, #2f7ce3 51%, #1d6fdb);
  color: white;
  text-shadow: #1a63c5 0 -1px 0;
}
/* line 210, ../../../themes/scss/include/_skeleton.scss */
#jqt .greenButton {
  background-image: none;
  background-color: #53b401;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #76fe04), color-stop(50%, #5fcd01), color-stop(51%, #53b401), color-stop(100%, #479b01));
  background-image: -webkit-linear-gradient(top, #76fe04, #5fcd01 50%, #53b401 51%, #479b01);
  background-image: linear-gradient(top, #76fe04, #5fcd01 50%, #53b401 51%, #479b01);
  color: white;
  text-shadow: #3c8101 0 -1px 0;
}
/* line 214, ../../../themes/scss/include/_skeleton.scss */
#jqt .greenButton.active, #jqt .greenButton:active {
  background-image: none;
  background-color: #408b01;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #63d801), color-stop(50%, #4ca501), color-stop(51%, #408b01), color-stop(100%, #357201));
  background-image: -webkit-linear-gradient(top, #63d801, #4ca501 50%, #408b01 51%, #357201);
  background-image: linear-gradient(top, #63d801, #4ca501 50%, #408b01 51%, #357201);
  color: white;
  text-shadow: #295900 0 -1px 0;
}
/* line 221, ../../../themes/scss/include/_skeleton.scss */
#jqt .leftButton, #jqt .cancel, #jqt .back {
  left: 10px;
  right: auto;
}
/* line 226, ../../../themes/scss/include/_skeleton.scss */
#jqt .add {
  font-size: 24px;
  line-height: 24px;
  font-weight: bold;
}
/* line 234, ../../../themes/scss/include/_skeleton.scss */
#jqt ul {
  padding: 0;
  margin: 5px 10px 10px 10px;
  -webkit-margin-collapse: separate;
}
/* line 236, ../../../themes/scss/include/_skeleton.scss */
#jqt ul, #jqt ul.individual li {
  background-color: white;
  color: gray;
  border: 1px solid #d9d9d9;
  font: normal 24px "Helvetica Neue", Helvetica;
}
/* line 245, ../../../themes/scss/include/_skeleton.scss */
#jqt ul:first-child {
  margin-top: 15px;
}
/* line 251, ../../../themes/scss/include/_skeleton.scss */
#jqt ul li {
  border-top: 1px solid #f2f2f2;
  list-style-type: none;
  overflow: hidden;
  padding: 5px;
  -webkit-transform: translate3d(0, 0, 0);
  /* expensive way to avoid flickr */
  /*position: relative;*/
}
/* line 258, ../../../themes/scss/include/_skeleton.scss */
#jqt ul li > * {
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  padding: 5px;
  /*margin: -10px;*/
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-transform: translateZ(0);
  color: #262626;
  /* text-shadow: white 0 1px 0; */
}
/* line 270, ../../../themes/scss/include/_skeleton.scss */
#jqt ul li a.active, #jqt ul li a.selected {
  background-image: none;
  background-color: #3366cc;
  color: white;
  text-shadow: #2952a3 0 -1px 0;
  -webkit-box-shadow: #4372d0 0 1px 0px inset;
  box-shadow: #4372d0 0 1px 0px inset;
}
/* line 278, ../../../themes/scss/include/_skeleton.scss */
#jqt ul li a.active small, #jqt ul li a.selected small {
  color: #adc2eb;
  text-shadow: #0a1429 0 -1px 0;
}
/* line 279, ../../../themes/scss/include/_skeleton.scss */
#jqt ul li a.active small.counter, #jqt ul li a.selected small.counter {
  background-color: #24478f;
}
/* line 288, ../../../themes/scss/include/_skeleton.scss */
#jqt ul li small {
  color: #3366cc;
  font: 16px "Helvetica Neue", Helvetica;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  width: 23%;
  position: relative;
  z-index: 20;
  float: right;
  line-height: 16px;
  /* padding: 2px 8px 4px 8px;*/
}
/* line 303, ../../../themes/scss/include/_skeleton.scss */
#jqt ul li small.counter {
  background: #d9d9d9;
  color: #595959;
  /* text-shadow: #e6e6e6 0 1px 0; */
  z-index: 10;
  font-size: 16px;
  font-weight: bold;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  display: block;
  width: auto;
}
/* line 319, ../../../themes/scss/include/_skeleton.scss */
#jqt ul li ::-webkit-input-placeholder {
  color: #8293a1;
  text-shadow: #e8ebee 0 1px 0;
}
/* line 330, ../../../themes/scss/include/_skeleton.scss */
#jqt ul li input[type="text"],
#jqt ul li input[type="password"],
#jqt ul li input[type="tel"],
#jqt ul li input[type="number"],
#jqt ul li input[type="search"],
#jqt ul li input[type="email"],
#jqt ul li input[type="url"],
#jqt ul li textarea, #jqt ul li select {
  color: black;
  text-shadow: #e8ebee 0 1px 0;
  /*background: transparent url("data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==");*/
  border: 0;
  font: normal 17px "Helvetica Neue", Helvetica;
  /*padding: 0;*/
  display: inline-block;
  margin-left: 0px;
  /*width: 100%;*/
  -webkit-appearance: textarea;
}

#jqt ul li input[type="checkbox"], #jqt ul li input[type="radio"] {
  margin: 0;
  padding: 10px;
}
/* line 350, ../../../themes/scss/include/_skeleton.scss */
#jqt ul li input[type="checkbox"]:after, #jqt ul li input[type="radio"]:after {
  content: attr(title);
  position: absolute;
  display: block;
  width: 0;
  left: 21px;
  top: 12px;
  font-family: "Helvetica Neue", Helvetica;
  font-size: 17px;
  line-height: 21px;
  width: 246px;
  margin: 0 0 0 17px;
  color: black;
  text-shadow: #e8ebee 0 1px 0;
}
/* line 363, ../../../themes/scss/include/_skeleton.scss */
#jqt ul li input[type='submit'] {
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#eeeeee), to(#9c9ea0));
  border: 1px outset #aaaaaa;
  display: block;
  font-size: inherit;
  font-weight: inherit;
  padding: 10px;
}
/* line 376, ../../../themes/scss/include/_skeleton.scss */
#jqt ul li.arrow small, #jqt ul li.forward small {
  margin-right: 24px;
}
/* line 388, ../../../themes/scss/include/_skeleton.scss */
#jqt ul li.forward:after {
  content: "›";
  position: absolute;
  display: block;
  width: 24px;
  height: 24px;
  width: 24px;
  height: 24px;
  -webkit-border-radius: 12px;
  border-radius: 12px;
  top: 50%;
  right: 6px;
  margin-top: -12px;
  border: 2px solid white;
  -webkit-box-sizing: border-box;
  padding: 0;
  z-index: 10;
  line-height: 13px;
  color: white;
  text-indent: 5px;
  pointer-events: none;
  background-image: none;
  background-color: #3366cc;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #7094db), color-stop(50%, #4775d1), color-stop(51%, #3366cc), color-stop(100%, #2e5cb8));
  background-image: -webkit-linear-gradient(top, #7094db, #4775d1 50%, #3366cc 51%, #2e5cb8);
  background-image: linear-gradient(top, #7094db, #4775d1 50%, #3366cc 51%, #2e5cb8);
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  color: white;
  text-shadow: #2952a3 0 -1px 0;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
  font-size: 24px;
}
/* line 398, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.rounded, #jqt ul.individual li {
  -webkit-box-shadow: rgba(255, 255, 255, 0.15) 0 1px 0;
  box-shadow: rgba(255, 255, 255, 0.15) 0 1px 0;
  border: 1px solid #52657f;
}
/* line 406, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.rounded {
  -webkit-border-radius: 8px;
  border-radius: 8px;
}
/* line 409, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.rounded li:first-child, #jqt ul.rounded li:first-child a {
  border-top: 0;
  -webkit-border-top-left-radius: 8px;
  border-top-left-radius: 8px;
  -webkit-border-top-right-radius: 8px;
  border-top-right-radius: 8px;
}
/* line 413, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.rounded li:last-child, #jqt ul.rounded li:last-child a {
  -webkit-border-bottom-left-radius: 8px;
  border-bottom-left-radius: 8px;
  -webkit-border-bottom-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
/* line 419, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.form li {
  padding: 7px 10px;
}
/* line 422, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.form li.error {
  border: 2px solid red;
}
/* line 425, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.form li.error + #jqt ul.form li.error {
  border-top: 0;
}
/* line 435, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.metal li {
  background-image: none;
  border-top: 1px solid white;
  border-bottom: 1px solid #666666;
  font-size: 26px;
}
/* line 442, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.metal li > * {
  line-height: 26px;
  margin: 0;
  padding: 13px 0;
}
/* line 448, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.metal li em {
  display: block;
  font-size: 14px;
  font-style: normal;
  width: 50%;
  line-height: 14px;
}
/* line 456, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.metal li small {
  float: right;
  position: relative;
  margin-top: 10px;
  font-weight: bold;
}
/* line 470, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.edgetoedge li {
  font-size: 24px;
}
/* line 473, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.edgetoedge li:first-child {
  border-top: 0;
}
/* line 477, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.edgetoedge li.sep {
  font-size: 16px;
  padding: 2px 10px;
}
/* line 482, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.edgetoedge li em {
  font-weight: normal;
  font-style: normal;
}
/* line 491, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.plastic {
  font-size: 18px;
}
/* line 495, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.plastic li {
  border-width: 1px 0;
  border-style: solid;
  background-image: none;
  background-color: #d4d4d4;
  border-top-color: #d9d9d9;
  border-bottom-color: #cccccc;
}
/* line 503, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.plastic li:nth-child(odd) {
  background-image: none;
  background-color: #d9d9d9;
}
/* line 507, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.plastic li a.active.loading {
  background-image: url(../img/apple/loading.gif);
  background-position: 95% center;
  background-repeat: no-repeat;
}
/* line 512, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.plastic li small {
  color: #737373;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
}
/* line 522, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.individual {
  border: 0;
  background: none;
  clear: both;
  overflow: hidden;
}
/* line 528, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.individual li {
  font-size: 14px;
  text-align: center;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 48%;
  float: left;
  display: block;
  padding: 11px 10px 14px 10px;
}
/* line 538, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.individual li + li {
  float: right;
}
/* line 543, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.individual a {
  line-height: 16px;
  margin: -11px -10px -14px -10px;
  padding: 11px 10px 14px 10px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
}
/* line 552, ../../../themes/scss/include/_skeleton.scss */
#jqt div.toggle, #jqt span.toggle {
  width: 94px;
  position: relative;
  height: 27px;
  display: block;
  overflow: hidden;
  float: right;
}
/* line 560, ../../../themes/scss/include/_skeleton.scss */
#jqt div.toggle input[type="checkbox"], #jqt span.toggle input[type="checkbox"] {
  margin: 0;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  height: 27px;
  overflow: hidden;
  width: 149px;
  border: 0;
  -webkit-transition: left 0.15s ease-in-out;
  transition: left 0.15s ease-in-out;
  position: absolute;
  top: 0;
  left: -55px;
  -webkit-appearance: textarea;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* line 574, ../../../themes/scss/include/_skeleton.scss */
#jqt div.toggle input[type="checkbox"]:checked, #jqt span.toggle input[type="checkbox"]:checked {
  left: 0px;
}
/* line 580, ../../../themes/scss/include/_skeleton.scss */
#jqt input[type="checkbox"].toggle, #jqt li input[type="radio"].toggle {
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  display: inline-block;
  border-radius: 16px;
  background-color: #fff;
  padding: 1px;
  width: 52px;
  height: 32px;
  cursor: pointer;
  margin: 0px;
  vertical-align: middle;
  border: 0px solid transparent;
  box-shadow: inset 0px 0px 0px 1px #e6e6e6;
  transition: all 0.3s ease-out;
}
/* line 93, ../../../themes/scss/include/_widgets.scss */
#jqt input[type="checkbox"].toggle:before, #jqt li input[type="radio"].toggle:before {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 30.5px;
  top: 1px;
  box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.2), -1px 2px 5px rgba(0, 0, 0, 0.1);
  border: 0px solid transparent;
  cursor: pointer;
  background-color: #fff;
  transition: left 0.1s ease-in 0.1s, box-shadow 0.2s ease-in 0.2s;
}
/* line 107, ../../../themes/scss/include/_widgets.scss */
#jqt input[type="checkbox"].toggle:checked, #jqt li input[type="radio"].toggle:checked {
  box-shadow: inset 0px 0px 0px 20px #53d76a, -1px 2px 5px rgba(0, 0, 0, 0.1);
}
/* line 110, ../../../themes/scss/include/_widgets.scss */
#jqt input[type="checkbox"].toggle:checked:before, #jqt li input[type="radio"].toggle:checked:before {
  left: 22px;
}
/* line 584, ../../../themes/scss/include/_skeleton.scss */
#jqt li input[type="checkbox"].toggle {
  position: absolute;
  right: 10px;
  left: auto;
  margin-top: 6px;
  top: 0px;
}
/* line 592, ../../../themes/scss/include/_skeleton.scss */
#jqt .info {
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  color: #444;
  padding: 15px;
  font-weight: bold;
}

/* line 14, ../../../themes/scss/apple.scss */
#jqt > * {
  background-color: #cbd2d8;
  background-image: -webkit-gradient(linear, 0% 50%, 7 50%, color-stop(0%, rgba(197, 205, 212, 0)), color-stop(14.28571%, rgba(197, 205, 212, 0)), color-stop(14.28571%, #c5cdd4), color-stop(100%, #c5cdd4));
  background-image: -webkit-linear-gradient(left, rgba(197, 205, 212, 0), rgba(197, 205, 212, 0) 1px, #c5cdd4 1px, #c5cdd4 7px);
  background-image: linear-gradient(left, rgba(197, 205, 212, 0), rgba(197, 205, 212, 0) 1px, #c5cdd4 1px, #c5cdd4 7px);
  background-size: 7px;
}
/* line 24, ../../../themes/scss/apple.scss */
#jqt .toolbar {
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(255, 255, 255, 0.15)), color-stop(100%, rgba(255, 255, 255, 0))), -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #92a3b9), color-stop(50%, #7f93ad), color-stop(51%, #768ba7), color-stop(100%, #6d83a1));
  background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)), -webkit-linear-gradient(top, #92a3b9, #7f93ad 50%, #768ba7 51%, #6d83a1);
  background-image: linear-gradient(rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)), linear-gradient(top, #92a3b9, #7f93ad 50%, #768ba7 51%, #6d83a1);
  -webkit-box-shadow: rgba(255, 255, 255, 0.3) 0 1px 0 inset;
  box-shadow: rgba(255, 255, 255, 0.3) 0 1px 0 inset;
}
/* line 35, ../../../themes/scss/apple.scss */
#jqt ul li input[type="checkbox"], #jqt ul li input[type="radio"] {
  color: #324f85;
}
/* line 40, ../../../themes/scss/apple.scss */
#jqt ul .toggle input[type="checkbox"] {
  /*background: transparent url(../img/apple/on_off.png) 0 0 no-repeat;*/
}
/* line 44, ../../../themes/scss/apple.scss */
#jqt ul input[type='submit'] {
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#eeeeee), to(#9c9ea0));
  border: 1px outset #aaaaaa;
}
/* line 50, ../../../themes/scss/apple.scss */
#jqt ul.edgetoedge li.sep {
  background-image: none;
  color: black;
  border-bottom: 1px solid #b5c1c9;
  border-top: 1px solid #b5c1c9;
  min-height: 20px;
}
/* line 58, ../../../themes/scss/apple.scss */
#jqt ul.edgetoedge li, #jqt .metal li {
  -webkit-border-radius: 0;
  border-radius: 0;
}
/* line 62, ../../../themes/scss/apple.scss */
#jqt ul.edgetoedge li em {
  font-weight: normal;
  font-style: normal;
}
/* line 67, ../../../themes/scss/apple.scss */
#jqt ul.metal li {
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #9c9ea5;
  font-size: 26px;
  text-shadow: white 0 1px 0;
}
/* line 73, ../../../themes/scss/apple.scss */
#jqt ul.metal li a:hover {
  color: #000;
}
/* line 76, ../../../themes/scss/apple.scss */
#jqt ul.metal li em {
  color: #444;
}
/* line 81, ../../../themes/scss/apple.scss */
#jqt .info {
  background: #dce1eb;
  text-shadow: rgba(255, 255, 255, 0.8) 0 1px 0;
  color: #4c566c;
  border-top: 1px solid rgba(76, 86, 108, 0.3);
}
