.ember-cli-spinner {
    display: table;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9999999999999999;
}
.ember-cli-spinner .spinner {
    vertical-align: middle;
    display: table-cell;
}
.ember-cli-spinner .load-text {
  color: #000;
  font-weight: 200;
  text-align: center;
}

/***
* Circle Spinner
***/
.sk-circle {
    margin: 40px auto;
    width: 40px;
    height: 40px;
    position: relative;
}
.sk-circle .sk-child {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.sk-circle .sk-child:before {
    content: '';
    display: block;
    margin: 0 auto;
    width: 15%;
    height: 15%;
    border-radius: 100%;
    -webkit-animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
    animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
}
.sk-circle .sk-child.white:before {
  background-color: #fff;
}
.sk-circle .sk-child.black:before {
  background-color: #000;
}
.sk-circle .sk-child.light-green:before {
  background-color: #99b433;
}
.sk-circle .sk-child.green:before {
  background-color: #00a300;
}
.sk-circle .sk-child.dark-green:before {
  background-color: #1e7145;
}
.sk-circle .sk-child.magenta:before {
  background-color: #ff0097;
}
.sk-circle .sk-child.purple:before {
  background-color: #7e3878;
}
.sk-circle .sk-child.dark-purple:before {
  background-color: #603cba;
}
.sk-circle .sk-child.darken:before {
  background-color: #1d1d1d;
}
.sk-circle .sk-child.light-blue:before {
  background-color: #eff4ff;
}
.sk-circle .sk-child.blue:before {
  background-color: #2d89ef;
}
.sk-circle .sk-child.dark-blue:before {
  background-color: #2b5797;
}
.sk-circle .sk-child.yellow:before {
  background-color: #ffc40d;
}
.sk-circle .sk-child.orange:before {
  background-color: #e3a21a;
}
.sk-circle .sk-child.dark-orange:before {
  background-color: #da532c;
}
.sk-circle .sk-child.red:before {
  background-color: #ee1111;
}
.sk-circle .sk-child.dark-red:before {
  background-color: #b91d47;
}
.sk-circle .sk-circle2 {
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
}
.sk-circle .sk-circle3 {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
}
.sk-circle .sk-circle4 {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.sk-circle .sk-circle5 {
    -webkit-transform: rotate(120deg);
    -ms-transform: rotate(120deg);
    transform: rotate(120deg);
}
.sk-circle .sk-circle6 {
    -webkit-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    transform: rotate(150deg);
}
.sk-circle .sk-circle7 {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.sk-circle .sk-circle8 {
    -webkit-transform: rotate(210deg);
    -ms-transform: rotate(210deg);
    transform: rotate(210deg);
}
.sk-circle .sk-circle9 {
    -webkit-transform: rotate(240deg);
    -ms-transform: rotate(240deg);
    transform: rotate(240deg);
}
.sk-circle .sk-circle10 {
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}
.sk-circle .sk-circle11 {
    -webkit-transform: rotate(300deg);
    -ms-transform: rotate(300deg);
    transform: rotate(300deg);
}
.sk-circle .sk-circle12 {
    -webkit-transform: rotate(330deg);
    -ms-transform: rotate(330deg);
    transform: rotate(330deg);
}
.sk-circle .sk-circle2:before {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}
.sk-circle .sk-circle3:before {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}
.sk-circle .sk-circle4:before {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}
.sk-circle .sk-circle5:before {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}
.sk-circle .sk-circle6:before {
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s;
}
.sk-circle .sk-circle7:before {
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s;
}
.sk-circle .sk-circle8:before {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}
.sk-circle .sk-circle9:before {
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
}
.sk-circle .sk-circle10:before {
    -webkit-animation-delay: -0.3s;
    animation-delay: -0.3s;
}
.sk-circle .sk-circle11:before {
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s;
}
.sk-circle .sk-circle12:before {
    -webkit-animation-delay: -0.1s;
    animation-delay: -0.1s;
}
@-webkit-keyframes sk-circleBounceDelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes sk-circleBounceDelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/***
* Pulse Spinner
***/

.sk-spinner-pulse {
    width: 40px;
    height: 40px;
    margin: 40px auto;
    background-color: #fff;
    border-radius: 100%;
    -webkit-animation: sk-pulseScaleOut 1s infinite ease-in-out;
    animation: sk-pulseScaleOut 1s infinite ease-in-out;
}
.sk-spinner-pulse.white {
  background-color: #fff;
}
.sk-spinner-pulse.black {
  background-color: #000;
}
.sk-spinner-pulse.light-green {
  background-color: #99b433;
}
.sk-spinner-pulse.green {
  background-color: #00a300;
}
.sk-spinner-pulse.dark-green {
  background-color: #1e7145;
}
.sk-spinner-pulse.magenta {
  background-color: #ff0097;
}
.sk-spinner-pulse.purple {
  background-color: #7e3878;
}
.sk-spinner-pulse.dark-purple {
  background-color: #603cba;
}
.sk-spinner-pulse.darken {
  background-color: #1d1d1d;
}
.sk-spinner-pulse.light-blue {
  background-color: #eff4ff;
}
.sk-spinner-pulse.blue {
  background-color: #2d89ef;
}
.sk-spinner-pulse.dark-blue {
  background-color: #2b5797;
}
.sk-spinner-pulse.yellow {
  background-color: #ffc40d;
}
.sk-spinner-pulse.orange {
  background-color: #e3a21a;
}
.sk-spinner-pulse.dark-orange {
  background-color: #da532c;
}
.sk-spinner-pulse.red {
  background-color: #ee1111;
}
.sk-spinner-pulse.dark-red {
  background-color: #b91d47;
}
@-webkit-keyframes sk-pulseScaleOut {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}
@keyframes sk-pulseScaleOut {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

/***
* Fading Circle Spinner
***/

.sk-fading-circle {
    margin: 40px auto;
    width: 40px;
    height: 40px;
    position: relative;
}
.sk-fading-circle .sk-child {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.sk-fading-circle .sk-child:before {
    content: '';
    display: block;
    margin: 0 auto;
    width: 15%;
    height: 15%;
    background-color: #fff;
    border-radius: 100%;
    -webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
    animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
}
.sk-fading-circle .sk-child.white:before {
  background-color: #fff;
}
.sk-fading-circle .sk-child.black:before {
  background-color: #000;
}
.sk-fading-circle .sk-child.light-green:before {
  background-color: #99b433;
}
.sk-fading-circle .sk-child.green:before {
  background-color: #00a300;
}
.sk-fading-circle .sk-child.dark-green:before {
  background-color: #1e7145;
}
.sk-fading-circle .sk-child.magenta:before {
  background-color: #ff0097;
}
.sk-fading-circle .sk-child.purple:before {
  background-color: #7e3878;
}
.sk-fading-circle .sk-child.dark-purple:before {
  background-color: #603cba;
}
.sk-fading-circle .sk-child.darken:before {
  background-color: #1d1d1d;
}
.sk-fading-circle .sk-child.light-blue:before {
  background-color: #eff4ff;
}
.sk-fading-circle .sk-child.blue:before {
  background-color: #2d89ef;
}
.sk-fading-circle .sk-child.dark-blue:before {
  background-color: #2b5797;
}
.sk-fading-circle .sk-child.yellow:before {
  background-color: #ffc40d;
}
.sk-fading-circle .sk-child.orange:before {
  background-color: #e3a21a;
}
.sk-fading-circle .sk-child.dark-orange:before {
  background-color: #da532c;
}
.sk-fading-circle .sk-child.red:before {
  background-color: #ee1111;
}
.sk-fading-circle .sk-child.dark-red:before {
  background-color: #b91d47;
}
.sk-fading-circle .sk-fading-circle2 {
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
}
.sk-fading-circle .sk-fading-circle3 {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
}
.sk-fading-circle .sk-fading-circle4 {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.sk-fading-circle .sk-fading-circle5 {
    -webkit-transform: rotate(120deg);
    -ms-transform: rotate(120deg);
    transform: rotate(120deg);
}
.sk-fading-circle .sk-fading-circle6 {
    -webkit-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    transform: rotate(150deg);
}
.sk-fading-circle .sk-fading-circle7 {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.sk-fading-circle .sk-fading-circle8 {
    -webkit-transform: rotate(210deg);
    -ms-transform: rotate(210deg);
    transform: rotate(210deg);
}
.sk-fading-circle .sk-fading-circle9 {
    -webkit-transform: rotate(240deg);
    -ms-transform: rotate(240deg);
    transform: rotate(240deg);
}
.sk-fading-circle .sk-fading-circle10 {
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}
.sk-fading-circle .sk-fading-circle11 {
    -webkit-transform: rotate(300deg);
    -ms-transform: rotate(300deg);
    transform: rotate(300deg);
}
.sk-fading-circle .sk-fading-circle12 {
    -webkit-transform: rotate(330deg);
    -ms-transform: rotate(330deg);
    transform: rotate(330deg);
}
.sk-fading-circle .sk-fading-circle2:before {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}
.sk-fading-circle .sk-fading-circle3:before {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}
.sk-fading-circle .sk-fading-circle4:before {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}
.sk-fading-circle .sk-fading-circle5:before {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}
.sk-fading-circle .sk-fading-circle6:before {
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s;
}
.sk-fading-circle .sk-fading-circle7:before {
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s;
}
.sk-fading-circle .sk-fading-circle8:before {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}
.sk-fading-circle .sk-fading-circle9:before {
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
}
.sk-fading-circle .sk-fading-circle10:before {
    -webkit-animation-delay: -0.3s;
    animation-delay: -0.3s;
}
.sk-fading-circle .sk-fading-circle11:before {
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s;
}
.sk-fading-circle .sk-fading-circle12:before {
    -webkit-animation-delay: -0.1s;
    animation-delay: -0.1s;
}
@-webkit-keyframes sk-circleFadeDelay {
    0%, 39%, 100% {
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
}
@keyframes sk-circleFadeDelay {
    0%, 39%, 100% {
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
}

/***
* Wave Spinner
***/

.sk-wave {
    margin: 40px auto;
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 10px;
}
.sk-wave .sk-child {
    background-color: #fff;
    height: 100%;
    width: 6px;
    display: inline-block;
    -webkit-animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
    animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
}
.sk-wave .sk-child.white {
  background-color: #fff;
}
.sk-wave .sk-child.black {
  background-color: #000;
}
.sk-wave .sk-child.light-green {
  background-color: #99b433;
}
.sk-wave .sk-child.green {
  background-color: #00a300;
}
.sk-wave .sk-child.dark-green {
  background-color: #1e7145;
}
.sk-wave .sk-child.magenta {
  background-color: #ff0097;
}
.sk-wave .sk-child.purple {
  background-color: #7e3878;
}
.sk-wave .sk-child.dark-purple {
  background-color: #603cba;
}
.sk-wave .sk-child.darken {
  background-color: #1d1d1d;
}
.sk-wave .sk-child.light-blue {
  background-color: #eff4ff;
}
.sk-wave .sk-child.blue {
  background-color: #2d89ef;
}
.sk-wave .sk-child.dark-blue {
  background-color: #2b5797;
}
.sk-wave .sk-child.yellow {
  background-color: #ffc40d;
}
.sk-wave .sk-child.orange {
  background-color: #e3a21a;
}
.sk-wave .sk-child.dark-orange {
  background-color: #da532c;
}
.sk-wave .sk-child.red {
  background-color: #ee1111;
}
.sk-wave .sk-child.dark-red {
  background-color: #b91d47;
}
.sk-wave .sk-wave1 {
    -webkit-animation-delay: -1.2s;
    animation-delay: -1.2s;
}
.sk-wave .sk-wave2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}
.sk-wave .sk-wave3 {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}
.sk-wave .sk-wave4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}
.sk-wave .sk-wave5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}
@-webkit-keyframes sk-waveStretchDelay {
    0%, 40%, 100% {
        -webkit-transform: scaleY(0.4);
        transform: scaleY(0.4);
    }
    20% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}
@keyframes sk-waveStretchDelay {
    0%, 40%, 100% {
        -webkit-transform: scaleY(0.4);
        transform: scaleY(0.4);
    }
    20% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}

/***
* Rotating Plane Spinner
***/

.sk-rotating-plane {
    width: 40px;
    height: 40px;
    background-color: #fff;
    margin: 40px auto;
    -webkit-animation: sk-rotatePlane 1.2s infinite ease-in-out;
    animation: sk-rotatePlane 1.2s infinite ease-in-out;
}
.sk-rotating-plane.white {
  background-color: #fff;
}
.sk-rotating-plane.black {
  background-color: #000;
}
.sk-rotating-plane.light-green {
  background-color: #99b433;
}
.sk-rotating-plane.green {
  background-color: #00a300;
}
.sk-rotating-plane.dark-green {
  background-color: #1e7145;
}
.sk-rotating-plane.magenta {
  background-color: #ff0097;
}
.sk-rotating-plane.purple {
  background-color: #7e3878;
}
.sk-rotating-plane.dark-purple {
  background-color: #603cba;
}
.sk-rotating-plane.darken {
  background-color: #1d1d1d;
}
.sk-rotating-plane.light-blue {
  background-color: #eff4ff;
}
.sk-rotating-plane.blue {
  background-color: #2d89ef;
}
.sk-rotating-plane.dark-blue {
  background-color: #2b5797;
}
.sk-rotating-plane.yellow {
  background-color: #ffc40d;
}
.sk-rotating-plane.orange {
  background-color: #e3a21a;
}
.sk-rotating-plane.dark-orange {
  background-color: #da532c;
}
.sk-rotating-plane.red {
  background-color: #ee1111;
}
.sk-rotating-plane.dark-red {
  background-color: #b91d47;
}
@-webkit-keyframes sk-rotatePlane {
    0% {
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    }
    50% {
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    }
    100% {
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}
@keyframes sk-rotatePlane {
    0% {
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    }
    50% {
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    }
    100% {
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

/***
* Folding Cube Spinner
***/

.sk-folding-cube {
    margin: 40px auto;
    width: 40px;
    height: 40px;
    position: relative;
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
}
.sk-folding-cube .sk-child {
    float: left;
    width: 50%;
    height: 50%;
    position: relative;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.sk-folding-cube .sk-child:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
    animation: sk-foldCubeAngle 2.4s infinite linear both;
    -webkit-transform-origin: 100% 100%;
    -ms-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
}
.sk-folding-cube .sk-child.white:before {
  background-color: #fff;
}
.sk-folding-cube .sk-child.black:before {
  background-color: #000;
}
.sk-folding-cube .sk-child.light-green:before {
  background-color: #99b433;
}
.sk-folding-cube .sk-child.green:before {
  background-color: #00a300;
}
.sk-folding-cube .sk-child.dark-green:before {
  background-color: #1e7145;
}
.sk-folding-cube .sk-child.magenta:before {
  background-color: #ff0097;
}
.sk-folding-cube .sk-child.purple:before {
  background-color: #7e3878;
}
.sk-folding-cube .sk-child.dark-purple:before {
  background-color: #603cba;
}
.sk-folding-cube .sk-child.darken:before {
  background-color: #1d1d1d;
}
.sk-folding-cube .sk-child.light-blue:before {
  background-color: #eff4ff;
}
.sk-folding-cube .sk-child.blue:before {
  background-color: #2d89ef;
}
.sk-folding-cube .sk-child.dark-blue:before {
  background-color: #2b5797;
}
.sk-folding-cube .sk-child.yellow:before {
  background-color: #ffc40d;
}
.sk-folding-cube .sk-child.orange:before {
  background-color: #e3a21a;
}
.sk-folding-cube .sk-child.dark-orange:before {
  background-color: #da532c;
}
.sk-folding-cube .sk-child.red:before {
  background-color: #ee1111;
}
.sk-folding-cube .sk-child.dark-red:before {
  background-color: #b91d47;
}
.sk-folding-cube .sk-folding-cube2 {
    -webkit-transform: scale(1.1) rotateZ(90deg);
    transform: scale(1.1) rotateZ(90deg);
}
.sk-folding-cube .sk-folding-cube3 {
    -webkit-transform: scale(1.1) rotateZ(180deg);
    transform: scale(1.1) rotateZ(180deg);
}
.sk-folding-cube .sk-folding-cube4 {
    -webkit-transform: scale(1.1) rotateZ(270deg);
    transform: scale(1.1) rotateZ(270deg);
}
.sk-folding-cube .sk-folding-cube2:before {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}
.sk-folding-cube .sk-folding-cube3:before {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}
.sk-folding-cube .sk-folding-cube4:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
}
@-webkit-keyframes sk-foldCubeAngle {
    0%, 10% {
        -webkit-transform: perspective(140px) rotateX(-180deg);
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    }
    25%,
    75% {
        -webkit-transform: perspective(140px) rotateX(0deg);
        transform: perspective(140px) rotateX(0deg);
        opacity: 1;
    }
    90%,
    100% {
        -webkit-transform: perspective(140px) rotateY(180deg);
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}
@keyframes sk-foldCubeAngle {
    0%, 10% {
        -webkit-transform: perspective(140px) rotateX(-180deg);
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    }
    25%,
    75% {
        -webkit-transform: perspective(140px) rotateX(0deg);
        transform: perspective(140px) rotateX(0deg);
        opacity: 1;
    }
    90%,
    100% {
        -webkit-transform: perspective(140px) rotateY(180deg);
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}

/***
* Double Bounce Spinner
***/

.sk-double-bounce {
    width: 40px;
    height: 40px;
    position: relative;
    margin: 40px auto;
}
.sk-double-bounce .sk-child {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-doubleBounce 2s infinite ease-in-out;
    animation: sk-doubleBounce 2s infinite ease-in-out;
}
.sk-double-bounce .sk-child.white{
  background-color: #fff;
}
.sk-double-bounce .sk-child.black{
  background-color: #000;
}
.sk-double-bounce .sk-child.light-green{
  background-color: #99b433;
}
.sk-double-bounce .sk-child.green{
  background-color: #00a300;
}
.sk-double-bounce .sk-child.dark-green{
  background-color: #1e7145;
}
.sk-double-bounce .sk-child.magenta{
  background-color: #ff0097;
}
.sk-double-bounce .sk-child.purple{
  background-color: #7e3878;
}
.sk-double-bounce .sk-child.dark-purple{
  background-color: #603cba;
}
.sk-double-bounce .sk-child.darken{
  background-color: #1d1d1d;
}
.sk-double-bounce .sk-child.light-blue{
  background-color: #eff4ff;
}
.sk-double-bounce .sk-child.blue{
  background-color: #2d89ef;
}
.sk-double-bounce .sk-child.dark-blue{
  background-color: #2b5797;
}
.sk-double-bounce .sk-child.yellow{
  background-color: #ffc40d;
}
.sk-double-bounce .sk-child.orange{
  background-color: #e3a21a;
}
.sk-double-bounce .sk-child.dark-orange{
  background-color: #da532c;
}
.sk-double-bounce .sk-child.red{
  background-color: #ee1111;
}
.sk-double-bounce .sk-child.dark-red{
  background-color: #b91d47;
}
.sk-double-bounce .sk-double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}
@-webkit-keyframes sk-doubleBounce {
    0%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes sk-doubleBounce {
    0%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/***
* Wandering Cubes Spinner
***/

.sk-wandering-cubes {
    margin: 40px auto;
    width: 40px;
    height: 40px;
    position: relative;
}
.sk-wandering-cubes .sk-child {
    background-color: #fff;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-wanderingCube 1.8s ease-in-out -1.8s infinite both;
    animation: sk-wanderingCube 1.8s ease-in-out -1.8s infinite both;
}
.sk-wandering-cubes .sk-wandering-cubes2 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}
.sk-wandering-cubes .sk-child.white{
  background-color: #fff;
}
.sk-wandering-cubes .sk-child.black{
  background-color: #000;
}
.sk-wandering-cubes .sk-child.light-green{
  background-color: #99b433;
}
.sk-wandering-cubes .sk-child.green{
  background-color: #00a300;
}
.sk-wandering-cubes .sk-child.dark-green{
  background-color: #1e7145;
}
.sk-wandering-cubes .sk-child.magenta{
  background-color: #ff0097;
}
.sk-wandering-cubes .sk-child.purple{
  background-color: #7e3878;
}
.sk-wandering-cubes .sk-child.dark-purple{
  background-color: #603cba;
}
.sk-wandering-cubes .sk-child.darken{
  background-color: #1d1d1d;
}
.sk-wandering-cubes .sk-child.light-blue{
  background-color: #eff4ff;
}
.sk-wandering-cubes .sk-child.blue{
  background-color: #2d89ef;
}
.sk-wandering-cubes .sk-child.dark-blue{
  background-color: #2b5797;
}
.sk-wandering-cubes .sk-child.yellow{
  background-color: #ffc40d;
}
.sk-wandering-cubes .sk-child.orange{
  background-color: #e3a21a;
}
.sk-wandering-cubes .sk-child.dark-orange{
  background-color: #da532c;
}
.sk-wandering-cubes .sk-child.red{
  background-color: #ee1111;
}
.sk-wandering-cubes .sk-child.dark-red{
  background-color: #b91d47;
}
@-webkit-keyframes sk-wanderingCube {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    25% {
        -webkit-transform: translateX(30px) rotate(-90deg) scale(0.5);
        transform: translateX(30px) rotate(-90deg) scale(0.5);
    }
    50% {
        /* Hack to make FF rotate in the right direction */

        -webkit-transform: translateX(30px) translateY(30px) rotate(-179deg);
        transform: translateX(30px) translateY(30px) rotate(-179deg);
    }
    50.1% {
        -webkit-transform: translateX(30px) translateY(30px) rotate(-180deg);
        transform: translateX(30px) translateY(30px) rotate(-180deg);
    }
    75% {
        -webkit-transform: translateX(0) translateY(30px) rotate(-270deg) scale(0.5);
        transform: translateX(0) translateY(30px) rotate(-270deg) scale(0.5);
    }
    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}
@keyframes sk-wanderingCube {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    25% {
        -webkit-transform: translateX(30px) rotate(-90deg) scale(0.5);
        transform: translateX(30px) rotate(-90deg) scale(0.5);
    }
    50% {
        /* Hack to make FF rotate in the right direction */

        -webkit-transform: translateX(30px) translateY(30px) rotate(-179deg);
        transform: translateX(30px) translateY(30px) rotate(-179deg);
    }
    50.1% {
        -webkit-transform: translateX(30px) translateY(30px) rotate(-180deg);
        transform: translateX(30px) translateY(30px) rotate(-180deg);
    }
    75% {
        -webkit-transform: translateX(0) translateY(30px) rotate(-270deg) scale(0.5);
        transform: translateX(0) translateY(30px) rotate(-270deg) scale(0.5);
    }
    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

/***
* Chasing Dots Spinner
***/

.sk-chasing-dots {
    margin: 40px auto;
    width: 40px;
    height: 40px;
    position: relative;
    text-align: center;
    -webkit-animation: sk-chasingDotsRotate 2s infinite linear;
    animation: sk-chasingDotsRotate 2s infinite linear;
}
.sk-chasing-dots .sk-child {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    background-color: #fff;
    border-radius: 100%;
    -webkit-animation: sk-chasingDotsBounce 2s infinite ease-in-out;
    animation: sk-chasingDotsBounce 2s infinite ease-in-out;
}
.sk-chasing-dots .sk-child.white{
  background-color: #fff;
}
.sk-chasing-dots .sk-child.black{
  background-color: #000;
}
.sk-chasing-dots .sk-child.light-green{
  background-color: #99b433;
}
.sk-chasing-dots .sk-child.green{
  background-color: #00a300;
}
.sk-chasing-dots .sk-child.dark-green{
  background-color: #1e7145;
}
.sk-chasing-dots .sk-child.magenta{
  background-color: #ff0097;
}
.sk-chasing-dots .sk-child.purple{
  background-color: #7e3878;
}
.sk-chasing-dots .sk-child.dark-purple{
  background-color: #603cba;
}
.sk-chasing-dots .sk-child.darken{
  background-color: #1d1d1d;
}
.sk-chasing-dots .sk-child.light-blue{
  background-color: #eff4ff;
}
.sk-chasing-dots .sk-child.blue{
  background-color: #2d89ef;
}
.sk-chasing-dots .sk-child.dark-blue{
  background-color: #2b5797;
}
.sk-chasing-dots .sk-child.yellow{
  background-color: #ffc40d;
}
.sk-chasing-dots .sk-child.orange{
  background-color: #e3a21a;
}
.sk-chasing-dots .sk-child.dark-orange{
  background-color: #da532c;
}
.sk-chasing-dots .sk-child.red{
  background-color: #ee1111;
}
.sk-chasing-dots .sk-child.dark-red{
  background-color: #b91d47;
}
.sk-chasing-dots .sk-chasing-dots2 {
    top: auto;
    bottom: 0;
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}
@-webkit-keyframes sk-chasingDotsRotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes sk-chasingDotsRotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-webkit-keyframes sk-chasingDotsBounce {
    0%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes sk-chasingDotsBounce {
    0%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/***
* Three Bounce Spinner
***/

.sk-three-bounce {
    margin: 40px auto;
    width: 80px;
    text-align: center;
}
.sk-three-bounce .sk-child {
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
    animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
}
.sk-three-bounce .sk-child.white{
  background-color: #fff;
}
.sk-three-bounce .sk-child.black{
  background-color: #000;
}
.sk-three-bounce .sk-child.light-green{
  background-color: #99b433;
}
.sk-three-bounce .sk-child.green{
  background-color: #00a300;
}
.sk-three-bounce .sk-child.dark-green{
  background-color: #1e7145;
}
.sk-three-bounce .sk-child.magenta{
  background-color: #ff0097;
}
.sk-three-bounce .sk-child.purple{
  background-color: #7e3878;
}
.sk-three-bounce .sk-child.dark-purple{
  background-color: #603cba;
}
.sk-three-bounce .sk-child.darken{
  background-color: #1d1d1d;
}
.sk-three-bounce .sk-child.light-blue{
  background-color: #eff4ff;
}
.sk-three-bounce .sk-child.blue{
  background-color: #2d89ef;
}
.sk-three-bounce .sk-child.dark-blue{
  background-color: #2b5797;
}
.sk-three-bounce .sk-child.yellow{
  background-color: #ffc40d;
}
.sk-three-bounce .sk-child.orange{
  background-color: #e3a21a;
}
.sk-three-bounce .sk-child.dark-orange{
  background-color: #da532c;
}
.sk-three-bounce .sk-child.red{
  background-color: #ee1111;
}
.sk-three-bounce .sk-child.dark-red{
  background-color: #b91d47;
}
.sk-three-bounce .sk-three-bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}
.sk-three-bounce .sk-three-bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}
@-webkit-keyframes sk-three-bounce {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes sk-three-bounce {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/***
* Three Bounce Horizontal Spinner
***/

.sk-three-bounce-horizontal {
    margin: 40px auto;
    width: 80px !important;
    text-align: center;
}
.sk-three-bounce-horizontal .sk-child {
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
    animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
}
.sk-three-bounce-horizontal .sk-child.white{
  background-color: #fff;
}
.sk-three-bounce-horizontal .sk-child.black{
  background-color: #000;
}
.sk-three-bounce-horizontal .sk-child.light-green{
  background-color: #99b433;
}
.sk-three-bounce-horizontal .sk-child.green{
  background-color: #00a300;
}
.sk-three-bounce-horizontal .sk-child.dark-green{
  background-color: #1e7145;
}
.sk-three-bounce-horizontal .sk-child.magenta{
  background-color: #ff0097;
}
.sk-three-bounce-horizontal .sk-child.purple{
  background-color: #7e3878;
}
.sk-three-bounce-horizontal .sk-child.dark-purple{
  background-color: #603cba;
}
.sk-three-bounce-horizontal .sk-child.darken{
  background-color: #1d1d1d;
}
.sk-three-bounce-horizontal .sk-child.light-blue{
  background-color: #eff4ff;
}
.sk-three-bounce-horizontal .sk-child.blue{
  background-color: #2d89ef;
}
.sk-three-bounce-horizontal .sk-child.dark-blue{
  background-color: #2b5797;
}
.sk-three-bounce-horizontal .sk-child.yellow{
  background-color: #ffc40d;
}
.sk-three-bounce-horizontal .sk-child.orange{
  background-color: #e3a21a;
}
.sk-three-bounce-horizontal .sk-child.dark-orange{
  background-color: #da532c;
}
.sk-three-bounce-horizontal .sk-child.red{
  background-color: #ee1111;
}
.sk-three-bounce-horizontal .sk-child.dark-red{
  background-color: #b91d47;
}
.sk-three-bounce-horizontal .sk-three-bounce-horizontal1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}
.sk-three-bounce-horizontal .sk-three-bounce-horizontal2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}
@-webkit-keyframes sk-three-bounce-horizontal {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes sk-three-bounce-horizontal {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/***
* Cube Grid Spinner
***/

.sk-cube-grid {
    width: 40px;
    height: 40px;
    margin: 40px auto;
}
.sk-cube-grid .sk-child {
    width: 33.33%;
    height: 33.33%;
    background-color: #fff;
    float: left;
    -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
    animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
}
.sk-cube-grid .sk-child.white{
  background-color: #fff;
}
.sk-cube-grid .sk-child.black{
  background-color: #000;
}
.sk-cube-grid .sk-child.light-green{
  background-color: #99b433;
}
.sk-cube-grid .sk-child.green{
  background-color: #00a300;
}
.sk-cube-grid .sk-child.dark-green{
  background-color: #1e7145;
}
.sk-cube-grid .sk-child.magenta{
  background-color: #ff0097;
}
.sk-cube-grid .sk-child.purple{
  background-color: #7e3878;
}
.sk-cube-grid .sk-child.dark-purple{
  background-color: #603cba;
}
.sk-cube-grid .sk-child.darken{
  background-color: #1d1d1d;
}
.sk-cube-grid .sk-child.light-blue{
  background-color: #eff4ff;
}
.sk-cube-grid .sk-child.blue{
  background-color: #2d89ef;
}
.sk-cube-grid .sk-child.dark-blue{
  background-color: #2b5797;
}
.sk-cube-grid .sk-child.yellow{
  background-color: #ffc40d;
}
.sk-cube-grid .sk-child.orange{
  background-color: #e3a21a;
}
.sk-cube-grid .sk-child.dark-orange{
  background-color: #da532c;
}
.sk-cube-grid .sk-child.red{
  background-color: #ee1111;
}
.sk-cube-grid .sk-child.dark-red{
  background-color: #b91d47;
}
.sk-cube-grid .sk-cube-grid1 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}
.sk-cube-grid .sk-cube-grid2 {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}
.sk-cube-grid .sk-cube-grid3 {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}
.sk-cube-grid .sk-cube-grid4 {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}
.sk-cube-grid .sk-cube-grid5 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}
.sk-cube-grid .sk-cube-grid6 {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}
.sk-cube-grid .sk-cube-grid7 {
    -webkit-animation-delay: 0.0s;
    animation-delay: 0.0s;
}
.sk-cube-grid .sk-cube-grid8 {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}
.sk-cube-grid .sk-cube-grid9 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}
@-webkit-keyframes sk-cubeGridScaleDelay {
    0%, 70%, 100% {
        -webkit-transform: scale3D(1, 1, 1);
        transform: scale3D(1, 1, 1);
    }
    35% {
        -webkit-transform: scale3D(0, 0, 1);
        transform: scale3D(0, 0, 1);
    }
}
@keyframes sk-cubeGridScaleDelay {
    0%, 70%, 100% {
        -webkit-transform: scale3D(1, 1, 1);
        transform: scale3D(1, 1, 1);
    }
    35% {
        -webkit-transform: scale3D(0, 0, 1);
        transform: scale3D(0, 0, 1);
    }
}

@charset "UTF-8";

/*!
 * Pikaday
 * Copyright © 2014 David Bushell | BSD & MIT license | https://dbushell.com/
 */

.pika-single {
    z-index: 9999;
    display: block;
    position: relative;
    color: #333;
    background: #fff;
    border: 1px solid #ccc;
    border-bottom-color: #bbb;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/*
clear child float (pika-lendar), using the famous micro clearfix hack
http://nicolasgallagher.com/micro-clearfix-hack/
*/
.pika-single:before,
.pika-single:after {
    content: " ";
    display: table;
}
.pika-single:after { clear: both }

.pika-single.is-hidden {
    display: none;
}

.pika-single.is-bound {
    position: absolute;
    box-shadow: 0 5px 15px -5px rgba(0,0,0,.5);
}

.pika-lendar {
    float: left;
    width: 240px;
    margin: 8px;
}

.pika-title {
    position: relative;
    text-align: center;
}

.pika-label {
    display: inline-block;
    position: relative;
    z-index: 9999;
    overflow: hidden;
    margin: 0;
    padding: 5px 3px;
    font-size: 14px;
    line-height: 20px;
    font-weight: bold;
    background-color: #fff;
}
.pika-title select {
    cursor: pointer;
    position: absolute;
    z-index: 9998;
    margin: 0;
    left: 0;
    top: 5px;
    opacity: 0;
}

.pika-prev,
.pika-next {
    display: block;
    cursor: pointer;
    position: relative;
    outline: none;
    border: 0;
    padding: 0;
    width: 20px;
    height: 30px;
    /* hide text using text-indent trick, using width value (it's enough) */
    text-indent: 20px;
    white-space: nowrap;
    overflow: hidden;
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 75% 75%;
    opacity: .5;
}

.pika-prev:hover,
.pika-next:hover {
    opacity: 1;
}

.pika-prev,
.is-rtl .pika-next {
    float: left;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==');
}

.pika-next,
.is-rtl .pika-prev {
    float: right;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=');
}

.pika-prev.is-disabled,
.pika-next.is-disabled {
    cursor: default;
    opacity: .2;
}

.pika-select {
    display: inline-block;
}

.pika-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: 0;
}

.pika-table th,
.pika-table td {
    width: 14.285714285714286%;
    padding: 0;
}

.pika-table th {
    color: #999;
    font-size: 12px;
    line-height: 25px;
    font-weight: bold;
    text-align: center;
}

.pika-button {
    cursor: pointer;
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    outline: none;
    border: 0;
    margin: 0;
    width: 100%;
    padding: 5px;
    color: #666;
    font-size: 12px;
    line-height: 15px;
    text-align: right;
    background: #f5f5f5;
    height: initial;
}

.pika-week {
    font-size: 11px;
    color: #999;
}

.is-today .pika-button {
    color: #33aaff;
    font-weight: bold;
}

.is-selected .pika-button,
.has-event .pika-button {
    color: #fff;
    font-weight: bold;
    background: #33aaff;
    box-shadow: inset 0 1px 3px #178fe5;
    border-radius: 3px;
}

.has-event .pika-button {
    background: #005da9;
    box-shadow: inset 0 1px 3px #0076c9;
}

.is-disabled .pika-button,
.is-inrange .pika-button {
    background: #D5E9F7;
}

.is-startrange .pika-button {
    color: #fff;
    background: #6CB31D;
    box-shadow: none;
    border-radius: 3px;
}

.is-endrange .pika-button {
    color: #fff;
    background: #33aaff;
    box-shadow: none;
    border-radius: 3px;
}

.is-disabled .pika-button {
    pointer-events: none;
    cursor: default;
    color: #999;
    opacity: .3;
}

.is-outside-current-month .pika-button {
    color: #999;
    opacity: .3;
}

.is-selection-disabled {
    pointer-events: none;
    cursor: default;
}

.pika-button:hover,
.pika-row.pick-whole-week:hover .pika-button {
    color: #fff;
    background: #ff8000;
    box-shadow: none;
    border-radius: 3px;
}

/* styling for abbr */
.pika-table abbr {
    border-bottom: none;
    cursor: help;
}

/*! =======================================================
                      VERSION  6.0.17              
========================================================= */
/*! =========================================================
 * bootstrap-slider.js
 *
 * Maintainers:
 *		Kyle Kemp
 *			- Twitter: @seiyria
 *			- Github:  seiyria
 *		Rohit Kalkur
 *			- Twitter: @Rovolutionary
 *			- Github:  rovolution
 *
 * =========================================================
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ========================================================= */
.slider {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.slider.slider-horizontal {
  width: 210px;
  height: 20px;
}
.slider.slider-horizontal .slider-track {
  height: 10px;
  width: 100%;
  margin-top: -5px;
  top: 50%;
  left: 0;
}
.slider.slider-horizontal .slider-selection,
.slider.slider-horizontal .slider-track-low,
.slider.slider-horizontal .slider-track-high {
  height: 100%;
  top: 0;
  bottom: 0;
}
.slider.slider-horizontal .slider-tick,
.slider.slider-horizontal .slider-handle {
  margin-left: -10px;
  margin-top: -5px;
}
.slider.slider-horizontal .slider-tick.triangle,
.slider.slider-horizontal .slider-handle.triangle {
  border-width: 0 10px 10px 10px;
  width: 0;
  height: 0;
  border-bottom-color: #0480be;
  margin-top: 0;
}
.slider.slider-horizontal .slider-tick-label-container {
  white-space: nowrap;
  margin-top: 20px;
}
.slider.slider-horizontal .slider-tick-label-container .slider-tick-label {
  padding-top: 4px;
  display: inline-block;
  text-align: center;
}
.slider.slider-vertical {
  height: 210px;
  width: 20px;
}
.slider.slider-vertical .slider-track {
  width: 10px;
  height: 100%;
  margin-left: -5px;
  left: 50%;
  top: 0;
}
.slider.slider-vertical .slider-selection {
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
}
.slider.slider-vertical .slider-track-low,
.slider.slider-vertical .slider-track-high {
  width: 100%;
  left: 0;
  right: 0;
}
.slider.slider-vertical .slider-tick,
.slider.slider-vertical .slider-handle {
  margin-left: -5px;
  margin-top: -10px;
}
.slider.slider-vertical .slider-tick.triangle,
.slider.slider-vertical .slider-handle.triangle {
  border-width: 10px 0 10px 10px;
  width: 1px;
  height: 1px;
  border-left-color: #0480be;
  margin-left: 0;
}
.slider.slider-vertical .slider-tick-label-container {
  white-space: nowrap;
}
.slider.slider-vertical .slider-tick-label-container .slider-tick-label {
  padding-left: 4px;
}
.slider.slider-disabled .slider-handle {
  background-image: -webkit-linear-gradient(top, #dfdfdf 0%, #bebebe 100%);
  background-image: -o-linear-gradient(top, #dfdfdf 0%, #bebebe 100%);
  background-image: linear-gradient(to bottom, #dfdfdf 0%, #bebebe 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdfdfdf', endColorstr='#ffbebebe', GradientType=0);
}
.slider.slider-disabled .slider-track {
  background-image: -webkit-linear-gradient(top, #e5e5e5 0%, #e9e9e9 100%);
  background-image: -o-linear-gradient(top, #e5e5e5 0%, #e9e9e9 100%);
  background-image: linear-gradient(to bottom, #e5e5e5 0%, #e9e9e9 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe5e5e5', endColorstr='#ffe9e9e9', GradientType=0);
  cursor: not-allowed;
}
.slider input {
  display: none;
}
.slider .tooltip.top {
  margin-top: -36px;
}
.slider .tooltip-inner {
  white-space: nowrap;
}
.slider .hide {
  display: none;
}
.slider-track {
  position: absolute;
  cursor: pointer;
  background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #f9f9f9 100%);
  background-image: -o-linear-gradient(top, #f5f5f5 0%, #f9f9f9 100%);
  background-image: linear-gradient(to bottom, #f5f5f5 0%, #f9f9f9 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.slider-selection {
  position: absolute;
  background-image: -webkit-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
  background-image: -o-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
  background-image: linear-gradient(to bottom, #f9f9f9 0%, #f5f5f5 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9f9f9', endColorstr='#fff5f5f5', GradientType=0);
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
}
.slider-selection.tick-slider-selection {
  background-image: -webkit-linear-gradient(top, #89cdef 0%, #81bfde 100%);
  background-image: -o-linear-gradient(top, #89cdef 0%, #81bfde 100%);
  background-image: linear-gradient(to bottom, #89cdef 0%, #81bfde 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff89cdef', endColorstr='#ff81bfde', GradientType=0);
}
.slider-track-low,
.slider-track-high {
  position: absolute;
  background: transparent;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
}
.slider-handle {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #337ab7;
  background-image: -webkit-linear-gradient(top, #149bdf 0%, #0480be 100%);
  background-image: -o-linear-gradient(top, #149bdf 0%, #0480be 100%);
  background-image: linear-gradient(to bottom, #149bdf 0%, #0480be 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);
  filter: none;
  -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
  border: 0px solid transparent;
}
.slider-handle.round {
  border-radius: 50%;
}
.slider-handle.triangle {
  background: transparent none;
}
.slider-handle.custom {
  background: transparent none;
}
.slider-handle.custom::before {
  line-height: 20px;
  font-size: 20px;
  content: '\2605';
  color: #726204;
}
.slider-tick {
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: -webkit-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
  background-image: -o-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
  background-image: linear-gradient(to bottom, #f9f9f9 0%, #f5f5f5 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9f9f9', endColorstr='#fff5f5f5', GradientType=0);
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  filter: none;
  opacity: 0.8;
  border: 0px solid transparent;
}
.slider-tick.round {
  border-radius: 50%;
}
.slider-tick.triangle {
  background: transparent none;
}
.slider-tick.custom {
  background: transparent none;
}
.slider-tick.custom::before {
  line-height: 20px;
  font-size: 20px;
  content: '\2605';
  color: #726204;
}
.slider-tick.in-selection {
  background-image: -webkit-linear-gradient(top, #89cdef 0%, #81bfde 100%);
  background-image: -o-linear-gradient(top, #89cdef 0%, #81bfde 100%);
  background-image: linear-gradient(to bottom, #89cdef 0%, #81bfde 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff89cdef', endColorstr='#ff81bfde', GradientType=0);
  opacity: 1;
}

/* FLEXBOX and Auto-width*/
.ui-slider {
  display: flex;
  /*align-items: stretch;*/
}
.ui-slider .slider {
  display: flex;
}

.ui-slider.fill .slider.slider-horizontal {
  flex: 1 0;
}
.ui-slider.fit .slider {
  flex: 0 0;
}

.ui-slider .slider-tick-label-container {
  display: flex;
  flex: 1 0;
}

.ui-slider .tooltip.in {
  opacity: 0.9;
}

.ui-slider .tooltip.bottom {
  margin-top: 12px;
}


/* MOODS */
.ui-slider.mood-success .slider-handle {
  background: hsl(120, 39%, 30%);
}
.ui-slider.mood-success .slider-selection {
  background: hsl(120, 39%, 70%);
}
.ui-slider.mood-success.section-1 .slider-selection {
  background: hsl(120, 39%, 95%);
}
.ui-slider.mood-success.section-2 .slider-selection {
  background: hsl(120, 39%, 90%);
}
.ui-slider.mood-success.section-3 .slider-selection {
  background: hsl(120, 39%, 85%);
}
.ui-slider.mood-success.section-4 .slider-selection {
  background: hsl(120, 39%, 80%);
}
.ui-slider.mood-success.section-5 .slider-selection {
  background: hsl(120, 39%, 75%);
}
.ui-slider.mood-success.section-6 .slider-selection {
  background: hsl(120, 39%, 70%);
}
.ui-slider.mood-success.section-7 .slider-selection {
  background: hsl(120, 39%, 65%);
}
.ui-slider.mood-success.section-8 .slider-selection {
  background: hsl(120, 39%, 60%);
}
.ui-slider.mood-success.section-9 .slider-selection {
  background: hsl(120, 39%, 55%);
}
.ui-slider.mood-success.section-10 .slider-selection {
  background: hsl(120, 39%, 50%);
}
/* info */
.ui-slider.mood-info .slider-handle {
  background: hsl(194, 66%, 30%);
}
.ui-slider.mood-info .slider-selection {
  background: hsl(194, 66%, 70%);
}
.ui-slider.mood-info.section-1 .slider-selection {
  background: hsl(194, 66%, 95%);
}
.ui-slider.mood-info.section-2 .slider-selection {
  background: hsl(194, 66%, 90%);
}
.ui-slider.mood-info.section-3 .slider-selection {
  background: hsl(194, 66%, 85%);
}
.ui-slider.mood-info.section-4 .slider-selection {
  background: hsl(194, 66%, 80%);
}
.ui-slider.mood-info.section-5 .slider-selection {
  background: hsl(194, 66%, 75%);
}
.ui-slider.mood-info.section-6 .slider-selection {
  background: hsl(194, 66%, 70%);
}
.ui-slider.mood-info.section-7 .slider-selection {
  background: hsl(194, 66%, 65%);
}
.ui-slider.mood-info.section-8 .slider-selection {
  background: hsl(194, 66%, 60%);
}
.ui-slider.mood-info.section-9 .slider-selection {
  background: hsl(194, 66%, 55%);
}
.ui-slider.mood-info.section-10 .slider-selection {
  background: hsl(194, 66%, 50%);
}
/* warning */
.ui-slider.mood-warning .slider-handle {
  background: hsl(35, 84%, 30%);
}
.ui-slider.mood-warning .slider-selection {
  background: hsl(35, 84%, 70%);
}
.ui-slider.mood-warning.section-1 .slider-selection {
  background: hsl(35, 84%, 95%);
}
.ui-slider.mood-warning.section-2 .slider-selection {
  background: hsl(35, 84%, 90%);
}
.ui-slider.mood-warning.section-3 .slider-selection {
  background: hsl(35, 84%, 85%);
}
.ui-slider.mood-warning.section-4 .slider-selection {
  background: hsl(35, 84%, 80%);
}
.ui-slider.mood-warning.section-5 .slider-selection {
  background: hsl(35, 84%, 75%);
}
.ui-slider.mood-warning.section-6 .slider-selection {
  background: hsl(35, 84%, 70%);
}
.ui-slider.mood-warning.section-7 .slider-selection {
  background: hsl(35, 84%, 65%);
}
.ui-slider.mood-warning.section-8 .slider-selection {
  background: hsl(35, 84%, 60%);
}
.ui-slider.mood-warning.section-9 .slider-selection {
  background: hsl(35, 84%, 55%);
}
.ui-slider.mood-warning.section-10 .slider-selection {
  background: hsl(35, 84%, 50%);
}
/* error */
.ui-slider.mood-error .slider-handle {
  background: hsl(2, 64%, 30%);
}
.ui-slider.mood-error .slider-selection {
  background: hsl(2, 64%, 70%);
}
.ui-slider.mood-error.section-1 .slider-selection {
  background: hsl(2, 64%, 95%);
}
.ui-slider.mood-error.section-2 .slider-selection {
  background: hsl(2, 64%, 90%);
}
.ui-slider.mood-error.section-3 .slider-selection {
  background: hsl(2, 64%, 85%);
}
.ui-slider.mood-error.section-4 .slider-selection {
  background: hsl(2, 64%, 80%);
}
.ui-slider.mood-error.section-5 .slider-selection {
  background: hsl(2, 64%, 75%);
}
.ui-slider.mood-error.section-6 .slider-selection {
  background: hsl(2, 64%, 70%);
}
.ui-slider.mood-error.section-7 .slider-selection {
  background: hsl(2, 64%, 65%);
}
.ui-slider.mood-error.section-8 .slider-selection {
  background: hsl(2, 64%, 60%);
}
.ui-slider.mood-error.section-9 .slider-selection {
  background: hsl(2, 64%, 55%);
}
.ui-slider.mood-error.section-10 .slider-selection {
  background: hsl(2, 64%, 50%);
}
/* RAG, RAGAR */
.ui-slider.mood-rag.section-1 .slider-handle,
.ui-slider.mood-ragar.section-1 .slider-handle,
.ui-slider.mood-ragar.section-5 .slider-handle {
  background: hsl(2, 64%, 35%);
}
.ui-slider.mood-rag.section-1 .slider-tick.in-selection,
.ui-slider.mood-ragar.section-1 .slider-tick.in-selection,
.ui-slider.mood-ragar.section-5 .slider-tick.in-selection {
  background: hsl(2, 64%, 85%);
}
.ui-slider.mood-rag.section-1 .slider-selection,
.ui-slider.mood-ragar.section-1 .slider-selection,
.ui-slider.mood-ragar.section-5 .slider-selection {
  background: hsl(2, 64%, 75%);
}
.ui-slider.mood-rag.section-2 .slider-handle,
.ui-slider.mood-ragar.section-2 .slider-handle,
.ui-slider.mood-ragar.section-4 .slider-handle
 {
  background: hsl(44, 64%, 35%);
}
.ui-slider.mood-rag.section-2 .slider-tick.in-selection,
.ui-slider.mood-ragar.section-2 .slider-tick.in-selection,
.ui-slider.mood-ragar.section-4 .slider-tick.in-selection
 {
  background: hsl(44, 64%, 85%);
}
.ui-slider.mood-rag.section-2 .slider-selection,
.ui-slider.mood-ragar.section-2 .slider-selection,
.ui-slider.mood-ragar.section-4 .slider-selection {
  background: hsl(44, 64%, 75%);
}
.ui-slider.mood-rag.section-3 .slider-handle,
.ui-slider.mood-ragar.section-3 .slider-handle {
  background: hsl(120, 39%, 35%);
}
.ui-slider.mood-rag.section-3 .slider-tick.in-selection,
.ui-slider.mood-ragar.section-3 .slider-tick.in-selection {
  background: hsl(120, 39%, 85%);
}
.ui-slider.mood-rag.section-3 .slider-selection,
.ui-slider.mood-ragar.section-3 .slider-selection  {
  background: hsl(120, 39%, 75%);
}
/* GAR */
.ui-slider.mood-gar.section-3 .slider-handle {
  background: hsl(2, 64%, 35%);
}
.ui-slider.mood-gar.section-3 .slider-selection {
  background: hsl(2, 64%, 75%);
}
.ui-slider.mood-gar.section-2 .slider-handle {
  background: hsl(44, 64%, 35%);
}
.ui-slider.mood-gar.section-2 .slider-selection {
  background: hsl(44, 64%, 75%);
}
.ui-slider.mood-gar.section-1 .slider-handle {
  background: hsl(120, 39%, 35%);
}
.ui-slider.mood-gar.section-1 .slider-selection {
  background: hsl(120, 39%, 75%);
}

/*  HANDLE SHAPES  */
.ui-slider .slider-handle.rect {
  width: 5px;
  border-radius: 2px;
}
.ui-slider.slider-horizontal .rect {
  margin-left: -5px;
}
