/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

    .animated.infinite {
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
    }

    .animated.hinge {
        -webkit-animation-duration: 2s;
        animation-duration: 2s;
    }

    .animated.bounceIn,
    .animated.bounceOut,
    .animated.flipOutX,
    .animated.flipOutY {
        -webkit-animation-duration: .75s;
        animation-duration: .75s;
    }

@-webkit-keyframes bounce {
    0%, 100%, 20%, 53%, 80% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    40%, 43% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes bounce {
    0%, 100%, 20%, 53%, 80% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    40%, 43% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
}

@-webkit-keyframes flash {
    0%, 100%, 50% {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}

@keyframes flash {
    0%, 100%, 50% {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}

.flash {
    -webkit-animation-name: flash;
    animation-name: flash;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

@-webkit-keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
}

@-webkit-keyframes shake {
    0%, 100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    20%, 40%, 60%, 80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}

@keyframes shake {
    0%, 100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    20%, 40%, 60%, 80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}

.shake {
    -webkit-animation-name: shake;
    animation-name: shake;
}

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }

    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }

    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }

    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg);
    }

    100% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }

    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }

    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }

    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg);
    }

    100% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

.swing {
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing;
}

@-webkit-keyframes tada {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    10%, 20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    }

    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    10%, 20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    }

    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.tada {
    -webkit-animation-name: tada;
    animation-name: tada;
}

@-webkit-keyframes wobble {
    0% {
        -webkit-transform: none;
        transform: none;
    }

    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }

    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }

    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }

    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }

    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes wobble {
    0% {
        -webkit-transform: none;
        transform: none;
    }

    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }

    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }

    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }

    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }

    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

.wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble;
}

@-webkit-keyframes bounceIn {
    0%, 100%, 20%, 40%, 60%, 80% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes bounceIn {
    0%, 100%, 20%, 40%, 60%, 80% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
    0%, 100%, 60%, 75%, 90% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInDown {
    0%, 100%, 60%, 75%, 90% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
    0%, 100%, 60%, 75%, 90% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInLeft {
    0%, 100%, 60%, 75%, 90% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
    0%, 100%, 60%, 75%, 90% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInRight {
    0%, 100%, 60%, 75%, 90% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }

    100% {
        -webkit-transform: none;
        transform: none;
    }
}

.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
    0%, 100%, 60%, 75%, 90% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes bounceInUp {
    0%, 100%, 60%, 75%, 90% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    50%, 55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
}

@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    50%, 55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
}

.bounceOut {
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

@keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

.bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

.bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

.bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

@keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

.fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

.fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

.fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

.fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

@keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip;
}

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
}

@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

.flipInY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}

@keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}

.flipOutX {
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}

@keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}

.flipOutY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
    0% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }

    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes lightSpeedIn {
    0% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }

    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
    0% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}

@keyframes lightSpeedOut {
    0% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}

.lightSpeedOut {
    -webkit-animation-name: lightSpeedOut;
    animation-name: lightSpeedOut;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateIn {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0;
    }
}

@keyframes rotateOut {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0;
    }
}

.rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
}

.rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

.rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

.rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0;
    }
}

.rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    20%, 60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    40%, 80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }

    100% {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}

@keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    20%, 60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    40%, 80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }

    100% {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}

.hinge {
    -webkit-animation-name: hinge;
    animation-name: hinge;
}

@-webkit-keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn;
}

@-webkit-keyframes rollOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
}

@keyframes rollOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
}

.rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomInDown {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomInLeft {
    -webkit-animation-name: zoomInLeft;
    animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomInRight {
    -webkit-animation-name: zoomInRight;
    animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomInUp {
    -webkit-animation-name: zoomInUp;
    animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    100% {
        opacity: 0;
    }
}

@keyframes zoomOut {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    100% {
        opacity: 0;
    }
}

.zoomOut {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomOutDown {
    -webkit-animation-name: zoomOutDown;
    animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
        transform: scale(0.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
        transform: scale(0.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
}

.zoomOutLeft {
    -webkit-animation-name: zoomOutLeft;
    animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
        transform: scale(0.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center;
    }
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
        transform: scale(0.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center;
    }
}

.zoomOutRight {
    -webkit-animation-name: zoomOutRight;
    animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomOutUp {
    -webkit-animation-name: zoomOutUp;
    animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInUp {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

@keyframes slideOutDown {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

.slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes slideOutLeft {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

@keyframes slideOutRight {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

.slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

@keyframes slideOutUp {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

.slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp;
}

/*!
 * Bootstrap v4.0.0-alpha.4 (http://getbootstrap.com)
 * Copyright 2011-2016 The Bootstrap Authors
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

/*! normalize.css v4.0.0 | MIT License | github.com/necolas/normalize.css */

html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
progress,
video {
    display: inline-block;
}

    audio:not([controls]) {
        display: none;
        height: 0;
    }

progress {
    vertical-align: baseline;
}

[hidden],
template {
    display: none;
}

a {
    background-color: transparent;
}

    a:active,
    a:hover {
        outline-width: 0;
    }

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: inherit;
}

b,
strong {
    font-weight: bolder;
}

dfn {
    font-style: italic;
}

h1 {
    font-size: 2em;
    margin: .67em 0;
}

mark {
    background-color: #ff0;
    color: #000;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -.25em;
}

sup {
    top: -.5em;
}

img {
    border-style: none;
}

svg:not(:root) {
    overflow: hidden;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

figure {
    margin: 1em 40px;
}

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

button,
input,
select,
textarea {
    font: inherit;
}

optgroup {
    font-weight: 700;
}

button,
input,
select {
    overflow: visible;
}

button,
input,
select,
textarea {
    margin: 0;
}

button,
select {
    text-transform: none;
}

[type=button],
[type=reset],
[type=submit],
button {
    cursor: pointer;
}

[disabled] {
    cursor: default;
}

[type=reset],
[type=submit],
button,
html [type=button] {
    -webkit-appearance: button;
}

    button::-moz-focus-inner,
    input::-moz-focus-inner {
        border: 0;
        padding: 0;
    }

    button:-moz-focusring,
    input:-moz-focusring {
        outline: 1px dotted ButtonText;
    }

fieldset {
    border: 1px solid silver;
    margin: 0 2px;
    padding: .35em .625em .75em;
}

legend {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

textarea {
    overflow: auto;
}

[type=checkbox],
[type=radio] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto;
}

[type=search] {
    -webkit-appearance: textfield;
}

    [type=search]::-webkit-search-cancel-button,
    [type=search]::-webkit-search-decoration {
        -webkit-appearance: none;
    }

@media print {
    *,
    ::after,
    ::before,
    ::first-letter,
    ::first-line {
        text-shadow: none !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    abbr[title]::after {
        content: " (" attr(title) ")";
    }

    blockquote,
    pre {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    img,
    tr {
        page-break-inside: avoid;
    }

    h2,
    h3,
    p {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }

    .navbar {
        display: none;
    }

    .btn > .caret,
    .dropup > .btn > .caret {
        border-top-color: #000 !important;
    }

    .tag {
        border: 1px solid #000;
    }

    .table {
        border-collapse: collapse !important;
    }

        .table td,
        .table th {
            background-color: #fff !important;
        }

    .table-bordered td,
    .table-bordered th {
        border: 1px solid #ddd !important;
    }
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*,
::after,
::before {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

@-ms-viewport {
    width: device-width;
}

html {
    font-size: 16px;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #373a3c;
    background-color: #fff;
}

[tabindex="-1"]:focus {
    outline: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: .5rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

abbr[data-original-title],
abbr[title] {
    cursor: help;
    border-bottom: 1px dotted #818a91;
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit;
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 1rem;
}

    ol ol,
    ol ul,
    ul ol,
    ul ul {
        margin-bottom: 0;
    }

dt {
    font-weight: 700;
}

dd {
    margin-bottom: .5rem;
    margin-left: 0;
}

blockquote {
    margin: 0 0 1rem;
}

a {
    color: #0275d8;
    text-decoration: none;
}

    a:focus,
    a:hover {
        color: #014c8c;
        text-decoration: underline;
    }

    a:focus {
        outline: 5px auto -webkit-focus-ring-color;
        outline-offset: -2px;
    }

    a:not([href]):not([tabindex]) {
        color: inherit;
        text-decoration: none;
    }

        a:not([href]):not([tabindex]):focus,
        a:not([href]):not([tabindex]):hover {
            color: inherit;
            text-decoration: none;
        }

        a:not([href]):not([tabindex]):focus {
            outline: 0;
        }

pre {
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
}

figure {
    margin: 0 0 1rem;
}

img {
    vertical-align: middle;
}

[role=button] {
    cursor: pointer;
}

[role=button],
a,
area,
button,
input,
label,
select,
summary,
textarea {
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}

table {
    border-collapse: collapse;
    background-color: transparent;
}

caption {
    padding-top: .75rem;
    padding-bottom: .75rem;
    color: #818a91;
    text-align: left;
    caption-side: bottom;
}

th {
    text-align: left;
}

label {
    display: inline-block;
    margin-bottom: .5rem;
}

button:focus {
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color;
}

button,
input,
select,
textarea {
    margin: 0;
    line-height: inherit;
    border-radius: 0;
}

    input[type=checkbox]:disabled,
    input[type=radio]:disabled {
        cursor: not-allowed;
    }

    input[type=date],
    input[type=time],
    input[type=datetime-local],
    input[type=month] {
        -webkit-appearance: listbox;
    }

textarea {
    resize: vertical;
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

legend {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: .5rem;
    font-size: 1.5rem;
    line-height: inherit;
}

input[type=search] {
    -webkit-appearance: none;
}

output {
    display: inline-block;
}

[hidden] {
    display: none !important;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: .5rem;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.1;
    color: inherit;
}

.h1,
h1 {
    font-size: 2.5rem;
}

.h2,
h2 {
    font-size: 2rem;
}

.h3,
h3 {
    font-size: 1.75rem;
}

.h4,
h4 {
    font-size: 1.5rem;
}

.h5,
h5 {
    font-size: 1.25rem;
}

.h6,
h6 {
    font-size: 1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

.display-1 {
    font-size: 6rem;
    font-weight: 300;
}

.display-2 {
    font-size: 5.5rem;
    font-weight: 300;
}

.display-3 {
    font-size: 4.5rem;
    font-weight: 300;
}

.display-4 {
    font-size: 3.5rem;
    font-weight: 300;
}

hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.small,
small {
    font-size: 80%;
    font-weight: 400;
}

.mark,
mark {
    padding: .2em;
    background-color: #fcf8e3;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.list-inline {
    padding-left: 0;
    list-style: none;
}

.list-inline-item {
    display: inline-block;
}

    .list-inline-item:not(:last-child) {
        margin-right: 5px;
    }

.initialism {
    font-size: 90%;
    text-transform: uppercase;
}

.blockquote {
    padding: .5rem 1rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    border-left: .25rem solid #eceeef;
}

.blockquote-footer {
    display: block;
    font-size: 80%;
    color: #818a91;
}

    .blockquote-footer::before {
        content: "\2014 \00A0";
    }

.blockquote-reverse {
    padding-right: 1rem;
    padding-left: 0;
    text-align: right;
    border-right: .25rem solid #eceeef;
    border-left: 0;
}

    .blockquote-reverse .blockquote-footer::before {
        content: "";
    }

    .blockquote-reverse .blockquote-footer::after {
        content: "\00A0 \2014";
    }

dl.row > dd + dt {
    clear: left;
}

.carousel-inner > .carousel-item > a > img,
.carousel-inner > .carousel-item > img,
.img-fluid {
    display: block;
    max-width: 100%;
    height: auto;
}

.img-rounded {
    border-radius: .3rem;
}

.img-thumbnail {
    padding: .25rem;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: .25rem;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    display: inline-block;
    max-width: 100%;
    height: auto;
}

.img-circle {
    border-radius: 50%;
}

.figure {
    display: inline-block;
}

.figure-img {
    margin-bottom: .5rem;
    line-height: 1;
}

.figure-caption {
    font-size: 90%;
    color: #818a91;
}

code,
kbd,
pre,
samp {
    font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

code {
    padding: .2rem .4rem;
    font-size: 90%;
    color: #bd4147;
    background-color: #f7f7f9;
    border-radius: .25rem;
}

kbd {
    padding: .2rem .4rem;
    font-size: 90%;
    color: #fff;
    background-color: #333;
    border-radius: .2rem;
}

    kbd kbd {
        padding: 0;
        font-size: 100%;
        font-weight: 700;
    }

pre {
    display: block;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 90%;
    color: #373a3c;
}

    pre code {
        padding: 0;
        font-size: inherit;
        color: inherit;
        background-color: transparent;
        border-radius: 0;
    }

.pre-scrollable {
    max-height: 340px;
    overflow-y: scroll;
}

.container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

    .container::after {
        content: "";
        display: table;
        clear: both;
    }

@media (min-width: 544px) {
    .container {
        max-width: 576px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 940px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

.container-fluid {
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

    .container-fluid::after {
        content: "";
        display: table;
        clear: both;
    }

.row {
    margin-left: -15px;
    margin-right: -15px;
}

    .row::after {
        content: "";
        display: table;
        clear: both;
    }

.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-xs-1 {
    float: left;
    width: 8.333333%;
}

.col-xs-2 {
    float: left;
    width: 16.666667%;
}

.col-xs-3 {
    float: left;
    width: 25%;
}

.col-xs-4 {
    float: left;
    width: 33.333333%;
}

.col-xs-5 {
    float: left;
    width: 41.666667%;
}

.col-xs-6 {
    float: left;
    width: 50%;
}

.col-xs-7 {
    float: left;
    width: 58.333333%;
}

.col-xs-8 {
    float: left;
    width: 66.666667%;
}

.col-xs-9 {
    float: left;
    width: 75%;
}

.col-xs-10 {
    float: left;
    width: 83.333333%;
}

.col-xs-11 {
    float: left;
    width: 91.666667%;
}

.col-xs-12 {
    float: left;
    width: 100%;
}

.pull-xs-0 {
    right: auto;
}

.pull-xs-1 {
    right: 8.333333%;
}

.pull-xs-2 {
    right: 16.666667%;
}

.pull-xs-3 {
    right: 25%;
}

.pull-xs-4 {
    right: 33.333333%;
}

.pull-xs-5 {
    right: 41.666667%;
}

.pull-xs-6 {
    right: 50%;
}

.pull-xs-7 {
    right: 58.333333%;
}

.pull-xs-8 {
    right: 66.666667%;
}

.pull-xs-9 {
    right: 75%;
}

.pull-xs-10 {
    right: 83.333333%;
}

.pull-xs-11 {
    right: 91.666667%;
}

.pull-xs-12 {
    right: 100%;
}

.push-xs-0 {
    left: auto;
}

.push-xs-1 {
    left: 8.333333%;
}

.push-xs-2 {
    left: 16.666667%;
}

.push-xs-3 {
    left: 25%;
}

.push-xs-4 {
    left: 33.333333%;
}

.push-xs-5 {
    left: 41.666667%;
}

.push-xs-6 {
    left: 50%;
}

.push-xs-7 {
    left: 58.333333%;
}

.push-xs-8 {
    left: 66.666667%;
}

.push-xs-9 {
    left: 75%;
}

.push-xs-10 {
    left: 83.333333%;
}

.push-xs-11 {
    left: 91.666667%;
}

.push-xs-12 {
    left: 100%;
}

.offset-xs-1 {
    margin-left: 8.333333%;
}

.offset-xs-2 {
    margin-left: 16.666667%;
}

.offset-xs-3 {
    margin-left: 25%;
}

.offset-xs-4 {
    margin-left: 33.333333%;
}

.offset-xs-5 {
    margin-left: 41.666667%;
}

.offset-xs-6 {
    margin-left: 50%;
}

.offset-xs-7 {
    margin-left: 58.333333%;
}

.offset-xs-8 {
    margin-left: 66.666667%;
}

.offset-xs-9 {
    margin-left: 75%;
}

.offset-xs-10 {
    margin-left: 83.333333%;
}

.offset-xs-11 {
    margin-left: 91.666667%;
}

@media (min-width: 544px) {
    .col-sm-1 {
        float: left;
        width: 8.333333%;
    }

    .col-sm-2 {
        float: left;
        width: 16.666667%;
    }

    .col-sm-3 {
        float: left;
        width: 25%;
    }

    .col-sm-4 {
        float: left;
        width: 33.333333%;
    }

    .col-sm-5 {
        float: left;
        width: 41.666667%;
    }

    .col-sm-6 {
        float: left;
        width: 50%;
    }

    .col-sm-7 {
        float: left;
        width: 58.333333%;
    }

    .col-sm-8 {
        float: left;
        width: 66.666667%;
    }

    .col-sm-9 {
        float: left;
        width: 75%;
    }

    .col-sm-10 {
        float: left;
        width: 83.333333%;
    }

    .col-sm-11 {
        float: left;
        width: 91.666667%;
    }

    .col-sm-12 {
        float: left;
        width: 100%;
    }

    .pull-sm-0 {
        right: auto;
    }

    .pull-sm-1 {
        right: 8.333333%;
    }

    .pull-sm-2 {
        right: 16.666667%;
    }

    .pull-sm-3 {
        right: 25%;
    }

    .pull-sm-4 {
        right: 33.333333%;
    }

    .pull-sm-5 {
        right: 41.666667%;
    }

    .pull-sm-6 {
        right: 50%;
    }

    .pull-sm-7 {
        right: 58.333333%;
    }

    .pull-sm-8 {
        right: 66.666667%;
    }

    .pull-sm-9 {
        right: 75%;
    }

    .pull-sm-10 {
        right: 83.333333%;
    }

    .pull-sm-11 {
        right: 91.666667%;
    }

    .pull-sm-12 {
        right: 100%;
    }

    .push-sm-0 {
        left: auto;
    }

    .push-sm-1 {
        left: 8.333333%;
    }

    .push-sm-2 {
        left: 16.666667%;
    }

    .push-sm-3 {
        left: 25%;
    }

    .push-sm-4 {
        left: 33.333333%;
    }

    .push-sm-5 {
        left: 41.666667%;
    }

    .push-sm-6 {
        left: 50%;
    }

    .push-sm-7 {
        left: 58.333333%;
    }

    .push-sm-8 {
        left: 66.666667%;
    }

    .push-sm-9 {
        left: 75%;
    }

    .push-sm-10 {
        left: 83.333333%;
    }

    .push-sm-11 {
        left: 91.666667%;
    }

    .push-sm-12 {
        left: 100%;
    }

    .offset-sm-0 {
        margin-left: 0;
    }

    .offset-sm-1 {
        margin-left: 8.333333%;
    }

    .offset-sm-2 {
        margin-left: 16.666667%;
    }

    .offset-sm-3 {
        margin-left: 25%;
    }

    .offset-sm-4 {
        margin-left: 33.333333%;
    }

    .offset-sm-5 {
        margin-left: 41.666667%;
    }

    .offset-sm-6 {
        margin-left: 50%;
    }

    .offset-sm-7 {
        margin-left: 58.333333%;
    }

    .offset-sm-8 {
        margin-left: 66.666667%;
    }

    .offset-sm-9 {
        margin-left: 75%;
    }

    .offset-sm-10 {
        margin-left: 83.333333%;
    }

    .offset-sm-11 {
        margin-left: 91.666667%;
    }
}

@media (min-width: 768px) {
    .col-md-1 {
        float: left;
        width: 8.333333%;
    }

    .col-md-2 {
        float: left;
        width: 16.666667%;
    }

    .col-md-3 {
        float: left;
        width: 25%;
    }

    .col-md-4 {
        float: left;
        width: 33.333333%;
    }

    .col-md-5 {
        float: left;
        width: 41.666667%;
    }

    .col-md-6 {
        float: left;
        width: 50%;
    }

    .col-md-7 {
        float: left;
        width: 58.333333%;
    }

    .col-md-8 {
        float: left;
        width: 66.666667%;
    }

    .col-md-9 {
        float: left;
        width: 75%;
    }

    .col-md-10 {
        float: left;
        width: 83.333333%;
    }

    .col-md-11 {
        float: left;
        width: 91.666667%;
    }

    .col-md-12 {
        float: left;
        width: 100%;
    }

    .pull-md-0 {
        right: auto;
    }

    .pull-md-1 {
        right: 8.333333%;
    }

    .pull-md-2 {
        right: 16.666667%;
    }

    .pull-md-3 {
        right: 25%;
    }

    .pull-md-4 {
        right: 33.333333%;
    }

    .pull-md-5 {
        right: 41.666667%;
    }

    .pull-md-6 {
        right: 50%;
    }

    .pull-md-7 {
        right: 58.333333%;
    }

    .pull-md-8 {
        right: 66.666667%;
    }

    .pull-md-9 {
        right: 75%;
    }

    .pull-md-10 {
        right: 83.333333%;
    }

    .pull-md-11 {
        right: 91.666667%;
    }

    .pull-md-12 {
        right: 100%;
    }

    .push-md-0 {
        left: auto;
    }

    .push-md-1 {
        left: 8.333333%;
    }

    .push-md-2 {
        left: 16.666667%;
    }

    .push-md-3 {
        left: 25%;
    }

    .push-md-4 {
        left: 33.333333%;
    }

    .push-md-5 {
        left: 41.666667%;
    }

    .push-md-6 {
        left: 50%;
    }

    .push-md-7 {
        left: 58.333333%;
    }

    .push-md-8 {
        left: 66.666667%;
    }

    .push-md-9 {
        left: 75%;
    }

    .push-md-10 {
        left: 83.333333%;
    }

    .push-md-11 {
        left: 91.666667%;
    }

    .push-md-12 {
        left: 100%;
    }

    .offset-md-0 {
        margin-left: 0;
    }

    .offset-md-1 {
        margin-left: 8.333333%;
    }

    .offset-md-2 {
        margin-left: 16.666667%;
    }

    .offset-md-3 {
        margin-left: 25%;
    }

    .offset-md-4 {
        margin-left: 33.333333%;
    }

    .offset-md-5 {
        margin-left: 41.666667%;
    }

    .offset-md-6 {
        margin-left: 50%;
    }

    .offset-md-7 {
        margin-left: 58.333333%;
    }

    .offset-md-8 {
        margin-left: 66.666667%;
    }

    .offset-md-9 {
        margin-left: 75%;
    }

    .offset-md-10 {
        margin-left: 83.333333%;
    }

    .offset-md-11 {
        margin-left: 91.666667%;
    }
}

@media (min-width: 992px) {
    .col-lg-1 {
        float: left;
        width: 8.333333%;
    }

    .col-lg-2 {
        float: left;
        width: 16.666667%;
    }

    .col-lg-3 {
        float: left;
        width: 25%;
    }

    .col-lg-4 {
        float: left;
        width: 33.333333%;
    }

    .col-lg-5 {
        float: left;
        width: 41.666667%;
    }

    .col-lg-6 {
        float: left;
        width: 50%;
    }

    .col-lg-7 {
        float: left;
        width: 58.333333%;
    }

    .col-lg-8 {
        float: left;
        width: 66.666667%;
    }

    .col-lg-9 {
        float: left;
        width: 75%;
    }

    .col-lg-10 {
        float: left;
        width: 83.333333%;
    }

    .col-lg-11 {
        float: left;
        width: 91.666667%;
    }

    .col-lg-12 {
        float: left;
        width: 100%;
    }

    .pull-lg-0 {
        right: auto;
    }

    .pull-lg-1 {
        right: 8.333333%;
    }

    .pull-lg-2 {
        right: 16.666667%;
    }

    .pull-lg-3 {
        right: 25%;
    }

    .pull-lg-4 {
        right: 33.333333%;
    }

    .pull-lg-5 {
        right: 41.666667%;
    }

    .pull-lg-6 {
        right: 50%;
    }

    .pull-lg-7 {
        right: 58.333333%;
    }

    .pull-lg-8 {
        right: 66.666667%;
    }

    .pull-lg-9 {
        right: 75%;
    }

    .pull-lg-10 {
        right: 83.333333%;
    }

    .pull-lg-11 {
        right: 91.666667%;
    }

    .pull-lg-12 {
        right: 100%;
    }

    .push-lg-0 {
        left: auto;
    }

    .push-lg-1 {
        left: 8.333333%;
    }

    .push-lg-2 {
        left: 16.666667%;
    }

    .push-lg-3 {
        left: 25%;
    }

    .push-lg-4 {
        left: 33.333333%;
    }

    .push-lg-5 {
        left: 41.666667%;
    }

    .push-lg-6 {
        left: 50%;
    }

    .push-lg-7 {
        left: 58.333333%;
    }

    .push-lg-8 {
        left: 66.666667%;
    }

    .push-lg-9 {
        left: 75%;
    }

    .push-lg-10 {
        left: 83.333333%;
    }

    .push-lg-11 {
        left: 91.666667%;
    }

    .push-lg-12 {
        left: 100%;
    }

    .offset-lg-0 {
        margin-left: 0;
    }

    .offset-lg-1 {
        margin-left: 8.333333%;
    }

    .offset-lg-2 {
        margin-left: 16.666667%;
    }

    .offset-lg-3 {
        margin-left: 25%;
    }

    .offset-lg-4 {
        margin-left: 33.333333%;
    }

    .offset-lg-5 {
        margin-left: 41.666667%;
    }

    .offset-lg-6 {
        margin-left: 50%;
    }

    .offset-lg-7 {
        margin-left: 58.333333%;
    }

    .offset-lg-8 {
        margin-left: 66.666667%;
    }

    .offset-lg-9 {
        margin-left: 75%;
    }

    .offset-lg-10 {
        margin-left: 83.333333%;
    }

    .offset-lg-11 {
        margin-left: 91.666667%;
    }
}

@media (min-width: 1200px) {
    .col-xl-1 {
        float: left;
        width: 8.333333%;
    }

    .col-xl-2 {
        float: left;
        width: 16.666667%;
    }

    .col-xl-3 {
        float: left;
        width: 25%;
    }

    .col-xl-4 {
        float: left;
        width: 33.333333%;
    }

    .col-xl-5 {
        float: left;
        width: 41.666667%;
    }

    .col-xl-6 {
        float: left;
        width: 50%;
    }

    .col-xl-7 {
        float: left;
        width: 58.333333%;
    }

    .col-xl-8 {
        float: left;
        width: 66.666667%;
    }

    .col-xl-9 {
        float: left;
        width: 75%;
    }

    .col-xl-10 {
        float: left;
        width: 83.333333%;
    }

    .col-xl-11 {
        float: left;
        width: 91.666667%;
    }

    .col-xl-12 {
        float: left;
        width: 100%;
    }

    .pull-xl-0 {
        right: auto;
    }

    .pull-xl-1 {
        right: 8.333333%;
    }

    .pull-xl-2 {
        right: 16.666667%;
    }

    .pull-xl-3 {
        right: 25%;
    }

    .pull-xl-4 {
        right: 33.333333%;
    }

    .pull-xl-5 {
        right: 41.666667%;
    }

    .pull-xl-6 {
        right: 50%;
    }

    .pull-xl-7 {
        right: 58.333333%;
    }

    .pull-xl-8 {
        right: 66.666667%;
    }

    .pull-xl-9 {
        right: 75%;
    }

    .pull-xl-10 {
        right: 83.333333%;
    }

    .pull-xl-11 {
        right: 91.666667%;
    }

    .pull-xl-12 {
        right: 100%;
    }

    .push-xl-0 {
        left: auto;
    }

    .push-xl-1 {
        left: 8.333333%;
    }

    .push-xl-2 {
        left: 16.666667%;
    }

    .push-xl-3 {
        left: 25%;
    }

    .push-xl-4 {
        left: 33.333333%;
    }

    .push-xl-5 {
        left: 41.666667%;
    }

    .push-xl-6 {
        left: 50%;
    }

    .push-xl-7 {
        left: 58.333333%;
    }

    .push-xl-8 {
        left: 66.666667%;
    }

    .push-xl-9 {
        left: 75%;
    }

    .push-xl-10 {
        left: 83.333333%;
    }

    .push-xl-11 {
        left: 91.666667%;
    }

    .push-xl-12 {
        left: 100%;
    }

    .offset-xl-0 {
        margin-left: 0;
    }

    .offset-xl-1 {
        margin-left: 8.333333%;
    }

    .offset-xl-2 {
        margin-left: 16.666667%;
    }

    .offset-xl-3 {
        margin-left: 25%;
    }

    .offset-xl-4 {
        margin-left: 33.333333%;
    }

    .offset-xl-5 {
        margin-left: 41.666667%;
    }

    .offset-xl-6 {
        margin-left: 50%;
    }

    .offset-xl-7 {
        margin-left: 58.333333%;
    }

    .offset-xl-8 {
        margin-left: 66.666667%;
    }

    .offset-xl-9 {
        margin-left: 75%;
    }

    .offset-xl-10 {
        margin-left: 83.333333%;
    }

    .offset-xl-11 {
        margin-left: 91.666667%;
    }
}

.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
}

    .table td,
    .table th {
        padding: .75rem;
        vertical-align: top;
        border-top: 1px solid #eceeef;
    }

    .table thead th {
        vertical-align: bottom;
        border-bottom: 2px solid #eceeef;
    }

    .table tbody + tbody {
        border-top: 2px solid #eceeef;
    }

    .table .table {
        background-color: #fff;
    }

.table-sm td,
.table-sm th {
    padding: .3rem;
}

.table-bordered {
    border: 1px solid #eceeef;
}

    .table-bordered td,
    .table-bordered th {
        border: 1px solid #eceeef;
    }

    .table-bordered thead td,
    .table-bordered thead th {
        border-bottom-width: 2px;
    }

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.075);
}

.table-active,
.table-active > td,
.table-active > th {
    background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
    background-color: rgba(0, 0, 0, 0.075);
}

    .table-hover .table-active:hover > td,
    .table-hover .table-active:hover > th {
        background-color: rgba(0, 0, 0, 0.075);
    }

.table-success,
.table-success > td,
.table-success > th {
    background-color: #dff0d8;
}

.table-hover .table-success:hover {
    background-color: #d0e9c6;
}

    .table-hover .table-success:hover > td,
    .table-hover .table-success:hover > th {
        background-color: #d0e9c6;
    }

.table-info,
.table-info > td,
.table-info > th {
    background-color: #d9edf7;
}

.table-hover .table-info:hover {
    background-color: #c4e3f3;
}

    .table-hover .table-info:hover > td,
    .table-hover .table-info:hover > th {
        background-color: #c4e3f3;
    }

.table-warning,
.table-warning > td,
.table-warning > th {
    background-color: #fcf8e3;
}

.table-hover .table-warning:hover {
    background-color: #faf2cc;
}

    .table-hover .table-warning:hover > td,
    .table-hover .table-warning:hover > th {
        background-color: #faf2cc;
    }

.table-danger,
.table-danger > td,
.table-danger > th {
    background-color: #f2dede;
}

.table-hover .table-danger:hover {
    background-color: #ebcccc;
}

    .table-hover .table-danger:hover > td,
    .table-hover .table-danger:hover > th {
        background-color: #ebcccc;
    }

.thead-inverse th {
    color: #fff;
    background-color: #373a3c;
}

.thead-default th {
    color: #55595c;
    background-color: #eceeef;
}

.table-inverse {
    color: #eceeef;
    background-color: #373a3c;
}

    .table-inverse td,
    .table-inverse th,
    .table-inverse thead th {
        border-color: #55595c;
    }

    .table-inverse.table-bordered {
        border: 0;
    }

.table-responsive {
    display: block;
    width: 100%;
    min-height: .01%;
    overflow-x: auto;
}

.table-reflow thead {
    float: left;
}

.table-reflow tbody {
    display: block;
    white-space: nowrap;
}

.table-reflow td,
.table-reflow th {
    border-top: 1px solid #eceeef;
    border-left: 1px solid #eceeef;
}

    .table-reflow td:last-child,
    .table-reflow th:last-child {
        border-right: 1px solid #eceeef;
    }

.table-reflow tbody:last-child tr:last-child td,
.table-reflow tbody:last-child tr:last-child th,
.table-reflow tfoot:last-child tr:last-child td,
.table-reflow tfoot:last-child tr:last-child th,
.table-reflow thead:last-child tr:last-child td,
.table-reflow thead:last-child tr:last-child th {
    border-bottom: 1px solid #eceeef;
}

.table-reflow tr {
    float: left;
}

    .table-reflow tr td,
    .table-reflow tr th {
        display: block !important;
        border: 1px solid #eceeef;
    }

.form-control {
    display: block;
    width: 100%;
    padding: .5rem .75rem;
    font-size: 1rem;
    line-height: 1.25;
    color: #55595c;
    background-color: #fff;
    background-image: none;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: .25rem;
}

    .form-control::-ms-expand {
        background-color: transparent;
        border: 0;
    }

    .form-control:focus {
        color: #55595c;
        background-color: #fff;
        border-color: #66afe9;
        outline: 0;
    }

    .form-control::-webkit-input-placeholder {
        color: #999;
        opacity: 1;
    }

    .form-control::-moz-placeholder {
        color: #999;
        opacity: 1;
    }

    .form-control:-ms-input-placeholder {
        color: #999;
        opacity: 1;
    }

    .form-control::placeholder {
        color: #999;
        opacity: 1;
    }

    .form-control:disabled,
    .form-control[readonly] {
        background-color: #eceeef;
        opacity: 1;
    }

    .form-control:disabled {
        cursor: not-allowed;
    }

select.form-control:not([size]):not([multiple]) {
    height: 2.5rem;
}

select.form-control:focus::-ms-value {
    color: #55595c;
    background-color: #fff;
}

.form-control-file,
.form-control-range {
    display: block;
}

.col-form-label {
    padding-top: .5rem;
    padding-bottom: .5rem;
    margin-bottom: 0;
}

.col-form-label-lg {
    padding-top: .75rem;
    padding-bottom: .75rem;
    font-size: 1.25rem;
}

.col-form-label-sm {
    padding-top: .25rem;
    padding-bottom: .25rem;
    font-size: .875rem;
}

.col-form-legend {
    padding-top: .5rem;
    padding-bottom: .5rem;
    margin-bottom: 0;
    font-size: 1rem;
}

.form-control-static {
    min-height: 2.5rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
    margin-bottom: 0;
}

    .form-control-static.form-control-lg,
    .form-control-static.form-control-sm,
    .input-group-lg > .form-control-static.form-control,
    .input-group-lg > .form-control-static.input-group-addon,
    .input-group-lg > .input-group-btn > .form-control-static.btn,
    .input-group-sm > .form-control-static.form-control,
    .input-group-sm > .form-control-static.input-group-addon,
    .input-group-sm > .input-group-btn > .form-control-static.btn {
        padding-right: 0;
        padding-left: 0;
    }

.form-control-sm,
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
    padding: .25rem .5rem;
    font-size: .875rem;
    border-radius: .2rem;
}

.input-group-sm > .input-group-btn > select.btn:not([size]):not([multiple]),
.input-group-sm > select.form-control:not([size]):not([multiple]),
.input-group-sm > select.input-group-addon:not([size]):not([multiple]),
select.form-control-sm:not([size]):not([multiple]) {
    height: 1.8125rem;
}

.form-control-lg,
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
    padding: .75rem 1.5rem;
    font-size: 1.25rem;
    border-radius: .3rem;
}

.input-group-lg > .input-group-btn > select.btn:not([size]):not([multiple]),
.input-group-lg > select.form-control:not([size]):not([multiple]),
.input-group-lg > select.input-group-addon:not([size]):not([multiple]),
select.form-control-lg:not([size]):not([multiple]) {
    height: 3.166667rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-text {
    display: block;
    margin-top: .25rem;
}

.form-check {
    position: relative;
    display: block;
    margin-bottom: .75rem;
}

    .form-check + .form-check {
        margin-top: -.25rem;
    }

    .form-check.disabled .form-check-label {
        color: #818a91;
        cursor: not-allowed;
    }

.form-check-label {
    padding-left: 1.25rem;
    margin-bottom: 0;
    cursor: pointer;
}

.form-check-input {
    position: absolute;
    margin-top: .25rem;
    margin-left: -1.25rem;
}

    .form-check-input:only-child {
        position: static;
    }

.form-check-inline {
    position: relative;
    display: inline-block;
    padding-left: 1.25rem;
    margin-bottom: 0;
    vertical-align: middle;
    cursor: pointer;
}

    .form-check-inline + .form-check-inline {
        margin-left: .75rem;
    }

    .form-check-inline.disabled {
        cursor: not-allowed;
    }

.form-control-feedback {
    margin-top: .25rem;
}

.form-control-danger,
.form-control-success,
.form-control-warning {
    padding-right: 2.25rem;
    background-repeat: no-repeat;
    background-position: center right .625rem;
    -webkit-background-size: 1.25rem 1.25rem;
    background-size: 1.25rem 1.25rem;
}

.has-success .custom-control,
.has-success .form-check-inline,
.has-success .form-check-label,
.has-success .form-control-feedback,
.has-success .form-control-label {
    color: #5cb85c;
}

.has-success .form-control {
    border-color: #5cb85c;
}

.has-success .input-group-addon {
    color: #5cb85c;
    border-color: #5cb85c;
    background-color: #eaf6ea;
}

.has-success .form-control-feedback {
    color: #5cb85c;
}

.has-success .form-control-success {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%235cb85c' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E");
}

.has-warning .custom-control,
.has-warning .form-check-inline,
.has-warning .form-check-label,
.has-warning .form-control-feedback,
.has-warning .form-control-label {
    color: #f0ad4e;
}

.has-warning .form-control {
    border-color: #f0ad4e;
}

.has-warning .input-group-addon {
    color: #f0ad4e;
    border-color: #f0ad4e;
    background-color: #fff;
}

.has-warning .form-control-feedback {
    color: #f0ad4e;
}

.has-warning .form-control-warning {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23f0ad4e' d='M4.4 5.324h-.8v-2.46h.8zm0 1.42h-.8V5.89h.8zM3.76.63L.04 7.075c-.115.2.016.425.26.426h7.397c.242 0 .372-.226.258-.426C6.726 4.924 5.47 2.79 4.253.63c-.113-.174-.39-.174-.494 0z'/%3E%3C/svg%3E");
}

.has-danger .custom-control,
.has-danger .form-check-inline,
.has-danger .form-check-label,
.has-danger .form-control-feedback,
.has-danger .form-control-label {
    color: #d9534f;
}

.has-danger .form-control {
    border-color: #d9534f;
}

.has-danger .input-group-addon {
    color: #d9534f;
    border-color: #d9534f;
    background-color: #fdf7f7;
}

.has-danger .form-control-feedback {
    color: #d9534f;
}

.has-danger .form-control-danger {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23d9534f' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E");
}

@media (min-width: 544px) {
    .form-inline .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle;
    }

    .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle;
    }

    .form-inline .form-control-static {
        display: inline-block;
    }

    .form-inline .input-group {
        display: inline-table;
        vertical-align: middle;
    }

        .form-inline .input-group .form-control,
        .form-inline .input-group .input-group-addon,
        .form-inline .input-group .input-group-btn {
            width: auto;
        }

        .form-inline .input-group > .form-control {
            width: 100%;
        }

    .form-inline .form-control-label {
        margin-bottom: 0;
        vertical-align: middle;
    }

    .form-inline .form-check {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle;
    }

    .form-inline .form-check-label {
        padding-left: 0;
    }

    .form-inline .form-check-input {
        position: relative;
        margin-left: 0;
    }

    .form-inline .has-feedback .form-control-feedback {
        top: 0;
    }
}

.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.25;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: .5rem 1rem;
    font-size: 1rem;
    border-radius: .25rem;
}

    .btn.active.focus,
    .btn.active:focus,
    .btn.focus,
    .btn:active.focus,
    .btn:active:focus,
    .btn:focus {
        outline: 5px auto -webkit-focus-ring-color;
        outline-offset: -2px;
    }

    .btn:focus,
    .btn:hover {
        text-decoration: none;
    }

    .btn.focus {
        text-decoration: none;
    }

    .btn.active,
    .btn:active {
        background-image: none;
        outline: 0;
    }

    .btn.disabled,
    .btn:disabled {
        cursor: not-allowed;
        opacity: .65;
    }

a.btn.disabled,
fieldset[disabled] a.btn {
    pointer-events: none;
}

.btn-primary {
    color: #fff;
    background-color: #295288;
    border-color: #295288;
}

    .btn-primary:hover {
        color: #fff;
        background-color: #025aa5;
        border-color: #01549b;
    }

    .btn-primary.focus,
    .btn-primary:focus {
        color: #fff;
        background-color: #025aa5;
        border-color: #01549b;
    }

    .btn-primary.active,
    .btn-primary:active,
    .open > .btn-primary.dropdown-toggle {
        color: #fff;
        background-color: #025aa5;
        border-color: #01549b;
        background-image: none;
    }

        .btn-primary.active.focus,
        .btn-primary.active:focus,
        .btn-primary.active:hover,
        .btn-primary:active.focus,
        .btn-primary:active:focus,
        .btn-primary:active:hover,
        .open > .btn-primary.dropdown-toggle.focus,
        .open > .btn-primary.dropdown-toggle:focus,
        .open > .btn-primary.dropdown-toggle:hover {
            color: #fff;
            background-color: #014682;
            border-color: #01315a;
        }

    .btn-primary.disabled.focus,
    .btn-primary.disabled:focus,
    .btn-primary:disabled.focus,
    .btn-primary:disabled:focus {
        background-color: #0275d8;
        border-color: #0275d8;
    }

    .btn-primary.disabled:hover,
    .btn-primary:disabled:hover {
        background-color: #0275d8;
        border-color: #0275d8;
    }

.btn-secondary {
    color: #373a3c;
    background-color: #fff;
    border-color: #ccc;
}

    .btn-secondary:hover {
        color: #373a3c;
        background-color: #e6e6e6;
        border-color: #adadad;
    }

    .btn-secondary.focus,
    .btn-secondary:focus {
        color: #373a3c;
        background-color: #e6e6e6;
        border-color: #adadad;
    }

    .btn-secondary.active,
    .btn-secondary:active,
    .open > .btn-secondary.dropdown-toggle {
        color: #373a3c;
        background-color: #e6e6e6;
        border-color: #adadad;
        background-image: none;
    }

        .btn-secondary.active.focus,
        .btn-secondary.active:focus,
        .btn-secondary.active:hover,
        .btn-secondary:active.focus,
        .btn-secondary:active:focus,
        .btn-secondary:active:hover,
        .open > .btn-secondary.dropdown-toggle.focus,
        .open > .btn-secondary.dropdown-toggle:focus,
        .open > .btn-secondary.dropdown-toggle:hover {
            color: #373a3c;
            background-color: #d4d4d4;
            border-color: #8c8c8c;
        }

    .btn-secondary.disabled.focus,
    .btn-secondary.disabled:focus,
    .btn-secondary:disabled.focus,
    .btn-secondary:disabled:focus {
        background-color: #fff;
        border-color: #ccc;
    }

    .btn-secondary.disabled:hover,
    .btn-secondary:disabled:hover {
        background-color: #fff;
        border-color: #ccc;
    }

.btn-info {
    color: #fff;
    background-color: #5bc0de;
    border-color: #5bc0de;
}

    .btn-info:hover {
        color: #fff;
        background-color: #31b0d5;
        border-color: #2aabd2;
    }

    .btn-info.focus,
    .btn-info:focus {
        color: #fff;
        background-color: #31b0d5;
        border-color: #2aabd2;
    }

    .btn-info.active,
    .btn-info:active,
    .open > .btn-info.dropdown-toggle {
        color: #fff;
        background-color: #31b0d5;
        border-color: #2aabd2;
        background-image: none;
    }

        .btn-info.active.focus,
        .btn-info.active:focus,
        .btn-info.active:hover,
        .btn-info:active.focus,
        .btn-info:active:focus,
        .btn-info:active:hover,
        .open > .btn-info.dropdown-toggle.focus,
        .open > .btn-info.dropdown-toggle:focus,
        .open > .btn-info.dropdown-toggle:hover {
            color: #fff;
            background-color: #269abc;
            border-color: #1f7e9a;
        }

    .btn-info.disabled.focus,
    .btn-info.disabled:focus,
    .btn-info:disabled.focus,
    .btn-info:disabled:focus {
        background-color: #5bc0de;
        border-color: #5bc0de;
    }

    .btn-info.disabled:hover,
    .btn-info:disabled:hover {
        background-color: #5bc0de;
        border-color: #5bc0de;
    }

.btn-success {
    color: #fff;
    background-color: #5cb85c;
    border-color: #5cb85c;
}

    .btn-success:hover {
        color: #fff;
        background-color: #449d44;
        border-color: #419641;
    }

    .btn-success.focus,
    .btn-success:focus {
        color: #fff;
        background-color: #449d44;
        border-color: #419641;
    }

    .btn-success.active,
    .btn-success:active,
    .open > .btn-success.dropdown-toggle {
        color: #fff;
        background-color: #449d44;
        border-color: #419641;
        background-image: none;
    }

        .btn-success.active.focus,
        .btn-success.active:focus,
        .btn-success.active:hover,
        .btn-success:active.focus,
        .btn-success:active:focus,
        .btn-success:active:hover,
        .open > .btn-success.dropdown-toggle.focus,
        .open > .btn-success.dropdown-toggle:focus,
        .open > .btn-success.dropdown-toggle:hover {
            color: #fff;
            background-color: #398439;
            border-color: #2d672d;
        }

    .btn-success.disabled.focus,
    .btn-success.disabled:focus,
    .btn-success:disabled.focus,
    .btn-success:disabled:focus {
        background-color: #5cb85c;
        border-color: #5cb85c;
    }

    .btn-success.disabled:hover,
    .btn-success:disabled:hover {
        background-color: #5cb85c;
        border-color: #5cb85c;
    }

.btn-warning {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #f0ad4e;
}

    .btn-warning:hover {
        color: #fff;
        background-color: #ec971f;
        border-color: #eb9316;
    }

    .btn-warning.focus,
    .btn-warning:focus {
        color: #fff;
        background-color: #ec971f;
        border-color: #eb9316;
    }

    .btn-warning.active,
    .btn-warning:active,
    .open > .btn-warning.dropdown-toggle {
        color: #fff;
        background-color: #ec971f;
        border-color: #eb9316;
        background-image: none;
    }

        .btn-warning.active.focus,
        .btn-warning.active:focus,
        .btn-warning.active:hover,
        .btn-warning:active.focus,
        .btn-warning:active:focus,
        .btn-warning:active:hover,
        .open > .btn-warning.dropdown-toggle.focus,
        .open > .btn-warning.dropdown-toggle:focus,
        .open > .btn-warning.dropdown-toggle:hover {
            color: #fff;
            background-color: #d58512;
            border-color: #b06d0f;
        }

    .btn-warning.disabled.focus,
    .btn-warning.disabled:focus,
    .btn-warning:disabled.focus,
    .btn-warning:disabled:focus {
        background-color: #f0ad4e;
        border-color: #f0ad4e;
    }

    .btn-warning.disabled:hover,
    .btn-warning:disabled:hover {
        background-color: #f0ad4e;
        border-color: #f0ad4e;
    }

.btn-danger {
    color: #fff;
    background-color: #d9534f;
    border-color: #d9534f;
}

    .btn-danger:hover {
        color: #fff;
        background-color: #c9302c;
        border-color: #c12e2a;
    }

    .btn-danger.focus,
    .btn-danger:focus {
        color: #fff;
        background-color: #c9302c;
        border-color: #c12e2a;
    }

    .btn-danger.active,
    .btn-danger:active,
    .open > .btn-danger.dropdown-toggle {
        color: #fff;
        background-color: #c9302c;
        border-color: #c12e2a;
        background-image: none;
    }

        .btn-danger.active.focus,
        .btn-danger.active:focus,
        .btn-danger.active:hover,
        .btn-danger:active.focus,
        .btn-danger:active:focus,
        .btn-danger:active:hover,
        .open > .btn-danger.dropdown-toggle.focus,
        .open > .btn-danger.dropdown-toggle:focus,
        .open > .btn-danger.dropdown-toggle:hover {
            color: #fff;
            background-color: #ac2925;
            border-color: #8b211e;
        }

    .btn-danger.disabled.focus,
    .btn-danger.disabled:focus,
    .btn-danger:disabled.focus,
    .btn-danger:disabled:focus {
        background-color: #d9534f;
        border-color: #d9534f;
    }

    .btn-danger.disabled:hover,
    .btn-danger:disabled:hover {
        background-color: #d9534f;
        border-color: #d9534f;
    }

.btn-outline-primary {
    color: #0275d8;
    background-image: none;
    background-color: transparent;
    border-color: #0275d8;
}

    .btn-outline-primary:hover {
        color: #fff;
        background-color: #0275d8;
        border-color: #0275d8;
    }

    .btn-outline-primary.focus,
    .btn-outline-primary:focus {
        color: #fff;
        background-color: #0275d8;
        border-color: #0275d8;
    }

    .btn-outline-primary.active,
    .btn-outline-primary:active,
    .open > .btn-outline-primary.dropdown-toggle {
        color: #fff;
        background-color: #0275d8;
        border-color: #0275d8;
    }

        .btn-outline-primary.active.focus,
        .btn-outline-primary.active:focus,
        .btn-outline-primary.active:hover,
        .btn-outline-primary:active.focus,
        .btn-outline-primary:active:focus,
        .btn-outline-primary:active:hover,
        .open > .btn-outline-primary.dropdown-toggle.focus,
        .open > .btn-outline-primary.dropdown-toggle:focus,
        .open > .btn-outline-primary.dropdown-toggle:hover {
            color: #fff;
            background-color: #014682;
            border-color: #01315a;
        }

    .btn-outline-primary.disabled.focus,
    .btn-outline-primary.disabled:focus,
    .btn-outline-primary:disabled.focus,
    .btn-outline-primary:disabled:focus {
        border-color: #43a7fd;
    }

    .btn-outline-primary.disabled:hover,
    .btn-outline-primary:disabled:hover {
        border-color: #43a7fd;
    }

.btn-outline-secondary {
    color: #ccc;
    background-image: none;
    background-color: transparent;
    border-color: #ccc;
}

    .btn-outline-secondary:hover {
        color: #fff;
        background-color: #ccc;
        border-color: #ccc;
    }

    .btn-outline-secondary.focus,
    .btn-outline-secondary:focus {
        color: #fff;
        background-color: #ccc;
        border-color: #ccc;
    }

    .btn-outline-secondary.active,
    .btn-outline-secondary:active,
    .open > .btn-outline-secondary.dropdown-toggle {
        color: #fff;
        background-color: #ccc;
        border-color: #ccc;
    }

        .btn-outline-secondary.active.focus,
        .btn-outline-secondary.active:focus,
        .btn-outline-secondary.active:hover,
        .btn-outline-secondary:active.focus,
        .btn-outline-secondary:active:focus,
        .btn-outline-secondary:active:hover,
        .open > .btn-outline-secondary.dropdown-toggle.focus,
        .open > .btn-outline-secondary.dropdown-toggle:focus,
        .open > .btn-outline-secondary.dropdown-toggle:hover {
            color: #fff;
            background-color: #a1a1a1;
            border-color: #8c8c8c;
        }

    .btn-outline-secondary.disabled.focus,
    .btn-outline-secondary.disabled:focus,
    .btn-outline-secondary:disabled.focus,
    .btn-outline-secondary:disabled:focus {
        border-color: #fff;
    }

    .btn-outline-secondary.disabled:hover,
    .btn-outline-secondary:disabled:hover {
        border-color: #fff;
    }

.btn-outline-info {
    color: #5bc0de;
    background-image: none;
    background-color: transparent;
    border-color: #5bc0de;
}

    .btn-outline-info:hover {
        color: #fff;
        background-color: #5bc0de;
        border-color: #5bc0de;
    }

    .btn-outline-info.focus,
    .btn-outline-info:focus {
        color: #fff;
        background-color: #5bc0de;
        border-color: #5bc0de;
    }

    .btn-outline-info.active,
    .btn-outline-info:active,
    .open > .btn-outline-info.dropdown-toggle {
        color: #fff;
        background-color: #5bc0de;
        border-color: #5bc0de;
    }

        .btn-outline-info.active.focus,
        .btn-outline-info.active:focus,
        .btn-outline-info.active:hover,
        .btn-outline-info:active.focus,
        .btn-outline-info:active:focus,
        .btn-outline-info:active:hover,
        .open > .btn-outline-info.dropdown-toggle.focus,
        .open > .btn-outline-info.dropdown-toggle:focus,
        .open > .btn-outline-info.dropdown-toggle:hover {
            color: #fff;
            background-color: #269abc;
            border-color: #1f7e9a;
        }

    .btn-outline-info.disabled.focus,
    .btn-outline-info.disabled:focus,
    .btn-outline-info:disabled.focus,
    .btn-outline-info:disabled:focus {
        border-color: #b0e1ef;
    }

    .btn-outline-info.disabled:hover,
    .btn-outline-info:disabled:hover {
        border-color: #b0e1ef;
    }

.btn-outline-success {
    color: #5cb85c;
    background-image: none;
    background-color: transparent;
    border-color: #5cb85c;
}

    .btn-outline-success:hover {
        color: #fff;
        background-color: #5cb85c;
        border-color: #5cb85c;
    }

    .btn-outline-success.focus,
    .btn-outline-success:focus {
        color: #fff;
        background-color: #5cb85c;
        border-color: #5cb85c;
    }

    .btn-outline-success.active,
    .btn-outline-success:active,
    .open > .btn-outline-success.dropdown-toggle {
        color: #fff;
        background-color: #5cb85c;
        border-color: #5cb85c;
    }

        .btn-outline-success.active.focus,
        .btn-outline-success.active:focus,
        .btn-outline-success.active:hover,
        .btn-outline-success:active.focus,
        .btn-outline-success:active:focus,
        .btn-outline-success:active:hover,
        .open > .btn-outline-success.dropdown-toggle.focus,
        .open > .btn-outline-success.dropdown-toggle:focus,
        .open > .btn-outline-success.dropdown-toggle:hover {
            color: #fff;
            background-color: #398439;
            border-color: #2d672d;
        }

    .btn-outline-success.disabled.focus,
    .btn-outline-success.disabled:focus,
    .btn-outline-success:disabled.focus,
    .btn-outline-success:disabled:focus {
        border-color: #a3d7a3;
    }

    .btn-outline-success.disabled:hover,
    .btn-outline-success:disabled:hover {
        border-color: #a3d7a3;
    }

.btn-outline-warning {
    color: #f0ad4e;
    background-image: none;
    background-color: transparent;
    border-color: #f0ad4e;
}

    .btn-outline-warning:hover {
        color: #fff;
        background-color: #f0ad4e;
        border-color: #f0ad4e;
    }

    .btn-outline-warning.focus,
    .btn-outline-warning:focus {
        color: #fff;
        background-color: #f0ad4e;
        border-color: #f0ad4e;
    }

    .btn-outline-warning.active,
    .btn-outline-warning:active,
    .open > .btn-outline-warning.dropdown-toggle {
        color: #fff;
        background-color: #f0ad4e;
        border-color: #f0ad4e;
    }

        .btn-outline-warning.active.focus,
        .btn-outline-warning.active:focus,
        .btn-outline-warning.active:hover,
        .btn-outline-warning:active.focus,
        .btn-outline-warning:active:focus,
        .btn-outline-warning:active:hover,
        .open > .btn-outline-warning.dropdown-toggle.focus,
        .open > .btn-outline-warning.dropdown-toggle:focus,
        .open > .btn-outline-warning.dropdown-toggle:hover {
            color: #fff;
            background-color: #d58512;
            border-color: #b06d0f;
        }

    .btn-outline-warning.disabled.focus,
    .btn-outline-warning.disabled:focus,
    .btn-outline-warning:disabled.focus,
    .btn-outline-warning:disabled:focus {
        border-color: #f8d9ac;
    }

    .btn-outline-warning.disabled:hover,
    .btn-outline-warning:disabled:hover {
        border-color: #f8d9ac;
    }

.btn-outline-danger {
    color: #d9534f;
    background-image: none;
    background-color: transparent;
    border-color: #d9534f;
}

    .btn-outline-danger:hover {
        color: #fff;
        background-color: #d9534f;
        border-color: #d9534f;
    }

    .btn-outline-danger.focus,
    .btn-outline-danger:focus {
        color: #fff;
        background-color: #d9534f;
        border-color: #d9534f;
    }

    .btn-outline-danger.active,
    .btn-outline-danger:active,
    .open > .btn-outline-danger.dropdown-toggle {
        color: #fff;
        background-color: #d9534f;
        border-color: #d9534f;
    }

        .btn-outline-danger.active.focus,
        .btn-outline-danger.active:focus,
        .btn-outline-danger.active:hover,
        .btn-outline-danger:active.focus,
        .btn-outline-danger:active:focus,
        .btn-outline-danger:active:hover,
        .open > .btn-outline-danger.dropdown-toggle.focus,
        .open > .btn-outline-danger.dropdown-toggle:focus,
        .open > .btn-outline-danger.dropdown-toggle:hover {
            color: #fff;
            background-color: #ac2925;
            border-color: #8b211e;
        }

    .btn-outline-danger.disabled.focus,
    .btn-outline-danger.disabled:focus,
    .btn-outline-danger:disabled.focus,
    .btn-outline-danger:disabled:focus {
        border-color: #eba5a3;
    }

    .btn-outline-danger.disabled:hover,
    .btn-outline-danger:disabled:hover {
        border-color: #eba5a3;
    }

.btn-link {
    font-weight: 400;
    color: #0275d8;
    border-radius: 0;
}

    .btn-link,
    .btn-link.active,
    .btn-link:active,
    .btn-link:disabled {
        background-color: transparent;
    }

        .btn-link,
        .btn-link:active,
        .btn-link:focus {
            border-color: transparent;
        }

            .btn-link:hover {
                border-color: transparent;
            }

            .btn-link:focus,
            .btn-link:hover {
                color: #014c8c;
                text-decoration: underline;
                background-color: transparent;
            }

            .btn-link:disabled:focus,
            .btn-link:disabled:hover {
                color: #818a91;
                text-decoration: none;
            }

.btn-group-lg > .btn,
.btn-lg {
    padding: .75rem 1.5rem;
    font-size: 1.25rem;
    border-radius: .3rem;
}

.btn-group-sm > .btn,
.btn-sm {
    padding: .25rem .5rem;
    font-size: .875rem;
    border-radius: .2rem;
}

.btn-block {
    display: block;
    width: 100%;
}

    .btn-block + .btn-block {
        margin-top: .5rem;
    }

input[type=button].btn-block,
input[type=reset].btn-block,
input[type=submit].btn-block {
    width: 100%;
}

.fade {
    opacity: 0;
    -webkit-transition: opacity .15s linear;
    -o-transition: opacity .15s linear;
    transition: opacity .15s linear;
}

    .fade.in {
        opacity: 1;
    }

.collapse {
    display: none;
}

    .collapse.in {
        display: block;
    }

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transition-duration: .35s;
    -o-transition-duration: .35s;
    transition-duration: .35s;
    -webkit-transition-property: height;
    -o-transition-property: height;
    transition-property: height;
}

.dropdown,
.dropup {
    position: relative;
}

.dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-left: .3em solid transparent;
}

.dropdown-toggle:focus {
    outline: 0;
}

.dropup .dropdown-toggle::after {
    border-top: 0;
    border-bottom: .3em solid;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 1rem;
    color: #373a3c;
    text-align: left;
    list-style: none;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: .25rem;
}

.dropdown-divider {
    height: 1px;
    margin: .5rem 0;
    overflow: hidden;
    background-color: #e5e5e5;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    color: #373a3c;
    text-align: inherit;
    white-space: nowrap;
    background: 0 0;
    border: 0;
}

    .dropdown-item:focus,
    .dropdown-item:hover {
        color: #2b2d2f;
        text-decoration: none;
        background-color: #f5f5f5;
    }

    .dropdown-item.active,
    .dropdown-item.active:focus,
    .dropdown-item.active:hover {
        color: #fff;
        text-decoration: none;
        background-color: #0275d8;
        outline: 0;
    }

    .dropdown-item.disabled,
    .dropdown-item.disabled:focus,
    .dropdown-item.disabled:hover {
        color: #818a91;
    }

        .dropdown-item.disabled:focus,
        .dropdown-item.disabled:hover {
            text-decoration: none;
            cursor: not-allowed;
            background-color: transparent;
            background-image: none;
            filter: "progid:DXImageTransform.Microsoft.gradient(enabled = false)";
        }

.open > .dropdown-menu {
    display: block;
}

.open > a {
    outline: 0;
}

.dropdown-menu-right {
    right: 0;
    left: auto;
}

.dropdown-menu-left {
    right: auto;
    left: 0;
}

.dropdown-header {
    display: block;
    padding: 5px 20px;
    font-size: .875rem;
    color: #818a91;
    white-space: nowrap;
}

.dropdown-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 990;
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
    content: "";
    border-top: 0;
    border-bottom: .3em solid;
}

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-bottom: 2px;
}

.btn-group,
.btn-group-vertical {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

    .btn-group-vertical > .btn,
    .btn-group > .btn {
        position: relative;
        float: left;
    }

        .btn-group-vertical > .btn.active,
        .btn-group-vertical > .btn:active,
        .btn-group-vertical > .btn:focus,
        .btn-group > .btn.active,
        .btn-group > .btn:active,
        .btn-group > .btn:focus {
            z-index: 2;
        }

        .btn-group-vertical > .btn:hover,
        .btn-group > .btn:hover {
            z-index: 2;
        }

    .btn-group .btn + .btn,
    .btn-group .btn + .btn-group,
    .btn-group .btn-group + .btn,
    .btn-group .btn-group + .btn-group {
        margin-left: -1px;
    }

.btn-toolbar {
    margin-left: -.5rem;
}

    .btn-toolbar::after {
        content: "";
        display: table;
        clear: both;
    }

    .btn-toolbar .btn-group,
    .btn-toolbar .input-group {
        float: left;
    }

    .btn-toolbar > .btn,
    .btn-toolbar > .btn-group,
    .btn-toolbar > .input-group {
        margin-left: .5rem;
    }

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
    border-radius: 0;
}

.btn-group > .btn:first-child {
    margin-left: 0;
}

    .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
        border-bottom-right-radius: 0;
        border-top-right-radius: 0;
    }

.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.btn-group > .btn-group {
    float: left;
}

    .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
        border-radius: 0;
    }

    .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
    .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
        border-bottom-right-radius: 0;
        border-top-right-radius: 0;
    }

    .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
        border-bottom-left-radius: 0;
        border-top-left-radius: 0;
    }

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
    outline: 0;
}

.btn + .dropdown-toggle-split {
    padding-right: .75rem;
    padding-left: .75rem;
}

    .btn + .dropdown-toggle-split::after {
        margin-left: 0;
    }

.btn-group-sm > .btn + .dropdown-toggle-split,
.btn-sm + .dropdown-toggle-split {
    padding-right: .375rem;
    padding-left: .375rem;
}

.btn-group-lg > .btn + .dropdown-toggle-split,
.btn-lg + .dropdown-toggle-split {
    padding-right: 1.125rem;
    padding-left: 1.125rem;
}

.btn .caret {
    margin-left: 0;
}

.btn-group-lg > .btn .caret,
.btn-lg .caret {
    border-width: .3em .3em 0;
    border-bottom-width: 0;
}

.dropup .btn-group-lg > .btn .caret,
.dropup .btn-lg .caret {
    border-width: 0 .3em .3em;
}

.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
    display: block;
    float: none;
    width: 100%;
    max-width: 100%;
}

    .btn-group-vertical > .btn-group::after {
        content: "";
        display: table;
        clear: both;
    }

    .btn-group-vertical > .btn-group > .btn {
        float: none;
    }

    .btn-group-vertical > .btn + .btn,
    .btn-group-vertical > .btn + .btn-group,
    .btn-group-vertical > .btn-group + .btn,
    .btn-group-vertical > .btn-group + .btn-group {
        margin-top: -1px;
        margin-left: 0;
    }

    .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
        border-radius: 0;
    }

    .btn-group-vertical > .btn:first-child:not(:last-child) {
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }

    .btn-group-vertical > .btn:last-child:not(:first-child) {
        border-top-right-radius: 0;
        border-top-left-radius: 0;
    }

    .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
        border-radius: 0;
    }

    .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
    .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }

    .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
        border-top-right-radius: 0;
        border-top-left-radius: 0;
    }

[data-toggle=buttons] > .btn input[type=checkbox],
[data-toggle=buttons] > .btn input[type=radio],
[data-toggle=buttons] > .btn-group > .btn input[type=checkbox],
[data-toggle=buttons] > .btn-group > .btn input[type=radio] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}

.input-group {
    position: relative;
    width: 100%;
    display: table;
    border-collapse: separate;
}

    .input-group .form-control {
        position: relative;
        z-index: 2;
        float: left;
        width: 100%;
        margin-bottom: 0;
    }

        .input-group .form-control:active,
        .input-group .form-control:focus,
        .input-group .form-control:hover {
            z-index: 3;
        }

    .input-group .form-control,
    .input-group-addon,
    .input-group-btn {
        display: table-cell;
    }

        .input-group .form-control:not(:first-child):not(:last-child),
        .input-group-addon:not(:first-child):not(:last-child),
        .input-group-btn:not(:first-child):not(:last-child) {
            border-radius: 0;
        }

.input-group-addon,
.input-group-btn {
    width: 1%;
    white-space: nowrap;
    vertical-align: middle;
}

.input-group-addon {
    padding: .5rem .75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.25;
    color: #55595c;
    text-align: center;
    background-color: #eceeef;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: .25rem;
}

    .input-group-addon.form-control-sm,
    .input-group-sm > .input-group-addon,
    .input-group-sm > .input-group-btn > .input-group-addon.btn {
        padding: .25rem .5rem;
        font-size: .875rem;
        border-radius: .2rem;
    }

    .input-group-addon.form-control-lg,
    .input-group-lg > .input-group-addon,
    .input-group-lg > .input-group-btn > .input-group-addon.btn {
        padding: .75rem 1.5rem;
        font-size: 1.25rem;
        border-radius: .3rem;
    }

    .input-group-addon input[type=checkbox],
    .input-group-addon input[type=radio] {
        margin-top: 0;
    }

    .input-group .form-control:not(:last-child),
    .input-group-addon:not(:last-child),
    .input-group-btn:not(:first-child) > .btn-group:not(:last-child) > .btn,
    .input-group-btn:not(:first-child) > .btn:not(:last-child):not(.dropdown-toggle),
    .input-group-btn:not(:last-child) > .btn,
    .input-group-btn:not(:last-child) > .btn-group > .btn,
    .input-group-btn:not(:last-child) > .dropdown-toggle {
        border-bottom-right-radius: 0;
        border-top-right-radius: 0;
    }

    .input-group-addon:not(:last-child) {
        border-right: 0;
    }

    .input-group .form-control:not(:first-child),
    .input-group-addon:not(:first-child),
    .input-group-btn:not(:first-child) > .btn,
    .input-group-btn:not(:first-child) > .btn-group > .btn,
    .input-group-btn:not(:first-child) > .dropdown-toggle,
    .input-group-btn:not(:last-child) > .btn-group:not(:first-child) > .btn,
    .input-group-btn:not(:last-child) > .btn:not(:first-child) {
        border-bottom-left-radius: 0;
        border-top-left-radius: 0;
    }

.form-control + .input-group-addon:not(:first-child) {
    border-left: 0;
}

.input-group-btn {
    position: relative;
    font-size: 0;
    white-space: nowrap;
}

    .input-group-btn > .btn {
        position: relative;
    }

        .input-group-btn > .btn + .btn {
            margin-left: -1px;
        }

        .input-group-btn > .btn:active,
        .input-group-btn > .btn:focus,
        .input-group-btn > .btn:hover {
            z-index: 3;
        }

    .input-group-btn:not(:last-child) > .btn,
    .input-group-btn:not(:last-child) > .btn-group {
        margin-right: -1px;
    }

    .input-group-btn:not(:first-child) > .btn,
    .input-group-btn:not(:first-child) > .btn-group {
        z-index: 2;
        margin-left: -1px;
    }

        .input-group-btn:not(:first-child) > .btn-group:active,
        .input-group-btn:not(:first-child) > .btn-group:focus,
        .input-group-btn:not(:first-child) > .btn-group:hover,
        .input-group-btn:not(:first-child) > .btn:active,
        .input-group-btn:not(:first-child) > .btn:focus,
        .input-group-btn:not(:first-child) > .btn:hover {
            z-index: 3;
        }

.custom-control {
    position: relative;
    display: inline;
    padding-left: 1.5rem;
    cursor: pointer;
}

    .custom-control + .custom-control {
        margin-left: 1rem;
    }

.custom-control-input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

    .custom-control-input:checked ~ .custom-control-indicator {
        color: #fff;
        background-color: #0074d9;
    }

    .custom-control-input:focus ~ .custom-control-indicator {
        -webkit-box-shadow: 0 0 0 .075rem #fff, 0 0 0 .2rem #0074d9;
        box-shadow: 0 0 0 .075rem #fff, 0 0 0 .2rem #0074d9;
    }

    .custom-control-input:active ~ .custom-control-indicator {
        color: #fff;
        background-color: #84c6ff;
    }

    .custom-control-input:disabled ~ .custom-control-indicator {
        cursor: not-allowed;
        background-color: #eee;
    }

    .custom-control-input:disabled ~ .custom-control-description {
        color: #767676;
        cursor: not-allowed;
    }

.custom-control-indicator {
    position: absolute;
    top: .0625rem;
    left: 0;
    display: block;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #ddd;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: 50% 50%;
    background-size: 50% 50%;
}

.custom-checkbox .custom-control-indicator {
    border-radius: .25rem;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-indicator {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-indicator {
    background-color: #0074d9;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E");
}

.custom-radio .custom-control-indicator {
    border-radius: 50%;
}

.custom-radio .custom-control-input:checked ~ .custom-control-indicator {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E");
}

.custom-controls-stacked .custom-control {
    display: inline;
}

    .custom-controls-stacked .custom-control::after {
        display: block;
        margin-bottom: .25rem;
        content: "";
    }

    .custom-controls-stacked .custom-control + .custom-control {
        margin-left: 0;
    }

.custom-select {
    display: inline-block;
    max-width: 100%;
    padding: .375rem 1.75rem .375rem .75rem;
    padding-right: .75rem\9;
    color: #55595c;
    vertical-align: middle;
    background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
    background-image: none\9;
    -webkit-background-size: 8px 10px;
    background-size: 8px 10px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: .25rem;
    -moz-appearance: none;
    -webkit-appearance: none;
}

    .custom-select:focus {
        border-color: #51a7e8;
        outline: 0;
    }

        .custom-select:focus::-ms-value {
            color: #55595c;
            background-color: #fff;
        }

    .custom-select:disabled {
        color: #818a91;
        cursor: not-allowed;
        background-color: #eceeef;
    }

    .custom-select::-ms-expand {
        opacity: 0;
    }

.custom-select-sm {
    padding-top: .375rem;
    padding-bottom: .375rem;
    font-size: 75%;
}

.custom-file {
    position: relative;
    display: inline-block;
    max-width: 100%;
    height: 2.5rem;
    cursor: pointer;
}

.custom-file-input {
    min-width: 14rem;
    max-width: 100%;
    margin: 0;
    filter: alpha(opacity=0);
    opacity: 0;
}

.custom-file-control {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 5;
    height: 2.5rem;
    padding: .5rem 1rem;
    line-height: 1.5;
    color: #555;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: .25rem;
}

    .custom-file-control:lang(en)::after {
        content: "Choose file...";
    }

    .custom-file-control::before {
        position: absolute;
        top: -1px;
        right: -1px;
        bottom: -1px;
        z-index: 6;
        display: block;
        height: 2.5rem;
        padding: .5rem 1rem;
        line-height: 1.5;
        color: #555;
        background-color: #eee;
        border: 1px solid #ddd;
        border-radius: 0 .25rem .25rem 0;
    }

    .custom-file-control:lang(en)::before {
        content: "Browse";
    }

.nav {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.nav-link {
    display: inline-block;
}

    .nav-link:focus,
    .nav-link:hover {
        text-decoration: none;
    }

    .nav-link.disabled {
        color: #818a91;
    }

        .nav-link.disabled,
        .nav-link.disabled:focus,
        .nav-link.disabled:hover {
            color: #818a91;
            cursor: not-allowed;
            background-color: transparent;
        }

.nav-inline .nav-item {
    display: inline-block;
}

    .nav-inline .nav-item + .nav-item,
    .nav-inline .nav-link + .nav-link {
        margin-left: 1rem;
    }

.nav-tabs {
    border-bottom: 1px solid #ddd;
}

    .nav-tabs::after {
        content: "";
        display: table;
        clear: both;
    }

    .nav-tabs .nav-item {
        float: left;
        margin-bottom: -1px;
    }

        .nav-tabs .nav-item + .nav-item {
            margin-left: .2rem;
        }

    .nav-tabs .nav-link {
        display: block;
        padding: .5em 1em;
        border: 1px solid transparent;
        border-top-right-radius: .25rem;
        border-top-left-radius: .25rem;
    }

        .nav-tabs .nav-link:focus,
        .nav-tabs .nav-link:hover {
            border-color: #eceeef #eceeef #ddd;
        }

        .nav-tabs .nav-link.disabled,
        .nav-tabs .nav-link.disabled:focus,
        .nav-tabs .nav-link.disabled:hover {
            color: #818a91;
            background-color: transparent;
            border-color: transparent;
        }

        .nav-tabs .nav-item.open .nav-link,
        .nav-tabs .nav-item.open .nav-link:focus,
        .nav-tabs .nav-item.open .nav-link:hover,
        .nav-tabs .nav-link.active,
        .nav-tabs .nav-link.active:focus,
        .nav-tabs .nav-link.active:hover {
            color: #55595c;
            background-color: #fff;
            border-color: #ddd #ddd transparent;
        }

    .nav-tabs .dropdown-menu {
        margin-top: -1px;
        border-top-right-radius: 0;
        border-top-left-radius: 0;
    }

.nav-pills::after {
    content: "";
    display: table;
    clear: both;
}

.nav-pills .nav-item {
    float: left;
}

    .nav-pills .nav-item + .nav-item {
        margin-left: .2rem;
    }

.nav-pills .nav-link {
    display: block;
    padding: .5em 1em;
    border-radius: .25rem;
}

    .nav-pills .nav-item.open .nav-link,
    .nav-pills .nav-item.open .nav-link:focus,
    .nav-pills .nav-item.open .nav-link:hover,
    .nav-pills .nav-link.active,
    .nav-pills .nav-link.active:focus,
    .nav-pills .nav-link.active:hover {
        color: #fff;
        cursor: default;
        background-color: #0275d8;
    }

.nav-stacked .nav-item {
    display: block;
    float: none;
}

    .nav-stacked .nav-item + .nav-item {
        margin-top: .2rem;
        margin-left: 0;
    }

.tab-content > .tab-pane {
    display: none;
}

.tab-content > .active {
    display: block;
}

.navbar {
    position: relative;
    padding: .5rem 1rem;
}

    .navbar::after {
        content: "";
        display: table;
        clear: both;
    }

@media (min-width: 544px) {
    .navbar {
        border-radius: .25rem;
    }
}

.navbar-full {
    z-index: 1000;
}

@media (min-width: 544px) {
    .navbar-full {
        border-radius: 0;
    }
}

.navbar-fixed-bottom,
.navbar-fixed-top {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030;
}

@media (min-width: 544px) {
    .navbar-fixed-bottom,
    .navbar-fixed-top {
        border-radius: 0;
    }
}

.navbar-fixed-top {
    top: 0;
}

.navbar-fixed-bottom {
    bottom: 0;
}

.navbar-sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1030;
    width: 100%;
}

@media (min-width: 544px) {
    .navbar-sticky-top {
        border-radius: 0;
    }
}

.navbar-brand {
    float: left;
    padding-top: .25rem;
    padding-bottom: .25rem;
    margin-right: 1rem;
    font-size: 1.25rem;
}

    .navbar-brand:focus,
    .navbar-brand:hover {
        text-decoration: none;
    }

    .navbar-brand > img {
        display: block;
    }

.navbar-divider {
    float: left;
    width: 1px;
    padding-top: .425rem;
    padding-bottom: .425rem;
    margin-right: 1rem;
    margin-left: 1rem;
    overflow: hidden;
}

    .navbar-divider::before {
        content: "\00a0";
    }

.navbar-toggler {
    padding: .5rem .75rem;
    font-size: 1.25rem;
    line-height: 1;
    background: 0 0;
    border: 1px solid transparent;
    border-radius: .25rem;
}

    .navbar-toggler:focus,
    .navbar-toggler:hover {
        text-decoration: none;
    }

.navbar-nav .nav-item {
    float: left;
}

.navbar-nav .nav-link {
    display: block;
    padding-top: .425rem;
    padding-bottom: .425rem;
}

    .navbar-nav .nav-link + .nav-link {
        margin-left: 1rem;
    }

.navbar-nav .nav-item + .nav-item {
    margin-left: 1rem;
}

.navbar-light .navbar-brand {
    color: rgba(0, 0, 0, 0.8);
}

    .navbar-light .navbar-brand:focus,
    .navbar-light .navbar-brand:hover {
        color: rgba(0, 0, 0, 0.8);
    }

.navbar-light .navbar-nav .nav-link {
    color: rgba(0, 0, 0, 0.3);
}

    .navbar-light .navbar-nav .nav-link:focus,
    .navbar-light .navbar-nav .nav-link:hover {
        color: rgba(0, 0, 0, 0.6);
    }

    .navbar-light .navbar-nav .active > .nav-link,
    .navbar-light .navbar-nav .active > .nav-link:focus,
    .navbar-light .navbar-nav .active > .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active,
    .navbar-light .navbar-nav .nav-link.active:focus,
    .navbar-light .navbar-nav .nav-link.active:hover,
    .navbar-light .navbar-nav .nav-link.open,
    .navbar-light .navbar-nav .nav-link.open:focus,
    .navbar-light .navbar-nav .nav-link.open:hover,
    .navbar-light .navbar-nav .open > .nav-link,
    .navbar-light .navbar-nav .open > .nav-link:focus,
    .navbar-light .navbar-nav .open > .nav-link:hover {
        color: rgba(0, 0, 0, 0.8);
    }

.navbar-light .navbar-divider {
    background-color: rgba(0, 0, 0, 0.075);
}

.navbar-dark .navbar-brand {
    color: #fff;
}

    .navbar-dark .navbar-brand:focus,
    .navbar-dark .navbar-brand:hover {
        color: #fff;
    }

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.5);
}

    .navbar-dark .navbar-nav .nav-link:focus,
    .navbar-dark .navbar-nav .nav-link:hover {
        color: rgba(255, 255, 255, 0.75);
    }

    .navbar-dark .navbar-nav .active > .nav-link,
    .navbar-dark .navbar-nav .active > .nav-link:focus,
    .navbar-dark .navbar-nav .active > .nav-link:hover,
    .navbar-dark .navbar-nav .nav-link.active,
    .navbar-dark .navbar-nav .nav-link.active:focus,
    .navbar-dark .navbar-nav .nav-link.active:hover,
    .navbar-dark .navbar-nav .nav-link.open,
    .navbar-dark .navbar-nav .nav-link.open:focus,
    .navbar-dark .navbar-nav .nav-link.open:hover,
    .navbar-dark .navbar-nav .open > .nav-link,
    .navbar-dark .navbar-nav .open > .nav-link:focus,
    .navbar-dark .navbar-nav .open > .nav-link:hover {
        color: #fff;
    }

.navbar-dark .navbar-divider {
    background-color: rgba(255, 255, 255, 0.075);
}

.navbar-toggleable-xs::after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 543px) {
    .navbar-toggleable-xs .navbar-nav .nav-item {
        float: none;
        margin-left: 0;
    }
}

@media (min-width: 544px) {
    .navbar-toggleable-xs {
        display: block !important;
    }
}

.navbar-toggleable-sm::after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 767px) {
    .navbar-toggleable-sm .navbar-nav .nav-item {
        float: none;
        margin-left: 0;
    }
}

@media (min-width: 768px) {
    .navbar-toggleable-sm {
        display: block !important;
    }
}

.navbar-toggleable-md::after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 991px) {
    .navbar-toggleable-md .navbar-nav .nav-item {
        float: none;
        margin-left: 0;
    }
}

@media (min-width: 992px) {
    .navbar-toggleable-md {
        display: block !important;
    }
}

.card {
    position: relative;
    display: block;
    margin-bottom: .75rem;
    background-color: #fff;
    border-radius: .25rem;
    border: 1px solid rgba(0, 0, 0, 0.125);
}

.card-block {
    padding: 1.25rem;
}

    .card-block::after {
        content: "";
        display: table;
        clear: both;
    }

.card-title {
    margin-bottom: .75rem;
}

.card-subtitle {
    margin-top: -.375rem;
    margin-bottom: 0;
}

.card-text:last-child {
    margin-bottom: 0;
}

.card-link:hover {
    text-decoration: none;
}

.card-link + .card-link {
    margin-left: 1.25rem;
}

.card > .list-group:first-child .list-group-item:first-child {
    border-top-right-radius: .25rem;
    border-top-left-radius: .25rem;
}

.card > .list-group:last-child .list-group-item:last-child {
    border-bottom-right-radius: .25rem;
    border-bottom-left-radius: .25rem;
}

.card-header {
    padding: .75rem 1.25rem;
    background-color: #f5f5f5;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

    .card-header::after {
        content: "";
        display: table;
        clear: both;
    }

    .card-header:first-child {
        border-radius: .25rem .25rem 0 0;
    }

.card-footer {
    padding: .75rem 1.25rem;
    background-color: #f5f5f5;
    border-top: 1px solid rgba(0, 0, 0, 0.125);
}

    .card-footer::after {
        content: "";
        display: table;
        clear: both;
    }

    .card-footer:last-child {
        border-radius: 0 0 .25rem .25rem;
    }

.card-header-tabs {
    margin-right: -.625rem;
    margin-bottom: -.75rem;
    margin-left: -.625rem;
    border-bottom: 0;
}

.card-header-pills {
    margin-right: -.625rem;
    margin-left: -.625rem;
}

.card-primary {
    background-color: #0275d8;
    border-color: #0275d8;
}

    .card-primary .card-footer,
    .card-primary .card-header {
        background-color: transparent;
    }

.card-success {
    background-color: #5cb85c;
    border-color: #5cb85c;
}

    .card-success .card-footer,
    .card-success .card-header {
        background-color: transparent;
    }

.card-info {
    background-color: #5bc0de;
    border-color: #5bc0de;
}

    .card-info .card-footer,
    .card-info .card-header {
        background-color: transparent;
    }

.card-warning {
    background-color: #f0ad4e;
    border-color: #f0ad4e;
}

    .card-warning .card-footer,
    .card-warning .card-header {
        background-color: transparent;
    }

.card-danger {
    background-color: #d9534f;
    border-color: #d9534f;
}

    .card-danger .card-footer,
    .card-danger .card-header {
        background-color: transparent;
    }

.card-outline-primary {
    background-color: transparent;
    border-color: #0275d8;
}

.card-outline-secondary {
    background-color: transparent;
    border-color: #ccc;
}

.card-outline-info {
    background-color: transparent;
    border-color: #5bc0de;
}

.card-outline-success {
    background-color: transparent;
    border-color: #5cb85c;
}

.card-outline-warning {
    background-color: transparent;
    border-color: #f0ad4e;
}

.card-outline-danger {
    background-color: transparent;
    border-color: #d9534f;
}

.card-inverse .card-footer,
.card-inverse .card-header {
    border-color: rgba(255, 255, 255, 0.2);
}

.card-inverse .card-blockquote,
.card-inverse .card-footer,
.card-inverse .card-header,
.card-inverse .card-title {
    color: #fff;
}

    .card-inverse .card-blockquote .blockquote-footer,
    .card-inverse .card-link,
    .card-inverse .card-subtitle,
    .card-inverse .card-text {
        color: rgba(255, 255, 255, 0.65);
    }

        .card-inverse .card-link:focus,
        .card-inverse .card-link:hover {
            color: #fff;
        }

.card-blockquote {
    padding: 0;
    margin-bottom: 0;
    border-left: 0;
}

.card-img {
    border-radius: .25rem;
}

.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.25rem;
}

.card-img-top {
    border-top-right-radius: .25rem;
    border-top-left-radius: .25rem;
}

.card-img-bottom {
    border-bottom-right-radius: .25rem;
    border-bottom-left-radius: .25rem;
}

@media (min-width: 544px) {
    .card-deck {
        display: table;
        width: 100%;
        margin-bottom: .75rem;
        table-layout: fixed;
        border-spacing: 1.25rem 0;
    }

        .card-deck .card {
            display: table-cell;
            margin-bottom: 0;
            vertical-align: top;
        }

    .card-deck-wrapper {
        margin-right: -1.25rem;
        margin-left: -1.25rem;
    }
}

@media (min-width: 544px) {
    .card-group {
        display: table;
        width: 100%;
        table-layout: fixed;
    }

        .card-group .card {
            display: table-cell;
            vertical-align: top;
        }

            .card-group .card + .card {
                margin-left: 0;
                border-left: 0;
            }

            .card-group .card:first-child {
                border-bottom-right-radius: 0;
                border-top-right-radius: 0;
            }

                .card-group .card:first-child .card-img-top {
                    border-top-right-radius: 0;
                }

                .card-group .card:first-child .card-img-bottom {
                    border-bottom-right-radius: 0;
                }

            .card-group .card:last-child {
                border-bottom-left-radius: 0;
                border-top-left-radius: 0;
            }

                .card-group .card:last-child .card-img-top {
                    border-top-left-radius: 0;
                }

                .card-group .card:last-child .card-img-bottom {
                    border-bottom-left-radius: 0;
                }

            .card-group .card:not(:first-child):not(:last-child) {
                border-radius: 0;
            }

                .card-group .card:not(:first-child):not(:last-child) .card-img-bottom,
                .card-group .card:not(:first-child):not(:last-child) .card-img-top {
                    border-radius: 0;
                }
}

@media (min-width: 544px) {
    .card-columns {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
        -webkit-column-gap: 1.25rem;
        -moz-column-gap: 1.25rem;
        column-gap: 1.25rem;
    }

        .card-columns .card {
            width: 100%;
        }
}

.breadcrumb {
    padding: .75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: #eceeef;
    border-radius: .25rem;
}

    .breadcrumb::after {
        content: "";
        display: table;
        clear: both;
    }

.breadcrumb-item {
    float: left;
}

    .breadcrumb-item + .breadcrumb-item::before {
        display: inline-block;
        padding-right: .5rem;
        padding-left: .5rem;
        color: #818a91;
        content: "/";
    }

    .breadcrumb-item + .breadcrumb-item:hover::before {
        text-decoration: underline;
    }

    .breadcrumb-item + .breadcrumb-item:hover::before {
        text-decoration: none;
    }

    .breadcrumb-item.active {
        color: #818a91;
    }

.pagination {
    display: inline-block;
    padding-left: 0;
    margin-top: 1rem;
    margin-bottom: 1rem;
    border-radius: .25rem;
}

.page-item {
    display: inline;
}

    .page-item:first-child .page-link {
        margin-left: 0;
        border-bottom-left-radius: .25rem;
        border-top-left-radius: .25rem;
    }

    .page-item:last-child .page-link {
        border-bottom-right-radius: .25rem;
        border-top-right-radius: .25rem;
    }

    .page-item.active .page-link,
    .page-item.active .page-link:focus,
    .page-item.active .page-link:hover {
        z-index: 2;
        color: #fff;
        cursor: default;
        background-color: #0275d8;
        border-color: #0275d8;
    }

    .page-item.disabled .page-link,
    .page-item.disabled .page-link:focus,
    .page-item.disabled .page-link:hover {
        color: #818a91;
        pointer-events: none;
        cursor: not-allowed;
        background-color: #fff;
        border-color: #ddd;
    }

.page-link {
    position: relative;
    float: left;
    padding: .5rem .75rem;
    margin-left: -1px;
    color: #0275d8;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}

    .page-link:focus,
    .page-link:hover {
        color: #014c8c;
        background-color: #eceeef;
        border-color: #ddd;
    }

.pagination-lg .page-link {
    padding: .75rem 1.5rem;
    font-size: 1.25rem;
}

.pagination-lg .page-item:first-child .page-link {
    border-bottom-left-radius: .3rem;
    border-top-left-radius: .3rem;
}

.pagination-lg .page-item:last-child .page-link {
    border-bottom-right-radius: .3rem;
    border-top-right-radius: .3rem;
}

.pagination-sm .page-link {
    padding: .275rem .75rem;
    font-size: .875rem;
}

.pagination-sm .page-item:first-child .page-link {
    border-bottom-left-radius: .2rem;
    border-top-left-radius: .2rem;
}

.pagination-sm .page-item:last-child .page-link {
    border-bottom-right-radius: .2rem;
    border-top-right-radius: .2rem;
}

.tag {
    display: inline-block;
    padding: .25em .4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
}

    .tag:empty {
        display: none;
    }

.btn .tag {
    position: relative;
    top: -1px;
}

a.tag:focus,
a.tag:hover {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.tag-pill {
    padding-right: .6em;
    padding-left: .6em;
    border-radius: 10rem;
}

.tag-default {
    background-color: #818a91;
}

    .tag-default[href]:focus,
    .tag-default[href]:hover {
        background-color: #687077;
    }

.tag-primary {
    background-color: #0275d8;
}

    .tag-primary[href]:focus,
    .tag-primary[href]:hover {
        background-color: #025aa5;
    }

.tag-success {
    background-color: #5cb85c;
}

    .tag-success[href]:focus,
    .tag-success[href]:hover {
        background-color: #449d44;
    }

.tag-info {
    background-color: #5bc0de;
}

    .tag-info[href]:focus,
    .tag-info[href]:hover {
        background-color: #31b0d5;
    }

.tag-warning {
    background-color: #f0ad4e;
}

    .tag-warning[href]:focus,
    .tag-warning[href]:hover {
        background-color: #ec971f;
    }

.tag-danger {
    background-color: #d9534f;
}

    .tag-danger[href]:focus,
    .tag-danger[href]:hover {
        background-color: #c9302c;
    }

.jumbotron {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    background-color: #eceeef;
    border-radius: .3rem;
}

@media (min-width: 544px) {
    .jumbotron {
        padding: 4rem 2rem;
    }
}

.jumbotron-hr {
    border-top-color: #d0d5d8;
}

.jumbotron-fluid {
    padding-right: 0;
    padding-left: 0;
    border-radius: 0;
}

.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}

.alert-heading {
    color: inherit;
}

.alert-link {
    font-weight: 700;
}

.alert-dismissible {
    padding-right: 2rem;
}

    .alert-dismissible .close {
        position: relative;
        top: -.125rem;
        right: -1rem;
        color: inherit;
    }

.alert-success {
    background-color: #dff0d8;
    border-color: #d0e9c6;
    color: #3c763d;
}

    .alert-success hr {
        border-top-color: #c1e2b3;
    }

    .alert-success .alert-link {
        color: #2b542c;
    }

.alert-info {
    background-color: #d9edf7;
    border-color: #bcdff1;
    color: #31708f;
}

    .alert-info hr {
        border-top-color: #a6d5ec;
    }

    .alert-info .alert-link {
        color: #245269;
    }

.alert-warning {
    background-color: #fcf8e3;
    border-color: #faf2cc;
    color: #8a6d3b;
}

    .alert-warning hr {
        border-top-color: #f7ecb5;
    }

    .alert-warning .alert-link {
        color: #66512c;
    }

.alert-danger {
    background-color: #f2dede;
    border-color: #ebcccc;
    color: #a94442;
}

    .alert-danger hr {
        border-top-color: #e4b9b9;
    }

    .alert-danger .alert-link {
        color: #843534;
    }

@-webkit-keyframes progress-bar-stripes {
    from {
        background-position: 1rem 0;
    }

    to {
        background-position: 0 0;
    }
}

@-o-keyframes progress-bar-stripes {
    from {
        background-position: 1rem 0;
    }

    to {
        background-position: 0 0;
    }
}

@keyframes progress-bar-stripes {
    from {
        background-position: 1rem 0;
    }

    to {
        background-position: 0 0;
    }
}

.progress {
    display: block;
    width: 100%;
    height: 1rem;
    margin-bottom: 1rem;
}

    .progress[value] {
        background-color: #eee;
        border: 0;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border-radius: .25rem;
    }

        .progress[value]::-ms-fill {
            background-color: #0074d9;
            border: 0;
        }

        .progress[value]::-moz-progress-bar {
            background-color: #0074d9;
            border-bottom-left-radius: .25rem;
            border-top-left-radius: .25rem;
        }

        .progress[value]::-webkit-progress-value {
            background-color: #0074d9;
            border-bottom-left-radius: .25rem;
            border-top-left-radius: .25rem;
        }

    .progress[value="100"]::-moz-progress-bar {
        border-bottom-right-radius: .25rem;
        border-top-right-radius: .25rem;
    }

    .progress[value="100"]::-webkit-progress-value {
        border-bottom-right-radius: .25rem;
        border-top-right-radius: .25rem;
    }

    .progress[value]::-webkit-progress-bar {
        background-color: #eee;
        border-radius: .25rem;
    }

    .progress[value],
    base::-moz-progress-bar {
        background-color: #eee;
        border-radius: .25rem;
    }

@media screen and (min-width: 0\0) {
    .progress {
        background-color: #eee;
        border-radius: .25rem;
    }

    .progress-bar {
        display: inline-block;
        height: 1rem;
        text-indent: -999rem;
        background-color: #0074d9;
        border-bottom-left-radius: .25rem;
        border-top-left-radius: .25rem;
    }

    .progress[width="100%"] {
        border-bottom-right-radius: .25rem;
        border-top-right-radius: .25rem;
    }
}

.progress-striped[value]::-webkit-progress-value {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    -webkit-background-size: 1rem 1rem;
    background-size: 1rem 1rem;
}

.progress-striped[value]::-moz-progress-bar {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 1rem 1rem;
}

.progress-striped[value]::-ms-fill {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 1rem 1rem;
}

@media screen and (min-width: 0\0) {
    .progress-bar-striped {
        background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
        background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
        background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
        -webkit-background-size: 1rem 1rem;
        background-size: 1rem 1rem;
    }
}

.progress-animated[value]::-webkit-progress-value {
    -webkit-animation: progress-bar-stripes 2s linear infinite;
    animation: progress-bar-stripes 2s linear infinite;
}

.progress-animated[value]::-moz-progress-bar {
    animation: progress-bar-stripes 2s linear infinite;
}

@media screen and (min-width: 0\0) {
    .progress-animated .progress-bar-striped {
        -webkit-animation: progress-bar-stripes 2s linear infinite;
        -o-animation: progress-bar-stripes 2s linear infinite;
        animation: progress-bar-stripes 2s linear infinite;
    }
}

.progress-success[value]::-webkit-progress-value {
    background-color: #5cb85c;
}

.progress-success[value]::-moz-progress-bar {
    background-color: #5cb85c;
}

.progress-success[value]::-ms-fill {
    background-color: #5cb85c;
}

@media screen and (min-width: 0\0) {
    .progress-success .progress-bar {
        background-color: #5cb85c;
    }
}

.progress-info[value]::-webkit-progress-value {
    background-color: #5bc0de;
}

.progress-info[value]::-moz-progress-bar {
    background-color: #5bc0de;
}

.progress-info[value]::-ms-fill {
    background-color: #5bc0de;
}

@media screen and (min-width: 0\0) {
    .progress-info .progress-bar {
        background-color: #5bc0de;
    }
}

.progress-warning[value]::-webkit-progress-value {
    background-color: #f0ad4e;
}

.progress-warning[value]::-moz-progress-bar {
    background-color: #f0ad4e;
}

.progress-warning[value]::-ms-fill {
    background-color: #f0ad4e;
}

@media screen and (min-width: 0\0) {
    .progress-warning .progress-bar {
        background-color: #f0ad4e;
    }
}

.progress-danger[value]::-webkit-progress-value {
    background-color: #d9534f;
}

.progress-danger[value]::-moz-progress-bar {
    background-color: #d9534f;
}

.progress-danger[value]::-ms-fill {
    background-color: #d9534f;
}

@media screen and (min-width: 0\0) {
    .progress-danger .progress-bar {
        background-color: #d9534f;
    }
}

.media,
.media-body {
    overflow: hidden;
}

.media-body {
    width: 10000px;
}

.media-body,
.media-left,
.media-right {
    display: table-cell;
    vertical-align: top;
}

.media-middle {
    vertical-align: middle;
}

.media-bottom {
    vertical-align: bottom;
}

.media-object {
    display: block;
}

    .media-object.img-thumbnail {
        max-width: none;
    }

.media-right {
    padding-left: 10px;
}

.media-left {
    padding-right: 10px;
}

.media-heading {
    margin-top: 0;
    margin-bottom: 5px;
}

.media-list {
    padding-left: 0;
    list-style: none;
}

.list-group {
    padding-left: 0;
    margin-bottom: 0;
}

.list-group-item {
    position: relative;
    display: block;
    padding: .75rem 1.25rem;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid #ddd;
}

    .list-group-item:first-child {
        border-top-right-radius: .25rem;
        border-top-left-radius: .25rem;
    }

    .list-group-item:last-child {
        margin-bottom: 0;
        border-bottom-right-radius: .25rem;
        border-bottom-left-radius: .25rem;
    }

    .list-group-item.disabled,
    .list-group-item.disabled:focus,
    .list-group-item.disabled:hover {
        color: #818a91;
        cursor: not-allowed;
        background-color: #eceeef;
    }

        .list-group-item.disabled .list-group-item-heading,
        .list-group-item.disabled:focus .list-group-item-heading,
        .list-group-item.disabled:hover .list-group-item-heading {
            color: inherit;
        }

        .list-group-item.disabled .list-group-item-text,
        .list-group-item.disabled:focus .list-group-item-text,
        .list-group-item.disabled:hover .list-group-item-text {
            color: #818a91;
        }

    .list-group-item.active,
    .list-group-item.active:focus,
    .list-group-item.active:hover {
        z-index: 2;
        color: #fff;
        text-decoration: none;
        background-color: #0275d8;
        border-color: #0275d8;
    }

        .list-group-item.active .list-group-item-heading,
        .list-group-item.active .list-group-item-heading > .small,
        .list-group-item.active .list-group-item-heading > small,
        .list-group-item.active:focus .list-group-item-heading,
        .list-group-item.active:focus .list-group-item-heading > .small,
        .list-group-item.active:focus .list-group-item-heading > small,
        .list-group-item.active:hover .list-group-item-heading,
        .list-group-item.active:hover .list-group-item-heading > .small,
        .list-group-item.active:hover .list-group-item-heading > small {
            color: inherit;
        }

        .list-group-item.active .list-group-item-text,
        .list-group-item.active:focus .list-group-item-text,
        .list-group-item.active:hover .list-group-item-text {
            color: #a8d6fe;
        }

.list-group-flush .list-group-item {
    border-radius: 0;
}

.list-group-item-action {
    width: 100%;
    color: #555;
    text-align: inherit;
}

    .list-group-item-action .list-group-item-heading {
        color: #333;
    }

    .list-group-item-action:focus,
    .list-group-item-action:hover {
        color: #555;
        text-decoration: none;
        background-color: #f5f5f5;
    }

.list-group-item-success {
    color: #3c763d;
    background-color: #dff0d8;
}

a.list-group-item-success,
button.list-group-item-success {
    color: #3c763d;
}

    a.list-group-item-success .list-group-item-heading,
    button.list-group-item-success .list-group-item-heading {
        color: inherit;
    }

    a.list-group-item-success:focus,
    a.list-group-item-success:hover,
    button.list-group-item-success:focus,
    button.list-group-item-success:hover {
        color: #3c763d;
        background-color: #d0e9c6;
    }

    a.list-group-item-success.active,
    a.list-group-item-success.active:focus,
    a.list-group-item-success.active:hover,
    button.list-group-item-success.active,
    button.list-group-item-success.active:focus,
    button.list-group-item-success.active:hover {
        color: #fff;
        background-color: #3c763d;
        border-color: #3c763d;
    }

.list-group-item-info {
    color: #31708f;
    background-color: #d9edf7;
}

a.list-group-item-info,
button.list-group-item-info {
    color: #31708f;
}

    a.list-group-item-info .list-group-item-heading,
    button.list-group-item-info .list-group-item-heading {
        color: inherit;
    }

    a.list-group-item-info:focus,
    a.list-group-item-info:hover,
    button.list-group-item-info:focus,
    button.list-group-item-info:hover {
        color: #31708f;
        background-color: #c4e3f3;
    }

    a.list-group-item-info.active,
    a.list-group-item-info.active:focus,
    a.list-group-item-info.active:hover,
    button.list-group-item-info.active,
    button.list-group-item-info.active:focus,
    button.list-group-item-info.active:hover {
        color: #fff;
        background-color: #31708f;
        border-color: #31708f;
    }

.list-group-item-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
}

a.list-group-item-warning,
button.list-group-item-warning {
    color: #8a6d3b;
}

    a.list-group-item-warning .list-group-item-heading,
    button.list-group-item-warning .list-group-item-heading {
        color: inherit;
    }

    a.list-group-item-warning:focus,
    a.list-group-item-warning:hover,
    button.list-group-item-warning:focus,
    button.list-group-item-warning:hover {
        color: #8a6d3b;
        background-color: #faf2cc;
    }

    a.list-group-item-warning.active,
    a.list-group-item-warning.active:focus,
    a.list-group-item-warning.active:hover,
    button.list-group-item-warning.active,
    button.list-group-item-warning.active:focus,
    button.list-group-item-warning.active:hover {
        color: #fff;
        background-color: #8a6d3b;
        border-color: #8a6d3b;
    }

.list-group-item-danger {
    color: #a94442;
    background-color: #f2dede;
}

a.list-group-item-danger,
button.list-group-item-danger {
    color: #a94442;
}

    a.list-group-item-danger .list-group-item-heading,
    button.list-group-item-danger .list-group-item-heading {
        color: inherit;
    }

    a.list-group-item-danger:focus,
    a.list-group-item-danger:hover,
    button.list-group-item-danger:focus,
    button.list-group-item-danger:hover {
        color: #a94442;
        background-color: #ebcccc;
    }

    a.list-group-item-danger.active,
    a.list-group-item-danger.active:focus,
    a.list-group-item-danger.active:hover,
    button.list-group-item-danger.active,
    button.list-group-item-danger.active:focus,
    button.list-group-item-danger.active:hover {
        color: #fff;
        background-color: #a94442;
        border-color: #a94442;
    }

.list-group-item-heading {
    margin-top: 0;
    margin-bottom: 5px;
}

.list-group-item-text {
    margin-bottom: 0;
    line-height: 1.3;
}

.embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
}

    .embed-responsive .embed-responsive-item,
    .embed-responsive embed,
    .embed-responsive iframe,
    .embed-responsive object,
    .embed-responsive video {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

.embed-responsive-21by9 {
    padding-bottom: 42.857143%;
}

.embed-responsive-16by9 {
    padding-bottom: 56.25%;
}

.embed-responsive-4by3 {
    padding-bottom: 75%;
}

.embed-responsive-1by1 {
    padding-bottom: 100%;
}

.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .2;
}

    .close:focus,
    .close:hover {
        color: #000;
        text-decoration: none;
        cursor: pointer;
        opacity: .5;
    }

button.close {
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
    -webkit-appearance: none;
}

.modal-open {
    overflow: hidden;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    outline: 0;
    -webkit-overflow-scrolling: touch;
}

    .modal.fade .modal-dialog {
        -webkit-transition: -webkit-transform .3s ease-out;
        transition: -webkit-transform .3s ease-out;
        -o-transition: -o-transform .3s ease-out;
        transition: transform .3s ease-out;
        transition: transform .3s ease-out, -webkit-transform .3s ease-out, -o-transform .3s ease-out;
        -webkit-transform: translate(0, -25%);
        -ms-transform: translate(0, -25%);
        -o-transform: translate(0, -25%);
        transform: translate(0, -25%);
    }

    .modal.in .modal-dialog {
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0);
    }

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
}

.modal-content {
    position: relative;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: .3rem;
    outline: 0;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
}

    .modal-backdrop.fade {
        opacity: 0;
    }

    .modal-backdrop.in {
        opacity: .5;
    }

.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
}

    .modal-header::after {
        content: "";
        display: table;
        clear: both;
    }

    .modal-header .close {
        margin-top: -2px;
    }

.modal-title {
    margin: 0;
    line-height: 1.5;
}

.modal-body {
    position: relative;
    padding: 15px;
}

.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}

    .modal-footer::after {
        content: "";
        display: table;
        clear: both;
    }

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

@media (min-width: 544px) {
    .modal-dialog {
        max-width: 600px;
        margin: 4% auto;
    }

    .modal-sm {
        max-width: 300px;
    }
}

@media (min-width: 992px) {
    .modal-lg {
        max-width: 900px;
    }
}

.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-style: normal;
    font-weight: 400;
    letter-spacing: normal;
    line-break: auto;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    font-size: .875rem;
    word-wrap: break-word;
    opacity: 0;
}

    .tooltip.in {
        opacity: .9;
    }

    .tooltip.bs-tether-element-attached-bottom,
    .tooltip.tooltip-top {
        padding: 5px 0;
        margin-top: -3px;
    }

        .tooltip.bs-tether-element-attached-bottom .tooltip-arrow,
        .tooltip.tooltip-top .tooltip-arrow {
            bottom: 0;
            left: 50%;
            margin-left: -5px;
            border-width: 5px 5px 0;
            border-top-color: #000;
        }

    .tooltip.bs-tether-element-attached-left,
    .tooltip.tooltip-right {
        padding: 0 5px;
        margin-left: 3px;
    }

        .tooltip.bs-tether-element-attached-left .tooltip-arrow,
        .tooltip.tooltip-right .tooltip-arrow {
            top: 50%;
            left: 0;
            margin-top: -5px;
            border-width: 5px 5px 5px 0;
            border-right-color: #000;
        }

    .tooltip.bs-tether-element-attached-top,
    .tooltip.tooltip-bottom {
        padding: 5px 0;
        margin-top: 3px;
    }

        .tooltip.bs-tether-element-attached-top .tooltip-arrow,
        .tooltip.tooltip-bottom .tooltip-arrow {
            top: 0;
            left: 50%;
            margin-left: -5px;
            border-width: 0 5px 5px;
            border-bottom-color: #000;
        }

    .tooltip.bs-tether-element-attached-right,
    .tooltip.tooltip-left {
        padding: 0 5px;
        margin-left: -3px;
    }

        .tooltip.bs-tether-element-attached-right .tooltip-arrow,
        .tooltip.tooltip-left .tooltip-arrow {
            top: 50%;
            right: 0;
            margin-top: -5px;
            border-width: 5px 0 5px 5px;
            border-left-color: #000;
        }

.tooltip-inner {
    max-width: 200px;
    padding: 3px 8px;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: .25rem;
}

.tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}

.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1060;
    display: block;
    max-width: 276px;
    padding: 1px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-style: normal;
    font-weight: 400;
    letter-spacing: normal;
    line-break: auto;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    font-size: .875rem;
    word-wrap: break-word;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: .3rem;
}

    .popover.bs-tether-element-attached-bottom,
    .popover.popover-top {
        margin-top: -10px;
    }

        .popover.bs-tether-element-attached-bottom .popover-arrow,
        .popover.popover-top .popover-arrow {
            bottom: -11px;
            left: 50%;
            margin-left: -11px;
            border-top-color: rgba(0, 0, 0, 0.25);
            border-bottom-width: 0;
        }

            .popover.bs-tether-element-attached-bottom .popover-arrow::after,
            .popover.popover-top .popover-arrow::after {
                bottom: 1px;
                margin-left: -10px;
                content: "";
                border-top-color: #fff;
                border-bottom-width: 0;
            }

    .popover.bs-tether-element-attached-left,
    .popover.popover-right {
        margin-left: 10px;
    }

        .popover.bs-tether-element-attached-left .popover-arrow,
        .popover.popover-right .popover-arrow {
            top: 50%;
            left: -11px;
            margin-top: -11px;
            border-right-color: rgba(0, 0, 0, 0.25);
            border-left-width: 0;
        }

            .popover.bs-tether-element-attached-left .popover-arrow::after,
            .popover.popover-right .popover-arrow::after {
                bottom: -10px;
                left: 1px;
                content: "";
                border-right-color: #fff;
                border-left-width: 0;
            }

    .popover.bs-tether-element-attached-top,
    .popover.popover-bottom {
        margin-top: 10px;
    }

        .popover.bs-tether-element-attached-top .popover-arrow,
        .popover.popover-bottom .popover-arrow {
            top: -11px;
            left: 50%;
            margin-left: -11px;
            border-top-width: 0;
            border-bottom-color: rgba(0, 0, 0, 0.25);
        }

            .popover.bs-tether-element-attached-top .popover-arrow::after,
            .popover.popover-bottom .popover-arrow::after {
                top: 1px;
                margin-left: -10px;
                content: "";
                border-top-width: 0;
                border-bottom-color: #fff;
            }

    .popover.bs-tether-element-attached-right,
    .popover.popover-left {
        margin-left: -10px;
    }

        .popover.bs-tether-element-attached-right .popover-arrow,
        .popover.popover-left .popover-arrow {
            top: 50%;
            right: -11px;
            margin-top: -11px;
            border-right-width: 0;
            border-left-color: rgba(0, 0, 0, 0.25);
        }

            .popover.bs-tether-element-attached-right .popover-arrow::after,
            .popover.popover-left .popover-arrow::after {
                right: 1px;
                bottom: -10px;
                content: "";
                border-right-width: 0;
                border-left-color: #fff;
            }

.popover-title {
    padding: 8px 14px;
    margin: 0;
    font-size: 1rem;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-radius: .2375rem .2375rem 0 0;
}

    .popover-title:empty {
        display: none;
    }

.popover-content {
    padding: 9px 14px;
}

.popover-arrow,
.popover-arrow::after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}

.popover-arrow {
    border-width: 11px;
}

    .popover-arrow::after {
        content: "";
        border-width: 10px;
    }

.carousel {
    position: relative;
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

    .carousel-inner > .carousel-item {
        position: relative;
        display: none;
        -webkit-transition: .6s ease-in-out left;
        -o-transition: .6s ease-in-out left;
        transition: .6s ease-in-out left;
    }

        .carousel-inner > .carousel-item > a > img,
        .carousel-inner > .carousel-item > img {
            line-height: 1;
        }

@media all and (transform-3d), (-webkit-transform-3d) {
    .carousel-inner > .carousel-item {
        -webkit-transition: -webkit-transform .6s ease-in-out;
        transition: -webkit-transform .6s ease-in-out;
        -o-transition: -o-transform .6s ease-in-out;
        transition: transform .6s ease-in-out;
        transition: transform .6s ease-in-out, -webkit-transform .6s ease-in-out, -o-transform .6s ease-in-out;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        perspective: 1000px;
    }

        .carousel-inner > .carousel-item.active.right,
        .carousel-inner > .carousel-item.next {
            left: 0;
            -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
        }

        .carousel-inner > .carousel-item.active.left,
        .carousel-inner > .carousel-item.prev {
            left: 0;
            -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
        }

            .carousel-inner > .carousel-item.active,
            .carousel-inner > .carousel-item.next.left,
            .carousel-inner > .carousel-item.prev.right {
                left: 0;
                -webkit-transform: translate3d(0, 0, 0);
                transform: translate3d(0, 0, 0);
            }
}

.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
    display: block;
}

.carousel-inner > .active {
    left: 0;
}

.carousel-inner > .next,
.carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%;
}

.carousel-inner > .next {
    left: 100%;
}

.carousel-inner > .prev {
    left: -100%;
}

    .carousel-inner > .next.left,
    .carousel-inner > .prev.right {
        left: 0;
    }

.carousel-inner > .active.left {
    left: -100%;
}

.carousel-inner > .active.right {
    left: 100%;
}

.carousel-control {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 15%;
    font-size: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    opacity: .5;
}

    .carousel-control.left {
        background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
        background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
        background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
        background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
        background-repeat: repeat-x;
        filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
    }

    .carousel-control.right {
        right: 0;
        left: auto;
        background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
        background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
        background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
        background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
        background-repeat: repeat-x;
        filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
    }

    .carousel-control:focus,
    .carousel-control:hover {
        color: #fff;
        text-decoration: none;
        outline: 0;
        opacity: .9;
    }

    .carousel-control .icon-next,
    .carousel-control .icon-prev {
        position: absolute;
        top: 50%;
        z-index: 5;
        display: inline-block;
        width: 20px;
        height: 20px;
        margin-top: -10px;
        font-family: serif;
        line-height: 1;
    }

    .carousel-control .icon-prev {
        left: 50%;
        margin-left: -10px;
    }

    .carousel-control .icon-next {
        right: 50%;
        margin-right: -10px;
    }

    .carousel-control .icon-prev::before {
        content: "\2039";
    }

    .carousel-control .icon-next::before {
        content: "\203a";
    }

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 15;
    width: 60%;
    padding-left: 0;
    margin-left: -30%;
    text-align: center;
    list-style: none;
}

    .carousel-indicators li {
        display: inline-block;
        width: 10px;
        height: 10px;
        margin: 1px;
        text-indent: -999px;
        cursor: pointer;
        background-color: transparent;
        border: 1px solid #fff;
        border-radius: 10px;
    }

    .carousel-indicators .active {
        width: 12px;
        height: 12px;
        margin: 0;
        background-color: #fff;
    }

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

    .carousel-caption .btn {
        text-shadow: none;
    }

@media (min-width: 544px) {
    .carousel-control .icon-next,
    .carousel-control .icon-prev {
        width: 30px;
        height: 30px;
        margin-top: -15px;
        font-size: 30px;
    }

    .carousel-control .icon-prev {
        margin-left: -15px;
    }

    .carousel-control .icon-next {
        margin-right: -15px;
    }

    .carousel-caption {
        right: 20%;
        left: 20%;
        padding-bottom: 30px;
    }

    .carousel-indicators {
        bottom: 20px;
    }
}

.bg-faded {
    background-color: #f7f7f9;
}

.bg-primary {
    color: #fff !important;
    background-color: #0275d8 !important;
}

a.bg-primary:focus,
a.bg-primary:hover {
    background-color: #025aa5 !important;
}

.bg-success {
    color: #fff !important;
    background-color: #5cb85c !important;
}

a.bg-success:focus,
a.bg-success:hover {
    background-color: #449d44 !important;
}

.bg-info {
    color: #fff !important;
    background-color: #5bc0de !important;
}

a.bg-info:focus,
a.bg-info:hover {
    background-color: #31b0d5 !important;
}

.bg-warning {
    color: #fff !important;
    background-color: #f0ad4e !important;
}

a.bg-warning:focus,
a.bg-warning:hover {
    background-color: #ec971f !important;
}

.bg-danger {
    color: #fff !important;
    background-color: #d9534f !important;
}

a.bg-danger:focus,
a.bg-danger:hover {
    background-color: #c9302c !important;
}

.bg-inverse {
    color: #fff !important;
    background-color: #373a3c !important;
}

a.bg-inverse:focus,
a.bg-inverse:hover {
    background-color: #1f2021 !important;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.d-block {
    display: block !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-inline {
    display: inline !important;
}

.pull-xs-left {
    float: left !important;
}

.pull-xs-right {
    float: right !important;
}

.pull-xs-none {
    float: none !important;
}

@media (min-width: 544px) {
    .pull-sm-left {
        float: left !important;
    }

    .pull-sm-right {
        float: right !important;
    }

    .pull-sm-none {
        float: none !important;
    }
}

@media (min-width: 768px) {
    .pull-md-left {
        float: left !important;
    }

    .pull-md-right {
        float: right !important;
    }

    .pull-md-none {
        float: none !important;
    }
}

@media (min-width: 992px) {
    .pull-lg-left {
        float: left !important;
    }

    .pull-lg-right {
        float: right !important;
    }

    .pull-lg-none {
        float: none !important;
    }
}

@media (min-width: 1200px) {
    .pull-xl-left {
        float: left !important;
    }

    .pull-xl-right {
        float: right !important;
    }

    .pull-xl-none {
        float: none !important;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
}

.w-100 {
    width: 100% !important;
}

.m-x-auto {
    margin-right: auto !important;
    margin-left: auto !important;
}

.m-a-0 {
    margin: 0 0 !important;
}

.m-t-0 {
    margin-top: 0 !important;
}

.m-r-0 {
    margin-right: 0 !important;
}

.m-b-0 {
    margin-bottom: 0 !important;
}

.m-l-0 {
    margin-left: 0 !important;
}

.m-x-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.m-y-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.m-a-1 {
    margin: 0 0 !important;
}

.m-t-1 {
    margin-top: 1rem !important;
}

.m-r-1 {
    margin-right: 1rem !important;
}

.m-b-1 {
    margin-bottom: 1rem !important;
}

.m-l-1 {
    margin-left: 1rem !important;
}

.m-x-1 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
}

.m-y-1 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}

.m-a-2 {
    margin: 1.5rem 1.5rem !important;
}

.m-t-2 {
    margin-top: 1.5rem !important;
}

.m-r-2 {
    margin-right: 1.5rem !important;
}

.m-b-2 {
    margin-bottom: 1.5rem !important;
}

.m-l-2 {
    margin-left: 1.5rem !important;
}

.m-x-2 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
}

.m-y-2 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.m-a-3 {
    margin: 3rem 3rem !important;
}

.m-t-3 {
    margin-top: 3rem !important;
}

.m-r-3 {
    margin-right: 3rem !important;
}

.m-b-3 {
    margin-bottom: 3rem !important;
}

.m-l-3 {
    margin-left: 3rem !important;
}

.m-x-3 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
}

.m-y-3 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

.p-a-0 {
    padding: 0 0 !important;
}

.p-t-0 {
    padding-top: 0 !important;
}

.p-r-0 {
    padding-right: 0 !important;
}

.p-b-0 {
    padding-bottom: 0 !important;
}

.p-l-0 {
    padding-left: 0 !important;
}

.p-x-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.p-y-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.p-a-1 {
    padding: 1rem 1rem !important;
}

.p-t-1 {
    padding-top: 1rem !important;
}

.p-r-1 {
    padding-right: 1rem !important;
}

.p-b-1 {
    padding-bottom: 1rem !important;
}

.p-l-1 {
    padding-left: 1rem !important;
}

.p-x-1 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
}

.p-y-1 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.p-a-2 {
    padding: 1.5rem 1.5rem !important;
}

.p-t-2 {
    padding-top: 1.5rem !important;
}

.p-r-2 {
    padding-right: 1.5rem !important;
}

.p-b-2 {
    padding-bottom: 1.5rem !important;
}

.p-l-2 {
    padding-left: 1.5rem !important;
}

.p-x-2 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
}

.p-y-2 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

.p-a-3 {
    padding: 3rem 3rem !important;
}

.p-t-3 {
    padding-top: 3rem !important;
}

.p-r-3 {
    padding-right: 3rem !important;
}

.p-b-3 {
    padding-bottom: 3rem !important;
}

.p-l-3 {
    padding-left: 3rem !important;
}

.p-x-3 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
}

.p-y-3 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.pos-f-t {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.text-justify {
    text-align: justify !important;
}

.text-nowrap {
    white-space: nowrap !important;
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.text-xs-left {
    text-align: left !important;
}

.text-xs-right {
    text-align: right !important;
}

.text-xs-center {
    text-align: center !important;
}

@media (min-width: 544px) {
    .text-sm-left {
        text-align: left !important;
    }

    .text-sm-right {
        text-align: right !important;
    }

    .text-sm-center {
        text-align: center !important;
    }
}

@media (min-width: 768px) {
    .text-md-left {
        text-align: left !important;
    }

    .text-md-right {
        text-align: right !important;
    }

    .text-md-center {
        text-align: center !important;
    }
}

@media (min-width: 992px) {
    .text-lg-left {
        text-align: left !important;
    }

    .text-lg-right {
        text-align: right !important;
    }

    .text-lg-center {
        text-align: center !important;
    }
}

@media (min-width: 1200px) {
    .text-xl-left {
        text-align: left !important;
    }

    .text-xl-right {
        text-align: right !important;
    }

    .text-xl-center {
        text-align: center !important;
    }
}

.text-lowercase {
    text-transform: lowercase !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.text-capitalize {
    text-transform: capitalize !important;
}

.font-weight-normal {
    font-weight: 400;
}

.font-weight-bold {
    font-weight: 700;
}

.font-italic {
    font-style: italic;
}

.text-muted {
    color: #818a91 !important;
}

a.text-muted:focus,
a.text-muted:hover {
    color: #687077 !important;
}

.text-primary {
    color: #0275d8 !important;
}

a.text-primary:focus,
a.text-primary:hover {
    color: #025aa5 !important;
}

.text-success {
    color: #5cb85c !important;
}

a.text-success:focus,
a.text-success:hover {
    color: #449d44 !important;
}

.text-info {
    color: #5bc0de !important;
}

a.text-info:focus,
a.text-info:hover {
    color: #31b0d5 !important;
}

.text-warning {
    color: #f0ad4e !important;
}

a.text-warning:focus,
a.text-warning:hover {
    color: #ec971f !important;
}

.text-danger {
    color: #d9534f !important;
}

a.text-danger:focus,
a.text-danger:hover {
    color: #c9302c !important;
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.invisible {
    visibility: hidden !important;
}

.hidden-xs-up {
    display: none !important;
}

@media (max-width: 543px) {
    .hidden-xs-down {
        display: none !important;
    }
}

@media (min-width: 544px) {
    .hidden-sm-up {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .hidden-sm-down {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .hidden-md-up {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .hidden-md-down {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .hidden-lg-up {
        display: none !important;
    }
}

@media (max-width: 1199px) {
    .hidden-lg-down {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .hidden-xl-up {
        display: none !important;
    }
}

.hidden-xl-down {
    display: none !important;
}

.visible-print-block {
    display: none !important;
}

@media print {
    .visible-print-block {
        display: block !important;
    }
}

.visible-print-inline {
    display: none !important;
}

@media print {
    .visible-print-inline {
        display: inline !important;
    }
}

.visible-print-inline-block {
    display: none !important;
}

@media print {
    .visible-print-inline-block {
        display: inline-block !important;
    }
}

@media print {
    .hidden-print {
        display: none !important;
    }
}

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */

@font-face {
    font-family: 'FontAwesome';
    src: url("../fonts/fontawesome/fontawesome-webfont.eot?v=4.7.0");
    src: url("../fonts/fontawesome/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../fonts/fontawesome/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../fonts/fontawesome/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../fonts/fontawesome/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("../fonts/fontawesome/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
    font-weight: normal;
    font-style: normal;
}
/*@font-face {
    font-family: "FontAwesome";
    font-weight: normal;
    font-style: normal;
    src: url("https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/fonts/fontawesome-webfont.eot?v=4.7.0");
    src: url("https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
}*/

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fa-lg {
    font-size: 1.33333333em;
    line-height: .75em;
    vertical-align: -15%;
}

.fa-2x {
    font-size: 2em;
}

.fa-3x {
    font-size: 3em;
}

.fa-4x {
    font-size: 4em;
}

.fa-5x {
    font-size: 5em;
}

.fa-fw {
    width: 1.28571429em;
    text-align: center;
}

.fa-ul {
    padding-left: 0;
    margin-left: 2.14285714em;
    list-style-type: none;
}

    .fa-ul > li {
        position: relative;
    }

.fa-li {
    position: absolute;
    left: -2.14285714em;
    width: 2.14285714em;
    top: .14285714em;
    text-align: center;
}

    .fa-li.fa-lg {
        left: -1.85714286em;
    }

.fa-border {
    padding: .2em .25em .15em;
    border: solid .08em #eee;
    border-radius: .1em;
}

.fa-pull-left {
    float: left;
}

.fa-pull-right {
    float: right;
}

.fa.fa-pull-left {
    margin-right: .3em;
}

.fa.fa-pull-right {
    margin-left: .3em;
}

.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

.fa.pull-left {
    margin-right: .3em;
}

.fa.pull-right {
    margin-left: .3em;
}

.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}

.fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

.fa-rotate-90 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.fa-rotate-180 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.fa-rotate-270 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.fa-flip-horizontal {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

.fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
    -webkit-transform: scale(1, -1);
    -ms-transform: scale(1, -1);
    transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
    filter: none;
}

.fa-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
}

.fa-stack-1x {
    line-height: inherit;
}

.fa-stack-2x {
    font-size: 2em;
}

.fa-inverse {
    color: #fff;
}

.fa-glass:before {
    content: "\f000";
}

.fa-music:before {
    content: "\f001";
}

.fa-search:before {
    content: "\f002";
}

.fa-envelope-o:before {
    content: "\f003";
}

.fa-heart:before {
    content: "\f004";
}

.fa-star:before {
    content: "\f005";
}

.fa-star-o:before {
    content: "\f006";
}

.fa-user:before {
    content: "\f007";
}

.fa-film:before {
    content: "\f008";
}

.fa-th-large:before {
    content: "\f009";
}

.fa-th:before {
    content: "\f00a";
}

.fa-th-list:before {
    content: "\f00b";
}

.fa-check:before {
    content: "\f00c";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
    content: "\f00d";
}

.fa-search-plus:before {
    content: "\f00e";
}

.fa-search-minus:before {
    content: "\f010";
}

.fa-power-off:before {
    content: "\f011";
}

.fa-signal:before {
    content: "\f012";
}

.fa-gear:before,
.fa-cog:before {
    content: "\f013";
}

.fa-trash-o:before {
    content: "\f014";
}

.fa-home:before {
    content: "\f015";
}

.fa-file-o:before {
    content: "\f016";
}

.fa-clock-o:before {
    content: "\f017";
}

.fa-road:before {
    content: "\f018";
}

.fa-download:before {
    content: "\f019";
}

.fa-arrow-circle-o-down:before {
    content: "\f01a";
}

.fa-arrow-circle-o-up:before {
    content: "\f01b";
}

.fa-inbox:before {
    content: "\f01c";
}

.fa-play-circle-o:before {
    content: "\f01d";
}

.fa-rotate-right:before,
.fa-repeat:before {
    content: "\f01e";
}

.fa-refresh:before {
    content: "\f021";
}

.fa-list-alt:before {
    content: "\f022";
}

.fa-lock:before {
    content: "\f023";
}

.fa-flag:before {
    content: "\f024";
}

.fa-headphones:before {
    content: "\f025";
}

.fa-volume-off:before {
    content: "\f026";
}

.fa-volume-down:before {
    content: "\f027";
}

.fa-volume-up:before {
    content: "\f028";
}

.fa-qrcode:before {
    content: "\f029";
}

.fa-barcode:before {
    content: "\f02a";
}

.fa-tag:before {
    content: "\f02b";
}

.fa-tags:before {
    content: "\f02c";
}

.fa-book:before {
    content: "\f02d";
}

.fa-bookmark:before {
    content: "\f02e";
}

.fa-print:before {
    content: "\f02f";
}

.fa-camera:before {
    content: "\f030";
}

.fa-font:before {
    content: "\f031";
}

.fa-bold:before {
    content: "\f032";
}

.fa-italic:before {
    content: "\f033";
}

.fa-text-height:before {
    content: "\f034";
}

.fa-text-width:before {
    content: "\f035";
}

.fa-align-left:before {
    content: "\f036";
}

.fa-align-center:before {
    content: "\f037";
}

.fa-align-right:before {
    content: "\f038";
}

.fa-align-justify:before {
    content: "\f039";
}

.fa-list:before {
    content: "\f03a";
}

.fa-dedent:before,
.fa-outdent:before {
    content: "\f03b";
}

.fa-indent:before {
    content: "\f03c";
}

.fa-video-camera:before {
    content: "\f03d";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
    content: "\f03e";
}

.fa-pencil:before {
    content: "\f040";
}

.fa-map-marker:before {
    content: "\f041";
}

.fa-adjust:before {
    content: "\f042";
}

.fa-tint:before {
    content: "\f043";
}

.fa-edit:before,
.fa-pencil-square-o:before {
    content: "\f044";
}

.fa-share-square-o:before {
    content: "\f045";
}

.fa-check-square-o:before {
    content: "\f046";
}

.fa-arrows:before {
    content: "\f047";
}

.fa-step-backward:before {
    content: "\f048";
}

.fa-fast-backward:before {
    content: "\f049";
}

.fa-backward:before {
    content: "\f04a";
}

.fa-play:before {
    content: "\f04b";
}

.fa-pause:before {
    content: "\f04c";
}

.fa-stop:before {
    content: "\f04d";
}

.fa-forward:before {
    content: "\f04e";
}

.fa-fast-forward:before {
    content: "\f050";
}

.fa-step-forward:before {
    content: "\f051";
}

.fa-eject:before {
    content: "\f052";
}

.fa-chevron-left:before {
    content: "\f053";
}

.fa-chevron-right:before {
    content: "\f054";
}

.fa-plus-circle:before {
    content: "\f055";
}

.fa-minus-circle:before {
    content: "\f056";
}

.fa-times-circle:before {
    content: "\f057";
}

.fa-check-circle:before {
    content: "\f058";
}

.fa-question-circle:before {
    content: "\f059";
}

.fa-info-circle:before {
    content: "\f05a";
}

.fa-crosshairs:before {
    content: "\f05b";
}

.fa-times-circle-o:before {
    content: "\f05c";
}

.fa-check-circle-o:before {
    content: "\f05d";
}

.fa-ban:before {
    content: "\f05e";
}

.fa-arrow-left:before {
    content: "\f060";
}

.fa-arrow-right:before {
    content: "\f061";
}

.fa-arrow-up:before {
    content: "\f062";
}

.fa-arrow-down:before {
    content: "\f063";
}

.fa-mail-forward:before,
.fa-share:before {
    content: "\f064";
}

.fa-expand:before {
    content: "\f065";
}

.fa-compress:before {
    content: "\f066";
}

.fa-plus:before {
    content: "\f067";
}

.fa-minus:before {
    content: "\f068";
}

.fa-asterisk:before {
    content: "\f069";
}

.fa-exclamation-circle:before {
    content: "\f06a";
}

.fa-gift:before {
    content: "\f06b";
}

.fa-leaf:before {
    content: "\f06c";
}

.fa-fire:before {
    content: "\f06d";
}

.fa-eye:before {
    content: "\f06e";
}

.fa-eye-slash:before {
    content: "\f070";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
    content: "\f071";
}

.fa-plane:before {
    content: "\f072";
}

.fa-calendar:before {
    content: "\f073";
}

.fa-random:before {
    content: "\f074";
}

.fa-comment:before {
    content: "\f075";
}

.fa-magnet:before {
    content: "\f076";
}

.fa-chevron-up:before {
    content: "\f077";
}

.fa-chevron-down:before {
    content: "\f078";
}

.fa-retweet:before {
    content: "\f079";
}

.fa-shopping-cart:before {
    content: "\f07a";
}

.fa-folder:before {
    content: "\f07b";
}

.fa-folder-open:before {
    content: "\f07c";
}

.fa-arrows-v:before {
    content: "\f07d";
}

.fa-arrows-h:before {
    content: "\f07e";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
    content: "\f080";
}

.fa-twitter-square:before {
    content: "\f081";
}

.fa-facebook-square:before {
    content: "\f082";
}

.fa-camera-retro:before {
    content: "\f083";
}

.fa-key:before {
    content: "\f084";
}

.fa-gears:before,
.fa-cogs:before {
    content: "\f085";
}

.fa-comments:before {
    content: "\f086";
}

.fa-thumbs-o-up:before {
    content: "\f087";
}

.fa-thumbs-o-down:before {
    content: "\f088";
}

.fa-star-half:before {
    content: "\f089";
}

.fa-heart-o:before {
    content: "\f08a";
}

.fa-sign-out:before {
    content: "\f08b";
}

.fa-linkedin-square:before {
    content: "\f08c";
}

.fa-thumb-tack:before {
    content: "\f08d";
}

.fa-external-link:before {
    content: "\f08e";
}

.fa-sign-in:before {
    content: "\f090";
}

.fa-trophy:before {
    content: "\f091";
}

.fa-github-square:before {
    content: "\f092";
}

.fa-upload:before {
    content: "\f093";
}

.fa-lemon-o:before {
    content: "\f094";
}

.fa-phone:before {
    content: "\f095";
}

.fa-square-o:before {
    content: "\f096";
}

.fa-bookmark-o:before {
    content: "\f097";
}

.fa-phone-square:before {
    content: "\f098";
}

.fa-twitter:before {
    content: "\f099";
}

.fa-facebook-f:before,
.fa-facebook:before {
    content: "\f09a";
}

.fa-github:before {
    content: "\f09b";
}

.fa-unlock:before {
    content: "\f09c";
}

.fa-credit-card:before {
    content: "\f09d";
}

.fa-feed:before,
.fa-rss:before {
    content: "\f09e";
}

.fa-hdd-o:before {
    content: "\f0a0";
}

.fa-bullhorn:before {
    content: "\f0a1";
}

.fa-bell:before {
    content: "\f0f3";
}

.fa-certificate:before {
    content: "\f0a3";
}

.fa-hand-o-right:before {
    content: "\f0a4";
}

.fa-hand-o-left:before {
    content: "\f0a5";
}

.fa-hand-o-up:before {
    content: "\f0a6";
}

.fa-hand-o-down:before {
    content: "\f0a7";
}

.fa-arrow-circle-left:before {
    content: "\f0a8";
}

.fa-arrow-circle-right:before {
    content: "\f0a9";
}

.fa-arrow-circle-up:before {
    content: "\f0aa";
}

.fa-arrow-circle-down:before {
    content: "\f0ab";
}

.fa-globe:before {
    content: "\f0ac";
}

.fa-wrench:before {
    content: "\f0ad";
}

.fa-tasks:before {
    content: "\f0ae";
}

.fa-filter:before {
    content: "\f0b0";
}

.fa-briefcase:before {
    content: "\f0b1";
}

.fa-arrows-alt:before {
    content: "\f0b2";
}

.fa-group:before,
.fa-users:before {
    content: "\f0c0";
}

.fa-chain:before,
.fa-link:before {
    content: "\f0c1";
}

.fa-cloud:before {
    content: "\f0c2";
}

.fa-flask:before {
    content: "\f0c3";
}

.fa-cut:before,
.fa-scissors:before {
    content: "\f0c4";
}

.fa-copy:before,
.fa-files-o:before {
    content: "\f0c5";
}

.fa-paperclip:before {
    content: "\f0c6";
}

.fa-save:before,
.fa-floppy-o:before {
    content: "\f0c7";
}

.fa-square:before {
    content: "\f0c8";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
    content: "\f0c9";
}

.fa-list-ul:before {
    content: "\f0ca";
}

.fa-list-ol:before {
    content: "\f0cb";
}

.fa-strikethrough:before {
    content: "\f0cc";
}

.fa-underline:before {
    content: "\f0cd";
}

.fa-table:before {
    content: "\f0ce";
}

.fa-magic:before {
    content: "\f0d0";
}

.fa-truck:before {
    content: "\f0d1";
}

.fa-pinterest:before {
    content: "\f0d2";
}

.fa-pinterest-square:before {
    content: "\f0d3";
}

.fa-google-plus-square:before {
    content: "\f0d4";
}

.fa-google-plus:before {
    content: "\f0d5";
}

.fa-money:before {
    content: "\f0d6";
}

.fa-caret-down:before {
    content: "\f0d7";
}

.fa-caret-up:before {
    content: "\f0d8";
}

.fa-caret-left:before {
    content: "\f0d9";
}

.fa-caret-right:before {
    content: "\f0da";
}

.fa-columns:before {
    content: "\f0db";
}

.fa-unsorted:before,
.fa-sort:before {
    content: "\f0dc";
}

.fa-sort-down:before,
.fa-sort-desc:before {
    content: "\f0dd";
}

.fa-sort-up:before,
.fa-sort-asc:before {
    content: "\f0de";
}

.fa-envelope:before {
    content: "\f0e0";
}

.fa-linkedin:before {
    content: "\f0e1";
}

.fa-rotate-left:before,
.fa-undo:before {
    content: "\f0e2";
}

.fa-legal:before,
.fa-gavel:before {
    content: "\f0e3";
}

.fa-dashboard:before,
.fa-tachometer:before {
    content: "\f0e4";
}

.fa-comment-o:before {
    content: "\f0e5";
}

.fa-comments-o:before {
    content: "\f0e6";
}

.fa-flash:before,
.fa-bolt:before {
    content: "\f0e7";
}

.fa-sitemap:before {
    content: "\f0e8";
}

.fa-umbrella:before {
    content: "\f0e9";
}

.fa-paste:before,
.fa-clipboard:before {
    content: "\f0ea";
}

.fa-lightbulb-o:before {
    content: "\f0eb";
}

.fa-exchange:before {
    content: "\f0ec";
}

.fa-cloud-download:before {
    content: "\f0ed";
}

.fa-cloud-upload:before {
    content: "\f0ee";
}

.fa-user-md:before {
    content: "\f0f0";
}

.fa-stethoscope:before {
    content: "\f0f1";
}

.fa-suitcase:before {
    content: "\f0f2";
}

.fa-bell-o:before {
    content: "\f0a2";
}

.fa-coffee:before {
    content: "\f0f4";
}

.fa-cutlery:before {
    content: "\f0f5";
}

.fa-file-text-o:before {
    content: "\f0f6";
}

.fa-building-o:before {
    content: "\f0f7";
}

.fa-hospital-o:before {
    content: "\f0f8";
}

.fa-ambulance:before {
    content: "\f0f9";
}

.fa-medkit:before {
    content: "\f0fa";
}

.fa-fighter-jet:before {
    content: "\f0fb";
}

.fa-beer:before {
    content: "\f0fc";
}

.fa-h-square:before {
    content: "\f0fd";
}

.fa-plus-square:before {
    content: "\f0fe";
}

.fa-angle-double-left:before {
    content: "\f100";
}

.fa-angle-double-right:before {
    content: "\f101";
}

.fa-angle-double-up:before {
    content: "\f102";
}

.fa-angle-double-down:before {
    content: "\f103";
}

.fa-angle-left:before {
    content: "\f104";
}

.fa-angle-right:before {
    content: "\f105";
}

.fa-angle-up:before {
    content: "\f106";
}

.fa-angle-down:before {
    content: "\f107";
}

.fa-desktop:before {
    content: "\f108";
}

.fa-laptop:before {
    content: "\f109";
}

.fa-tablet:before {
    content: "\f10a";
}

.fa-mobile-phone:before,
.fa-mobile:before {
    content: "\f10b";
}

.fa-circle-o:before {
    content: "\f10c";
}

.fa-quote-left:before {
    content: "\f10d";
}

.fa-quote-right:before {
    content: "\f10e";
}

.fa-spinner:before {
    content: "\f110";
}

.fa-circle:before {
    content: "\f111";
}

.fa-mail-reply:before,
.fa-reply:before {
    content: "\f112";
}

.fa-github-alt:before {
    content: "\f113";
}

.fa-folder-o:before {
    content: "\f114";
}

.fa-folder-open-o:before {
    content: "\f115";
}

.fa-smile-o:before {
    content: "\f118";
}

.fa-frown-o:before {
    content: "\f119";
}

.fa-meh-o:before {
    content: "\f11a";
}

.fa-gamepad:before {
    content: "\f11b";
}

.fa-keyboard-o:before {
    content: "\f11c";
}

.fa-flag-o:before {
    content: "\f11d";
}

.fa-flag-checkered:before {
    content: "\f11e";
}

.fa-terminal:before {
    content: "\f120";
}

.fa-code:before {
    content: "\f121";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
    content: "\f122";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
    content: "\f123";
}

.fa-location-arrow:before {
    content: "\f124";
}

.fa-crop:before {
    content: "\f125";
}

.fa-code-fork:before {
    content: "\f126";
}

.fa-unlink:before,
.fa-chain-broken:before {
    content: "\f127";
}

.fa-question:before {
    content: "\f128";
}

.fa-info:before {
    content: "\f129";
}

.fa-exclamation:before {
    content: "\f12a";
}

.fa-superscript:before {
    content: "\f12b";
}

.fa-subscript:before {
    content: "\f12c";
}

.fa-eraser:before {
    content: "\f12d";
}

.fa-puzzle-piece:before {
    content: "\f12e";
}

.fa-microphone:before {
    content: "\f130";
}

.fa-microphone-slash:before {
    content: "\f131";
}

.fa-shield:before {
    content: "\f132";
}

.fa-calendar-o:before {
    content: "\f133";
}

.fa-fire-extinguisher:before {
    content: "\f134";
}

.fa-rocket:before {
    content: "\f135";
}

.fa-maxcdn:before {
    content: "\f136";
}

.fa-chevron-circle-left:before {
    content: "\f137";
}

.fa-chevron-circle-right:before {
    content: "\f138";
}

.fa-chevron-circle-up:before {
    content: "\f139";
}

.fa-chevron-circle-down:before {
    content: "\f13a";
}

.fa-html5:before {
    content: "\f13b";
}

.fa-css3:before {
    content: "\f13c";
}

.fa-anchor:before {
    content: "\f13d";
}

.fa-unlock-alt:before {
    content: "\f13e";
}

.fa-bullseye:before {
    content: "\f140";
}

.fa-ellipsis-h:before {
    content: "\f141";
}

.fa-ellipsis-v:before {
    content: "\f142";
}

.fa-rss-square:before {
    content: "\f143";
}

.fa-play-circle:before {
    content: "\f144";
}

.fa-ticket:before {
    content: "\f145";
}

.fa-minus-square:before {
    content: "\f146";
}

.fa-minus-square-o:before {
    content: "\f147";
}

.fa-level-up:before {
    content: "\f148";
}

.fa-level-down:before {
    content: "\f149";
}

.fa-check-square:before {
    content: "\f14a";
}

.fa-pencil-square:before {
    content: "\f14b";
}

.fa-external-link-square:before {
    content: "\f14c";
}

.fa-share-square:before {
    content: "\f14d";
}

.fa-compass:before {
    content: "\f14e";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
    content: "\f150";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
    content: "\f151";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
    content: "\f152";
}

.fa-euro:before,
.fa-eur:before {
    content: "\f153";
}

.fa-gbp:before {
    content: "\f154";
}

.fa-dollar:before,
.fa-usd:before {
    content: "\f155";
}

.fa-rupee:before,
.fa-inr:before {
    content: "\f156";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
    content: "\f157";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
    content: "\f158";
}

.fa-won:before,
.fa-krw:before {
    content: "\f159";
}

.fa-bitcoin:before,
.fa-btc:before {
    content: "\f15a";
}

.fa-file:before {
    content: "\f15b";
}

.fa-file-text:before {
    content: "\f15c";
}

.fa-sort-alpha-asc:before {
    content: "\f15d";
}

.fa-sort-alpha-desc:before {
    content: "\f15e";
}

.fa-sort-amount-asc:before {
    content: "\f160";
}

.fa-sort-amount-desc:before {
    content: "\f161";
}

.fa-sort-numeric-asc:before {
    content: "\f162";
}

.fa-sort-numeric-desc:before {
    content: "\f163";
}

.fa-thumbs-up:before {
    content: "\f164";
}

.fa-thumbs-down:before {
    content: "\f165";
}

.fa-youtube-square:before {
    content: "\f166";
}

.fa-youtube:before {
    content: "\f167";
}

.fa-xing:before {
    content: "\f168";
}

.fa-xing-square:before {
    content: "\f169";
}

.fa-youtube-play:before {
    content: "\f16a";
}

.fa-dropbox:before {
    content: "\f16b";
}

.fa-stack-overflow:before {
    content: "\f16c";
}

.fa-instagram:before {
    content: "\f16d";
}

.fa-flickr:before {
    content: "\f16e";
}

.fa-adn:before {
    content: "\f170";
}

.fa-bitbucket:before {
    content: "\f171";
}

.fa-bitbucket-square:before {
    content: "\f172";
}

.fa-tumblr:before {
    content: "\f173";
}

.fa-tumblr-square:before {
    content: "\f174";
}

.fa-long-arrow-down:before {
    content: "\f175";
}

.fa-long-arrow-up:before {
    content: "\f176";
}

.fa-long-arrow-left:before {
    content: "\f177";
}

.fa-long-arrow-right:before {
    content: "\f178";
}

.fa-apple:before {
    content: "\f179";
}

.fa-windows:before {
    content: "\f17a";
}

.fa-android:before {
    content: "\f17b";
}

.fa-linux:before {
    content: "\f17c";
}

.fa-dribbble:before {
    content: "\f17d";
}

.fa-skype:before {
    content: "\f17e";
}

.fa-foursquare:before {
    content: "\f180";
}

.fa-trello:before {
    content: "\f181";
}

.fa-female:before {
    content: "\f182";
}

.fa-male:before {
    content: "\f183";
}

.fa-gittip:before,
.fa-gratipay:before {
    content: "\f184";
}

.fa-sun-o:before {
    content: "\f185";
}

.fa-moon-o:before {
    content: "\f186";
}

.fa-archive:before {
    content: "\f187";
}

.fa-bug:before {
    content: "\f188";
}

.fa-vk:before {
    content: "\f189";
}

.fa-weibo:before {
    content: "\f18a";
}

.fa-renren:before {
    content: "\f18b";
}

.fa-pagelines:before {
    content: "\f18c";
}

.fa-stack-exchange:before {
    content: "\f18d";
}

.fa-arrow-circle-o-right:before {
    content: "\f18e";
}

.fa-arrow-circle-o-left:before {
    content: "\f190";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
    content: "\f191";
}

.fa-dot-circle-o:before {
    content: "\f192";
}

.fa-wheelchair:before {
    content: "\f193";
}

.fa-vimeo-square:before {
    content: "\f194";
}

.fa-turkish-lira:before,
.fa-try:before {
    content: "\f195";
}

.fa-plus-square-o:before {
    content: "\f196";
}

.fa-space-shuttle:before {
    content: "\f197";
}

.fa-slack:before {
    content: "\f198";
}

.fa-envelope-square:before {
    content: "\f199";
}

.fa-wordpress:before {
    content: "\f19a";
}

.fa-openid:before {
    content: "\f19b";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
    content: "\f19c";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
    content: "\f19d";
}

.fa-yahoo:before {
    content: "\f19e";
}

.fa-google:before {
    content: "\f1a0";
}

.fa-reddit:before {
    content: "\f1a1";
}

.fa-reddit-square:before {
    content: "\f1a2";
}

.fa-stumbleupon-circle:before {
    content: "\f1a3";
}

.fa-stumbleupon:before {
    content: "\f1a4";
}

.fa-delicious:before {
    content: "\f1a5";
}

.fa-digg:before {
    content: "\f1a6";
}

.fa-pied-piper-pp:before {
    content: "\f1a7";
}

.fa-pied-piper-alt:before {
    content: "\f1a8";
}

.fa-drupal:before {
    content: "\f1a9";
}

.fa-joomla:before {
    content: "\f1aa";
}

.fa-language:before {
    content: "\f1ab";
}

.fa-fax:before {
    content: "\f1ac";
}

.fa-building:before {
    content: "\f1ad";
}

.fa-child:before {
    content: "\f1ae";
}

.fa-paw:before {
    content: "\f1b0";
}

.fa-spoon:before {
    content: "\f1b1";
}

.fa-cube:before {
    content: "\f1b2";
}

.fa-cubes:before {
    content: "\f1b3";
}

.fa-behance:before {
    content: "\f1b4";
}

.fa-behance-square:before {
    content: "\f1b5";
}

.fa-steam:before {
    content: "\f1b6";
}

.fa-steam-square:before {
    content: "\f1b7";
}

.fa-recycle:before {
    content: "\f1b8";
}

.fa-automobile:before,
.fa-car:before {
    content: "\f1b9";
}

.fa-cab:before,
.fa-taxi:before {
    content: "\f1ba";
}

.fa-tree:before {
    content: "\f1bb";
}

.fa-spotify:before {
    content: "\f1bc";
}

.fa-deviantart:before {
    content: "\f1bd";
}

.fa-soundcloud:before {
    content: "\f1be";
}

.fa-database:before {
    content: "\f1c0";
}

.fa-file-pdf-o:before {
    content: "\f1c1";
}

.fa-file-word-o:before {
    content: "\f1c2";
}

.fa-file-excel-o:before {
    content: "\f1c3";
}

.fa-file-powerpoint-o:before {
    content: "\f1c4";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
    content: "\f1c5";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
    content: "\f1c6";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
    content: "\f1c7";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
    content: "\f1c8";
}

.fa-file-code-o:before {
    content: "\f1c9";
}

.fa-vine:before {
    content: "\f1ca";
}

.fa-codepen:before {
    content: "\f1cb";
}

.fa-jsfiddle:before {
    content: "\f1cc";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
    content: "\f1cd";
}

.fa-circle-o-notch:before {
    content: "\f1ce";
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
    content: "\f1d0";
}

.fa-ge:before,
.fa-empire:before {
    content: "\f1d1";
}

.fa-git-square:before {
    content: "\f1d2";
}

.fa-git:before {
    content: "\f1d3";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
    content: "\f1d4";
}

.fa-tencent-weibo:before {
    content: "\f1d5";
}

.fa-qq:before {
    content: "\f1d6";
}

.fa-wechat:before,
.fa-weixin:before {
    content: "\f1d7";
}

.fa-send:before,
.fa-paper-plane:before {
    content: "\f1d8";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
    content: "\f1d9";
}

.fa-history:before {
    content: "\f1da";
}

.fa-circle-thin:before {
    content: "\f1db";
}

.fa-header:before {
    content: "\f1dc";
}

.fa-paragraph:before {
    content: "\f1dd";
}

.fa-sliders:before {
    content: "\f1de";
}

.fa-share-alt:before {
    content: "\f1e0";
}

.fa-share-alt-square:before {
    content: "\f1e1";
}

.fa-bomb:before {
    content: "\f1e2";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
    content: "\f1e3";
}

.fa-tty:before {
    content: "\f1e4";
}

.fa-binoculars:before {
    content: "\f1e5";
}

.fa-plug:before {
    content: "\f1e6";
}

.fa-slideshare:before {
    content: "\f1e7";
}

.fa-twitch:before {
    content: "\f1e8";
}

.fa-yelp:before {
    content: "\f1e9";
}

.fa-newspaper-o:before {
    content: "\f1ea";
}

.fa-wifi:before {
    content: "\f1eb";
}

.fa-calculator:before {
    content: "\f1ec";
}

.fa-paypal:before {
    content: "\f1ed";
}

.fa-google-wallet:before {
    content: "\f1ee";
}

.fa-cc-visa:before {
    content: "\f1f0";
}

.fa-cc-mastercard:before {
    content: "\f1f1";
}

.fa-cc-discover:before {
    content: "\f1f2";
}

.fa-cc-amex:before {
    content: "\f1f3";
}

.fa-cc-paypal:before {
    content: "\f1f4";
}

.fa-cc-stripe:before {
    content: "\f1f5";
}

.fa-bell-slash:before {
    content: "\f1f6";
}

.fa-bell-slash-o:before {
    content: "\f1f7";
}

.fa-trash:before {
    content: "\f1f8";
}

.fa-copyright:before {
    content: "\f1f9";
}

.fa-at:before {
    content: "\f1fa";
}

.fa-eyedropper:before {
    content: "\f1fb";
}

.fa-paint-brush:before {
    content: "\f1fc";
}

.fa-birthday-cake:before {
    content: "\f1fd";
}

.fa-area-chart:before {
    content: "\f1fe";
}

.fa-pie-chart:before {
    content: "\f200";
}

.fa-line-chart:before {
    content: "\f201";
}

.fa-lastfm:before {
    content: "\f202";
}

.fa-lastfm-square:before {
    content: "\f203";
}

.fa-toggle-off:before {
    content: "\f204";
}

.fa-toggle-on:before {
    content: "\f205";
}

.fa-bicycle:before {
    content: "\f206";
}

.fa-bus:before {
    content: "\f207";
}

.fa-ioxhost:before {
    content: "\f208";
}

.fa-angellist:before {
    content: "\f209";
}

.fa-cc:before {
    content: "\f20a";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
    content: "\f20b";
}

.fa-meanpath:before {
    content: "\f20c";
}

.fa-buysellads:before {
    content: "\f20d";
}

.fa-connectdevelop:before {
    content: "\f20e";
}

.fa-dashcube:before {
    content: "\f210";
}

.fa-forumbee:before {
    content: "\f211";
}

.fa-leanpub:before {
    content: "\f212";
}

.fa-sellsy:before {
    content: "\f213";
}

.fa-shirtsinbulk:before {
    content: "\f214";
}

.fa-simplybuilt:before {
    content: "\f215";
}

.fa-skyatlas:before {
    content: "\f216";
}

.fa-cart-plus:before {
    content: "\f217";
}

.fa-cart-arrow-down:before {
    content: "\f218";
}

.fa-diamond:before {
    content: "\f219";
}

.fa-ship:before {
    content: "\f21a";
}

.fa-user-secret:before {
    content: "\f21b";
}

.fa-motorcycle:before {
    content: "\f21c";
}

.fa-street-view:before {
    content: "\f21d";
}

.fa-heartbeat:before {
    content: "\f21e";
}

.fa-venus:before {
    content: "\f221";
}

.fa-mars:before {
    content: "\f222";
}

.fa-mercury:before {
    content: "\f223";
}

.fa-intersex:before,
.fa-transgender:before {
    content: "\f224";
}

.fa-transgender-alt:before {
    content: "\f225";
}

.fa-venus-double:before {
    content: "\f226";
}

.fa-mars-double:before {
    content: "\f227";
}

.fa-venus-mars:before {
    content: "\f228";
}

.fa-mars-stroke:before {
    content: "\f229";
}

.fa-mars-stroke-v:before {
    content: "\f22a";
}

.fa-mars-stroke-h:before {
    content: "\f22b";
}

.fa-neuter:before {
    content: "\f22c";
}

.fa-genderless:before {
    content: "\f22d";
}

.fa-facebook-official:before {
    content: "\f230";
}

.fa-pinterest-p:before {
    content: "\f231";
}

.fa-whatsapp:before {
    content: "\f232";
}

.fa-server:before {
    content: "\f233";
}

.fa-user-plus:before {
    content: "\f234";
}

.fa-user-times:before {
    content: "\f235";
}

.fa-hotel:before,
.fa-bed:before {
    content: "\f236";
}

.fa-viacoin:before {
    content: "\f237";
}

.fa-train:before {
    content: "\f238";
}

.fa-subway:before {
    content: "\f239";
}

.fa-medium:before {
    content: "\f23a";
}

.fa-yc:before,
.fa-y-combinator:before {
    content: "\f23b";
}

.fa-optin-monster:before {
    content: "\f23c";
}

.fa-opencart:before {
    content: "\f23d";
}

.fa-expeditedssl:before {
    content: "\f23e";
}

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
    content: "\f240";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
    content: "\f241";
}

.fa-battery-2:before,
.fa-battery-half:before {
    content: "\f242";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
    content: "\f243";
}

.fa-battery-0:before,
.fa-battery-empty:before {
    content: "\f244";
}

.fa-mouse-pointer:before {
    content: "\f245";
}

.fa-i-cursor:before {
    content: "\f246";
}

.fa-object-group:before {
    content: "\f247";
}

.fa-object-ungroup:before {
    content: "\f248";
}

.fa-sticky-note:before {
    content: "\f249";
}

.fa-sticky-note-o:before {
    content: "\f24a";
}

.fa-cc-jcb:before {
    content: "\f24b";
}

.fa-cc-diners-club:before {
    content: "\f24c";
}

.fa-clone:before {
    content: "\f24d";
}

.fa-balance-scale:before {
    content: "\f24e";
}

.fa-hourglass-o:before {
    content: "\f250";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
    content: "\f251";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
    content: "\f252";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
    content: "\f253";
}

.fa-hourglass:before {
    content: "\f254";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
    content: "\f255";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
    content: "\f256";
}

.fa-hand-scissors-o:before {
    content: "\f257";
}

.fa-hand-lizard-o:before {
    content: "\f258";
}

.fa-hand-spock-o:before {
    content: "\f259";
}

.fa-hand-pointer-o:before {
    content: "\f25a";
}

.fa-hand-peace-o:before {
    content: "\f25b";
}

.fa-trademark:before {
    content: "\f25c";
}

.fa-registered:before {
    content: "\f25d";
}

.fa-creative-commons:before {
    content: "\f25e";
}

.fa-gg:before {
    content: "\f260";
}

.fa-gg-circle:before {
    content: "\f261";
}

.fa-tripadvisor:before {
    content: "\f262";
}

.fa-odnoklassniki:before {
    content: "\f263";
}

.fa-odnoklassniki-square:before {
    content: "\f264";
}

.fa-get-pocket:before {
    content: "\f265";
}

.fa-wikipedia-w:before {
    content: "\f266";
}

.fa-safari:before {
    content: "\f267";
}

.fa-chrome:before {
    content: "\f268";
}

.fa-firefox:before {
    content: "\f269";
}

.fa-opera:before {
    content: "\f26a";
}

.fa-internet-explorer:before {
    content: "\f26b";
}

.fa-tv:before,
.fa-television:before {
    content: "\f26c";
}

.fa-contao:before {
    content: "\f26d";
}

.fa-500px:before {
    content: "\f26e";
}

.fa-amazon:before {
    content: "\f270";
}

.fa-calendar-plus-o:before {
    content: "\f271";
}

.fa-calendar-minus-o:before {
    content: "\f272";
}

.fa-calendar-times-o:before {
    content: "\f273";
}

.fa-calendar-check-o:before {
    content: "\f274";
}

.fa-industry:before {
    content: "\f275";
}

.fa-map-pin:before {
    content: "\f276";
}

.fa-map-signs:before {
    content: "\f277";
}

.fa-map-o:before {
    content: "\f278";
}

.fa-map:before {
    content: "\f279";
}

.fa-commenting:before {
    content: "\f27a";
}

.fa-commenting-o:before {
    content: "\f27b";
}

.fa-houzz:before {
    content: "\f27c";
}

.fa-vimeo:before {
    content: "\f27d";
}

.fa-black-tie:before {
    content: "\f27e";
}

.fa-fonticons:before {
    content: "\f280";
}

.fa-reddit-alien:before {
    content: "\f281";
}

.fa-edge:before {
    content: "\f282";
}

.fa-credit-card-alt:before {
    content: "\f283";
}

.fa-codiepie:before {
    content: "\f284";
}

.fa-modx:before {
    content: "\f285";
}

.fa-fort-awesome:before {
    content: "\f286";
}

.fa-usb:before {
    content: "\f287";
}

.fa-product-hunt:before {
    content: "\f288";
}

.fa-mixcloud:before {
    content: "\f289";
}

.fa-scribd:before {
    content: "\f28a";
}

.fa-pause-circle:before {
    content: "\f28b";
}

.fa-pause-circle-o:before {
    content: "\f28c";
}

.fa-stop-circle:before {
    content: "\f28d";
}

.fa-stop-circle-o:before {
    content: "\f28e";
}

.fa-shopping-bag:before {
    content: "\f290";
}

.fa-shopping-basket:before {
    content: "\f291";
}

.fa-hashtag:before {
    content: "\f292";
}

.fa-bluetooth:before {
    content: "\f293";
}

.fa-bluetooth-b:before {
    content: "\f294";
}

.fa-percent:before {
    content: "\f295";
}

.fa-gitlab:before {
    content: "\f296";
}

.fa-wpbeginner:before {
    content: "\f297";
}

.fa-wpforms:before {
    content: "\f298";
}

.fa-envira:before {
    content: "\f299";
}

.fa-universal-access:before {
    content: "\f29a";
}

.fa-wheelchair-alt:before {
    content: "\f29b";
}

.fa-question-circle-o:before {
    content: "\f29c";
}

.fa-blind:before {
    content: "\f29d";
}

.fa-audio-description:before {
    content: "\f29e";
}

.fa-volume-control-phone:before {
    content: "\f2a0";
}

.fa-braille:before {
    content: "\f2a1";
}

.fa-assistive-listening-systems:before {
    content: "\f2a2";
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
    content: "\f2a3";
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
    content: "\f2a4";
}

.fa-glide:before {
    content: "\f2a5";
}

.fa-glide-g:before {
    content: "\f2a6";
}

.fa-signing:before,
.fa-sign-language:before {
    content: "\f2a7";
}

.fa-low-vision:before {
    content: "\f2a8";
}

.fa-viadeo:before {
    content: "\f2a9";
}

.fa-viadeo-square:before {
    content: "\f2aa";
}

.fa-snapchat:before {
    content: "\f2ab";
}

.fa-snapchat-ghost:before {
    content: "\f2ac";
}

.fa-snapchat-square:before {
    content: "\f2ad";
}

.fa-pied-piper:before {
    content: "\f2ae";
}

.fa-first-order:before {
    content: "\f2b0";
}

.fa-yoast:before {
    content: "\f2b1";
}

.fa-themeisle:before {
    content: "\f2b2";
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
    content: "\f2b3";
}

.fa-fa:before,
.fa-font-awesome:before {
    content: "\f2b4";
}

.fa-handshake-o:before {
    content: "\f2b5";
}

.fa-envelope-open:before {
    content: "\f2b6";
}

.fa-envelope-open-o:before {
    content: "\f2b7";
}

.fa-linode:before {
    content: "\f2b8";
}

.fa-address-book:before {
    content: "\f2b9";
}

.fa-address-book-o:before {
    content: "\f2ba";
}

.fa-vcard:before,
.fa-address-card:before {
    content: "\f2bb";
}

.fa-vcard-o:before,
.fa-address-card-o:before {
    content: "\f2bc";
}

.fa-user-circle:before {
    content: "\f2bd";
}

.fa-user-circle-o:before {
    content: "\f2be";
}

.fa-user-o:before {
    content: "\f2c0";
}

.fa-id-badge:before {
    content: "\f2c1";
}

.fa-drivers-license:before,
.fa-id-card:before {
    content: "\f2c2";
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
    content: "\f2c3";
}

.fa-quora:before {
    content: "\f2c4";
}

.fa-free-code-camp:before {
    content: "\f2c5";
}

.fa-telegram:before {
    content: "\f2c6";
}

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
    content: "\f2c7";
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
    content: "\f2c8";
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
    content: "\f2c9";
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
    content: "\f2ca";
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
    content: "\f2cb";
}

.fa-shower:before {
    content: "\f2cc";
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
    content: "\f2cd";
}

.fa-podcast:before {
    content: "\f2ce";
}

.fa-window-maximize:before {
    content: "\f2d0";
}

.fa-window-minimize:before {
    content: "\f2d1";
}

.fa-window-restore:before {
    content: "\f2d2";
}

.fa-times-rectangle:before,
.fa-window-close:before {
    content: "\f2d3";
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
    content: "\f2d4";
}

.fa-bandcamp:before {
    content: "\f2d5";
}

.fa-grav:before {
    content: "\f2d6";
}

.fa-etsy:before {
    content: "\f2d7";
}

.fa-imdb:before {
    content: "\f2d8";
}

.fa-ravelry:before {
    content: "\f2d9";
}

.fa-eercast:before {
    content: "\f2da";
}

.fa-microchip:before {
    content: "\f2db";
}

.fa-snowflake-o:before {
    content: "\f2dc";
}

.fa-superpowers:before {
    content: "\f2dd";
}

.fa-wpexplorer:before {
    content: "\f2de";
}

.fa-meetup:before {
    content: "\f2e0";
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    src: local("Roboto Light"), local("Roboto-Light"), url("../fonts/roboto/300.woff") format("woff");
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: local("Roboto"), local("Roboto-Regular"), url("../fonts/roboto/400.woff") format("woff");
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: local("Roboto Bold"), local("Roboto-Bold"), url("../fonts/roboto/700.woff") format("woff");
}

body {
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

a,
a:focus,
a:hover,
button,
pre {
    color: inherit;
}

.label,
.label.up {
    display: inline-block;
}

.btn.btn-default,
.btn.btn-secondary,
.btn.white,
.card,
blockquote,
pre {
    border-color: rgba(120, 130, 140, 0.13);
}

.navbar-brand:hover,
.pagination > li > a,
a,
a:focus,
a:hover {
    text-decoration: none;
}

[flex],
[layout] {
    box-sizing: border-box;
}

.h-1x,
.list-icon div,
.text-ellipsis {
    text-overflow: ellipsis;
    white-space: nowrap;
}

.avatar,
.h-1x,
.label,
.list-icon div,
.md-btn,
.text-ellipsis {
    white-space: nowrap;
}

.md-btn,
.text-u-c {
    text-transform: uppercase;
}

html {
    background-color: #e0e0e0;
}

body {
    color: rgba(0, 0, 0, 0.87);
    font-size: .875rem;
    background-color: #f0f0f0;
    -webkit-font-smoothing: antialiased;
}

:focus {
    outline: 0 !important;
}

a {
    cursor: pointer;
    outline: 0;
}

pre {
    background-color: #f8f8f8;
}

small {
    font-size: 90%;
}

sup {
    position: relative;
    top: -1em;
    font-size: 75%;
}

.pull-center {
    position: absolute;
    left: 50%;
}

.btn .label,
.btn-icon,
.label.up {
    position: relative;
}

.close {
    font-size: 1.3rem;
}

.img-responsive {
    width: 100%;
    height: auto;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.btn-icon,
.label,
.nav-icon,
.pager,
.progress-bar {
    text-align: center;
}

.pull-left {
    float: left;
}

.pull-right {
    float: right;
}

.center-block {
    margin: 0 auto;
}

@media (max-width: 767px) {
    .pull-none-sm {
        float: none !important;
    }
}

.label {
    padding: .25em .5em;
    font-size: 75%;
    line-height: 1;
    vertical-align: baseline;
    font-weight: 700;
    background-color: #b8b8b8;
    color: #fff;
    border-radius: .2rem;
}

    .btn-outline,
    .label.no-bg {
        background-color: transparent;
    }

    .label.no-bg {
        color: inherit;
    }

    .label.up {
        top: -10px;
        min-width: 4px;
        min-height: 4px;
    }

.label-lg {
    font-size: 1.33rem;
    padding: 5px 9px;
}

.label-sm {
    padding: .15em .35em;
}

.label-xs {
    padding: .1em .25em;
}

.list-group-item.active > .label,
.nav-pills > .active > a > .label {
    color: rgba(0, 0, 0, 0.87);
}

.btn .label {
    top: -1px;
}

.btn {
    font-weight: 500;
    outline: 0 !important;
}

.md-btn,
.md-btn:focus {
    outline: 0;
}

.btn:not([disabled]).active,
.btn:not([disabled]):focus,
.btn:not([disabled]):hover {
    box-shadow: inset 0 -10rem 0 rgba(158, 158, 158, 0.2);
}

.btn > i.pull-left,
.btn > i.pull-right {
    line-height: 1.5;
}

.btn.rounded {
    padding-left: 1.2em;
    padding-right: 1.2em;
}

.btn-md {
    padding: .4695rem .75rem;
    font-size: .9rem;
}

.btn-xs {
    padding: .2195rem .5rem;
    font-size: .8rem;
}

.btn-outline {
    border-width: 1px;
    box-shadow: none !important;
}

.btn.b-primary:focus,
.btn.b-primary:hover,
.btn.primary:focus,
.btn.primary:hover {
    color: rgba(255, 255, 255, 0.87) !important;
    background-color: #295288;
}

.btn.accent:focus,
.btn.accent:hover,
.btn.b-accent:focus,
.btn.b-accent:hover {
    color: rgba(255, 255, 255, 0.87) !important;
    background-color: #a88add;
}

.btn.b-warn:focus,
.btn.b-warn:hover,
.btn.warn:focus,
.btn.warn:hover {
    color: rgba(255, 255, 255, 0.87) !important;
    background-color: #fcc100;
}

.btn.b-success:focus,
.btn.b-success:hover,
.btn.success:focus,
.btn.success:hover {
    color: rgba(255, 255, 255, 0.87) !important;
    background-color: #6cc788;
}

.btn.b-blue:focus,
.btn.b-blue:hover,
.btn.blue:focus,
.btn.blue:hover {
    color: rgba(255, 255, 255, 0.87) !important;
    background-color: #2196f3;
}

.btn.b-info:focus,
.btn.b-info:hover,
.btn.info:focus,
.btn.info:hover {
    color: rgba(255, 255, 255, 0.87) !important;
    background-color: #6887ff;
}

.btn.b-warning:focus,
.btn.b-warning:hover,
.btn.warning:focus,
.btn.warning:hover {
    color: rgba(255, 255, 255, 0.87) !important;
    background-color: #f77a99;
}

.btn.b-danger:focus,
.btn.b-danger:hover,
.btn.danger:focus,
.btn.danger:hover {
    color: rgba(255, 255, 255, 0.87) !important;
    background-color: #f44455;
}

.btn.b-dark:focus,
.btn.b-dark:hover,
.btn.dark:focus,
.btn.dark:hover {
    color: rgba(255, 255, 255, 0.87) !important;
    background-color: #2e3e4e;
}

.btn.b-black:focus,
.btn.b-black:hover,
.btn.black:focus,
.btn.black:hover {
    color: rgba(255, 255, 255, 0.87) !important;
    background-color: #2a2b3c;
}

.btn.b-white:focus,
.btn.b-white:hover {
    color: rgba(0, 0, 0, 0.87) !important;
    background-color: #fff;
}

.btn.b-light:focus,
.btn.b-light:hover {
    color: rgba(0, 0, 0, 0.87) !important;
    background-color: #f8f8f8;
}

.btn-icon {
    padding: 0 !important;
    width: 2.375rem;
    height: 2.375rem;
    line-height: 2.375rem;
    overflow: hidden;
}

    .btn-icon i {
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        display: block;
        line-height: inherit;
        border-radius: inherit;
        -webkit-transition: all .3s;
        transition: all .3s;
    }

    .btn-icon.btn-xs {
        width: 1.5rem;
        height: 1.5rem;
        line-height: 1.5rem;
    }

    .btn-icon.btn-sm {
        width: 1.775rem;
        height: 1.775rem;
        line-height: 1.775rem;
    }

    .btn-icon.btn-lg {
        width: 3.167rem;
        height: 3.167rem;
        line-height: 3.167rem;
    }

    .btn-icon.btn-social i:last-child {
        top: 100%;
    }

    .btn-icon.btn-social.active i:first-child,
    .btn-icon.btn-social:focus i:first-child,
    .btn-icon.btn-social:hover i:first-child {
        top: -100%;
    }

    .btn-icon.btn-social.active i:last-child,
    .btn-icon.btn-social:focus i:last-child,
    .btn-icon.btn-social:hover i:last-child {
        top: 0;
        color: #fff;
    }

    .btn-icon.btn-social-colored i:first-child {
        color: #fff;
    }

.btn-default {
    background-color: #fff;
    color: rgba(0, 0, 0, 0.87);
}

.btn-groups .btn {
    margin-bottom: .25rem;
}

.btn-fw {
    min-width: 7rem;
}

.carousel-control .glyphicon {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;
    display: inline-block;
    margin-top: -10px;
    margin-left: -10px;
}

.dropdown-menu {
    font-size: .875rem;
    color: rgba(0, 0, 0, 0.87);
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    -webkit-transform-origin: top left;
    -moz-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
}

    .dropdown-menu > li:not(.dropdown-item) > a {
        display: block;
        padding: 3px 20px;
    }

        .dropdown-menu > li:not(.dropdown-item) > a:focus,
        .dropdown-menu > li:not(.dropdown-item) > a:hover {
            background-color: rgba(0, 0, 0, 0.065);
        }

    .dropdown-menu > .divider {
        height: 1px;
        margin: .5rem 0;
        overflow: hidden;
        background-color: rgba(120, 130, 140, 0.13);
    }

.modal-open-aside,
.modal.inactive {
    overflow: visible;
}

.dropdown-menu .active {
    background-color: rgba(0, 0, 0, 0.065);
}

.dropdown-menu.pull-left {
    left: auto !important;
    right: 100%;
}

.dropdown-menu.pull-right {
    left: auto;
    right: 0;
    -webkit-transform-origin: top right;
    -moz-transform-origin: top right;
    -ms-transform-origin: top right;
    transform-origin: top right;
}

.dropdown-menu.pull-up {
    top: 0;
}

.dropdown-menu.pull-down {
    top: 100% !important;
    left: 0 !important;
}

.dropup .dropdown-menu {
    -webkit-transform-origin: bottom left;
    -moz-transform-origin: bottom left;
    -ms-transform-origin: bottom left;
    transform-origin: bottom left;
}

    .dropup .dropdown-menu.pull-right {
        -webkit-transform-origin: bottom right;
        -moz-transform-origin: bottom right;
        -ms-transform-origin: bottom right;
        transform-origin: bottom right;
    }

.dropdown-menu.datepicker,
.dropdown-menu.timepicker {
    padding: 6px;
    font-size: .8rem;
}

    .dropdown-menu.datepicker .btn,
    .dropdown-menu.timepicker .btn {
        font-size: .8rem;
    }

        .dropdown-menu.datepicker .btn.btn-primary,
        .dropdown-menu.timepicker .btn.btn-primary {
            background-color: #6887ff;
            color: #fff;
        }

        .dropdown-menu.datepicker .btn:not(:hover),
        .dropdown-menu.timepicker .btn:not(:hover) {
            box-shadow: 0 0 1px transparent;
        }

.dropdown-item {
    color: inherit;
}

    .dropdown-item:focus,
    .dropdown-item:hover {
        color: inherit;
        background-color: rgba(0, 0, 0, 0.065);
    }

.dropdown-divider {
    background-color: rgba(120, 130, 140, 0.13);
}

.dropdown-menu-scale {
    display: block;
    opacity: 0;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transition: all 250ms cubic-bezier(0.24, 0.22, 0.015, 1.56);
    transition: all 250ms cubic-bezier(0.24, 0.22, 0.015, 1.56);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    pointer-events: none;
}

.open > .dropdown-menu-scale {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    pointer-events: auto;
    display: block !important;
}

.dropdown-header {
    padding: 8px 16px;
}

.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu:focus > .dropdown-menu,
    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }

    .dropdown-submenu .dropdown-menu {
        left: 100%;
        top: 0;
        margin-top: -6px;
        margin-left: -1px;
    }

.dropup .dropdown-submenu > .dropdown-menu {
    top: auto;
    bottom: 0;
    margin-bottom: -6px;
}

.popover {
    color: rgba(0, 0, 0, 0.87);
}

@media (max-width: 543px) {
    .pull-none-xs {
        float: none !important;
    }

    .dropdown-menu.pull-none-xs {
        left: 0;
    }
}

.form-control {
    border-color: rgba(120, 130, 140, 0.2);
    border-radius: 0;
}

    .form-control:focus {
        border-color: rgba(120, 130, 140, 0.3);
    }

.form-control-label {
    padding-top: .5rem;
    padding-bottom: .5rem;
    margin-bottom: 0;
}

.custom-select {
    border-color: rgba(120, 130, 140, 0.13);
}

.form-control::-webkit-input-placeholder {
    color: inherit;
    opacity: .3;
}

.form-control::-moz-placeholder {
    color: inherit;
    opacity: .3;
}

.form-control:-ms-input-placeholder {
    color: inherit;
    opacity: .3;
}

.form-control-spin {
    position: absolute;
    z-index: 2;
    right: 10px;
    top: 50%;
    margin-top: -7px;
}

.input-group-addon {
    border-color: rgba(120, 130, 140, 0.2) !important;
    background-color: transparent;
    color: inherit;
}

.form-group-stack .form-control {
    margin-top: -1px;
    position: relative;
    border-radius: 0;
}

    .form-group-stack .form-control:active,
    .form-group-stack .form-control:focus {
        z-index: 1;
    }

.form-validation .form-control.ng-dirty.ng-invalid {
    border-color: #f44455;
}

.form-validation .form-control.ng-dirty.ng-valid,
.form-validation .form-control.ng-dirty.ng-valid:focus {
    border-color: #6cc788;
}

.form-validation .ui-checks .ng-invalid.ng-dirty + i {
    border-color: #f44455;
}

.form-file {
    position: relative;
}

    .form-file input {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
    }

.input-group-sm > .form-control {
    min-height: 1.95rem;
}

.active-checked {
    opacity: 0;
}

input:checked + .active-checked {
    opacity: 1;
}

.list-group {
    border-radius: 3px;
    background: #fff;
}

    .list-group.no-radius .list-group-item {
        border-radius: 0 !important;
    }

    .list-group.no-borders .list-group-item {
        border: none;
    }

    .list-group.no-border .list-group-item {
        border-width: 1px 0;
    }

        .list-group.no-border .list-group-item:first-child {
            border-top-width: 0;
        }

        .list-group.no-border .list-group-item:last-child {
            border-bottom-width: 0;
        }

    .list-group.no-bg .list-group-item {
        background-color: transparent;
    }

    .list-group.list-group-gap {
        background: 0 0;
    }

.list-group-item {
    border-color: rgba(120, 130, 140, 0.065);
    background: 0 0;
    padding: 12px 16px;
    background-clip: padding-box;
}

    .list-group-item.media {
        margin-top: 0;
    }

    .list-group-item.active,
    .list-group-item.active:focus,
    .list-group-item.active:hover {
        color: inherit;
        background-color: rgba(0, 0, 0, 0.065);
        border-color: rgba(120, 130, 140, 0.065);
        border-bottom-color: rgba(120, 130, 140, 0.065);
    }

        .list-group-item.active a,
        .list-group-item.active:focus a,
        .list-group-item.active:hover a {
            color: inherit;
        }

    .list-group-item:first-child {
        border-top-color: rgba(120, 130, 140, 0.13);
    }

    .list-group-item:last-child {
        border-bottom-color: rgba(120, 130, 140, 0.13);
    }

.list-group-alt .list-group-item.active:nth-child(2n+2),
.list-group-alt .list-group-item:nth-child(2n+2) {
    background-color: rgba(0, 0, 0, 0.065);
}

.list-group-lg .list-group-item {
    padding: 16px 24px;
}

.list-group-md .list-group-item {
    padding-top: 16px;
    padding-bottom: 16px;
}

.list-group-sm .list-group-item {
    padding: 10px 12px;
}

.list-group-gap .list-group-item {
    margin-bottom: 5px;
    border-radius: 3px;
}

    .list-group-gap .list-group-item:first-child {
        border-top-color: rgba(120, 130, 140, 0.065);
    }

    .list-group-gap .list-group-item:last-child {
        border-bottom-color: rgba(120, 130, 140, 0.065);
    }

a.list-group-item {
    color: inherit;
}

    a.list-group-item.hover,
    a.list-group-item:focus,
    a.list-group-item:hover {
        color: inherit;
        background-color: rgba(0, 0, 0, 0.065);
    }

.modal .left {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    -moz-transition: -moz-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    -o-transition: -o-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal .right,
.modal .top {
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    -moz-transition: -moz-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    -o-transition: -o-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal .right {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal .top {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, 5px, 0);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal .bottom {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 5px, 0);
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    -moz-transition: -moz-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    -o-transition: -o-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal.in .bottom,
.modal.in .left,
.modal.in .right,
.modal.in .top {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.modal.inactive {
    bottom: auto;
}

.modal > .left,
.modal > .right {
    position: fixed;
    z-index: 1055;
    bottom: 0;
    top: 0;
}

.modal > .left {
    left: 0;
    right: auto;
}

.modal > .right {
    left: auto;
    right: 0;
}

.modal > .bottom,
.modal > .top {
    position: fixed;
    z-index: 1055;
    left: 0;
    right: 0;
}

.modal > .top {
    top: 0;
    bottom: auto;
}

.modal > .bottom {
    top: auto;
    bottom: 0;
}

.nav-link,
.nav-tabs {
    position: relative;
}

.modal-content,
.modal-footer,
.modal-header {
    border-color: rgba(120, 130, 140, 0.13);
}

.aside,
.modal-content {
    color: rgba(0, 0, 0, 0.87);
}

.aside-header,
.aside-header .close {
    color: inherit !important;
    background-color: transparent !important;
}

.aside-footer,
.aside-header {
    border-color: rgba(120, 130, 140, 0.13) !important;
}

.nav,
.nav-item,
.nav-link {
    border: inherit;
}

.aside-title {
    font-size: 1.2rem;
    margin: .45rem 0;
}

.modal.animate .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.modal.animate .fade-right-big {
    -webkit-animation: fadeOutLeftBig .5s;
    animation: fadeOutLeftBig .5s;
}

.modal.animate .fade-left-big {
    -webkit-animation: fadeOutRightBig .5s;
    animation: fadeOutRightBig .5s;
}

.modal.animate .fade-up-big {
    -webkit-animation: fadeOutUpBig .5s;
    animation: fadeOutUpBig .5s;
}

.modal.animate .fade-down-big {
    -webkit-animation: fadeOutDownBig .5s;
    animation: fadeOutDownBig .5s;
}

.modal.animate .fade-right {
    -webkit-animation: fadeOutLeft .5s;
    animation: fadeOutLeft .5s;
}

.modal.animate .fade-left {
    -webkit-animation: fadeOutRight .5s;
    animation: fadeOutRight .5s;
}

.modal.animate .fade-up {
    -webkit-animation: fadeOutUp .5s;
    animation: fadeOutUp .5s;
}

.modal.animate .fade-down {
    -webkit-animation: fadeOutDown .5s;
    animation: fadeOutDown .5s;
}

.modal.animate .flip-x {
    -webkit-animation: flipOutX .5s;
    animation: flipOutX .5s;
}

.modal.animate .flip-y {
    -webkit-animation: flipOutY .5s;
    animation: flipOutY .5s;
}

.modal.animate .zoom {
    -webkit-animation: zoomOut .5s;
    animation: zoomOut .5s;
}

.modal.animate .roll {
    -webkit-animation: rollOut .5s;
    animation: rollOut .5s;
}

.modal.animate .bounce {
    -webkit-animation: bounceOut .5s;
    animation: bounceOut .5s;
}

.modal.animate .rotate {
    -webkit-animation: rotateOut .5s;
    animation: rotateOut .5s;
}

.modal.animate.in .fade-right-big {
    -webkit-animation: fadeInRightBig .5s;
    animation: fadeInRightBig .5s;
}

.modal.animate.in .fade-left-big {
    -webkit-animation: fadeInLeftBig .5s;
    animation: fadeInLeftBig .5s;
}

.modal.animate.in .fade-up-big {
    -webkit-animation: fadeInUpBig .5s;
    animation: fadeInUpBig .5s;
}

.modal.animate.in .fade-down-big {
    -webkit-animation: fadeInDownBig .5s;
    animation: fadeInDownBig .5s;
}

.modal.animate.in .fade-right {
    -webkit-animation: fadeInRight .5s;
    animation: fadeInRight .5s;
}

.modal.animate.in .fade-left {
    -webkit-animation: fadeInLeft .5s;
    animation: fadeInLeft .5s;
}

.modal.animate.in .fade-up {
    -webkit-animation: fadeInUp .5s;
    animation: fadeInUp .5s;
}

.modal.animate.in .fade-down {
    -webkit-animation: fadeInDown .5s;
    animation: fadeInDown .5s;
}

.modal.animate.in .flip-x {
    -webkit-animation: flipInX .5s;
    animation: flipInX .5s;
}

.modal.animate.in .flip-y {
    -webkit-animation: flipInY .5s;
    animation: flipInY .5s;
}

.modal.animate.in .zoom {
    -webkit-animation: zoomIn .5s;
    animation: zoomIn .5s;
}

.modal.animate.in .roll {
    -webkit-animation: rollIn .5s;
    animation: rollIn .5s;
}

.modal.animate.in .bounce {
    -webkit-animation: bounceIn .5s;
    animation: bounceIn .5s;
}

.modal.animate.in .rotate {
    -webkit-animation: rotateIn .5s;
    animation: rotateIn .5s;
}

.nav-md .nav-link {
    padding: .5rem 1rem;
}

.nav-sm .nav-link {
    padding: .25rem .75rem;
}

.nav-xs .nav-link {
    padding: .15rem .5rem;
    font-size: 90%;
}

.nav-rounded .nav-link {
    border-radius: 2rem;
}

.nav-tabs {
    border-bottom-width: 0;
    z-index: 1;
}

    .nav-tabs .nav-link {
        background: 0 0 !important;
        color: inherit !important;
    }

        .nav-tabs .nav-link.active,
        .nav-tabs .nav-link.active:focus,
        .nav-tabs .nav-link.active:hover,
        .nav-tabs .nav-link:focus,
        .nav-tabs .nav-link:hover {
            border-color: rgba(120, 130, 140, 0.13);
            border-bottom-color: transparent;
        }

.tab-content.tab-alt .tab-pane {
    display: block;
    height: 0;
    overflow: hidden;
}

    .tab-content.tab-alt .tab-pane.active {
        height: auto;
        overflow: visible;
    }

.nav-justified .nav-item {
    display: table-cell;
    width: 1%;
    float: none !important;
    text-align: center;
}

.nav-lists .nav-item {
    border-bottom: 1px solid rgba(120, 130, 140, 0.13);
    background-clip: padding-box;
}

.nav-active-border .nav-link:before {
    content: '';
    position: absolute;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    left: 50%;
    right: 50%;
    bottom: 0;
    border-bottom-width: 3px;
    border-bottom-style: solid;
    border-bottom-color: transparent;
}

.nav-active-border .nav-link.active:before,
.nav-active-border .nav-link:focus:before,
.nav-active-border .nav-link:hover:before {
    left: 0;
    right: 0;
    border-bottom-color: inherit;
}

.nav-active-border.top .nav-link:before {
    bottom: auto;
    top: 0;
}

.nav-active-border.left .nav-link {
    float: none;
}

    .nav-active-border.left .nav-link:before {
        border-bottom-width: 0;
        right: auto;
        border-left-width: 3px;
        border-left-style: solid;
        border-left-color: transparent;
        left: 0;
        top: 50%;
        bottom: 50%;
    }

    .nav-active-border.left .nav-link.active:before,
    .nav-active-border.left .nav-link:focus:before,
    .nav-active-border.left .nav-link:hover:before {
        top: 0;
        bottom: 0;
        border-left-color: inherit;
    }

.nav-active-border.left.right .nav-link:before {
    left: auto;
    right: 0;
}

.breadcrumb {
    background-color: rgba(0, 0, 0, 0.065);
}

    .breadcrumb > li + li:before {
        content: '/ ';
    }

.app-content::after,
.arrow:after,
.arrow:before,
.list-body:after,
.list-item::after,
.navside .nav li a::after,
.pager::after,
.ui-check > i:before {
    content: "";
}

.navbar {
    border: none;
    margin: 0;
    padding: 0 1rem;
    flex-shrink: 0;
    min-height: 3.5rem;
}

    .navbar .up {
        margin: 0 -.6em;
    }

.navbar-item,
.tl-content.panel {
    margin-bottom: 0;
}

.navbar .avatar {
    top: -2px;
}

.navbar-item {
    margin-right: 1rem;
}

.navbar-brand,
.navbar-item,
.navbar-nav > .nav-item > .nav-link,
.navbar-nav > .nav-link {
    padding: 0;
    line-height: 3.5rem;
    white-space: nowrap;
}

.navbar-md {
    min-height: 4rem;
}

    .navbar-md .navbar-brand,
    .navbar-md .navbar-item,
    .navbar-md .navbar-nav > .nav-item > .nav-link,
    .navbar-md .navbar-nav > .nav-link {
        line-height: 4rem;
    }

.navbar-sm {
    min-height: 3rem;
}

    .navbar-sm .navbar-brand,
    .navbar-sm .navbar-item,
    .navbar-sm .navbar-nav > .nav-item > .nav-link,
    .navbar-sm .navbar-nav > .nav-link {
        line-height: 3rem;
    }

.navbar-brand {
    padding: 0;
    font-size: 20px;
    font-weight: 700;
}

    .navbar-brand img,
    .navbar-brand svg {
        max-height: 24px;
        vertical-align: -4px;
        display: inline-block;
    }

    .navbar-brand > span {
        display: inline-block;
        line-height: .8;
        margin-left: 10px;
    }

    .navbar-brand.md img,
    .navbar-brand.md svg {
        max-height: 32px;
        vertical-align: -8px;
    }

    .navbar-brand.lg img,
    .navbar-brand.lg svg {
        max-height: 48px;
        vertical-align: -16px;
    }

.pull-center .navbar-brand {
    margin-left: -50%;
    float: left;
}

.navbar .collapse.in,
.navbar .collapsing {
    clear: left;
    padding-bottom: 1rem;
}

.collapse.in .navbar-nav,
.collapsing .navbar-nav {
    float: none !important;
}

    .collapse.in .navbar-nav:not(.navbar-nav-inline) .nav-item,
    .collapsing .navbar-nav:not(.navbar-nav-inline) .nav-item {
        float: none;
        margin: 0;
    }

    .collapse.in .navbar-nav:not(.navbar-nav-inline) .nav-link,
    .collapsing .navbar-nav:not(.navbar-nav-inline) .nav-link {
        display: block;
        line-height: 2 !important;
    }

.collapse.in .navbar-form,
.collapsing .navbar-form {
    margin: 0 !important;
    padding: .5rem 0;
    float: none !important;
}

.collapse.in .nav-active-border,
.collapsing .nav-active-border {
    border-color: transparent;
}

.collapse.in .dropdown-menu-scale,
.collapsing .dropdown-menu-scale {
    display: none;
}

.pager .page-item,
.pager > li > a,
.pager > li > span,
.pagination .page-item,
.pagination > li > a,
.pagination > li > span {
    color: inherit !important;
    background-color: transparent !important;
    border-color: rgba(120, 130, 140, 0.13) !important;
}

    .pager .page-item:focus,
    .pager .page-item:hover,
    .pager > li > a:focus,
    .pager > li > a:hover,
    .pager > li > span:focus,
    .pager > li > span:hover,
    .pagination .page-item:focus,
    .pagination .page-item:hover,
    .pagination > li > a:focus,
    .pagination > li > a:hover,
    .pagination > li > span:focus,
    .pagination > li > span:hover {
        border-color: rgba(120, 130, 140, 0.13);
        background-color: rgba(0, 0, 0, 0.065);
        color: inherit;
    }

    .pager .page-item.active,
    .pager > .active > a,
    .pager > .active > span,
    .pagination .page-item.active,
    .pagination > .active > a,
    .pagination > .active > span {
        color: #fff !important;
        background-color: #295288 !important;
        border-color: #295288 !important;
    }

.pagination > li {
    display: inline;
    list-style: none;
}

    .pagination > li > a {
        position: relative;
        float: left;
        padding: .5rem .75rem;
        margin-left: -1px;
        line-height: 1.5;
        color: #0275d8;
        background-color: #fff;
        border: 1px solid #ddd;
    }

        .pagination > li > a:focus,
        .pagination > li > a:hover {
            color: #014c8c;
            background-color: #eceeef;
            border-color: #ddd;
        }

.pager {
    padding-left: 0;
    margin-top: 1rem;
    margin-bottom: 1rem;
    list-style: none;
}

    .pager::after {
        display: table;
        clear: both;
    }

    .pager li {
        display: inline;
    }

        .pager li > a,
        .pager li > span {
            display: inline-block;
            padding: 5px 14px;
            background-color: rgba(0, 0, 0, 0.065);
            border: 1px solid rgba(120, 130, 140, 0.13);
            border-radius: 500px;
        }

            .pager li > a:focus,
            .pager li > a:hover {
                text-decoration: none;
                background-color: rgba(0, 0, 0, 0.065);
            }

    .pager .disabled > a,
    .pager .disabled > a:focus,
    .pager .disabled > a:hover,
    .pager .disabled > span {
        cursor: inherit;
        background-color: rgba(0, 0, 0, 0.065);
    }

.md-btn,
.pointer,
.ui-check,
.ui-switch {
    cursor: pointer;
}

.pager-next > a,
.pager-next > span {
    float: right;
}

.pager-prev > a,
.pager-prev > span {
    float: left;
}

.progress[value]::-webkit-progress-bar {
    background-color: rgba(0, 0, 0, 0.065);
}

.progress {
    border-radius: .25rem;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.065);
}

.progress-bar {
    display: inline-block;
    float: left;
    height: 100%;
    border-radius: .25rem;
    background-color: #0074d9;
    font-size: .8em;
    -webkit-transition: width .6s ease;
    transition: width .6s ease;
}

.avatar,
.avatar img {
    border-radius: 500px;
}

.progress-xxs {
    height: 4px;
}

.progress-xs {
    height: 8px;
}

.progress-sm {
    height: 12px;
    font-size: .8em;
}

.progress-bar-striped,
.progress-striped .progress-bar {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    -webkit-background-size: 40px 40px;
    background-size: 40px 40px;
}

.progress-bar.active,
.progress.active .progress-bar {
    -webkit-animation: progress-bar-stripes 2s linear infinite;
    -o-animation: progress-bar-stripes 2s linear infinite;
    animation: progress-bar-stripes 2s linear infinite;
}

@-webkit-keyframes progress-bar-stripes {
    from {
        background-position: 40px 0;
    }

    to {
        background-position: 0 0;
    }
}

@-o-keyframes progress-bar-stripes {
    from {
        background-position: 40px 0;
    }

    to {
        background-position: 0 0;
    }
}

@keyframes progress-bar-stripes {
    from {
        background-position: 40px 0;
    }

    to {
        background-position: 0 0;
    }
}

.col-0 {
    clear: left;
}

.row.no-gutter {
    margin-left: 0;
    margin-right: 0;
}

    .row.no-gutter [class*=col-] {
        padding-left: 0;
        padding-right: 0;
    }

.row {
    margin-left: -12px;
    margin-right: -12px;
}

    .row [class*=col-] {
        padding-left: 12px;
        padding-right: 12px;
    }

.row-sm {
    margin-left: -8px;
    margin-right: -8px;
}

    .row-sm [class*=col-] {
        padding-left: 8px;
        padding-right: 8px;
    }

.row-xs {
    margin-left: -4px;
    margin-right: -4px;
}

    .row-xs [class*=col-] {
        padding-left: 4px;
        padding-right: 4px;
    }

@media (max-width: 991px) {
    .row {
        margin-left: -8px;
        margin-right: -8px;
    }

        .row [class*=col-] {
            padding-left: 8px;
            padding-right: 8px;
        }

    .row-2 [class*=col] {
        width: 50%;
        float: left;
    }

    .row-2 .col-0 {
        clear: none;
    }

    .row-2 li:nth-child(odd) {
        clear: left;
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .row {
        margin-left: -4px;
        margin-right: -4px;
    }

        .row [class*=col-] {
            padding-left: 4px;
            padding-right: 4px;
        }
}

.panel .table {
    border-color: rgba(120, 130, 140, 0.045) !important;
}

.table-bordered,
.table > thead > tr > th {
    border-color: rgba(120, 130, 140, 0.045);
}

.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td,
.table > tfoot > tr > th {
    padding-left: 16px;
    padding-right: 16px;
    border-color: rgba(120, 130, 140, 0.045);
}

.table > thead > tr > th {
    padding: 10px 16px;
}

.table-condensed tbody > tr > td,
.table-condensed tbody > tr > th,
.table-condensed tfoot > tr > td,
.table-condensed tfoot > tr > th,
.table-condensed thead > tr > td,
.table-condensed thead > tr > th {
    padding: 5px;
}

.table-striped > tbody > tr:nth-child(odd) {
    background-color: rgba(0, 0, 0, 0.025);
    background-clip: padding-box;
}

.table-striped > thead > th {
    background-color: rgba(0, 0, 0, 0.025);
    border-right: 1px solid rgba(120, 130, 140, 0.045);
}

    .table-striped > thead > th:last-child {
        border-right: none;
    }

.arrow.bottom:after,
.arrow.right:after,
.arrow.top:after {
    border-right-color: transparent;
}

.table td.active,
.table th.active,
.table tr.active,
.table-hover tr:hover {
    background-color: rgba(0, 0, 0, 0.065) !important;
}

.arrow {
    position: absolute;
    z-index: 10;
}

    .arrow:after,
    .arrow:before {
        position: absolute;
        left: 0;
        display: block;
        width: 0;
        height: 0;
        border-width: 9px;
        border-color: transparent;
        border-style: solid;
    }

    .arrow:after {
        border-width: 8px;
    }

    .arrow.top {
        top: -9px;
        left: 50%;
        margin-left: -9px;
    }

        .arrow.top.pull-in {
            top: -4px;
        }

        .arrow.top:before {
            border-bottom-color: rgba(120, 130, 140, 0.13);
            border-top-width: 0;
        }

        .arrow.top:after {
            top: 1px;
            left: 1px;
            border-top-color: transparent;
            border-bottom-color: inherit;
            border-left-color: transparent;
            border-top-width: 0;
        }

    .arrow.right {
        top: 50%;
        right: 0;
        margin-top: -9px;
    }

        .arrow.right.pull-in {
            right: 4px;
        }

        .arrow.right:before {
            border-left-color: rgba(120, 130, 140, 0.13);
            border-right-width: 0;
        }

        .arrow.right:after {
            top: 1px;
            left: 0;
            border-top-color: transparent;
            border-bottom-color: transparent;
            border-left-color: inherit;
            border-right-width: 0;
        }

    .arrow.bottom:after,
    .arrow.left:after {
        border-bottom-color: transparent;
        border-left-color: transparent;
    }

    .arrow.bottom {
        bottom: 0;
        left: 50%;
        margin-left: -9px;
    }

        .arrow.bottom.pull-in {
            bottom: 4px;
        }

        .arrow.bottom:before {
            border-top-color: rgba(120, 130, 140, 0.13);
            border-bottom-width: 0;
        }

        .arrow.bottom:after {
            top: 0;
            left: 1px;
            border-top-color: inherit;
            border-bottom-width: 0;
        }

    .arrow.left {
        top: 50%;
        left: -9px;
        margin-top: -9px;
    }

        .arrow.left.pull-in {
            left: -4px;
        }

        .arrow.left:before {
            border-right-color: rgba(120, 130, 140, 0.13);
            border-left-width: 0;
        }

        .arrow.left:after {
            top: 1px;
            left: 1px;
            border-top-color: transparent;
            border-right-color: inherit;
            border-left-width: 0;
        }

    .arrow.pull-left {
        left: 18px;
    }

    .arrow.pull-right {
        left: auto;
        right: 26px;
    }

    .arrow.pull-top {
        top: 18px;
    }

    .arrow.pull-bottom {
        top: auto;
        bottom: 26px;
    }

    .arrow.b-accent:before,
    .arrow.b-danger:before,
    .arrow.b-dark:before,
    .arrow.b-info:before,
    .arrow.b-primary:before,
    .arrow.b-success:before,
    .arrow.b-blue:before,
    .arrow.b-warning:before {
        border-color: transparent;
    }

.avatar {
    position: relative;
    display: inline-block;
    width: 40px;
    line-height: 1;
    font-weight: 700;
}

    .avatar img {
        width: 100%;
    }

    .avatar i {
        position: absolute;
        left: 0;
        top: 0;
        width: 10px;
        height: 10px;
        margin: 1px;
        border-width: 2px;
        border-style: solid;
        border-radius: 100%;
    }

        .avatar i.bottom,
        .avatar i.right {
            left: auto;
            right: 0;
        }

        .avatar i.bottom,
        .avatar i.left {
            top: auto;
            bottom: 0;
        }

        .avatar i.on {
            background-color: #6cc788;
        }

        .avatar i.off {
            background-color: #f8f8f8;
        }

        .avatar i.away {
            background-color: #f77a99;
        }

        .avatar i.busy {
            background-color: #f44455;
        }

    .avatar.w-32 i {
        margin: 0;
    }

    .avatar.w-48 i {
        margin: 2px;
    }

    .avatar.w-56 i {
        margin: 3px;
    }

    .avatar.w-64 i {
        margin: 4px;
    }

    .avatar.w-96 i {
        margin: 9px;
    }

    .avatar.w-128 i {
        margin: 14px;
    }

.row-col {
    display: table;
    table-layout: fixed;
    border-spacing: 0;
    width: 100%;
    height: 100%;
}

    .row-col > [class*=col-],
    .row-col > [class*=" col-"] {
        vertical-align: top;
        float: none;
        padding: 0;
        position: static;
    }

.box-body,
.box-footer,
.box-header {
    padding: 1rem;
}

.row-row {
    display: table-row;
    height: 100%;
}

.row-cell {
    display: table-cell;
    vertical-align: top;
}

.row-body {
    position: relative;
    height: 100%;
    width: 100%;
}

.ie .row-body {
    display: table-cell;
    overflow: auto;
}

    .ie .row-body .row-inner {
        overflow: visible !important;
    }

.row-inner {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.v-m {
    vertical-align: middle !important;
}

.v-t {
    vertical-align: top !important;
}

.v-b {
    vertical-align: bottom !important;
}

.easyPieChart canvas,
.navbar .nav-text,
.sl-icon > i,
.ui-check > i {
    vertical-align: middle;
}

.v-c {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}

@media (min-width: 992px) {
    .row-col > [class*=col-lg],
    .row-col > [class*=" col-lg"] {
        display: table-cell;
        height: 100%;
    }
}

@media (min-width: 768px) {
    .row-col > [class*=col-md],
    .row-col > [class*=" col-md"] {
        display: table-cell;
        height: 100%;
    }
}

@media (min-width: 544px) {
    .row-col > [class*=col-sm],
    .row-col > [class*=" col-sm"] {
        display: table-cell;
        height: 100%;
    }
}

.row-col > [class*=col-xs],
.row-col > [class*=" col-xs"] {
    display: table-cell;
    height: 100%;
}

@media (max-width: 543px) {
    .row-col-xs {
        display: block;
    }

        .row-col-xs .row-body {
            overflow: visible !important;
        }

        .row-col-xs .row-inner {
            position: static;
        }
}

.box,
.box-color {
    background-color: #fff;
    position: relative;
    margin-bottom: 1.5rem;
}

.box-header {
    position: relative;
    padding: 10px 10px;
}

    .box-header h2,
    .box-header h3,
    .box-header h4 {
        margin: 0;
        font-size: 18px;
        line-height: 1;
    }

    .box-header h3 {
        font-size: 16px;
    }

    .box-header h4 {
        font-size: 15px;
    }

    .box-header small {
        display: block;
        margin-top: 4px;
        opacity: .6;
    }

.box-divider {
    border-bottom: 1px solid rgba(120, 130, 140, 0.13);
    margin: 0 16px;
    height: 0;
}

.ui-check > i,
.ui-check > span {
    margin-left: -20px;
}

.box-tool {
    position: absolute;
    right: 16px;
    top: 14px;
}

.box-shadow,
.box-shadow .box,
.box-shadow .box-color {
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.03), 0 1px 0 rgba(0, 0, 0, 0.03);
}

.box-shadow-z0,
.box-shadow-z0 .box,
.box-shadow-z0 .box-color {
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
}

.box-shadow-z1,
.box-shadow-z1 .box,
.box-shadow-z1 .box-color {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 -1px 0 rgba(0, 0, 0, 0.02);
}

.box-shadow-z2,
.box-shadow-z2 .box,
.box-shadow-z2 .box-color {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15), 0 -1px 0 rgba(0, 0, 0, 0.02);
}

.box-shadow-z3,
.box-shadow-z3 .box,
.box-shadow-z3 .box-color {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 -1px 0 rgba(0, 0, 0, 0.02);
}

.box-shadow-z4,
.box-shadow-z4 .box,
.box-shadow-z4 .box-color {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.26), 0 -1px 0 rgba(0, 0, 0, 0.02);
}

.box-radius-1x,
.box-radius-1x .box,
.box-radius-1x .box-color {
    border-radius: 2px;
}

.box-radius-2x,
.box-radius-2x .box,
.box-radius-2x .box-color {
    border-radius: 3px;
}

.box-radius-3x,
.box-radius-3x .box,
.box-radius-3x .box-color {
    border-radius: 4px;
}

.ui-check {
    position: relative;
    padding-left: 20px;
}

    .ui-check input {
        opacity: 0;
        position: absolute;
        z-index: -1;
    }

        .ui-check input:checked + i:before {
            left: 5px;
            top: 5px;
            width: 6px;
            height: 6px;
            background-color: #295288;
        }

        .ui-check input:checked + span .active {
            display: inherit;
        }

        .ui-check input[type=radio] + i,
        .ui-check input[type=radio] + i:before {
            border-radius: 50%;
        }

        .ui-check input[disabled] + i,
        fieldset[disabled] .ui-check input + i {
            border-color: rgba(134, 143, 152, 0.2);
        }

            .ui-check input[disabled] + i:before,
            fieldset[disabled] .ui-check input + i:before {
                background-color: rgba(134, 143, 152, 0.2);
            }

    .ui-check > i {
        width: 16px;
        height: 16px;
        line-height: 1;
        box-shadow: 0 0 1px rgba(120, 130, 140, 0.35);
        margin-top: -2px;
        display: inline-block;
        margin-right: 4px;
        background-clip: padding-box;
        position: relative;
    }

        .ui-check > i:before {
            position: absolute;
            left: 50%;
            top: 50%;
            width: 0;
            height: 0;
            background-color: transparent;
        }

    .ui-check > span .active {
        display: none;
    }

    .ui-check.ui-check-color input:checked + i:before {
        background-color: #fff;
    }

.ui-check-md input:checked + i:before {
    left: 6px;
    top: 6px;
}

.ui-check-md > i {
    width: 18px;
    height: 18px;
}

.ui-check-lg input:checked + i:before {
    width: 12px;
    height: 12px;
    left: 9px;
    top: 9px;
}

.ui-check-lg > i {
    width: 30px;
    height: 30px;
}

[layout] {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
}

[layout=column] {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

[layout=row] {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

[layout-wrap] {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

[layout-fill] {
    margin: 0;
    min-height: 100%;
    width: 100%;
}

@-moz-document url-prefix() {
    [layout-fill] {
        margin: 0;
        width: 100%;
        min-height: auto;
        height: inherit;
    }
}

.app-footer,
.app-header {
    left: 0;
    right: 0;
    margin: inherit;
}

[flex] {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

[flex-no-shrink] {
    flex-shrink: 0;
}

html {
    height: 100%;
}

body {
    height: auto;
    min-height: 100%;
    position: relative;
}

.app-aside,
.app-fixed .app {
    height: 100%;
}

.app-aside {
    position: fixed !important;
    z-index: 1030;
    float: left;
}

.app-content {
    box-shadow: none;
}

    .app-content::after {
        display: table;
        clear: both;
    }

.app-header {
    position: fixed;
    top: 0;
    z-index: 1020;
}

    .app-header ~ .app-body {
        padding-top: 3.5rem;
    }

    .app-header.navbar-md ~ .app-body {
        padding-top: 4rem;
    }

    .app-header.navbar-sm ~ .app-body {
        padding-top: 3rem;
    }

.app-body-inner {
    padding-top: inherit !important;
    padding-bottom: inherit !important;
    position: absolute;
    top: 0;
    bottom: 0;
    overflow: auto;
}

.app-footer {
    position: absolute;
    bottom: 0;
    z-index: 1;
}

    .app-footer:not(.hide) ~ .app-body {
        padding-bottom: 3.125rem;
    }

.app-fixed {
    overflow: hidden;
}

    .app-fixed .app-content {
        position: relative;
        min-height: 100%;
    }

    .app-fixed .app-footer {
        margin-left: 0;
    }

@media (min-width: 992px) {
    .app-aside {
        opacity: 1;
        display: block !important;
    }

        .app-aside,
        .app-aside .scroll {
            width: 16.5rem;
        }

            .app-aside.lg:not(.folded),
            .app-aside.lg:not(.folded) .scroll {
                width: 13.75rem;
            }

            .app-aside.lg:not(.hide) ~ .app-content {
                margin-left: 13.75rem;
            }

            .app-aside.sm:not(.folded),
            .app-aside.sm:not(.folded) .scroll {
                width: 11.25rem;
            }

            .app-aside.sm:not(.hide) ~ .app-content {
                margin-left: 11.25rem;
            }

            .app-aside.folded {
                width: 4rem;
            }

                .app-aside.folded:not(.hide) ~ .app-content {
                    margin-left: 4rem;
                }

                .app-aside.folded.md {
                    width: 5rem;
                }

                    .app-aside.folded.md:not(.hide) ~ .app-content {
                        margin-left: 5rem;
                    }

            .app-aside:not(.hide) ~ .app-content {
                margin-left: 13rem;
            }

            .app-aside .left {
                position: absolute;
                right: 0;
                -webkit-transform: translate3d(0, 0, 0);
                transform: translate3d(0, 0, 0);
            }

    .hide-scroll {
        width: auto;
        margin-right: -17px;
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 991px) {
    .app-aside.modal {
        width: 100%;
        position: fixed;
        z-index: 1050;
    }

    .app-aside .left {
        position: fixed;
        width: 304px;
    }

    .app .container,
    body.container {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
}

@media print {
    .app-aside,
    .app-footer,
    .app-header,
    .switcher {
        display: none;
    }
}

.ie9 .app-aside {
    position: static !important;
}

    .ie9 .app-aside .left {
        width: inherit;
        position: absolute;
    }

@media (min-width: 992px) {
    body.container {
        box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    }

        body.container,
        body.container .container {
            padding-left: 0;
            padding-right: 0;
        }

            body.container .app-aside {
                left: inherit;
                right: auto;
            }

                body.container .app-aside.lg ~ .app-content .app-header {
                    width: 45rem;
                }

                body.container .app-aside.sm ~ .app-content .app-header {
                    width: 47.5rem;
                }

                body.container .app-aside.folded ~ .app-content .app-header {
                    width: 54.75rem;
                }

                body.container .app-aside.folded.md ~ .app-content .app-header {
                    width: 53.75rem;
                }

                body.container .app-aside ~ .app-content .app-header {
                    width: 46.25rem;
                }

            body.container .app-header {
                left: inherit;
                right: auto;
                margin-left: 0;
                width: 58.75rem;
            }
}

@media (min-width: 1200px) {
    body.container .app-aside.lg ~ .app-content .app-header {
        width: 57.5rem;
    }

    body.container .app-aside.sm ~ .app-content .app-header {
        width: 60rem;
    }

    body.container .app-aside.folded ~ .app-content .app-header {
        width: 67.25rem;
    }

    body.container .app-aside.folded.md ~ .app-content .app-header {
        width: 66.25rem;
    }

    body.container .app-aside ~ .app-content .app-header {
        width: 58.75rem;
    }

    body.container .app-header {
        width: 71.25rem;
    }
}

.list {
    padding-left: 0;
    padding-right: 0;
    border-radius: 3px;
}

    .list.no-border {
        padding-top: 8px;
        padding-bottom: 8px;
    }

.list-item {
    display: block;
    position: relative;
    padding: 12px 16px;
}

    .list-item::after {
        display: table;
        clear: both;
    }

.no-border .list-body:after,
.pace-inactive {
    display: none;
}

.list-item:last-child .list-body:after {
    border: none;
}

.no-border .list-item {
    padding-top: 8px;
    padding-bottom: 8px;
}

.no-padding .list-item {
    padding-left: 0;
    padding-right: 0;
}

.list-left {
    float: left;
    padding-right: 1rem;
}

    .list-left + .list-body {
        margin-left: 56px;
    }

.list-body h3 {
    font-size: 16px;
    margin: 0 0 3px;
    font-weight: 400;
}

.list-body:after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-bottom: 1px solid rgba(120, 130, 140, 0.065);
}

.inset .list-body:after {
    left: 72px;
}

.pace {
    -webkit-pointer-events: none;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

    .pace .pace-progress {
        background: #295288;
        position: fixed;
        z-index: 2000;
        top: 0;
        right: 100%;
        width: 100%;
        height: 2px;
    }

    .pace .pace-activity {
        display: block;
        position: fixed;
        z-index: 2000;
        top: 5px;
        right: 5px;
        width: 14px;
        height: 14px;
        border: 2px solid transparent;
        border-top-color: #295288;
        border-left-color: #295288;
        border-radius: 10px;
        -webkit-animation: loading-bar-spinner .4s linear infinite;
        -moz-animation: loading-bar-spinner .4s linear infinite;
        -ms-animation: loading-bar-spinner .4s linear infinite;
        -o-animation: loading-bar-spinner .4s linear infinite;
        animation: loading-bar-spinner .4s linear infinite;
    }

.nav-icon i,
.navside .nav li {
    position: relative;
}

.navside,
.navside .nav {
    border: inherit;
}

@-webkit-keyframes loading-bar-spinner {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes loading-bar-spinner {
    0% {
        -moz-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -moz-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes loading-bar-spinner {
    0% {
        -o-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-ms-keyframes loading-bar-spinner {
    0% {
        -ms-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loading-bar-spinner {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.navside ul {
    padding-left: 0;
    padding-right: 0;
    list-style: none;
}

.navside [flex] {
    overflow: auto;
}

.navside .nav li {
    border: inherit;
}

    .navside .nav li li a {
        line-height: 2rem;
        padding-left: 3.5rem;
    }

        .navside .nav li li a .nav-text {
            padding: .4375rem 0;
        }

    .navside .nav li li li a {
        padding-left: 4.5rem;
    }

    .navside .nav li li li li a {
        padding-left: 5.5rem;
    }

    .navside .nav li a,
    .navside .nav-header {
        padding: 0 1rem;
        line-height: 2.25rem;
    }

    .navside .nav li a {
        display: block;
        position: relative;
    }

        .navside .nav li a::after {
            display: table;
            clear: both;
        }

        .navside .nav li a:focus,
        .navside .nav li a:hover,
        .navside .nav li.active {
            background-color: rgba(0, 0, 0, 0.065);
        }

            .navside .nav li.active > a {
                background-color: transparent;
            }

                .navside .nav li.active > a .nav-caret i {
                    -webkit-transform: rotate(180deg);
                    -ms-transform: rotate(180deg);
                    transform: rotate(180deg);
                }

.navside .nav-header:focus,
.navside .nav-header:hover {
    background-color: transparent !important;
}

.navside .nav-header:after {
    display: none;
}

.nav-text,
.nav-text small,
.nav-text span {
    display: block;
}

.navside .navbar-brand {
    float: none;
    margin-right: 0;
}

.nav-fold {
    padding: .75rem 1rem;
}

.nav-text {
    line-height: 1.125rem;
    padding: .5625rem 0;
}

.nav > li > a .nav-text {
    font-weight: 500;
}

.navside .nav-text {
    opacity: .75;
}

.navside .active > a > .nav-text,
.navside a:focus > .nav-text,
.navside a:hover > .nav-text {
    opacity: 1;
}

.navbar .nav-text {
    line-height: 1;
    display: inline-block;
    padding: 0;
}

    .navbar .nav-text span.text-xs {
        margin-top: .25rem;
    }

.nav-icon {
    float: left;
    line-height: inherit;
    margin-right: 1rem;
    top: 0;
    min-width: 1.5rem;
}

    .nav-icon i img,
    .nav-icon i svg {
        display: none;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }

.navbar .nav-icon {
    margin-right: .5rem;
}

.nav-label {
    float: right;
    margin-left: 1rem;
    font-style: normal;
    z-index: 1;
}

.navbar .nav-label {
    margin-left: .5rem;
}

.nav-caret {
    float: right;
    margin-left: 1rem;
    opacity: .45;
}

.blur-5,
.opacity {
    opacity: .5;
}

.nav-caret i {
    -webkit-transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
}

.navbar .nav-caret {
    margin-left: .5rem;
}

.nav-sub {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height .4s ease 0s;
    transition: max-height .4s ease 0s;
}

.active > .nav-sub {
    max-height: 50rem;
}

@media (min-width: 992px) {
    .folded .hidden-folded,
    .folded .nav li ul,
    .folded .nav > li > a .nav-caret,
    .folded .nav > li > a .nav-text {
        display: none;
    }

    .folded .nav > li > a,
    .folded .navbar {
        text-align: center;
        padding-left: 4px;
        padding-right: 4px;
    }

    .folded,
    .folded .scroll {
        width: 4rem;
    }

        .folded.md,
        .folded.md .scroll {
            width: 5rem;
        }

        .folded .nav > li > a .nav-label {
            position: absolute;
            top: -6px;
            right: 6px;
        }

        .folded .nav > li > a .nav-icon {
            float: none;
            line-height: 2.5rem;
            margin-left: 0;
            margin-right: 0;
            position: relative;
        }

        .folded.show-text .nav > li > a .nav-text {
            display: block;
            margin-top: -18px;
            font-size: .85em;
        }

        .folded .navbar-brand {
            float: none;
            margin: 0;
        }

        .folded .nav-stacked .nav {
            margin: 0 12px;
        }

        .folded .nav-fold {
            padding: 8px 16px;
        }

            .folded .nav-fold .pull-left {
                float: none !important;
                margin: 0;
            }

                .folded .nav-fold .pull-left img {
                    width: 100%;
                    height: auto;
                }

        .folded.nav-expand {
            -webkit-transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            -webkit-backface-visibility: hidden;
            -moz-backface-visibility: hidden;
            backface-visibility: hidden;
            overflow-x: hidden;
            overflow-y: auto;
            position: absolute;
        }

            .folded.nav-expand.active,
            .folded.nav-expand.active .scroll,
            .folded.nav-expand:focus,
            .folded.nav-expand:focus .scroll,
            .folded.nav-expand:hover,
            .folded.nav-expand:hover .scroll {
                width: 16.5rem !important;
            }

                .folded.nav-expand.active > *,
                .folded.nav-expand:focus > *,
                .folded.nav-expand:hover > * {
                    width: 16.5rem;
                }

                .folded.nav-expand.active .hidden-folded,
                .folded.nav-expand:focus .hidden-folded,
                .folded.nav-expand:hover .hidden-folded {
                    display: block;
                }

                    .folded.nav-expand.active .hidden-folded.inline,
                    .folded.nav-expand:focus .hidden-folded.inline,
                    .folded.nav-expand:hover .hidden-folded.inline {
                        display: inline-block;
                    }

                .folded.nav-expand.active .nav li ul,
                .folded.nav-expand:focus .nav li ul,
                .folded.nav-expand:hover .nav li ul {
                    display: inherit;
                }

                .folded.nav-dropdown .nav > li:focus > ul,
                .folded.nav-dropdown .nav > li:hover > ul,
                .folded.nav-expand.active .nav > li > a .nav-caret,
                .folded.nav-expand.active .nav > li > a .nav-text,
                .folded.nav-expand:focus .nav > li > a .nav-caret,
                .folded.nav-expand:focus .nav > li > a .nav-text,
                .folded.nav-expand:hover .nav > li > a .nav-caret,
                .folded.nav-expand:hover .nav > li > a .nav-text,
                .nav-dropup .nav > li:focus > ul,
                .nav-dropup .nav > li:hover > ul {
                    display: block;
                }

                .folded.nav-expand.active .nav > li > a,
                .folded.nav-expand:focus .nav > li > a,
                .folded.nav-expand:hover .nav > li > a {
                    text-align: left;
                    padding-left: 16px;
                    padding-right: 16px;
                }

                    .folded.nav-expand.active .nav > li > a .nav-text,
                    .folded.nav-expand:focus .nav > li > a .nav-text,
                    .folded.nav-expand:hover .nav > li > a .nav-text {
                        font-size: 1em;
                        margin: 0;
                    }

                    .folded.nav-expand.active .nav > li > a .nav-label,
                    .folded.nav-expand:focus .nav > li > a .nav-label,
                    .folded.nav-expand:hover .nav > li > a .nav-label {
                        position: static;
                    }

                    .folded.nav-expand.active .nav > li > a .nav-icon,
                    .folded.nav-expand:focus .nav > li > a .nav-icon,
                    .folded.nav-expand:hover .nav > li > a .nav-icon {
                        float: left;
                        line-height: inherit;
                        margin-right: 16px;
                    }

                .folded.nav-expand.active .navbar,
                .folded.nav-expand:focus .navbar,
                .folded.nav-expand:hover .navbar {
                    text-align: left;
                    padding-left: 1rem;
                    padding-right: 1rem;
                }

                .folded.nav-expand.active .nav-stacked .nav,
                .folded.nav-expand:focus .nav-stacked .nav,
                .folded.nav-expand:hover .nav-stacked .nav {
                    margin: 0 8px;
                }

                    .folded.nav-expand.active .nav-stacked .nav > li > a,
                    .folded.nav-expand:focus .nav-stacked .nav > li > a,
                    .folded.nav-expand:hover .nav-stacked .nav > li > a {
                        padding: 0 8px;
                    }

                .folded.nav-expand.active .nav-fold,
                .folded.nav-expand:focus .nav-fold,
                .folded.nav-expand:hover .nav-fold {
                    padding: 12px 16px;
                }

                    .folded.nav-expand.active .nav-fold .pull-left,
                    .folded.nav-expand:focus .nav-fold .pull-left,
                    .folded.nav-expand:hover .nav-fold .pull-left {
                        float: left !important;
                    }

                        .folded.nav-expand.active .nav-fold .pull-left img,
                        .folded.nav-expand:focus .nav-fold .pull-left img,
                        .folded.nav-expand:hover .nav-fold .pull-left img {
                            height: auto;
                        }

                            .folded.nav-expand.active .nav-fold .pull-left img.w-40,
                            .folded.nav-expand:focus .nav-fold .pull-left img.w-40,
                            .folded.nav-expand:hover .nav-fold .pull-left img.w-40 {
                                width: 40px;
                            }

                            .folded.nav-expand.active .nav-fold .pull-left img.w-48,
                            .folded.nav-expand:focus .nav-fold .pull-left img.w-48,
                            .folded.nav-expand:hover .nav-fold .pull-left img.w-48 {
                                width: 48px;
                            }

        .folded.nav-dropdown .row-body,
        .folded.nav-dropdown [flex],
        .folded.nav-dropdown.modal,
        .nav-dropup .row-body,
        .nav-dropup [flex],
        .nav-dropup.modal {
            overflow: visible !important;
        }

        .folded.nav-dropdown .nav > li > ul,
        .nav-dropup .nav > li > ul {
            display: none;
            overflow: visible;
            max-height: 999px;
            color: rgba(255, 255, 255, 0.87);
            background-color: rgba(0, 0, 0, 0.87);
            border-radius: 2px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
            position: absolute;
            left: 100%;
            top: 0;
            padding: 6px 0;
        }

            .folded.nav-dropdown .nav > li > ul a,
            .nav-dropup .nav > li > ul a {
                padding-left: 16px !important;
                padding-right: 16px !important;
                min-width: 160px;
            }

            .folded.nav-dropdown .nav > li > ul li.active ul,
            .nav-dropup .nav > li > ul li.active ul {
                display: block;
            }

            .folded.nav-dropdown .nav > li > ul .nav-text,
            .nav-dropup .nav > li > ul .nav-text {
                padding: 6px 0 !important;
            }

        .folded.nav-dropdown .nav > li .nav-mega,
        .nav-dropup .nav > li .nav-mega {
            width: 320px;
        }

            .folded.nav-dropdown .nav > li .nav-mega > li,
            .nav-dropup .nav > li .nav-mega > li {
                width: 160px;
                float: left;
            }

            .folded.nav-dropdown .nav > li .nav-mega.nav-mega-3,
            .nav-dropup .nav > li .nav-mega.nav-mega-3 {
                width: 480px;
            }
}

.easyPieChart,
.nav-center,
.sl-icon > i {
    text-align: center;
}

.nav-border .nav > li.active:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    border-left-color: inherit;
    border-left-width: 3px;
    border-left-style: solid;
}

.nav-stacked .nav {
    margin: 0 8px;
}

    .nav-stacked .nav > li > a {
        line-height: 2rem;
        padding: 0 .5rem;
        margin: 2px 0;
    }

        .nav-stacked .nav > li > a .nav-text {
            padding: .4375rem 0;
        }

    .nav-stacked .nav > li li a {
        padding-left: 3rem;
    }

    .nav-stacked .nav > li li li a {
        padding-left: 4rem;
    }

    .nav-stacked .nav > li li li li a {
        padding-left: 5rem;
    }

    .nav-stacked .nav > li.active > a {
        color: rgba(255, 255, 255, 0.87);
        background-color: #295288;
    }

    .nav-stacked .nav li a {
        border-radius: 3px;
    }

    .nav-stacked .nav .nav-header {
        padding-left: 8px;
        padding-right: 8px;
    }

.nav-light .nav .nav-icon i img,
.nav-light .nav .nav-icon i svg {
    display: block;
}

.nav-center .nav-icon {
    display: none;
}

.nav-center .nav-caret {
    position: absolute;
    right: 10px;
}

.nav-center .nav-label {
    position: absolute;
    padding-left: 10px;
}

.nav-center .nav a {
    padding-left: 16px !important;
}

.nav-center .nav-fold .pull-left {
    float: none !important;
    margin-bottom: 10px;
    display: inline-block;
}

.tl-date,
.tl-wrap:before {
    float: left;
    position: relative;
}

.nav-active-bg .nav-link.active,
.nav-active-bg .nav > li.active > a {
    color: rgba(0, 0, 0, 0.87) !important;
    background-color: #f0f0f0 !important;
}

.nav-active-dark .nav-link.active,
.nav-active-dark .nav > li.active > a {
    color: rgba(255, 255, 255, 0.87) !important;
    background-color: #2e3e4e !important;
}

.nav-active-black .nav-link.active,
.nav-active-black .nav > li.active > a {
    color: rgba(255, 255, 255, 0.87) !important;
    background-color: #2a2b3c !important;
}

.nav-active-primary .nav-link.active,
.nav-active-primary .nav > li.active > a {
    color: #FFCC33 !important;
    background-color: #295288 !important;
}

.nav-active-accent .nav-link.active,
.nav-active-accent .nav > li.active > a {
    color: rgba(255, 255, 255, 0.87) !important;
    background-color: #a88add !important;
}

.nav-active-warn .nav-link.active,
.nav-active-warn .nav > li.active > a {
    color: rgba(255, 255, 255, 0.87) !important;
    background-color: #fcc100 !important;
}

.nav-active-success .nav-link.active,
.nav-active-success .nav > li.active > a {
    color: rgba(255, 255, 255, 0.87) !important;
    background-color: #6cc788 !important;
}

.nav-active-info .nav-link.active,
.nav-active-info .nav > li.active > a {
    color: rgba(255, 255, 255, 0.87) !important;
    background-color: #6887ff !important;
}

.nav-active-warning .nav-link.active,
.nav-active-warning .nav > li.active > a {
    color: rgba(255, 255, 255, 0.87) !important;
    background-color: #f77a99 !important;
}

.nav-active-danger .nav-link.active,
.nav-active-danger .nav > li.active > a {
    color: rgba(255, 255, 255, 0.87) !important;
    background-color: #f44455 !important;
}

.nav-active-light .nav-link.active,
.nav-active-light .nav > li.active > a {
    color: rgba(0, 0, 0, 0.87) !important;
    background-color: #f8f8f8 !important;
}

.nav-active-white .nav-link.active,
.nav-active-white .nav > li.active > a {
    color: rgba(0, 0, 0, 0.87) !important;
    background-color: #fff !important;
}

.nav-active-red .nav-link.active,
.nav-active-red .nav > li.active > a {
    color: rgba(255, 255, 255, 0.87) !important;
    background-color: #f44336 !important;
}

.nav-active-pink .nav-link.active,
.nav-active-pink .nav > li.active > a {
    color: rgba(255, 255, 255, 0.87) !important;
    background-color: #e91e63 !important;
}

.nav-active-purple .nav-link.active,
.nav-active-purple .nav > li.active > a {
    color: rgba(255, 255, 255, 0.87) !important;
    background-color: #9c27b0 !important;
}

.nav-active-deep-purple .nav-link.active,
.nav-active-deep-purple .nav > li.active > a {
    color: rgba(255, 255, 255, 0.87) !important;
    background-color: #673ab7 !important;
}

.nav-active-indigo .nav-link.active,
.nav-active-indigo .nav > li.active > a {
    color: rgba(255, 255, 255, 0.87) !important;
    background-color: #3f51b5 !important;
}

.nav-active-blue .nav-link.active,
.nav-active-blue .nav > li.active > a {
    color: rgba(255, 255, 255, 0.87) !important;
    background-color: #2196f3 !important;
}

.nav-active-light-blue .nav-link.active,
.nav-active-light-blue .nav > li.active > a {
    color: rgba(255, 255, 255, 0.87) !important;
    background-color: #03a9f4 !important;
}

.nav-active-cyan .nav-link.active,
.nav-active-cyan .nav > li.active > a {
    color: rgba(255, 255, 255, 0.87) !important;
    background-color: #00bcd4 !important;
}

.nav-active-teal .nav-link.active,
.nav-active-teal .nav > li.active > a {
    color: rgba(255, 255, 255, 0.87) !important;
    background-color: #009688 !important;
}

.nav-active-green .nav-link.active,
.nav-active-green .nav > li.active > a {
    color: rgba(255, 255, 255, 0.87) !important;
    background-color: #4caf50 !important;
}

.nav-active-light-green .nav-link.active,
.nav-active-light-green .nav > li.active > a {
    color: rgba(255, 255, 255, 0.87) !important;
    background-color: #8bc34a !important;
}

.nav-active-lime .nav-link.active,
.nav-active-lime .nav > li.active > a {
    color: rgba(255, 255, 255, 0.87) !important;
    background-color: #cddc39 !important;
}

.nav-active-yellow .nav-link.active,
.nav-active-yellow .nav > li.active > a {
    color: rgba(0, 0, 0, 0.87) !important;
    background-color: #ffeb3b !important;
}

.nav-active-amber .nav-link.active,
.nav-active-amber .nav > li.active > a {
    color: rgba(255, 255, 255, 0.87) !important;
    background-color: #ffc107 !important;
}

.nav-active-orange .nav-link.active,
.nav-active-orange .nav > li.active > a {
    color: rgba(255, 255, 255, 0.87) !important;
    background-color: #ff9800 !important;
}

.nav-active-deep-orange .nav-link.active,
.nav-active-deep-orange .nav > li.active > a {
    color: rgba(255, 255, 255, 0.87) !important;
    background-color: #ff5722 !important;
}

.nav-active-brown .nav-link.active,
.nav-active-brown .nav > li.active > a {
    color: rgba(255, 255, 255, 0.87) !important;
    background-color: #795548 !important;
}

.nav-active-blue-grey .nav-link.active,
.nav-active-blue-grey .nav > li.active > a {
    color: rgba(255, 255, 255, 0.87) !important;
    background-color: #607d8b !important;
}

.nav-active-grey .nav-link.active,
.nav-active-grey .nav > li.active > a {
    color: rgba(255, 255, 255, 0.87) !important;
    background-color: #424242 !important;
}

.switcher,
.switcher .sw-btn {
    border: 1px solid rgba(120, 120, 120, 0.1);
    background-clip: padding-box;
}

.ui-icon.ui-icon-sm:after {
    width: 1.7em;
    height: 1.7em;
    top: -1.35em;
}

.ui-icon.primary:after {
    background-color: #295288;
}

.ui-icon.success:after {
    background-color: #6cc788;
}

.ui-icon.info:after {
    background-color: #6887ff;
}

.ui-icon.warning:after {
    background-color: #f77a99;
}

.ui-icon.danger:after {
    background-color: #f44455;
}

.ui-icon.accent:after {
    background-color: #a88add;
}

.ui-icon.dark:after {
    background-color: #2e3e4e;
}

.ui-icon.light:after {
    background-color: #f8f8f8;
}

.ui-icon.white:after {
    background-color: #fff;
}

#flotTip,
.flotTip,
.jqstooltip {
    background-color: rgba(0, 0, 0, 0.8) !important;
}

.item {
    position: relative;
}

    .item .bottom,
    .item .center,
    .item .top,
    .item-bg,
    .item-bg img,
    .item-overlay {
        position: absolute;
    }

    .item .top {
        right: 0;
        left: 0;
        top: 0;
    }

    .item .bottom {
        right: 0;
        left: 0;
        bottom: 0;
    }

    .item .center {
        right: 0;
        left: 0;
        top: 42%;
    }

.item-overlay {
    right: 0;
    left: 0;
    display: none;
}

    .ie .ie-show,
    .item-overlay .item:focus,
    .item-overlay.active,
    .item:hover .item-overlay {
        display: block;
    }

    .item-overlay.w-full {
        text-align: center;
        top: 0;
        bottom: 0;
    }

.item-bg {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

    .item-bg img {
        width: 110%;
        left: 50%;
        top: 50%;
        margin-left: -55%;
        margin-top: -55%;
    }

.blur {
    -webkit-filter: blur(3px);
    -moz-filter: blur(3px);
    -o-filter: blur(3px);
    -ms-filter: blur(3px);
    filter: blur(3px);
}

.blur-5 {
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);
}

.opacity-3 {
    opacity: .3;
}

.switcher {
    z-index: 1050;
    position: fixed;
    top: 78px;
    right: -240px;
    width: 240px;
    -webkit-transition: right .2s ease;
    transition: right .2s ease;
}

    .switcher.active {
        right: -2px;
        z-index: 1060;
    }

    .switcher .sw-btn {
        position: absolute;
        left: -43px;
        top: -1px;
        padding: 10px 15px;
        z-index: 1045;
        border-right-width: 0;
    }

#sw-demo {
    top: 118px;
}

    #sw-demo.active {
        top: 78px;
    }

.list-icon i {
    margin-right: 16px;
}

.list-icon div {
    line-height: 40px;
    overflow: hidden;
}

.jqstooltip {
    border: 1px solid #000 !important;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    padding: 5px 10px !important;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.easyPieChart {
    position: relative;
}

    .easyPieChart > div {
        position: absolute;
        width: 100%;
        line-height: 1;
        top: 40%;
    }

        .easyPieChart > div img {
            margin-top: -4px;
        }

#flotTip,
.flotTip {
    padding: 4px 10px;
    border: 1px solid #000 !important;
    z-index: 100;
    font-size: 12px;
    color: #fff;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.legendColorBox > div {
    border: none !important;
    margin: 5px;
}

    .legendColorBox > div > div {
        border-radius: 10px;
    }

.st-sort-ascent:before {
    content: '\25B2';
}

.st-sort-descent:before {
    content: '\25BC';
}

.st-selected td {
    background: rgba(0, 0, 0, 0.065);
}

.black .btn-default.form-control,
.dark .btn-default.form-control,
.grey .btn-default.form-control {
    background: 0 0 !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: inherit !important;
}

.ui-select-bootstrap > .ui-select-choices {
    overflow-y: scroll;
}

.box .dataTables_wrapper {
    padding-top: 10px;
}

    .box .dataTables_wrapper > .row {
        margin: 0;
    }

        .box .dataTables_wrapper > .row > .col-sm-12 {
            padding: 0;
        }

.dataTables_wrapper.form-inline .form-control {
    width: auto;
}

.footable-odd {
    background-color: rgba(0, 0, 0, 0.025) !important;
}

.note-editor {
    border-width: 0 !important;
    overflow: visible !important;
    background-color: inherit;
}

.note-toolbar .note-color .dropdown-toggle {
    padding-left: 2px !important;
}

.note-editor .note-editing-area .note-editable,
.note-editor .note-statusbar {
    background-color: transparent !important;
    color: inherit !important;
}

.note-toolbar {
    background-color: rgba(120, 130, 140, 0.1);
}

.nav a.waves-effect {
    -webkit-mask-image: -webkit-radial-gradient(circle, #fff 100%, #000 100%);
}

.sortable-placeholder {
    list-style: none;
    border: 1px dashed #fff;
    min-height: 40px;
}

.streamline {
    position: relative;
    border-color: rgba(120, 130, 140, 0.13);
}

    .streamline .sl-icon:before,
    .streamline .sl-item:before,
    .streamline:after {
        content: '';
        position: absolute;
        border-color: inherit;
        border-width: 3px;
        border-style: solid;
        border-radius: 50%;
        width: 7px;
        height: 7px;
        margin-left: -4px;
        top: 6px;
        left: 0;
    }

.sl-item::after,
.ui-switch i:before {
    content: "";
}

.streamline:after {
    top: auto;
    bottom: 0;
}

.sl-icon {
    position: absolute;
    left: -10px;
    z-index: 1;
    border: inherit;
}

.sl-item,
.sl-left,
.ui-switch {
    position: relative;
}

.sl-icon > i {
    width: 20px;
    height: 20px;
    display: table-cell;
    color: #fff;
}

.streamline .sl-icon:before {
    width: 20px;
    height: 20px;
    border-width: 10px;
    margin: 0 !important;
    top: 0 !important;
}

.sl-item {
    border-color: rgba(120, 130, 140, 0.13);
    padding-bottom: 1px;
}

    .sl-item::after {
        display: table;
        clear: both;
    }

    .sl-item:after {
        top: 2px;
        bottom: auto;
    }

    .sl-item.b-l {
        margin-left: -1px;
    }

.sl-left {
    float: left;
    z-index: 1;
    margin-left: -20px;
    margin-bottom: 24px;
}

.sl-author,
.sl-footer {
    margin-bottom: 10px;
}

.sl-left img {
    max-width: 40px;
}

.sl-left + .sl-content {
    margin-left: 36px;
}

.sl-content {
    margin-left: 24px;
    padding-bottom: 16px;
}

.sl-date {
    font-size: .85em;
}

.ui-switch {
    display: inline-block;
    width: 32px;
    height: 18px;
    border-radius: 30px;
    background-color: #6cc788;
    margin: 0;
}

    .ui-switch i:after,
    .ui-switch i:before {
        position: absolute;
        background-color: #fff;
    }

    .ui-switch input {
        position: absolute;
        opacity: 0;
    }

        .ui-switch input:checked + i:before {
            top: 50%;
            bottom: 50%;
            left: 50%;
            right: 5px;
            border-width: 0;
            border-radius: 5px;
        }

        .ui-switch input:checked + i:after {
            margin-left: 15px;
        }

    .ui-switch i:before {
        top: -1px;
        bottom: -1px;
        left: -1px;
        right: -1px;
        border: 1px solid #f0f0f0;
        border-radius: 30px;
        -webkit-transition: all .2s;
        transition: all .2s;
    }

    .tl-wrap:before,
    .ui-switch i:after {
        border-radius: 50%;
        content: "";
    }

    .ui-switch i:after {
        width: 16px;
        top: 1px;
        bottom: 1px;
        box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
        -webkit-transition: margin .3s;
        transition: margin .3s;
    }

.ui-switch-md {
    width: 40px;
    height: 24px;
}

    .ui-switch-md input:checked + i:after {
        margin-left: 17px;
    }

    .ui-switch-md i:after {
        width: 22px;
    }

.ui-switch-lg {
    width: 50px;
    height: 30px;
}

    .ui-switch-lg input:checked + i:after {
        margin-left: 21px;
    }

    .ui-switch-lg i:after {
        width: 28px;
    }

.timeline {
    margin: 0;
    padding: 0;
}

.m-t,
.m-y {
    margin-top: 1rem !important;
}

.tl-item {
    display: block;
}

    .tl-item::after {
        content: "";
        display: table;
        clear: both;
    }

.visible-left {
    display: none;
}

.tl-wrap {
    display: block;
    margin-left: 6em;
    padding: 15px 0 15px 20px;
    border-style: solid;
    border-color: rgba(120, 130, 140, 0.13);
    border-width: 0 0 0 2px;
}

    .tl-wrap::after {
        content: "";
        display: table;
        clear: both;
    }

    .tl-wrap:before {
        top: 15px;
        margin-left: -26px;
        width: 10px;
        height: 10px;
        border-color: inherit;
        border-width: 3px;
        border-style: solid;
        background: #f8f8f8;
        box-shadow: 0 0 0 4px #f0f0f0;
    }

.tl-date {
    top: 10px;
    margin-left: -7.5em;
    display: block;
    width: 4.5em;
    text-align: right;
}

.tl-content {
    display: inline-block;
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
}

.p-t,
.p-y {
    padding-top: 1rem !important;
}

.p-b,
.p-y {
    padding-bottom: 1rem !important;
}

.tl-content.block {
    display: block;
    width: 100%;
}

.m-b,
.m-y {
    margin-bottom: 1rem !important;
}

.tl-header {
    display: block;
    width: 12em;
    text-align: center;
    margin-left: 1px;
}

.timeline-center .tl-item {
    margin-left: 50%;
}

    .timeline-center .tl-item .tl-wrap {
        margin-left: -2px;
    }

.timeline-center .tl-header {
    width: auto;
    margin-left: -1px;
}

.timeline-center .tl-left {
    margin-left: 0;
    margin-right: 50%;
}

    .timeline-center .tl-left .hidden-left {
        display: none !important;
    }

    .timeline-center .tl-left .visible-left {
        display: inherit;
    }

    .timeline-center .tl-left .tl-wrap {
        float: right;
        margin-right: 0;
        border-left-width: 0;
        border-right-width: 2px;
        padding-left: 0;
        padding-right: 20px;
    }

.p-l,
.p-x {
    padding-left: 1rem !important;
}

.p-r,
.p-x {
    padding-right: 1rem !important;
}

.timeline-center .tl-left .tl-wrap:before {
    float: right;
    margin-left: 0;
    margin-right: -26px;
}

.timeline-center .tl-left .tl-date {
    float: right;
    margin-left: 0;
    margin-right: -8.5em;
    text-align: left;
}

.md-btn,
.w-24,
.w-32,
.w-40,
.w-48,
.w-56 {
    text-align: center;
}

.lter {
    background-color: rgba(255, 255, 255, 0.035);
}

.dker {
    background-color: rgba(0, 0, 0, 0.035);
}

.light {
    background-color: #f8f8f8;
}

.dark-white,
.white {
    background-color: #fff;
}

.dark-white {
    color: rgba(0, 0, 0, 0.87);
}

.black,
.danger,
.dark,
.grey,
.info,
.primary,
.success,
.warn,
.warning {
    color: rgba(255, 255, 255, 0.87);
}

.black {
    background-color: #2C4F75;
}

    .black .lt {
        background-color: #2f3044;
    }

    .black .dk {
        background-color: #252635;
    }

    .black .bg {
        background-color: #2a2b3c;
    }

.dark {
    background-color: #2e3e4e;
}

    .dark .lt {
        background-color: #334456;
    }

    .dark .dk {
        background-color: #293846;
    }

    .dark .bg {
        background-color: #2e3e4e;
    }

.grey {
    background-color: #424242;
}

    .grey .lt {
        background-color: #484848;
    }

    .grey .dk {
        background-color: #3c3c3c;
    }

    .grey .bg {
        background-color: #424242;
    }

.primary {
    background-color: #295288;
}

    .primary .lt {
        background-color: #0dceb5;
    }

    .primary .dk {
        background-color: #0bb69f;
    }

    .primary .bg {
        background-color: #295288;
    }

.accent {
    color: rgba(255, 255, 255, 0.87);
    background-color: #a88add;
}

    .accent .lt {
        background-color: #af94e0;
    }

    .accent .dk {
        background-color: #a180da;
    }

    .accent .bg {
        background-color: #a88add;
    }

.warn {
    background-color: #fcc100;
}

    .warn .lt {
        background-color: #ffc60a;
    }

    .warn .dk {
        background-color: #efb700;
    }

    .warn .bg {
        background-color: #fcc100;
    }

.success {
    background-color: #6cc788;
}

    .success .lt {
        background-color: #75cb8f;
    }

    .success .dk {
        background-color: #63c381;
    }

    .success .bg {
        background-color: #6cc788;
    }

.info {
    background-color: #6887ff;
}

    .info .lt {
        background-color: #7591ff;
    }

    .info .dk {
        background-color: #5b7dff;
    }

    .info .bg {
        background-color: #6887ff;
    }

.warning {
    background-color: #f77a99;
}

    .warning .lt {
        background-color: #f886a2;
    }

    .warning .dk {
        background-color: #f66e90;
    }

    .warning .bg {
        background-color: #f77a99;
    }

.danger {
    background-color: #f44455;
}

    .danger .lt {
        background-color: #f55060;
    }

    .danger .dk {
        background-color: #f3384a;
    }

    .danger .bg {
        background-color: #f44455;
    }

.blue {
    background-color: #295288;
}

    .blue .lt {
        background-color: #2d9cf4;
    }

    .blue .dk {
        background-color: #1590f2;
    }

    .blue .bg {
        background-color: #2196f3;
    }

.white-overlay {
    background-color: rgba(255, 255, 255, 0.85);
}

.black-overlay {
    background-color: rgba(0, 0, 0, 0.85);
}

.gd-overlay {
    background-color: transparent !important;
    background-image: linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, 0.5) 100%);
    background-repeat: repeat-x;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=0);
}

.bg-auto:before {
    content: "";
    position: absolute;
    width: inherit;
    top: 0;
    bottom: 0;
    background-color: inherit;
    border: inherit;
}

.bg-auto.b-l:before {
    margin-left: -1px;
}

.m-l,
.m-x {
    margin-left: 1rem !important;
}

.bg-auto.b-r:before {
    margin-right: -1px;
}

.m-r,
.m-x {
    margin-right: 1rem !important;
}

.bg-clip {
    background-clip: padding-box;
}

.no-bg {
    background-color: transparent !important;
}

@media (max-width: 767px) {
    .no-bg-xs {
        background-color: transparent;
    }
}

.dark .box,
.dark .white {
    background-color: #354759;
}

.dark.app {
    background-color: #2e3e4e;
}

.black .box,
.black .white {
    background-color: #313347;
}

.black.app {
    background-color: #2a2b3c;
}

.grey .box,
.grey .white {
    background-color: #4b4b4b;
}

.grey.app {
    background-color: #424242;
}

.black .form-control,
.dark .form-control,
.grey .form-control {
    background: 0 0;
    background-color: rgba(255, 255, 255, 0.1);
    color: inherit;
}

    .black .form-control:focus,
    .dark .form-control:focus,
    .grey .form-control:focus {
        border-color: rgba(255, 255, 255, 0.125);
    }

.black .input-group-btn .btn,
.dark .input-group-btn .btn,
.grey .input-group-btn .btn {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: inherit !important;
}

.black .list-group,
.dark .list-group,
.grey .list-group {
    background-color: transparent;
}

.pos-rlt {
    position: relative;
    z-index: 1;
}

.pos-abt {
    position: absolute;
}

.pos-fix {
    position: fixed !important;
}

.pos-stc {
    position: static !important;
}

.block {
    display: block;
}

    .block.hide {
        display: none;
    }

.pull-none {
    float: none;
}

.inline {
    display: inline-block;
}

.inline-16 {
    width: 16px;
    height: 16px;
}

.inline-24 {
    width: 24px;
    height: 24px;
}

.active > .auto .inline,
.active > .inline,
.none {
    display: none;
}

.active > .auto .none,
.active > .none {
    display: inline-block;
}

.hide {
    display: none !important;
}

.show {
    display: block !important;
}

.circle,
.rounded {
    border-radius: 500px;
}

.clear {
    display: block;
    overflow: hidden;
}

.no-shadow {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

@media (max-width: 543px) {
    .pos-stc-xs {
        position: static !important;
    }
}

.no-border {
    border-color: transparent;
    border-width: 0;
}

.no-borders {
    border-width: 0 !important;
}

.b {
    border-color: rgba(120, 130, 140, 0.13);
    background-clip: padding-box;
}

.b-a {
    border: 1px solid rgba(120, 130, 140, 0.13);
}

.b-t {
    border-top: 1px solid rgba(120, 130, 140, 0.13);
}

.b-r {
    border-right: 1px solid rgba(120, 130, 140, 0.13);
}

.b-b {
    border-bottom: 1px solid rgba(120, 130, 140, 0.13);
}

.b-l {
    border-left: 1px solid rgba(120, 130, 140, 0.13);
}

.b-2x {
    border-width: 2px;
}

.b-3x {
    border-width: 3px;
}

.b-4x {
    border-width: 4px;
}

.b-5x {
    border-width: 5px;
}

.b-t-2x {
    border-top-width: 2px !important;
}

.b-t-3x {
    border-top-width: 3px !important;
}

.b-t-4x {
    border-top-width: 4px !important;
}

.b-t-5x {
    border-top-width: 5px !important;
}

.b-r-2x {
    border-right-width: 2px !important;
}

.b-r-3x {
    border-right-width: 3px !important;
}

.b-r-4x {
    border-right-width: 4px !important;
}

.b-r-5x {
    border-right-width: 5px !important;
}

.b-b-2x {
    border-bottom-width: 2px !important;
}

.b-b-3x {
    border-bottom-width: 3px !important;
}

.b-b-4x {
    border-bottom-width: 4px !important;
}

.b-b-5x {
    border-bottom-width: 5px !important;
}

.b-l-2x {
    border-left-width: 2px !important;
}

.b-l-3x {
    border-left-width: 3px !important;
}

.b-l-4x {
    border-left-width: 4px !important;
}

.b-l-5x {
    border-left-width: 5px !important;
}

.b-primary {
    border-color: #295288;
}

.b-t-primary {
    border-top-color: #295288;
}

.b-r-#e7f9f7 {
    border-right-color: #295288;
}

.b-b-primary {
    border-bottom-color: #295288;
}

.b-l-primary {
    border-left-color: #295288;
}

.b-accent {
    border-color: #a88add;
}

.b-t-accent {
    border-top-color: #a88add;
}

.b-r-#f6f3fc {
    border-right-color: #a88add;
}

.b-b-accent {
    border-bottom-color: #a88add;
}

.b-l-accent {
    border-left-color: #a88add;
}

.b-warn {
    border-color: #fcc100;
}

.b-t-warn {
    border-top-color: #fcc100;
}

.b-r-#fff9e6 {
    border-right-color: #fcc100;
}

.b-b-warn {
    border-bottom-color: #fcc100;
}

.b-l-warn {
    border-left-color: #fcc100;
}

.b-success {
    border-color: #6cc788;
}

.b-t-success {
    border-top-color: #6cc788;
}

.b-r-#f0f9f3 {
    border-right-color: #6cc788;
}

.b-b-success {
    border-bottom-color: #6cc788;
}

.b-l-success {
    border-left-color: #6cc788;
}

.b-info {
    border-color: #6887ff;
}

.b-t-info {
    border-top-color: #6887ff;
}

.b-r-#f0f3ff {
    border-right-color: #6887ff;
}

.b-b-info {
    border-bottom-color: #6887ff;
}

.b-l-info {
    border-left-color: #6887ff;
}

.b-warning {
    border-color: #f77a99;
}

.b-t-warning {
    border-top-color: #f77a99;
}

.b-r-#fef2f5 {
    border-right-color: #f77a99;
}

.b-b-warning {
    border-bottom-color: #f77a99;
}

.b-l-warning {
    border-left-color: #f77a99;
}

.b-danger {
    border-color: #f44455;
}

.b-t-danger {
    border-top-color: #f44455;
}

.b-r-#feecee {
    border-right-color: #f44455;
}

.b-b-danger {
    border-bottom-color: #f44455;
}

.b-l-danger {
    border-left-color: #f44455;
}

.b-light {
    border-color: #f8f8f8;
}

.b-t-light {
    border-top-color: #f8f8f8;
}

.b-r-#fefefe {
    border-right-color: #f8f8f8;
}

.b-b-light {
    border-bottom-color: #f8f8f8;
}

.b-l-light {
    border-left-color: #f8f8f8;
}

.b-grey {
    border-color: #424242;
}

.b-t-grey {
    border-top-color: #424242;
}

.b-r-#ececec {
    border-right-color: #424242;
}

.b-b-grey {
    border-bottom-color: #424242;
}

.b-l-grey {
    border-left-color: #424242;
}

.b-dark {
    border-color: #2e3e4e;
}

.b-t-dark {
    border-top-color: #2e3e4e;
}

.b-r-#eaeced {
    border-right-color: #2e3e4e;
}

.b-b-dark {
    border-bottom-color: #2e3e4e;
}

.b-l-dark {
    border-left-color: #2e3e4e;
}

.b-black {
    border-color: #2a2b3c;
}

.b-t-black {
    border-top-color: #2a2b3c;
}

.b-r-#eaeaec {
    border-right-color: #2a2b3c;
}

.b-b-black {
    border-bottom-color: #2a2b3c;
}

.b-l-black {
    border-left-color: #2a2b3c;
}

.b-white {
    border-color: #fff;
}

.b-t-white {
    border-top-color: #fff;
}

.b-r-white {
    border-right-color: #fff;
}

.b-b-white {
    border-bottom-color: #fff;
}

.b-l-white {
    border-left-color: #fff;
}

.b-blue {
    border-color: #2196f3;
}

.b-t-blue {
    border-top-color: #2196f3;
}

.b-r-#e9f5fe {
    border-right-color: #2196f3;
}

.b-b-blue {
    border-bottom-color: #2196f3;
}

.b-l-blue {
    border-left-color: #2196f3;
}

.no-b-t {
    border-top-width: 0;
}

.no-b-r {
    border-right-width: 0;
}

.no-b-b {
    border-bottom-width: 0;
}

.no-b-l {
    border-left-width: 0;
}

.b-dashed {
    border-style: dashed !important;
}

@media (max-width: 767px) {
    .pos-stc-sm {
        position: static !important;
    }

    .no-border-xs {
        border-width: 0;
    }
}

.hover-action {
    display: none;
}

.hover-rotate {
    -webkit-transition: all .2s ease-in-out .1s;
    transition: all .2s ease-in-out .1s;
}

.hover-anchor:active .hover-action,
.hover-anchor:focus .hover-action,
.hover-anchor:hover .hover-action {
    display: inherit;
}

.h-2x,
.h-3x,
.h-4x {
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.hover-anchor:active .hover-rotate,
.hover-anchor:focus .hover-rotate,
.hover-anchor:hover .hover-rotate {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.hover-top:focus,
.hover-top:hover {
    position: relative;
    z-index: 1000;
}

.m-a {
    margin: 1rem !important;
}

.m-r-lg,
.m-x-lg {
    margin-right: 3rem !important;
}

.m-l-lg,
.m-x-lg {
    margin-left: 3rem !important;
}

.m-t-lg,
.m-y-lg {
    margin-top: 3rem !important;
}

.m-b-lg,
.m-y-lg {
    margin-bottom: 3rem !important;
}

.m-a-lg {
    margin: 3rem !important;
}

.m-r-md,
.m-x-md {
    margin-right: 1.5rem !important;
}

.m-l-md,
.m-x-md {
    margin-left: 1.5rem !important;
}

.m-t-md,
.m-y-md {
    margin-top: 1.5rem !important;
}

.m-b-md,
.m-y-md {
    margin-bottom: 1.5rem !important;
}

.m-a-md {
    margin: 1.5rem !important;
}

.m-r-sm,
.m-x-sm {
    margin-right: 0.5rem !important;
}

.m-l-sm,
.m-x-sm {
    margin-left: 0.5rem !important;
}

.m-t-sm,
.m-y-sm {
    margin-top: 0.5rem !important;
}

.m-b-sm,
.m-y-sm {
    margin-bottom: 0.5rem !important;
}

.m-a-sm {
    margin: 0.5rem !important;
}

.m-r-xs,
.m-x-xs {
    margin-right: 0.25rem !important;
}

.m-l-xs,
.m-x-xs {
    margin-left: 0.25rem !important;
}

.m-t-xs,
.m-y-xs {
    margin-top: 0.25rem !important;
}

.m-b-xs,
.m-y-xs {
    margin-bottom: 0.25rem !important;
}

.m-a-xs {
    margin: 0.25rem !important;
}

.p-a {
    padding: 1rem !important;
}

.p-r-lg,
.p-x-lg {
    padding-right: 3rem !important;
}

.p-l-lg,
.p-x-lg {
    padding-left: 3rem !important;
}

.p-t-lg,
.p-y-lg {
    padding-top: 3rem !important;
}

.p-b-lg,
.p-y-lg {
    padding-bottom: 3rem !important;
}

.p-a-lg {
    padding: 3rem !important;
}

.p-a-xl {
    padding: 5rem !important;
}

.p-r-md,
.p-x-md {
    padding-right: 1.5rem !important;
}

.p-l-md,
.p-x-md {
    padding-left: 1.5rem !important;
}

.p-t-md,
.p-y-md {
    padding-top: 1.5rem !important;
}

.p-b-md,
.p-y-md {
    padding-bottom: 1.5rem !important;
}

.p-a-md {
    padding: 1.5rem !important;
}

.p-r-sm,
.p-x-sm {
    padding-right: 0.5rem !important;
}

.p-l-sm,
.p-x-sm {
    padding-left: 0.5rem !important;
}

.p-t-sm,
.p-y-sm {
    padding-top: 0.5rem !important;
}

.p-b-sm,
.p-y-sm {
    padding-bottom: 0.5rem !important;
}

.p-a-sm {
    padding: 0.5rem !important;
}

.p-r-xs,
.p-x-xs {
    padding-right: 0.25rem !important;
}

.p-l-xs,
.p-x-xs {
    padding-left: 0.25rem !important;
}

.p-t-xs,
.p-y-xs {
    padding-top: 0.25rem !important;
}

.p-b-xs,
.p-y-xs {
    padding-bottom: 0.25rem !important;
}

.p-a-xs {
    padding: 0.25rem !important;
}

.paddingShow {
    padding-top: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: 1.5rem;
    padding-left: 5rem;
}

.padding {
    padding: 1.5rem;
}

.btnMenu {
    border-radius: inherit;
    padding-top: 0rem;
    padding-right: 0rem;
    padding-bottom: 0rem;
    padding-left: 0.37rem;
    font-size: 1.6rem;
}

.btnMenuShow {
    border-radius: inherit;
    padding-top: 0rem;
    padding-right: 0rem;
    padding-bottom: 0rem;
    padding-left: 0rem;
    font-size: 1.6rem;
}

.margin {
    margin-bottom: 1.5rem;
}

.padding-out {
    margin: -1.5rem;
}

@media (max-width: 991px) {
    .no-border-sm {
        border-width: 0;
    }

    .padding {
        padding: 1rem;
    }

    .padding-out {
        margin: -1rem;
    }

    .box,
    .box-color,
    .margin {
        margin-bottom: 1rem;
    }
}

@media (max-width: 767px) {
    .padding {
        padding: .5rem;
    }

    .padding-out {
        margin: -.5rem;
    }

    .box,
    .box-color,
    .margin {
        margin-bottom: .5rem;
    }

    .no-padding-xs {
        padding: 0;
    }
}

.no-radius {
    border-radius: 0 !important;
}

.no-r-r,
.no-r-t {
    border-top-right-radius: 0;
}

.no-r-b,
.no-r-r {
    border-bottom-right-radius: 0;
}

.no-r-b,
.no-r-l {
    border-bottom-left-radius: 0;
}

.no-r-l,
.no-r-t {
    border-top-left-radius: 0;
}

.r-r,
.r-t {
    border-top-right-radius: 3px;
}

.r-b,
.r-r {
    border-bottom-right-radius: 3px;
}

.r-b,
.r-l {
    border-bottom-left-radius: 3px;
}

.r-l,
.r-t {
    border-top-left-radius: 3px;
}

.r {
    border-radius: 3px;
}

.r-2x {
    border-radius: 6px;
}

.r-3x {
    border-radius: 9px;
}

.scrollable {
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

    .scrollable.hover,
    .scrollable.hover > .row-inner {
        overflow-y: hidden;
    }

        .scrollable.hover > * {
            margin-top: -1px;
        }

        .scrollable.hover:active,
        .scrollable.hover:focus,
        .scrollable.hover:hover {
            overflow: visible;
            overflow-y: auto;
        }

            .scrollable.hover:active > .row-inner,
            .scrollable.hover:focus > .row-inner,
            .scrollable.hover:hover > .row-inner {
                overflow-y: auto;
            }

.smart .scrollable,
.smart .scrollable > .row-inner {
    overflow-y: auto !important;
}

.scroll-x,
.scroll-y {
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
}

.scroll-y {
    overflow-y: auto;
}

.scroll-x {
    overflow-x: auto;
}

.h-1x,
.h-2x,
.h-3x,
.h-4x,
.md-btn,
.md-btn.md-fab,
.text-ellipsis {
    overflow: hidden;
}

a.primary:hover {
    background-color: #0bb69f;
}

a.text-primary:hover {
    color: #0bb69f;
}

.text-primary,
.text-primary-hover a:hover {
    color: #295288 !important;
}

a.warn:hover {
    background-color: #efb700;
}

a.text-warn:hover {
    color: #efb700;
}

.text-warn,
.text-warn-hover a:hover {
    color: #f48f04 !important;
}

a.accent:hover {
    background-color: #a180da;
}

a.text-accent:hover {
    color: #a180da;
}

.text-accent,
.text-accent-hover a:hover {
    color: #a88add !important;
}

a.success:hover {
    background-color: #63c381;
}

a.text-success:hover {
    color: #63c381;
}

.text-success,
.text-success-hover a:hover {
    color: #6cc788 !important;
}

a.info:hover {
    background-color: #5b7dff;
}

a.text-info:hover {
    color: #5b7dff;
}

.text-info,
.text-info-hover a:hover {
    color: #6887ff !important;
}

a.warning:hover {
    background-color: #f66e90;
}

a.text-warning:hover {
    color: #f66e90;
}

.text-warning,
.text-warning-hover a:hover {
    color: #f77a99 !important;
}

a.danger:hover {
    background-color: #f3384a;
}

a.text-danger:hover {
    color: #f3384a;
}

.text-danger,
.text-danger-hover a:hover {
    color: #f44455 !important;
}

a.dark:hover {
    background-color: #293846;
}

a.text-dark:hover {
    color: #293846;
}

.text-dark,
.text-dark-hover a:hover {
    color: #2e3e4e !important;
}

a.blue:hover {
    background-color: #1590f2;
}

a.text-blue:hover {
    color: #1590f2;
}

.text-blue,
.text-blue-hover a:hover {
    color: #2196f3 !important;
}

.text-white {
    color: #fff !important;
}

.text-white-lt {
    color: rgba(255, 255, 255, 0.54);
}

.text-white-dk {
    color: rgba(255, 255, 255, 0.87);
}

.text-black {
    color: #000;
}

.text-black-lt {
    color: rgba(0, 0, 0, 0.54);
}

.text-black-dk {
    color: rgba(0, 0, 0, 0.87);
}

.text-muted {
    color: inherit !important;
    opacity: .6;
}

.text-color {
    color: rgba(0, 0, 0, 0.87);
}

._100 {
    font-weight: 100;
}

._200 {
    font-weight: 200;
}

._300 {
    font-weight: 300;
}

._400 {
    font-weight: 400;
}

._500 {
    font-weight: 500;
}

._600 {
    font-weight: 600;
}

._700 {
    font-weight: 700;
}

._800 {
    font-weight: 800;
}

.text {
    font-size: 1rem;
}

.text-xs {
    font-size: .75rem;
}

.text-sm {
    font-size: .8rem;
}

.text-md {
    font-size: 1.125rem;
}

.text-lg {
    font-size: 1.5rem;
}

.text-2x {
    font-size: 2em;
}

.text-3x {
    font-size: 3em;
}

.text-4x {
    font-size: 4em;
}

.l-h {
    line-height: 1.5;
}

.l-h-1x {
    line-height: 1;
}

.l-h-2x {
    line-height: 2em;
}

.l-s-1x {
    letter-spacing: 1px;
}

.l-s-2x {
    letter-spacing: 2px;
}

.l-s-3x {
    letter-spacing: 3px;
}

.l-s-4x {
    letter-spacing: 4px;
}

.l-s-n-1x {
    letter-spacing: -1px;
}

.l-s-n-2x {
    letter-spacing: -2px;
}

.l-s-n-3x {
    letter-spacing: -3px;
}

.l-s-n-4x {
    letter-spacing: -4px;
}

.h-1x {
    height: 1.5;
}

.h-2x {
    height: 2.625rem;
    -webkit-line-clamp: 2;
}

.h-3x {
    height: 3.9375rem;
    -webkit-line-clamp: 3;
}

.h-4x {
    height: 5.25rem;
    -webkit-line-clamp: 4;
}

.text-l-t {
    text-decoration: line-through;
}

.text-u-l {
    text-decoration: underline;
}

.md-btn,
.md-btn:hover {
    text-decoration: none;
}

.text-ellipsis {
    display: block;
}

.md-btn,
.md-check,
.md-input ~ label,
.w-16,
.w-20,
.w-24,
.w-32,
.w-48,
.w-56,
.w-8 {
    display: inline-block;
}

.text-shadow {
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.w-8 {
    width: 8px;
    height: 8px;
}

.w-16 {
    width: 16px;
    height: 16px;
}

.w-20 {
    width: 20px;
    height: 20px;
}

.w-24 {
    width: 24px;
    height: 24px;
}

.w-32 {
    width: 32px;
    height: 32px;
    line-height: 32px;
}

.w-40 {
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
}

.w-48 {
    width: 48px;
    height: 48px;
    line-height: 48px;
}

.w-56 {
    width: 56px;
    height: 56px;
    line-height: 56px;
}

.w-64 {
    width: 64px;
}

.w-96 {
    width: 96px;
}

.w-128 {
    width: 128px;
}

.w-xxs {
    width: 60px;
}

.w-xs {
    width: 90px;
}

.w-sm {
    width: 120px;
}

.w {
    width: 180px;
}

.w-md {
    width: 200px;
}

.w-lg {
    width: 240px;
}

.w-xl {
    width: 280px;
}

.w-xxl {
    width: 400px;
}

.w-full {
    width: 100%;
}

.w-auto {
    width: auto;
}

.h-auto {
    height: auto;
}

.h-full {
    height: 100%;
}

.h-v {
    height: 100vh;
}

.h-v-5 {
    height: 50vh;
}

@media (max-width: 767px) {
    .w-auto-sm {
        width: auto;
    }

    .w-full-sm {
        width: 100%;
    }
}

@media (max-width: 543px) {
    .w-auto-xs {
        width: auto;
    }

    .w-full-xs {
        width: 100%;
    }
}

.md-btn {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    border: 0;
    border-radius: 3px;
    padding: 6px;
    font-weight: 700;
    font-style: inherit;
    font-variant: inherit;
    font-size: inherit;
    font-family: inherit;
    line-height: inherit;
    transition: box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.md-flat {
    background: 0 0;
}

.md-btn.md-flat:not([disabled]):focus,
.md-btn.md-flat:not([disabled]):hover {
    background-color: rgba(158, 158, 158, 0.2);
}

.md-btn-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    padding: 2px;
}

.md-btn.md-fab[disabled],
.md-btn.md-raised[disabled],
.md-btn[disabled] {
    color: rgba(0, 0, 0, 0.26);
    background-color: transparent;
    cursor: not-allowed;
}

.md-fab {
    line-height: 44px;
}

.md-fab-offset {
    margin-top: -20px;
    margin-bottom: -20px;
}

.md-btn.md-cornered {
    border-radius: 0;
}

.md-btn.md-icon {
    padding: 0;
    background: 0 0;
}

.md-btn.md-raised {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.md-btn.md-fab {
    z-index: 20;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    transition: .2s linear;
    transition-property: -webkit-transform, box-shadow;
    transition-property: transform, box-shadow;
}

.md-btn.md-fab,
.md-btn.md-raised:not([disabled]) {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
}

    .md-btn.md-fab:not([disabled]):focus,
    .md-btn.md-fab:not([disabled]):hover,
    .md-btn.md-raised:not([disabled]):focus,
    .md-btn.md-raised:not([disabled]):hover {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);
        -webkit-transform: translate3d(0, -1px, 0);
        transform: translate3d(0, -1px, 0);
    }

.md-fab-bottom-right {
    top: auto;
    right: 20px;
    bottom: 20px;
    left: auto;
    position: absolute;
}

.md-fab-bottom-left {
    top: auto;
    right: auto;
    bottom: 20px;
    left: 20px;
    position: absolute;
}

.md-fab-top-left,
.md-fab-top-right {
    top: 20px;
    bottom: auto;
    position: absolute;
}

.md-fab-top-right {
    right: 20px;
    left: auto;
}

.md-fab-top-left {
    right: auto;
    left: 20px;
}

.md-btn.md-fab.md-mini {
    width: 40px;
    height: 40px;
    line-height: 28px;
}

.red {
    background-color: #f44336;
    color: rgba(255, 255, 255, 0.87);
}

.red-100,
.red-200,
.red-300,
.red-400,
.red-50 {
    color: rgba(0, 0, 0, 0.87);
}

.red-50 {
    background-color: #ffebee;
}

.red-100 {
    background-color: #ffcdd2;
}

.red-200 {
    background-color: #ef9a9a;
}

.red-300 {
    background-color: #e57373;
}

.red-400 {
    background-color: #ef5350;
}

.red-500,
.red-600,
.red-700,
.red-800,
.red-900 {
    color: rgba(255, 255, 255, 0.87);
}

.red-500 {
    background-color: #f44336;
}

.red-600 {
    background-color: #e53935;
}

.red-700 {
    background-color: #d32f2f;
}

.red-800 {
    background-color: #c62828;
}

.red-900 {
    background-color: #b71c1c;
}

.red-A100 {
    background-color: #ff8a80;
    color: rgba(0, 0, 0, 0.87);
}

.pink,
.red-A200,
.red-A400,
.red-A700 {
    color: rgba(255, 255, 255, 0.87);
}

.red-A200 {
    background-color: #ff5252;
}

.red-A400 {
    background-color: #ff1744;
}

.red-A700 {
    background-color: #d50000;
}

.pink {
    background-color: #e91e63;
}

.pink-100,
.pink-200,
.pink-300,
.pink-400,
.pink-50 {
    color: rgba(0, 0, 0, 0.87);
}

.pink-50 {
    background-color: #fce4ec;
}

.pink-100 {
    background-color: #f8bbd0;
}

.pink-200 {
    background-color: #f48fb1;
}

.pink-300 {
    background-color: #f06292;
}

.pink-400 {
    background-color: #ec407a;
}

.pink-500,
.pink-600,
.pink-700,
.pink-800,
.pink-900 {
    color: rgba(255, 255, 255, 0.87);
}

.pink-500 {
    background-color: #e91e63;
}

.pink-600 {
    background-color: #d81b60;
}

.pink-700 {
    background-color: #c2185b;
}

.pink-800 {
    background-color: #ad1457;
}

.pink-900 {
    background-color: #880e4f;
}

.pink-A100 {
    background-color: #ff80ab;
    color: rgba(0, 0, 0, 0.87);
}

.pink-A200,
.pink-A400,
.pink-A700,
.purple {
    color: rgba(255, 255, 255, 0.87);
}

.pink-A200 {
    background-color: #ff4081;
}

.pink-A400 {
    background-color: #f50057;
}

.pink-A700 {
    background-color: #c51162;
}

.purple {
    background-color: #9c27b0;
}

.purple-100,
.purple-200,
.purple-50 {
    color: rgba(0, 0, 0, 0.87);
}

.purple-50 {
    background-color: #f3e5f5;
}

.purple-100 {
    background-color: #e1bee7;
}

.purple-200 {
    background-color: #ce93d8;
}

.purple-300,
.purple-400,
.purple-500,
.purple-600,
.purple-700,
.purple-800,
.purple-900 {
    color: rgba(255, 255, 255, 0.87);
}

.purple-300 {
    background-color: #ba68c8;
}

.purple-400 {
    background-color: #ab47bc;
}

.purple-500 {
    background-color: #9c27b0;
}

.purple-600 {
    background-color: #8e24aa;
}

.purple-700 {
    background-color: #7b1fa2;
}

.purple-800 {
    background-color: #6a1b9a;
}

.purple-900 {
    background-color: #4a148c;
}

.purple-A100 {
    background-color: #ea80fc;
    color: rgba(0, 0, 0, 0.87);
}

.deep-purple,
.purple-A200,
.purple-A400,
.purple-A700 {
    color: rgba(255, 255, 255, 0.87);
}

.purple-A200 {
    background-color: #e040fb;
}

.purple-A400 {
    background-color: #d500f9;
}

.purple-A700 {
    background-color: #a0f;
}

.deep-purple {
    background-color: #673ab7;
}

.deep-purple-50 {
    background-color: #ede7f6;
    color: rgba(0, 0, 0, 0.87);
}

.deep-purple-100 {
    background-color: #d1c4e9;
    color: rgba(0, 0, 0, 0.87);
}

.deep-purple-200 {
    background-color: #b39ddb;
    color: rgba(0, 0, 0, 0.87);
}

.deep-purple-300,
.deep-purple-400,
.deep-purple-500,
.deep-purple-600,
.deep-purple-700,
.deep-purple-800,
.deep-purple-900 {
    color: rgba(255, 255, 255, 0.87);
}

.deep-purple-300 {
    background-color: #9575cd;
}

.deep-purple-400 {
    background-color: #7e57c2;
}

.deep-purple-500 {
    background-color: #673ab7;
}

.deep-purple-600 {
    background-color: #5e35b1;
}

.deep-purple-700 {
    background-color: #512da8;
}

.deep-purple-800 {
    background-color: #4527a0;
}

.deep-purple-900 {
    background-color: #311b92;
}

.deep-purple-A100 {
    background-color: #b388ff;
    color: rgba(0, 0, 0, 0.87);
}

.deep-purple-A200,
.deep-purple-A400,
.deep-purple-A700,
.indigo {
    color: rgba(255, 255, 255, 0.87);
}

.deep-purple-A200 {
    background-color: #7c4dff;
}

.deep-purple-A400 {
    background-color: #651fff;
}

.deep-purple-A700 {
    background-color: #6200ea;
}

.indigo {
    background-color: #3f51b5;
}

.indigo-100,
.indigo-200,
.indigo-50 {
    color: rgba(0, 0, 0, 0.87);
}

.indigo-50 {
    background-color: #e8eaf6;
}

.indigo-100 {
    background-color: #c5cae9;
}

.indigo-200 {
    background-color: #9fa8da;
}

.indigo-300,
.indigo-400,
.indigo-500,
.indigo-600,
.indigo-700,
.indigo-800,
.indigo-900 {
    color: rgba(255, 255, 255, 0.87);
}

.indigo-300 {
    background-color: #7986cb;
}

.indigo-400 {
    background-color: #5c6bc0;
}

.indigo-500 {
    background-color: #3f51b5;
}

.indigo-600 {
    background-color: #3949ab;
}

.indigo-700 {
    background-color: #303f9f;
}

.indigo-800 {
    background-color: #283593;
}

.indigo-900 {
    background-color: #1a237e;
}

.indigo-A100 {
    background-color: #8c9eff;
    color: rgba(0, 0, 0, 0.87);
}

.blue,
.indigo-A200,
.indigo-A400,
.indigo-A700 {
    color: rgba(255, 255, 255, 0.87);
}

.indigo-A200 {
    background-color: #536dfe;
}

.indigo-A400 {
    background-color: #3d5afe;
}

.indigo-A700 {
    background-color: #304ffe;
}

.blue-100,
.blue-200,
.blue-300,
.blue-400,
.blue-50 {
    color: rgba(0, 0, 0, 0.87);
}

.blue-50 {
    background-color: #e3f2fd;
}

.blue-100 {
    background-color: #bbdefb;
}

.blue-200 {
    background-color: #90caf9;
}

.blue-300 {
    background-color: #64b5f6;
}

.blue-400 {
    background-color: #42a5f5;
}

.blue-500,
.blue-600,
.blue-700,
.blue-800,
.blue-900 {
    color: rgba(255, 255, 255, 0.87);
}

.blue-500 {
    background-color: #2196f3;
}

.blue-600 {
    background-color: #1e88e5;
}

.blue-700 {
    background-color: #1976d2;
}

.blue-800 {
    background-color: #1565c0;
}

.blue-900 {
    background-color: #0d47a1;
}

.blue-A100 {
    background-color: #82b1ff;
    color: rgba(0, 0, 0, 0.87);
}

.blue-A200,
.blue-A400,
.blue-A700,
.light-blue {
    color: rgba(255, 255, 255, 0.87);
}

.blue-A200 {
    background-color: #448aff;
}

.blue-A400 {
    background-color: #2979ff;
}

.blue-A700 {
    background-color: #2962ff;
}

.light-blue {
    background-color: #03a9f4;
}

.light-blue-100,
.light-blue-200,
.light-blue-300,
.light-blue-400,
.light-blue-50 {
    color: rgba(0, 0, 0, 0.87);
}

.light-blue-50 {
    background-color: #e1f5fe;
}

.light-blue-100 {
    background-color: #b3e5fc;
}

.light-blue-200 {
    background-color: #81d4fa;
}

.light-blue-300 {
    background-color: #4fc3f7;
}

.light-blue-400 {
    background-color: #29b6f6;
}

.light-blue-500,
.light-blue-600,
.light-blue-700,
.light-blue-800,
.light-blue-900 {
    color: rgba(255, 255, 255, 0.87);
}

.light-blue-500 {
    background-color: #03a9f4;
}

.light-blue-600 {
    background-color: #039be5;
}

.light-blue-700 {
    background-color: #0288d1;
}

.light-blue-800 {
    background-color: #0277bd;
}

.light-blue-900 {
    background-color: #01579b;
}

.light-blue-A100 {
    background-color: #80d8ff;
    color: rgba(0, 0, 0, 0.87);
}

.light-blue-A200 {
    background-color: #40c4ff;
    color: rgba(0, 0, 0, 0.87);
}

.light-blue-A400 {
    background-color: #00b0ff;
    color: rgba(0, 0, 0, 0.87);
}

.cyan,
.light-blue-A700 {
    color: rgba(255, 255, 255, 0.87);
}

.light-blue-A700 {
    background-color: #0091ea;
}

.cyan {
    background-color: #00bcd4;
}

.cyan-100,
.cyan-200,
.cyan-300,
.cyan-400,
.cyan-50 {
    color: rgba(0, 0, 0, 0.87);
}

.cyan-50 {
    background-color: #e0f7fa;
}

.cyan-100 {
    background-color: #b2ebf2;
}

.cyan-200 {
    background-color: #80deea;
}

.cyan-300 {
    background-color: #4dd0e1;
}

.cyan-400 {
    background-color: #26c6da;
}

.cyan-500,
.cyan-600,
.cyan-700,
.cyan-800,
.cyan-900 {
    color: rgba(255, 255, 255, 0.87);
}

.cyan-500 {
    background-color: #00bcd4;
}

.cyan-600 {
    background-color: #00acc1;
}

.cyan-700 {
    background-color: #0097a7;
}

.cyan-800 {
    background-color: #00838f;
}

.cyan-900 {
    background-color: #006064;
}

.cyan-A100,
.cyan-A200,
.cyan-A400,
.cyan-A700 {
    color: rgba(0, 0, 0, 0.87);
}

.cyan-A100 {
    background-color: #84ffff;
}

.cyan-A200 {
    background-color: #18ffff;
}

.cyan-A400 {
    background-color: #00e5ff;
}

.cyan-A700 {
    background-color: #00b8d4;
}

.teal {
    background-color: #009688;
    color: rgba(255, 255, 255, 0.87);
}

.teal-100,
.teal-200,
.teal-300,
.teal-400,
.teal-50 {
    color: rgba(0, 0, 0, 0.87);
}

.teal-50 {
    background-color: #e0f2f1;
}

.teal-100 {
    background-color: #b2dfdb;
}

.teal-200 {
    background-color: #80cbc4;
}

.teal-300 {
    background-color: #4db6ac;
}

.teal-400 {
    background-color: #26a69a;
}

.teal-500,
.teal-600,
.teal-700,
.teal-800,
.teal-900 {
    color: rgba(255, 255, 255, 0.87);
}

.teal-500 {
    background-color: #009688;
}

.teal-600 {
    background-color: #00897b;
}

.teal-700 {
    background-color: #00796b;
}

.teal-800 {
    background-color: #00695c;
}

.teal-900 {
    background-color: #004d40;
}

.teal-A100,
.teal-A200,
.teal-A400,
.teal-A700 {
    color: rgba(0, 0, 0, 0.87);
}

.teal-A100 {
    background-color: #a7ffeb;
}

.teal-A200 {
    background-color: #64ffda;
}

.teal-A400 {
    background-color: #1de9b6;
}

.teal-A700 {
    background-color: #00bfa5;
}

.green {
    background-color: #4caf50;
    color: rgba(255, 255, 255, 0.87);
}

.green-100,
.green-200,
.green-300,
.green-400,
.green-50 {
    color: rgba(0, 0, 0, 0.87);
}

.green-50 {
    background-color: #e8f5e9;
}

.green-100 {
    background-color: #c8e6c9;
}

.green-200 {
    background-color: #a5d6a7;
}

.green-300 {
    background-color: #81c784;
}

.green-400 {
    background-color: #66bb6a;
}

.green-500,
.green-600,
.green-700,
.green-800,
.green-900 {
    color: rgba(255, 255, 255, 0.87);
}

.green-500 {
    background-color: #4caf50;
}

.green-600 {
    background-color: #43a047;
}

.green-700 {
    background-color: #388e3c;
}

.green-800 {
    background-color: #2e7d32;
}

.green-900 {
    background-color: #1b5e20;
}

.green-A100,
.green-A200,
.green-A400,
.green-A700,
.light-green,
.light-green-200,
.light-green-300,
.light-green-400,
.light-green-50,
.light-green-500,
.light-green-600,
.light-green-700 {
    color: rgba(0, 0, 0, 0.87);
}

.green-A100 {
    background-color: #b9f6ca;
}

.green-A200 {
    background-color: #69f0ae;
}

.green-A400 {
    background-color: #00e676;
}

.green-A700 {
    background-color: #00c853;
}

.light-green {
    background-color: #8bc34a;
}

.light-green-50 {
    background-color: #f1f8e9;
}

.light-green-100 {
    background-color: #dcedc8;
    color: rgba(0, 0, 0, 0.87);
}

.light-green-200 {
    background-color: #c5e1a5;
}

.light-green-300 {
    background-color: #aed581;
}

.light-green-400 {
    background-color: #9ccc65;
}

.light-green-500 {
    background-color: #8bc34a;
}

.light-green-600 {
    background-color: #7cb342;
}

.light-green-700 {
    background-color: #689f38;
}

.light-green-800 {
    background-color: #558b2f;
    color: rgba(255, 255, 255, 0.87);
}

.light-green-900 {
    background-color: #33691e;
    color: rgba(255, 255, 255, 0.87);
}

.light-green-A100,
.light-green-A200,
.light-green-A400,
.light-green-A700,
.lime,
.lime-200,
.lime-300,
.lime-400,
.lime-50,
.lime-500,
.lime-600,
.lime-700,
.lime-800 {
    color: rgba(0, 0, 0, 0.87);
}

.light-green-A100 {
    background-color: #ccff90;
}

.light-green-A200 {
    background-color: #b2ff59;
}

.light-green-A400 {
    background-color: #76ff03;
}

.light-green-A700 {
    background-color: #64dd17;
}

.lime {
    background-color: #cddc39;
}

.lime-50 {
    background-color: #f9fbe7;
}

.lime-100 {
    background-color: #f0f4c3;
    color: rgba(0, 0, 0, 0.87);
}

.lime-200 {
    background-color: #e6ee9c;
}

.lime-300 {
    background-color: #dce775;
}

.lime-400 {
    background-color: #d4e157;
}

.lime-500 {
    background-color: #cddc39;
}

.lime-600 {
    background-color: #c0ca33;
}

.lime-700 {
    background-color: #afb42b;
}

.lime-800 {
    background-color: #9e9d24;
}

.lime-900 {
    background-color: #827717;
    color: rgba(255, 255, 255, 0.87);
}

.amber,
.amber-200,
.amber-300,
.amber-400,
.amber-50,
.amber-500,
.amber-600,
.amber-700,
.amber-800,
.amber-900,
.amber-A100,
.amber-A200,
.amber-A400,
.amber-A700,
.lime-A100,
.lime-A200,
.lime-A400,
.lime-A700,
.orange,
.orange-100,
.orange-200,
.orange-300,
.orange-400,
.orange-50,
.orange-500,
.orange-600,
.orange-700,
.yellow,
.yellow-100,
.yellow-200,
.yellow-300,
.yellow-400,
.yellow-50,
.yellow-500,
.yellow-600,
.yellow-700,
.yellow-800,
.yellow-900,
.yellow-A100,
.yellow-A200,
.yellow-A400,
.yellow-A700 {
    color: rgba(0, 0, 0, 0.87);
}

.lime-A100 {
    background-color: #f4ff81;
}

.lime-A200 {
    background-color: #eeff41;
}

.lime-A400 {
    background-color: #c6ff00;
}

.lime-A700 {
    background-color: #aeea00;
}

.yellow {
    background-color: #ffeb3b;
}

.yellow-50 {
    background-color: #fffde7;
}

.yellow-100 {
    background-color: #fff9c4;
}

.yellow-200 {
    background-color: #fff59d;
}

.yellow-300 {
    background-color: #fff176;
}

.yellow-400 {
    background-color: #ffee58;
}

.yellow-500 {
    background-color: #ffeb3b;
}

.yellow-600 {
    background-color: #fdd835;
}

.yellow-700 {
    background-color: #fbc02d;
}

.yellow-800 {
    background-color: #f9a825;
}

.yellow-900 {
    background-color: #f57f17;
}

.yellow-A100 {
    background-color: #ffff8d;
}

.yellow-A200 {
    background-color: #ff0;
}

.yellow-A400 {
    background-color: #ffea00;
}

.yellow-A700 {
    background-color: #ffd600;
}

.amber {
    background-color: #ffc107;
}

.amber-50 {
    background-color: #fff8e1;
}

.amber-100 {
    background-color: #ffecb3;
    color: rgba(0, 0, 0, 0.87);
}

.amber-200 {
    background-color: #ffe082;
}

.amber-300 {
    background-color: #ffd54f;
}

.amber-400 {
    background-color: #ffca28;
}

.amber-500 {
    background-color: #ffc107;
}

.amber-600 {
    background-color: #ffb300;
}

.amber-700 {
    background-color: #ffa000;
}

.amber-800 {
    background-color: #ff8f00;
}

.amber-900 {
    background-color: #ff6f00;
}

.amber-A100 {
    background-color: #ffe57f;
}

.amber-A200 {
    background-color: #ffd740;
}

.amber-A400 {
    background-color: #ffc400;
}

.amber-A700 {
    background-color: #ffab00;
}

.orange {
    background-color: #ff9800;
}

.orange-50 {
    background-color: #fff3e0;
}

.orange-100 {
    background-color: #ffe0b2;
}

.orange-200 {
    background-color: #ffcc80;
}

.orange-300 {
    background-color: #f48f04;
}

.orange-400 {
    background-color: #ffa726;
}

.orange-500 {
    background-color: #ff9800;
}

.orange-600 {
    background-color: #fb8c00;
}

.orange-700 {
    background-color: #f57c00;
}

.orange-800,
.orange-900 {
    color: rgba(255, 255, 255, 0.87);
}

.orange-800 {
    background-color: #ef6c00;
}

.orange-900 {
    background-color: #e65100;
}

.orange-A100,
.orange-A200,
.orange-A400,
.orange-A700 {
    color: rgba(0, 0, 0, 0.87);
}

.orange-A100 {
    background-color: #ffd180;
}

.orange-A200 {
    background-color: #ffab40;
}

.orange-A400 {
    background-color: #ff9100;
}

.orange-A700 {
    background-color: #ff6d00;
}

.deep-orange {
    background-color: #ff5722;
    color: rgba(255, 255, 255, 0.87);
}

.deep-orange-100,
.deep-orange-200,
.deep-orange-300,
.deep-orange-400,
.deep-orange-50 {
    color: rgba(0, 0, 0, 0.87);
}

.deep-orange-50 {
    background-color: #fbe9e7;
}

.deep-orange-100 {
    background-color: #ffccbc;
}

.deep-orange-200 {
    background-color: #ffab91;
}

.deep-orange-300 {
    background-color: #ff8a65;
}

.deep-orange-400 {
    background-color: #ff7043;
}

.deep-orange-500,
.deep-orange-600,
.deep-orange-700,
.deep-orange-800,
.deep-orange-900 {
    color: rgba(255, 255, 255, 0.87);
}

.deep-orange-500 {
    background-color: #ff5722;
}

.deep-orange-600 {
    background-color: #f4511e;
}

.deep-orange-700 {
    background-color: #e64a19;
}

.deep-orange-800 {
    background-color: #d84315;
}

.deep-orange-900 {
    background-color: #bf360c;
}

.deep-orange-A100 {
    background-color: #ff9e80;
    color: rgba(0, 0, 0, 0.87);
}

.deep-orange-A200 {
    background-color: #ff6e40;
    color: rgba(0, 0, 0, 0.87);
}

.brown,
.deep-orange-A400,
.deep-orange-A700 {
    color: rgba(255, 255, 255, 0.87);
}

.deep-orange-A400 {
    background-color: #ff3d00;
}

.deep-orange-A700 {
    background-color: #dd2c00;
}

.brown {
    background-color: #795548;
}

.brown-100,
.brown-200,
.brown-50 {
    color: rgba(0, 0, 0, 0.87);
}

.brown-50 {
    background-color: #efebe9;
}

.brown-100 {
    background-color: #d7ccc8;
}

.brown-200 {
    background-color: #bcaaa4;
}

.blue-grey,
.brown-300,
.brown-400,
.brown-500,
.brown-600,
.brown-700,
.brown-800,
.brown-900 {
    color: rgba(255, 255, 255, 0.87);
}

.brown-300 {
    background-color: #a1887f;
}

.brown-400 {
    background-color: #8d6e63;
}

.brown-500 {
    background-color: #795548;
}

.brown-600 {
    background-color: #6d4c41;
}

.brown-700 {
    background-color: #5d4037;
}

.brown-800 {
    background-color: #4e342e;
}

.brown-900 {
    background-color: #3e2723;
}

.blue-grey {
    background-color: #607d8b;
}

.blue-grey-100,
.blue-grey-200,
.blue-grey-300,
.blue-grey-50 {
    color: rgba(0, 0, 0, 0.87);
}

.blue-grey-50 {
    background-color: #eceff1;
}

.blue-grey-100 {
    background-color: #cfd8dc;
}

.blue-grey-200 {
    background-color: #b0bec5;
}

.blue-grey-300 {
    background-color: #90a4ae;
}

.blue-grey-400,
.blue-grey-500,
.blue-grey-600,
.blue-grey-700,
.blue-grey-800,
.blue-grey-900 {
    color: rgba(255, 255, 255, 0.87);
}

.blue-grey-400 {
    background-color: #78909c;
}

.blue-grey-500 {
    background-color: #607d8b;
}

.blue-grey-600 {
    background-color: #546e7a;
}

.blue-grey-700 {
    background-color: #455a64;
}

.blue-grey-800 {
    background-color: #37474f;
}

.blue-grey-900 {
    background-color: #263238;
}

.grey-100,
.grey-200,
.grey-300,
.grey-400,
.grey-50,
.grey-500 {
    color: rgba(0, 0, 0, 0.87);
}

.grey-50 {
    background-color: #fafafa;
}

.grey-100 {
    background-color: #f5f5f5;
}

.grey-200 {
    background-color: #eee;
}

.grey-300 {
    background-color: #e0e0e0;
}

.grey-400 {
    background-color: #bdbdbd;
}

.grey-500 {
    background-color: #9e9e9e;
}

.grey-600,
.grey-700,
.grey-800,
.grey-900 {
    color: rgba(255, 255, 255, 0.87);
}

.grey-600 {
    background-color: #757575;
}

.grey-700 {
    background-color: #616161;
}

.grey-800 {
    background-color: #424242;
}

.grey-900 {
    background-color: #212121;
}

.md-form-group {
    padding: 18px 0 24px;
    position: relative;
}

.md-input {
    background: 0 0;
    position: relative;
    z-index: 5;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(160, 160, 160, 0.2);
    width: 100%;
    height: 34px;
    padding: 2px;
    color: inherit;
}

    .md-input.focus,
    .md-input:focus {
        border-color: #295288;
        border-bottom-width: 2px;
        padding-bottom: 1px;
    }

        .md-input.focus ~ label,
        .md-input:focus ~ label {
            color: #295288;
            opacity: 1;
            top: 0 !important;
            font-size: 0.85em !important;
        }

.float-label .md-input ~ label {
    top: 20px;
    font-size: 1em;
}

.float-label .md-input.has-value ~ label,
.float-label .md-input.ng-dirty ~ label,
.md-input ~ label {
    top: 0;
    font-size: 1em;
}

.md-input ~ label {
    -webkit-transition: all .2s;
    transition: all .2s;
    position: absolute;
    z-index: 0;
    opacity: .5;
    left: 0;
}

.md-input.disabled,
.md-input[disabled] {
    opacity: .5;
}

textarea.md-input {
    height: auto;
}

.md-input-white.focus,
.md-input-white:focus {
    border-color: #fff;
}

    .md-input-white.focus ~ label,
    .md-input-white:focus ~ label {
        color: #fff;
    }

.md-input-msg {
    position: absolute;
    bottom: 0;
    line-height: 24px;
    font-size: .85em;
}

.md-check > i,
.md-switch i {
    line-height: 1;
    vertical-align: middle;
}

.md-input-msg.right {
    right: 0;
}

.md-input-readonly {
    border-color: darkgrey !important;
    border-style: solid !important;
    border-width: 1px !important;
    background-color: rgb(235, 235, 228) !important;
    color: rgb(84, 84, 84) !important;
    padding: 2px 0px !important;
    pointer-events: none !important;
}

.md-check {
    cursor: pointer;
    padding-left: 1.25rem;
    margin: 0;
    position: relative;
}

    .md-check input {
        position: absolute;
        cursor: pointer;
        z-index: 1;
        opacity: 0;
        margin-left: -1.25rem;
    }

        .md-check input:checked ~ i:before {
            border-width: 0;
            background-color: inherit;
        }

        .md-check input:checked + span .active {
            display: inherit;
        }

        .md-check input[type=radio] + i,
        .md-check input[type=radio] + i:before {
            border-radius: 50%;
        }

        .md-check input[type=checkbox]:checked ~ i:after {
            -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            transform: rotate(45deg);
            position: absolute;
            left: 6px;
            top: 2px;
            display: table;
            width: 6px;
            height: 12px;
            border: 2px solid;
            border-top: 0;
            border-left: 0;
            content: ' ';
        }

        .md-check input[type=radio]:checked + i:after {
            position: absolute;
            left: 6px;
            top: 6px;
            display: table;
            width: 6px;
            height: 6px;
            background: #fff;
            border-radius: 50%;
            content: ' ';
        }

    .md-check > i:before,
    .md-switch i:after,
    .md-switch i:before {
        content: "";
    }

    .md-check input[disabled] + i:before,
    .md-check input[disabled]:checked + i:before,
    fieldset[disabled] .md-check input + i:before {
        opacity: .5;
    }

    .md-check > i {
        width: 0;
        height: 18px;
        margin-left: -20px;
        margin-top: 1px;
        float: left;
        display: inline-block;
        margin-right: 28px;
        position: relative;
    }

        .md-check > i:before {
            position: absolute;
            width: 18px;
            height: 100%;
            border: 2px solid #9e9e9e;
            border-radius: 2px;
        }

        .md-check > i.no-icon:after {
            display: none !important;
        }

.md-switch {
    cursor: pointer;
    padding-left: 36px;
    margin: 0;
    min-height: 20px;
}

    .md-switch input {
        position: absolute;
        cursor: pointer;
        width: 36px;
        height: 20px;
        z-index: 1;
        opacity: 0;
        margin-left: -36px;
    }

        .md-switch input:checked ~ i:before {
            background: inherit;
            opacity: .5;
        }

        .md-switch input:checked ~ i:after {
            background: inherit;
            left: 16px;
        }

        .md-switch input[disabled] + i:before,
        fieldset[disabled] .md-switch input + i:before {
            background-color: rgba(0, 0, 0, 0.12);
        }

        .md-switch input[disabled] + i:after,
        fieldset[disabled] .md-switch input + i:after {
            background-color: #bdbdbd;
        }

    .md-switch i {
        width: 0;
        height: 18px;
        margin-left: -36px;
        margin-top: -2px;
        display: inline-block;
        margin-right: 44px;
        position: relative;
    }

        .md-switch i:before {
            left: 1px;
            width: 34px;
            top: 3px;
            height: 14px;
            border-radius: 8px;
            position: absolute;
            background-color: #9e9e9e;
            -webkit-transition: all .2s;
            transition: all .2s;
        }

        .md-switch i:after {
            position: absolute;
            margin: 0;
            left: 0;
            top: 0;
            outline: 0;
            height: 20px;
            width: 20px;
            border-radius: 50%;
            background-color: #fff;
            box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
            -webkit-transition: all .2s;
            transition: all .2s;
        }

.animated {
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
}

[ui-view].ng-leave {
    display: none;
}

    [ui-view].ng-leave.smooth {
        display: block;
    }

.smooth.ng-animate {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.fade-in-right-big.ng-enter {
    -webkit-animation: fadeInRightBig .5s;
    animation: fadeInRightBig .5s;
}

.fade-in-right-big.ng-leave {
    -webkit-animation: fadeOutLeftBig .5s;
    animation: fadeOutLeftBig .5s;
}

.fade-in-left-big.ng-enter {
    -webkit-animation: fadeInLeftBig .5s;
    animation: fadeInLeftBig .5s;
}

.fade-in-left-big.ng-leave {
    -webkit-animation: fadeOutRightBig .5s;
    animation: fadeOutRightBig .5s;
}

.fade-in-up-big.ng-enter {
    -webkit-animation: fadeInUpBig .5s;
    animation: fadeInUpBig .5s;
}

.fade-in-up-big.ng-leave {
    -webkit-animation: fadeOutUpBig .5s;
    animation: fadeOutUpBig .5s;
}

.fade-in-down-big.ng-enter {
    -webkit-animation: fadeInDownBig .5s;
    animation: fadeInDownBig .5s;
}

.fade-in-down-big.ng-leave {
    -webkit-animation: fadeOutDownBig .5s;
    animation: fadeOutDownBig .5s;
}

.fade-in.ng-enter {
    -webkit-animation: fadeIn .5s;
    animation: fadeIn .5s;
}

.fade-in.ng-leave {
    -webkit-animation: fadeOut .5s;
    animation: fadeOut .5s;
}

.fade-in-right.ng-enter {
    -webkit-animation: fadeInRight .5s;
    animation: fadeInRight .5s;
}

.fade-in-right.ng-leave {
    -webkit-animation: fadeOutLeft .5s;
    animation: fadeOutLeft .5s;
}

.fade-in-left.ng-enter {
    -webkit-animation: fadeInLeft .5s;
    animation: fadeInLeft .5s;
}

.fade-in-left.ng-leave {
    -webkit-animation: fadeOutRight .5s;
    animation: fadeOutRight .5s;
}

.fade-in-up.ng-enter {
    -webkit-animation: fadeInUp .5s;
    animation: fadeInUp .5s;
}

.fade-in-up.ng-leave {
    -webkit-animation: fadeOutUp .5s;
    animation: fadeOutUp .5s;
}

.fade-in-down.ng-enter {
    -webkit-animation: fadeInDown .5s;
    animation: fadeInDown .5s;
}

.fade-in-down.ng-leave {
    -webkit-animation: fadeOutDown .5s;
    animation: fadeOutDown .5s;
}

table.footable,
table.footable-details {
    position: relative;
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
}

table.footable-details {
    margin-bottom: 0;
}

table.footable-hide-fouc {
    display: none;
}

table > tbody > tr > td > span.footable-toggle {
    margin-right: 8px;
    opacity: 0.3;
}

    table > tbody > tr > td > span.footable-toggle.last-column {
        margin-left: 8px;
        float: right;
    }

table.table-condensed > tbody > tr > td > span.footable-toggle {
    margin-right: 5px;
}

table.footable-details > tbody > tr > th:nth-child(1) {
    min-width: 40px;
    width: 120px;
}

table.footable-details > tbody > tr > td:nth-child(2) {
    word-break: break-all;
}

table.footable-details > thead > tr:first-child > th,
table.footable-details > thead > tr:first-child > td,
table.footable-details > tbody > tr:first-child > th,
table.footable-details > tbody > tr:first-child > td,
table.footable-details > tfoot > tr:first-child > th,
table.footable-details > tfoot > tr:first-child > td {
    border-top-width: 0;
}

table.footable-details.table-bordered > thead > tr:first-child > th,
table.footable-details.table-bordered > thead > tr:first-child > td,
table.footable-details.table-bordered > tbody > tr:first-child > th,
table.footable-details.table-bordered > tbody > tr:first-child > td,
table.footable-details.table-bordered > tfoot > tr:first-child > th,
table.footable-details.table-bordered > tfoot > tr:first-child > td {
    border-top-width: 1px;
}

div.footable-loader {
    vertical-align: middle;
    text-align: center;
    height: 300px;
    position: relative;
}

    div.footable-loader > span.fooicon {
        display: inline-block;
        opacity: 0.3;
        font-size: 30px;
        line-height: 32px;
        width: 32px;
        height: 32px;
        margin-top: -16px;
        margin-left: -16px;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-animation: fooicon-spin-r 2s infinite linear;
        animation: fooicon-spin-r 2s infinite linear;
    }

table.footable > tbody > tr.footable-empty > td {
    vertical-align: middle;
    text-align: center;
    font-size: 30px;
}

table.footable > tbody > tr.footable-empty > td,
table.footable > tbody > tr.footable-empty > th,
table.footable > tbody > tr.footable-detail-row > td,
table.footable > tbody > tr.footable-detail-row > th {
    display: table-cell;
}

@-webkit-keyframes fooicon-spin-r {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes fooicon-spin-r {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

.fooicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings' !important;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

    .fooicon:before,
    .fooicon:after {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

.fooicon-loader:before {
    content: "\e030";
}

.fooicon-plus:before {
    content: "\2b";
}

.fooicon-minus:before {
    content: "\2212";
}

.fooicon-search:before {
    content: "\e003";
}

.fooicon-remove:before {
    content: "\e014";
}

.fooicon-sort:before {
    content: "\e150";
}

.fooicon-sort-asc:before {
    content: "\e155";
}

.fooicon-sort-desc:before {
    content: "\e156";
}

.fooicon-pencil:before {
    content: "\270f";
}

.fooicon-trash:before {
    content: "\e020";
}

.fooicon-eye-close:before {
    content: "\e106";
}

.fooicon-flash:before {
    content: "\e162";
}

.fooicon-cog:before {
    content: "\e019";
}

.fooicon-stats:before {
    content: "\e185";
}

table.footable > thead > tr.footable-filtering > th {
    border-bottom-width: 1px;
    font-weight: normal;
}

table.footable > thead > tr.footable-filtering > th,
table.footable.footable-filtering-right > thead > tr.footable-filtering > th {
    text-align: right;
}

table.footable.footable-filtering-left > thead > tr.footable-filtering > th {
    text-align: left;
}

table.footable.footable-filtering-center > thead > tr.footable-filtering > th {
    text-align: center;
}

table.footable > thead > tr.footable-filtering > th div.form-group {
    margin-bottom: 0;
}

    table.footable > thead > tr.footable-filtering > th div.form-group + div.form-group {
        margin-top: 5px;
    }

table.footable > thead > tr.footable-filtering > th div.input-group {
    width: 100%;
}

table.footable > thead > tr.footable-filtering > th ul.dropdown-menu > li > a.checkbox {
    margin: 0;
    display: block;
    position: relative;
}

    table.footable > thead > tr.footable-filtering > th ul.dropdown-menu > li > a.checkbox > label {
        display: block;
        padding-left: 20px;
    }

    table.footable > thead > tr.footable-filtering > th ul.dropdown-menu > li > a.checkbox input[type="checkbox"] {
        position: absolute;
        margin-left: -20px;
    }

@media (min-width: 768px) {
    table.footable > thead > tr.footable-filtering > th div.input-group {
        width: auto;
    }

    table.footable > thead > tr.footable-filtering > th div.form-group {
        margin-left: 2px;
        margin-right: 2px;
    }

        table.footable > thead > tr.footable-filtering > th div.form-group + div.form-group {
            margin-top: 0;
        }
}

table.footable > thead > tr > td.footable-sortable,
table.footable > thead > tr > th.footable-sortable,
table.footable > tbody > tr > td.footable-sortable,
table.footable > tbody > tr > th.footable-sortable,
table.footable > tfoot > tr > td.footable-sortable,
table.footable > tfoot > tr > th.footable-sortable {
    position: relative;
    padding-right: 30px;
    cursor: pointer;
}

td.footable-sortable > span.fooicon,
th.footable-sortable > span.fooicon {
    position: absolute;
    right: 6px;
    top: 50%;
    margin-top: -7px;
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

td.footable-sortable:hover > span.fooicon,
th.footable-sortable:hover > span.fooicon {
    opacity: 1;
}

td.footable-sortable.footable-asc > span.fooicon,
th.footable-sortable.footable-asc > span.fooicon,
td.footable-sortable.footable-desc > span.fooicon,
th.footable-sortable.footable-desc > span.fooicon {
    opacity: 1;
}

table.footable-sorting-disabled td.footable-sortable.footable-asc > span.fooicon,
table.footable-sorting-disabled td.footable-sortable.footable-desc > span.fooicon,
table.footable-sorting-disabled td.footable-sortable:hover > span.fooicon,
table.footable-sorting-disabled th.footable-sortable.footable-asc > span.fooicon,
table.footable-sorting-disabled th.footable-sortable.footable-desc > span.fooicon,
table.footable-sorting-disabled th.footable-sortable:hover > span.fooicon {
    opacity: 0;
    visibility: hidden;
}

table.footable > tfoot > tr.footable-paging > td > ul.pagination {
    margin: 10px 0 0 0;
}

table.footable > tfoot > tr.footable-paging > td > span.label {
    display: inline-block;
    margin: 0 0 10px 0;
    padding: 4px 10px;
}

table.footable > tfoot > tr.footable-paging > td,
table.footable-paging-center > tfoot > tr.footable-paging > td {
    text-align: center;
}

table.footable-paging-left > tfoot > tr.footable-paging > td {
    text-align: left;
}

table.footable-paging-right > tfoot > tr.footable-paging > td {
    text-align: right;
}

ul.pagination > li.footable-page {
    display: none;
}

    ul.pagination > li.footable-page.visible {
        display: inline;
    }

td.footable-editing {
    width: 90px;
    max-width: 90px;
}

table.footable-editing-no-edit td.footable-editing,
table.footable-editing-no-delete td.footable-editing,
table.footable-editing-no-view td.footable-editing {
    width: 70px;
    max-width: 70px;
}

table.footable-editing-no-edit.footable-editing-no-delete td.footable-editing,
table.footable-editing-no-edit.footable-editing-no-view td.footable-editing,
table.footable-editing-no-delete.footable-editing-no-view td.footable-editing {
    width: 50px;
    max-width: 50px;
}

table.footable-editing-no-edit.footable-editing-no-delete.footable-editing-no-view td.footable-editing,
table.footable-editing-no-edit.footable-editing-no-delete.footable-editing-no-view th.footable-editing {
    width: 0;
    max-width: 0;
    display: none !important;
}

table.footable-editing-right td.footable-editing,
table.footable-editing-right tr.footable-editing {
    text-align: right;
}

table.footable-editing-left td.footable-editing,
table.footable-editing-left tr.footable-editing {
    text-align: left;
}

table.footable-editing button.footable-add,
table.footable-editing button.footable-hide,
table.footable-editing-show button.footable-show,
table.footable-editing.footable-editing-always-show button.footable-show,
table.footable-editing.footable-editing-always-show button.footable-hide,
table.footable-editing.footable-editing-always-show.footable-editing-no-add tr.footable-editing {
    display: none;
}

table.footable-editing.footable-editing-show button.footable-add,
table.footable-editing.footable-editing-show button.footable-hide,
table.footable-editing.footable-editing-always-show button.footable-add {
    display: inline-block;
}

div.dataTables_length label {
    font-weight: normal;
    text-align: left;
    white-space: nowrap;
}

div.dataTables_length select {
    width: 75px;
    display: inline-block;
}

div.dataTables_filter {
    text-align: right;
}

    div.dataTables_filter label {
        font-weight: normal;
        white-space: nowrap;
        text-align: left;
    }

    div.dataTables_filter input {
        margin-left: 0.5em;
        display: inline-block;
    }

div.dataTables_info {
    padding-top: 8px;
    white-space: nowrap;
}

div.dataTables_paginate {
    margin: 0;
    white-space: nowrap;
    text-align: right;
}

    div.dataTables_paginate ul.pagination {
        margin: 2px 0;
        white-space: nowrap;
    }

@media screen and (max-width: 767px) {
    div.dataTables_length,
    div.dataTables_filter,
    div.dataTables_info,
    div.dataTables_paginate {
        text-align: center;
    }
}

table.dataTable td,
table.dataTable th {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

table.dataTable {
    clear: both;
    margin-top: 6px !important;
    margin-bottom: 6px !important;
    max-width: none !important;
}

    table.dataTable thead .sorting,
    table.dataTable thead .sorting_asc,
    table.dataTable thead .sorting_desc,
    table.dataTable thead .sorting_asc_disabled,
    table.dataTable thead .sorting_desc_disabled {
        cursor: pointer;
    }

    table.dataTable thead .sorting {
        /*background: url("../imgs/datatables/sort_both.png") no-repeat center right;*/
    }

    table.dataTable thead .sorting_asc {
        /*background: url("../imgs/datatables/sort_asc.png") no-repeat center right;*/
    }

    table.dataTable thead .sorting_desc {
        /*background: url("../imgs/datatables/sort_desc.png") no-repeat center right;*/
    }

    table.dataTable thead .sorting_asc_disabled {
        /*background: url("../imgs/datatables/sort_asc_disabled.png") no-repeat center right;*/
    }

    table.dataTable thead .sorting_desc_disabled {
        /*background: url("../imgs/datatables/sort_desc_disabled.png") no-repeat center right;*/
    }

    table.dataTable thead > tr > th {
        padding-left: 18px;
        padding-right: 18px;
    }

    table.dataTable th:active {
        outline: none;
    }

div.dataTables_scrollHead table {
    margin-bottom: 0 !important;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

    div.dataTables_scrollHead table thead tr:last-child th:first-child,
    div.dataTables_scrollHead table thead tr:last-child td:first-child {
        border-bottom-left-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }

div.dataTables_scrollBody table {
    border-top: none;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

div.dataTables_scrollBody tbody tr:first-child th,
div.dataTables_scrollBody tbody tr:first-child td {
    border-top: none;
}

div.dataTables_scrollFoot table {
    margin-top: 0 !important;
    border-top: none;
}

table.table-bordered.dataTable {
    border-collapse: separate !important;
}

table.table-bordered thead th,
table.table-bordered thead td {
    border-left-width: 0;
    border-top-width: 0;
}

table.table-bordered tbody th,
table.table-bordered tbody td {
    border-left-width: 0;
    border-bottom-width: 0;
}

table.table-bordered th:last-child,
table.table-bordered td:last-child {
    border-right-width: 0;
}

div.dataTables_scrollHead table.table-bordered {
    border-bottom-width: 0;
}

.table.dataTable tbody tr.active td,
.table.dataTable tbody tr.active th {
    background-color: #08C;
    color: white;
}

.table.dataTable tbody tr.active:hover td,
.table.dataTable tbody tr.active:hover th {
    background-color: #0075b0 !important;
}

.table.dataTable tbody tr.active th > a,
.table.dataTable tbody tr.active td > a {
    color: white;
}

.table-striped.dataTable tbody tr.active:nth-child(odd) td,
.table-striped.dataTable tbody tr.active:nth-child(odd) th {
    background-color: #017ebc;
}

table.DTTT_selectable tbody tr {
    cursor: pointer;
}

div.DTTT .btn:hover {
    text-decoration: none !important;
}

ul.DTTT_dropdown.dropdown-menu {
    z-index: 2003;
}

    ul.DTTT_dropdown.dropdown-menu a {
        color: #333 !important;
    }

    ul.DTTT_dropdown.dropdown-menu li {
        position: relative;
    }

        ul.DTTT_dropdown.dropdown-menu li:hover a {
            background-color: #0088cc;
            color: white !important;
        }

div.DTTT_collection_background {
    z-index: 2002;
}

div.DTTT_print_info {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 150px;
    margin-left: -200px;
    margin-top: -75px;
    text-align: center;
    color: #333;
    padding: 10px 30px;
    opacity: 0.95;
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
}

    div.DTTT_print_info h6 {
        font-weight: normal;
        font-size: 28px;
        line-height: 28px;
        margin: 1em;
    }

    div.DTTT_print_info p {
        font-size: 14px;
        line-height: 20px;
    }

div.dataTables_processing {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 60px;
    margin-left: -50%;
    margin-top: -25px;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    font-size: 1.2em;
    background-color: white;
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(25%, rgba(255, 255, 255, 0.9)), color-stop(75%, rgba(255, 255, 255, 0.9)), color-stop(100%, rgba(255, 255, 255, 0)));
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
    background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
}

div.DTFC_LeftHeadWrapper table,
div.DTFC_LeftFootWrapper table,
div.DTFC_RightHeadWrapper table,
div.DTFC_RightFootWrapper table,
table.DTFC_Cloned tr.even {
    background-color: white;
    margin-bottom: 0;
}

div.DTFC_RightHeadWrapper table,
div.DTFC_LeftHeadWrapper table {
    border-bottom: none !important;
    margin-bottom: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

    div.DTFC_RightHeadWrapper table thead tr:last-child th:first-child,
    div.DTFC_RightHeadWrapper table thead tr:last-child td:first-child,
    div.DTFC_LeftHeadWrapper table thead tr:last-child th:first-child,
    div.DTFC_LeftHeadWrapper table thead tr:last-child td:first-child {
        border-bottom-left-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }

div.DTFC_RightBodyWrapper table,
div.DTFC_LeftBodyWrapper table {
    border-top: none;
    margin: 0 !important;
}

div.DTFC_RightBodyWrapper tbody tr:first-child th,
div.DTFC_RightBodyWrapper tbody tr:first-child td,
div.DTFC_LeftBodyWrapper tbody tr:first-child th,
div.DTFC_LeftBodyWrapper tbody tr:first-child td {
    border-top: none;
}

div.DTFC_RightFootWrapper table,
div.DTFC_LeftFootWrapper table {
    border-top: none;
    margin-top: 0 !important;
}

div.FixedHeader_Cloned table {
    margin: 0 !important;
}

ul.jqtree-tree {
    list-style: none outside;
    margin-left: 0;
    margin-bottom: 0;
    padding: 0;
}

    ul.jqtree-tree ul.jqtree_common {
        list-style: none outside;
        margin-left: 12px;
        margin-right: 0;
        margin-bottom: 0;
        padding: 0;
        display: block;
    }

    ul.jqtree-tree li.jqtree-closed > ul.jqtree_common {
        display: none;
    }

    ul.jqtree-tree li.jqtree_common {
        clear: both;
        list-style-type: none;
    }

    ul.jqtree-tree .jqtree-toggler {
        border-bottom: none;
        color: #333;
        text-decoration: none;
        vertical-align: middle;
    }

        ul.jqtree-tree .jqtree-toggler:hover {
            color: #000;
            text-decoration: none;
        }

        ul.jqtree-tree .jqtree-toggler.jqtree-closed {
            background-position: 0 0;
        }

        ul.jqtree-tree .jqtree-toggler.jqtree-toggler-left {
            margin-right: 0.5em;
        }

        ul.jqtree-tree .jqtree-toggler.jqtree-toggler-right {
            margin-left: 0.5em;
        }

    ul.jqtree-tree .jqtree-element {
        cursor: pointer;
        position: relative;
    }

    ul.jqtree-tree .jqtree-title {
        color: #8bc34a;
        vertical-align: middle;
        margin-left: 1.5em;
    }

        ul.jqtree-tree .jqtree-title.jqtree-title-folder {
            margin-left: 0;
        }

    ul.jqtree-tree li.jqtree-folder {
        margin-bottom: 4px;
    }

        ul.jqtree-tree li.jqtree-folder.jqtree-closed {
            margin-bottom: 1px;
        }

    ul.jqtree-tree li.jqtree-ghost {
        position: relative;
        z-index: 10;
        margin-right: 10px;
    }

        ul.jqtree-tree li.jqtree-ghost span {
            display: block;
        }

            ul.jqtree-tree li.jqtree-ghost span.jqtree-circle {
                border: solid 2px #8bc34a;
                -webkit-border-radius: 100px;
                -moz-border-radius: 100px;
                border-radius: 100px;
                height: 8px;
                width: 8px;
                position: absolute;
                top: -4px;
                left: -6px;
                -webkit-box-sizing: border-box;
                -moz-box-sizing: border-box;
                box-sizing: border-box;
            }

            ul.jqtree-tree li.jqtree-ghost span.jqtree-line {
                background-color: #8bc34a;
                height: 2px;
                padding: 0;
                position: absolute;
                top: -1px;
                left: 2px;
                width: 100%;
            }

        ul.jqtree-tree li.jqtree-ghost.jqtree-inside {
            margin-left: 48px;
        }

    ul.jqtree-tree span.jqtree-border {
        position: absolute;
        display: block;
        left: -2px;
        top: 0;
        border: solid 2px #8bc34a;
        border-radius: 6px;
        margin: 0;
        box-sizing: content-box;
    }

    ul.jqtree-tree li.jqtree-selected > .jqtree-element,
    ul.jqtree-tree li.jqtree-selected > .jqtree-element:hover {
        background-color: transparent;
    }

    ul.jqtree-tree .jqtree-moving > .jqtree-element .jqtree-title {
        outline: dashed 1px #8bc34a;
    }

    ul.jqtree-tree.jqtree-rtl {
        direction: rtl;
    }

        ul.jqtree-tree.jqtree-rtl ul.jqtree_common {
            margin-left: 0;
            margin-right: 12px;
        }

        ul.jqtree-tree.jqtree-rtl .jqtree-toggler {
            margin-left: 0.5em;
            margin-right: 0;
        }

        ul.jqtree-tree.jqtree-rtl .jqtree-title {
            margin-left: 0;
            margin-right: 1.5em;
        }

            ul.jqtree-tree.jqtree-rtl .jqtree-title.jqtree-title-folder {
                margin-right: 0;
            }

        ul.jqtree-tree.jqtree-rtl li.jqtree-ghost {
            margin-right: 0;
            margin-left: 10px;
        }

            ul.jqtree-tree.jqtree-rtl li.jqtree-ghost span.jqtree-circle {
                right: -6px;
            }

            ul.jqtree-tree.jqtree-rtl li.jqtree-ghost span.jqtree-line {
                right: 2px;
            }

            ul.jqtree-tree.jqtree-rtl li.jqtree-ghost.jqtree-inside {
                margin-left: 0;
                margin-right: 48px;
            }

        ul.jqtree-tree.jqtree-rtl span.jqtree-border {
            right: -2px;
        }

span.jqtree-dragging {
    color: #fff;
    background: #000;
    opacity: 0.6;
    cursor: pointer;
    padding: 2px 8px;
}

@media \0screen\, screen\9 {
    ul.jqtree-tree li.jqtree-ghost span.jqtree-circle {
        background: url(jqtree-circle.png) no-repeat;
        border: 0 none;
    }
}

@font-face {
    font-family: "summernote";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/summernote/summernote.eot?546c01739436985e5a21a8cb325521f3");
    src: url("../fonts/summernote/summernote.eot?#iefix") format("embedded-opentype"), url("../fonts/summernote/summernote.woff?546c01739436985e5a21a8cb325521f3") format("woff"), url("../fonts/summernote/summernote.ttf?546c01739436985e5a21a8cb325521f3") format("truetype");
}

[class^="note-icon-"]:before,
[class*=" note-icon-"]:before {
    display: inline-block;
    font: normal normal normal 14px summernote;
    font-size: inherit;
    -webkit-font-smoothing: antialiased;
    text-decoration: inherit;
    text-rendering: auto;
    text-transform: none;
    vertical-align: middle;
    speak: none;
    -moz-osx-font-smoothing: grayscale;
}

.note-icon-align-center:before {
    content: "\f101";
}

.note-icon-align-indent:before {
    content: "\f102";
}

.note-icon-align-justify:before {
    content: "\f103";
}

.note-icon-align-left:before {
    content: "\f104";
}

.note-icon-align-outdent:before {
    content: "\f105";
}

.note-icon-align-right:before {
    content: "\f106";
}

.note-icon-align:before {
    content: "\f107";
}

.note-icon-arrows-alt:before {
    content: "\f108";
}

.note-icon-bold:before {
    content: "\f109";
}

.note-icon-caret:before {
    content: "\f10a";
}

.note-icon-chain-broken:before {
    content: "\f10b";
}

.note-icon-circle:before {
    content: "\f10c";
}

.note-icon-close:before {
    content: "\f10d";
}

.note-icon-code:before {
    content: "\f10e";
}

.note-icon-eraser:before {
    content: "\f10f";
}

.note-icon-font:before {
    content: "\f110";
}

.note-icon-frame:before {
    content: "\f111";
}

.note-icon-italic:before {
    content: "\f112";
}

.note-icon-link:before {
    content: "\f113";
}

.note-icon-magic:before {
    content: "\f114";
}

.note-icon-menu-check:before {
    content: "\f115";
}

.note-icon-minus:before {
    content: "\f116";
}

.note-icon-orderedlist:before {
    content: "\f117";
}

.note-icon-pencil:before {
    content: "\f118";
}

.note-icon-picture:before {
    content: "\f119";
}

.note-icon-question:before {
    content: "\f11a";
}

.note-icon-redo:before {
    content: "\f11b";
}

.note-icon-special-character:before {
    content: "\f11c";
}

.note-icon-square:before {
    content: "\f11d";
}

.note-icon-strikethrough:before {
    content: "\f11e";
}

.note-icon-subscript:before {
    content: "\f11f";
}

.note-icon-summernote:before {
    content: "\f120";
}

.note-icon-superscript:before {
    content: "\f121";
}

.note-icon-table:before {
    content: "\f122";
}

.note-icon-text-height:before {
    content: "\f123";
}

.note-icon-trash:before {
    content: "\f124";
}

.note-icon-underline:before {
    content: "\f125";
}

.note-icon-undo:before {
    content: "\f126";
}

.note-icon-unorderedlist:before {
    content: "\f127";
}

.note-icon-video:before {
    content: "\f128";
}

.note-editor {
    position: relative;
}

    .note-editor .note-dropzone {
        position: absolute;
        z-index: 100;
        display: none;
        color: #87cefa;
        background-color: white;
        opacity: .95;
    }

        .note-editor .note-dropzone .note-dropzone-message {
            display: table-cell;
            font-size: 28px;
            font-weight: bold;
            text-align: center;
            vertical-align: middle;
        }

        .note-editor .note-dropzone.hover {
            color: #098ddf;
        }

    .note-editor.dragover .note-dropzone {
        display: table;
    }

    .note-editor .note-editing-area {
        position: relative;
    }

        .note-editor .note-editing-area .note-editable {
            outline: 0;
        }

            .note-editor .note-editing-area .note-editable sup {
                vertical-align: super;
            }

            .note-editor .note-editing-area .note-editable sub {
                vertical-align: sub;
            }

    .note-editor.note-frame {
        border: 1px solid #a9a9a9;
    }

        .note-editor.note-frame.codeview .note-editing-area .note-editable {
            display: none;
        }

        .note-editor.note-frame.codeview .note-editing-area .note-codable {
            display: block;
        }

        .note-editor.note-frame .note-editing-area {
            overflow: hidden;
        }

            .note-editor.note-frame .note-editing-area .note-editable {
                padding: 10px;
                overflow: auto;
                color: #000;
                background-color: #fff;
            }

                .note-editor.note-frame .note-editing-area .note-editable[contenteditable="false"] {
                    background-color: #e5e5e5;
                }

            .note-editor.note-frame .note-editing-area .note-codable {
                display: none;
                width: 100%;
                padding: 10px;
                margin-bottom: 0;
                font-family: Menlo, Monaco, monospace, sans-serif;
                font-size: 14px;
                color: #ccc;
                background-color: #222;
                border: 0;
                -webkit-border-radius: 0;
                -moz-border-radius: 0;
                border-radius: 0;
                box-shadow: none;
                -webkit-box-sizing: border-box;
                -moz-box-sizing: border-box;
                -ms-box-sizing: border-box;
                box-sizing: border-box;
                resize: none;
            }

        .note-editor.note-frame.fullscreen {
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1050;
            width: 100% !important;
        }

            .note-editor.note-frame.fullscreen .note-editable {
                background-color: white;
            }

            .note-editor.note-frame.fullscreen .note-resizebar {
                display: none;
            }

        .note-editor.note-frame .note-statusbar {
            background-color: #f5f5f5;
            border-bottom-right-radius: 4px;
            border-bottom-left-radius: 4px;
        }

            .note-editor.note-frame .note-statusbar .note-resizebar {
                width: 100%;
                height: 8px;
                padding-top: 1px;
                cursor: ns-resize;
            }

                .note-editor.note-frame .note-statusbar .note-resizebar .note-icon-bar {
                    width: 20px;
                    margin: 1px auto;
                    border-top: 1px solid #a9a9a9;
                }

        .note-editor.note-frame .note-placeholder {
            padding: 10px;
        }

.note-popover.popover {
    max-width: none;
}

    .note-popover.popover .popover-content a {
        display: inline-block;
        max-width: 200px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        vertical-align: middle;
    }

    .note-popover.popover .arrow {
        left: 20px !important;
    }

.note-popover .popover-content,
.panel-heading.note-toolbar {
    padding: 0 0 5px 5px;
    margin: 0;
}

    .note-popover .popover-content > .btn-group,
    .panel-heading.note-toolbar > .btn-group {
        margin-top: 5px;
        margin-right: 5px;
        margin-left: 0;
    }

    .note-popover .popover-content .btn-group .note-table,
    .panel-heading.note-toolbar .btn-group .note-table {
        min-width: 0;
        padding: 5px;
    }

        .note-popover .popover-content .btn-group .note-table .note-dimension-picker,
        .panel-heading.note-toolbar .btn-group .note-table .note-dimension-picker {
            font-size: 18px;
        }

            .note-popover .popover-content .btn-group .note-table .note-dimension-picker .note-dimension-picker-mousecatcher,
            .panel-heading.note-toolbar .btn-group .note-table .note-dimension-picker .note-dimension-picker-mousecatcher {
                position: absolute !important;
                z-index: 3;
                width: 10em;
                height: 10em;
                cursor: pointer;
            }

            .note-popover .popover-content .btn-group .note-table .note-dimension-picker .note-dimension-picker-unhighlighted,
            .panel-heading.note-toolbar .btn-group .note-table .note-dimension-picker .note-dimension-picker-unhighlighted {
                position: relative !important;
                z-index: 1;
                width: 5em;
                height: 5em;
                background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASAgMAAAAroGbEAAAACVBMVEUAAIj4+Pjp6ekKlAqjAAAAAXRSTlMAQObYZgAAAAFiS0dEAIgFHUgAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfYAR0BKhmnaJzPAAAAG0lEQVQI12NgAAOtVatWMTCohoaGUY+EmIkEAEruEzK2J7tvAAAAAElFTkSuQmCC") repeat;
            }

            .note-popover .popover-content .btn-group .note-table .note-dimension-picker .note-dimension-picker-highlighted,
            .panel-heading.note-toolbar .btn-group .note-table .note-dimension-picker .note-dimension-picker-highlighted {
                position: absolute !important;
                z-index: 2;
                width: 1em;
                height: 1em;
                background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASAgMAAAAroGbEAAAACVBMVEUAAIjd6vvD2f9LKLW+AAAAAXRSTlMAQObYZgAAAAFiS0dEAIgFHUgAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfYAR0BKwNDEVT0AAAAG0lEQVQI12NgAAOtVatWMTCohoaGUY+EmIkEAEruEzK2J7tvAAAAAElFTkSuQmCC") repeat;
            }

    .note-popover .popover-content .note-style h1,
    .panel-heading.note-toolbar .note-style h1,
    .note-popover .popover-content .note-style h2,
    .panel-heading.note-toolbar .note-style h2,
    .note-popover .popover-content .note-style h3,
    .panel-heading.note-toolbar .note-style h3,
    .note-popover .popover-content .note-style h4,
    .panel-heading.note-toolbar .note-style h4,
    .note-popover .popover-content .note-style h5,
    .panel-heading.note-toolbar .note-style h5,
    .note-popover .popover-content .note-style h6,
    .panel-heading.note-toolbar .note-style h6,
    .note-popover .popover-content .note-style blockquote,
    .panel-heading.note-toolbar .note-style blockquote {
        margin: 0;
    }

    .note-popover .popover-content .note-color .dropdown-toggle,
    .panel-heading.note-toolbar .note-color .dropdown-toggle {
        width: 20px;
        padding-left: 5px;
    }

    .note-popover .popover-content .note-color .dropdown-menu,
    .panel-heading.note-toolbar .note-color .dropdown-menu {
        min-width: 340px;
    }

        .note-popover .popover-content .note-color .dropdown-menu .btn-group,
        .panel-heading.note-toolbar .note-color .dropdown-menu .btn-group {
            margin: 0;
        }

            .note-popover .popover-content .note-color .dropdown-menu .btn-group:first-child,
            .panel-heading.note-toolbar .note-color .dropdown-menu .btn-group:first-child {
                margin: 0 5px;
            }

            .note-popover .popover-content .note-color .dropdown-menu .btn-group .note-palette-title,
            .panel-heading.note-toolbar .note-color .dropdown-menu .btn-group .note-palette-title {
                margin: 2px 7px;
                font-size: 12px;
                text-align: center;
                border-bottom: 1px solid #eee;
            }

            .note-popover .popover-content .note-color .dropdown-menu .btn-group .note-color-reset,
            .panel-heading.note-toolbar .note-color .dropdown-menu .btn-group .note-color-reset {
                width: 100%;
                padding: 0 3px;
                margin: 3px;
                font-size: 11px;
                cursor: pointer;
                -webkit-border-radius: 5px;
                -moz-border-radius: 5px;
                border-radius: 5px;
            }

            .note-popover .popover-content .note-color .dropdown-menu .btn-group .note-color-row,
            .panel-heading.note-toolbar .note-color .dropdown-menu .btn-group .note-color-row {
                height: 20px;
            }

            .note-popover .popover-content .note-color .dropdown-menu .btn-group .note-color-reset:hover,
            .panel-heading.note-toolbar .note-color .dropdown-menu .btn-group .note-color-reset:hover {
                background: #eee;
            }

    .note-popover .popover-content .note-para .dropdown-menu,
    .panel-heading.note-toolbar .note-para .dropdown-menu {
        min-width: 216px;
        padding: 5px;
    }

        .note-popover .popover-content .note-para .dropdown-menu > div:first-child,
        .panel-heading.note-toolbar .note-para .dropdown-menu > div:first-child {
            margin-right: 5px;
        }

    .note-popover .popover-content .dropdown-menu,
    .panel-heading.note-toolbar .dropdown-menu {
        min-width: 90px;
    }

        .note-popover .popover-content .dropdown-menu.right,
        .panel-heading.note-toolbar .dropdown-menu.right {
            right: 0;
            left: auto;
        }

            .note-popover .popover-content .dropdown-menu.right::before,
            .panel-heading.note-toolbar .dropdown-menu.right::before {
                right: 9px;
                left: auto !important;
            }

            .note-popover .popover-content .dropdown-menu.right::after,
            .panel-heading.note-toolbar .dropdown-menu.right::after {
                right: 10px;
                left: auto !important;
            }

        .note-popover .popover-content .dropdown-menu.note-check li a i,
        .panel-heading.note-toolbar .dropdown-menu.note-check li a i {
            color: deepskyblue;
            visibility: hidden;
        }

        .note-popover .popover-content .dropdown-menu.note-check li a.checked i,
        .panel-heading.note-toolbar .dropdown-menu.note-check li a.checked i {
            visibility: visible;
        }

    .note-popover .popover-content .note-fontsize-10,
    .panel-heading.note-toolbar .note-fontsize-10 {
        font-size: 10px;
    }

    .note-popover .popover-content .note-color-palette,
    .panel-heading.note-toolbar .note-color-palette {
        line-height: 1;
    }

        .note-popover .popover-content .note-color-palette div .note-color-btn,
        .panel-heading.note-toolbar .note-color-palette div .note-color-btn {
            width: 20px;
            height: 20px;
            padding: 0;
            margin: 0;
            border: 1px solid #fff;
        }

            .note-popover .popover-content .note-color-palette div .note-color-btn:hover,
            .panel-heading.note-toolbar .note-color-palette div .note-color-btn:hover {
                border: 1px solid #000;
            }

.note-dialog > div {
    display: none;
}

.note-dialog .form-group {
    margin-right: 0;
    margin-left: 0;
}

.note-dialog .note-modal-form {
    margin: 0;
}

.note-dialog .note-image-dialog .note-dropzone {
    min-height: 100px;
    margin-bottom: 10px;
    font-size: 30px;
    line-height: 4;
    color: lightgray;
    text-align: center;
    border: 4px dashed lightgray;
}

@-moz-document url-prefix() {
    .note-image-input {
        height: auto;
    }
}

.note-placeholder {
    position: absolute;
    display: none;
    color: gray;
}

.note-handle .note-control-selection {
    position: absolute;
    display: none;
    border: 1px solid black;
}

    .note-handle .note-control-selection > div {
        position: absolute;
    }

    .note-handle .note-control-selection .note-control-selection-bg {
        width: 100%;
        height: 100%;
        background-color: black;
        -webkit-opacity: .3;
        -khtml-opacity: .3;
        -moz-opacity: .3;
        opacity: .3;
        -ms-filter: alpha(opacity=30);
        filter: alpha(opacity=30);
    }

    .note-handle .note-control-selection .note-control-handle {
        width: 7px;
        height: 7px;
        border: 1px solid black;
    }

    .note-handle .note-control-selection .note-control-holder {
        width: 7px;
        height: 7px;
        border: 1px solid black;
    }

    .note-handle .note-control-selection .note-control-sizing {
        width: 7px;
        height: 7px;
        background-color: white;
        border: 1px solid black;
    }

    .note-handle .note-control-selection .note-control-nw {
        top: -5px;
        left: -5px;
        border-right: 0;
        border-bottom: 0;
    }

    .note-handle .note-control-selection .note-control-ne {
        top: -5px;
        right: -5px;
        border-bottom: 0;
        border-left: none;
    }

    .note-handle .note-control-selection .note-control-sw {
        bottom: -5px;
        left: -5px;
        border-top: 0;
        border-right: 0;
    }

    .note-handle .note-control-selection .note-control-se {
        right: -5px;
        bottom: -5px;
        cursor: se-resize;
    }

        .note-handle .note-control-selection .note-control-se.note-control-holder {
            cursor: default;
            border-top: 0;
            border-left: none;
        }

    .note-handle .note-control-selection .note-control-selection-info {
        right: 0;
        bottom: 0;
        padding: 5px;
        margin: 5px;
        font-size: 12px;
        color: white;
        background-color: black;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        -webkit-opacity: .7;
        -khtml-opacity: .7;
        -moz-opacity: .7;
        opacity: .7;
        -ms-filter: alpha(opacity=70);
        filter: alpha(opacity=70);
    }

.note-hint-popover {
    min-width: 100px;
    padding: 2px;
}

    .note-hint-popover .popover-content {
        max-height: 150px;
        padding: 3px;
        overflow: auto;
    }

        .note-hint-popover .popover-content .note-hint-group .note-hint-item {
            display: block !important;
            padding: 3px;
        }

            .note-hint-popover .popover-content .note-hint-group .note-hint-item.active,
            .note-hint-popover .popover-content .note-hint-group .note-hint-item:hover {
                display: block;
                clear: both;
                font-weight: 400;
                line-height: 1.4;
                color: white;
                text-decoration: none;
                white-space: nowrap;
                cursor: pointer;
                background-color: #428bca;
                outline: 0;
            }

.elessar-handle {
    display: block;
    background: black;
    height: 100%;
    width: 5px;
    cursor: ew-resize;
    position: absolute;
    top: 0;
    bottom: 0;
}

    .elessar-handle:first-child {
        left: 0;
    }

    .elessar-handle:last-child {
        right: 0;
    }

.elessar-vertical .elessar-handle {
    height: 5px;
    width: 100%;
    left: 0;
    right: 0;
    top: auto;
    bottom: auto;
    cursor: ns-resize;
}

    .elessar-vertical .elessar-handle:first-child {
        top: 0;
    }

    .elessar-vertical .elessar-handle:last-child {
        bottom: 0;
    }

.elessar-indicator {
    position: absolute;
    background: black;
    border-color: white;
    border-style: solid;
    border-width: 0 1px;
    width: 2px;
    height: 100%;
    z-index: 15;
}

.elessar-vertical .elessar-indicator {
    width: 100%;
    height: 2px;
}

.elessar-range {
    position: absolute;
    cursor: pointer;
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: grab;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    background: #80deea;
    opacity: 0.5;
    width: 0;
    z-index: 10;
}

.elessar-vertical .elessar-range {
    width: auto;
    height: 0;
}

.elessar-label {
    position: absolute;
    z-index: 5;
    pointer-events: none;
    border-left: 1px solid #999;
    padding-left: 10px;
}

.elessar-readonly {
    opacity: 0.6;
    cursor: default !important;
}

.elessar-phantom {
    background-color: transparent;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    cursor: pointer !important;
}

.elessar-rangebar {
    position: relative;
    height: 30px;
    line-height: 30px;
    background: #ccc;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.elessar-delete-confirm {
    background: red;
}

body.elessar-resizing,
body.elessar-dragging {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    body.elessar-resizing,
    body.elessar-resizing .bar,
    body.elessar-resizing .handle {
        cursor: ew-resize !important;
    }

        body.elessar-resizing.elessar-resizing-vertical,
        body.elessar-resizing.elessar-resizing-vertical .bar,
        body.elessar-resizing.elessar-resizing-vertical .handle {
            cursor: ns-resize !important;
        }

    body.elessar-dragging,
    body.elessar-dragging .bar,
    body.elessar-dragging .handle {
        cursor: move !important;
        cursor: -webkit-grabbing !important;
        cursor: -moz-grabbing !important;
        cursor: grabbing !important;
    }

/*!
 * FullCalendar v3.4.0 Stylesheet
 * Docs & License: https://fullcalendar.io/
 * (c) 2017 Adam Shaw
 */

.fc {
    direction: ltr;
    text-align: left;
}

.fc-rtl {
    text-align: right;
}

body .fc {
    font-size: 1em;
}

.fc-unthemed th,
.fc-unthemed td,
.fc-unthemed thead,
.fc-unthemed tbody,
.fc-unthemed .fc-divider,
.fc-unthemed .fc-row,
.fc-unthemed .fc-content,
.fc-unthemed .fc-popover,
.fc-unthemed .fc-list-view,
.fc-unthemed .fc-list-heading td {
    border-color: #ddd;
}

.fc-unthemed .fc-popover {
    background-color: #fff;
}

    .fc-unthemed .fc-divider,
    .fc-unthemed .fc-popover .fc-header,
    .fc-unthemed .fc-list-heading td {
        background: #eee;
    }

        .fc-unthemed .fc-popover .fc-header .fc-close {
            color: #666;
        }

.fc-unthemed td.fc-today {
    background: #fcf8e3;
}

.fc-highlight {
    background: #bce8f1;
    opacity: .3;
}

.fc-bgevent {
    background: #8fdf82;
    opacity: .3;
}

.fc-nonbusiness {
    background: #d7d7d7;
}

.fc-unthemed .fc-disabled-day {
    background: #d7d7d7;
    opacity: .3;
}

.ui-widget .fc-disabled-day {
    background-image: none;
}

.fc-icon {
    display: inline-block;
    height: 1em;
    line-height: 1em;
    font-size: 1em;
    text-align: center;
    overflow: hidden;
    font-family: "Courier New", Courier, monospace;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .fc-icon:after {
        position: relative;
    }

.fc-icon-left-single-arrow:after {
    content: "\02039";
    font-weight: bold;
    font-size: 200%;
    top: -7%;
}

.fc-icon-right-single-arrow:after {
    content: "\0203A";
    font-weight: bold;
    font-size: 200%;
    top: -7%;
}

.fc-icon-left-double-arrow:after {
    content: "\000AB";
    font-size: 160%;
    top: -7%;
}

.fc-icon-right-double-arrow:after {
    content: "\000BB";
    font-size: 160%;
    top: -7%;
}

.fc-icon-left-triangle:after {
    content: "\25C4";
    font-size: 125%;
    top: 3%;
}

.fc-icon-right-triangle:after {
    content: "\25BA";
    font-size: 125%;
    top: 3%;
}

.fc-icon-down-triangle:after {
    content: "\25BC";
    font-size: 125%;
    top: 2%;
}

.fc-icon-x:after {
    content: "\000D7";
    font-size: 200%;
    top: 6%;
}

.fc button {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    height: 2.1em;
    padding: 0 .6em;
    font-size: 1em;
    white-space: nowrap;
    cursor: pointer;
}

    .fc button::-moz-focus-inner {
        margin: 0;
        padding: 0;
    }

.fc-state-default {
    border: 1px solid;
}

    .fc-state-default.fc-corner-left {
        border-top-left-radius: 4px;
        border-bottom-left-radius: 4px;
    }

    .fc-state-default.fc-corner-right {
        border-top-right-radius: 4px;
        border-bottom-right-radius: 4px;
    }

.fc button .fc-icon {
    position: relative;
    top: -0.05em;
    margin: 0 .2em;
    vertical-align: middle;
}

.fc-state-default {
    background-color: #f5f5f5;
    background-image: -moz-linear-gradient(top, #fff, #e6e6e6);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fff), to(#e6e6e6));
    background-image: -webkit-linear-gradient(top, #fff, #e6e6e6);
    background-image: -o-linear-gradient(top, #fff, #e6e6e6);
    background-image: linear-gradient(to bottom, #fff, #e6e6e6);
    background-repeat: repeat-x;
    border-color: #e6e6e6 #e6e6e6 #bfbfbf;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    color: #333;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.fc-state-hover,
.fc-state-down,
.fc-state-active,
.fc-state-disabled {
    color: #333333;
    background-color: #e6e6e6;
}

.fc-state-hover {
    color: #333333;
    text-decoration: none;
    background-position: 0 -15px;
    -webkit-transition: background-position 0.1s linear;
    -moz-transition: background-position 0.1s linear;
    -o-transition: background-position 0.1s linear;
    transition: background-position 0.1s linear;
}

.fc-state-down,
.fc-state-active {
    background-color: #cccccc;
    background-image: none;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.fc-state-disabled {
    cursor: default;
    background-image: none;
    opacity: 0.65;
    box-shadow: none;
}

.fc-button-group {
    display: inline-block;
}

.fc .fc-button-group > * {
    float: left;
    margin: 0 0 0 -1px;
}

.fc .fc-button-group > :first-child {
    margin-left: 0;
}

.fc-popover {
    position: absolute;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

    .fc-popover .fc-header {
        padding: 2px 4px;
    }

        .fc-popover .fc-header .fc-title {
            margin: 0 2px;
        }

        .fc-popover .fc-header .fc-close {
            cursor: pointer;
        }

.fc-ltr .fc-popover .fc-header .fc-title,
.fc-rtl .fc-popover .fc-header .fc-close {
    float: left;
}

.fc-rtl .fc-popover .fc-header .fc-title,
.fc-ltr .fc-popover .fc-header .fc-close {
    float: right;
}

.fc-unthemed .fc-popover {
    border-width: 1px;
    border-style: solid;
}

    .fc-unthemed .fc-popover .fc-header .fc-close {
        font-size: .9em;
        margin-top: 2px;
    }

.fc-popover > .ui-widget-header + .ui-widget-content {
    border-top: 0;
}

.fc-divider {
    border-style: solid;
    border-width: 1px;
}

hr.fc-divider {
    height: 0;
    margin: 0;
    padding: 0 0 2px;
    border-width: 1px 0;
}

.fc-clear {
    clear: both;
}

.fc-bg,
.fc-bgevent-skeleton,
.fc-highlight-skeleton,
.fc-helper-skeleton {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.fc-bg {
    bottom: 0;
}

    .fc-bg table {
        height: 100%;
    }

.fc table {
    width: 100%;
    box-sizing: border-box;
    table-layout: fixed;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 1em;
}

.fc th {
    text-align: center;
}

.fc th,
.fc td {
    border-style: solid;
    border-width: 1px;
    padding: 0;
    vertical-align: top;
}

    .fc td.fc-today {
        border-style: double;
    }

a[data-goto] {
    cursor: pointer;
}

    a[data-goto]:hover {
        text-decoration: underline;
    }

.fc .fc-row {
    border-style: solid;
    border-width: 0;
}

.fc-row table {
    border-left: 0 hidden transparent;
    border-right: 0 hidden transparent;
    border-bottom: 0 hidden transparent;
}

.fc-row:first-child table {
    border-top: 0 hidden transparent;
}

.fc-row {
    position: relative;
}

    .fc-row .fc-bg {
        z-index: 1;
    }

    .fc-row .fc-bgevent-skeleton,
    .fc-row .fc-highlight-skeleton {
        bottom: 0;
    }

        .fc-row .fc-bgevent-skeleton table,
        .fc-row .fc-highlight-skeleton table {
            height: 100%;
        }

        .fc-row .fc-highlight-skeleton td,
        .fc-row .fc-bgevent-skeleton td {
            border-color: transparent;
        }

    .fc-row .fc-bgevent-skeleton {
        z-index: 2;
    }

    .fc-row .fc-highlight-skeleton {
        z-index: 3;
    }

    .fc-row .fc-content-skeleton {
        position: relative;
        z-index: 4;
        padding-bottom: 2px;
    }

    .fc-row .fc-helper-skeleton {
        z-index: 5;
    }

        .fc-row .fc-content-skeleton td,
        .fc-row .fc-helper-skeleton td {
            background: none;
            border-color: transparent;
            border-bottom: 0;
        }

        .fc-row .fc-content-skeleton tbody td,
        .fc-row .fc-helper-skeleton tbody td {
            border-top: 0;
        }

.fc-scroller {
    -webkit-overflow-scrolling: touch;
}

    .fc-scroller > .fc-day-grid,
    .fc-scroller > .fc-time-grid {
        position: relative;
        width: 100%;
    }

.fc-event {
    position: relative;
    display: block;
    font-size: .85em;
    line-height: 1.3;
    border-radius: 3px;
    border: 1px solid #3a87ad;
    font-weight: normal;
}

.fc-event,
.fc-event-dot {
    background-color: #3a87ad;
}

    .fc-event,
    .fc-event:hover,
    .ui-widget .fc-event {
        color: #fff;
        text-decoration: none;
    }

        .fc-event[href],
        .fc-event.fc-draggable {
            cursor: pointer;
        }

.fc-not-allowed,
.fc-not-allowed .fc-event {
    cursor: not-allowed;
}

.fc-event .fc-bg {
    z-index: 1;
    background: #fff;
    opacity: .25;
}

.fc-event .fc-content {
    position: relative;
    z-index: 2;
}

.fc-event .fc-resizer {
    position: absolute;
    z-index: 4;
}

.fc-event .fc-resizer {
    display: none;
}

.fc-event.fc-allow-mouse-resize .fc-resizer,
.fc-event.fc-selected .fc-resizer {
    display: block;
}

    .fc-event.fc-selected .fc-resizer:before {
        content: "";
        position: absolute;
        z-index: 9999;
        top: 50%;
        left: 50%;
        width: 40px;
        height: 40px;
        margin-left: -20px;
        margin-top: -20px;
    }

.fc-event.fc-selected {
    z-index: 9999 !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

    .fc-event.fc-selected.fc-dragging {
        box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
    }

.fc-h-event.fc-selected:before {
    content: "";
    position: absolute;
    z-index: 3;
    top: -10px;
    bottom: -10px;
    left: 0;
    right: 0;
}

.fc-ltr .fc-h-event.fc-not-start,
.fc-rtl .fc-h-event.fc-not-end {
    margin-left: 0;
    border-left-width: 0;
    padding-left: 1px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.fc-ltr .fc-h-event.fc-not-end,
.fc-rtl .fc-h-event.fc-not-start {
    margin-right: 0;
    border-right-width: 0;
    padding-right: 1px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.fc-ltr .fc-h-event .fc-start-resizer,
.fc-rtl .fc-h-event .fc-end-resizer {
    cursor: w-resize;
    left: -1px;
}

.fc-ltr .fc-h-event .fc-end-resizer,
.fc-rtl .fc-h-event .fc-start-resizer {
    cursor: e-resize;
    right: -1px;
}

.fc-h-event.fc-allow-mouse-resize .fc-resizer {
    width: 7px;
    top: -1px;
    bottom: -1px;
}

.fc-h-event.fc-selected .fc-resizer {
    border-radius: 4px;
    border-width: 1px;
    width: 6px;
    height: 6px;
    border-style: solid;
    border-color: inherit;
    background: #fff;
    top: 50%;
    margin-top: -4px;
}

.fc-ltr .fc-h-event.fc-selected .fc-start-resizer,
.fc-rtl .fc-h-event.fc-selected .fc-end-resizer {
    margin-left: -4px;
}

.fc-ltr .fc-h-event.fc-selected .fc-end-resizer,
.fc-rtl .fc-h-event.fc-selected .fc-start-resizer {
    margin-right: -4px;
}

.fc-day-grid-event {
    margin: 1px 2px 0;
    padding: 0 1px;
}

tr:first-child > td > .fc-day-grid-event {
    margin-top: 2px;
}

.fc-day-grid-event.fc-selected:after {
    content: "";
    position: absolute;
    z-index: 1;
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    background: #000;
    opacity: .25;
}

.fc-day-grid-event .fc-content {
    white-space: nowrap;
    overflow: hidden;
}

.fc-day-grid-event .fc-time {
    font-weight: bold;
}

.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer,
.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer {
    margin-left: -2px;
}

.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer,
.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer {
    margin-right: -2px;
}

a.fc-more {
    margin: 1px 3px;
    font-size: .85em;
    cursor: pointer;
    text-decoration: none;
}

    a.fc-more:hover {
        text-decoration: underline;
    }

.fc-limited {
    display: none;
}

.fc-day-grid .fc-row {
    z-index: 1;
}

.fc-more-popover {
    z-index: 2;
    width: 220px;
}

    .fc-more-popover .fc-event-container {
        padding: 10px;
    }

.fc-now-indicator {
    position: absolute;
    border: 0 solid red;
}

.fc-unselectable {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

.fc-toolbar {
    text-align: center;
}

    .fc-toolbar.fc-header-toolbar {
        margin-bottom: 1em;
    }

    .fc-toolbar.fc-footer-toolbar {
        margin-top: 1em;
    }

    .fc-toolbar .fc-left {
        float: left;
    }

    .fc-toolbar .fc-right {
        float: right;
    }

    .fc-toolbar .fc-center {
        display: inline-block;
    }

.fc .fc-toolbar > * > * {
    float: left;
    margin-left: .75em;
}

.fc .fc-toolbar > * > :first-child {
    margin-left: 0;
}

.fc-toolbar h2 {
    margin: 0;
}

.fc-toolbar button {
    position: relative;
}

.fc-toolbar .fc-state-hover,
.fc-toolbar .ui-state-hover {
    z-index: 2;
}

.fc-toolbar .fc-state-down {
    z-index: 3;
}

.fc-toolbar .fc-state-active,
.fc-toolbar .ui-state-active {
    z-index: 4;
}

.fc-toolbar button:focus {
    z-index: 5;
}

.fc-view-container *,
.fc-view-container *:before,
.fc-view-container *:after {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.fc-view,
.fc-view > table {
    position: relative;
    z-index: 1;
}

.fc-basicWeek-view .fc-content-skeleton,
.fc-basicDay-view .fc-content-skeleton {
    padding-bottom: 1em;
}

.fc-basic-view .fc-body .fc-row {
    min-height: 4em;
}

.fc-row.fc-rigid {
    overflow: hidden;
}

    .fc-row.fc-rigid .fc-content-skeleton {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
    }

.fc-day-top.fc-other-month {
    opacity: 0.3;
}

.fc-basic-view .fc-week-number,
.fc-basic-view .fc-day-number {
    padding: 2px;
}

.fc-basic-view th.fc-week-number,
.fc-basic-view th.fc-day-number {
    padding: 0 2px;
}

.fc-ltr .fc-basic-view .fc-day-top .fc-day-number {
    float: right;
}

.fc-rtl .fc-basic-view .fc-day-top .fc-day-number {
    float: left;
}

.fc-ltr .fc-basic-view .fc-day-top .fc-week-number {
    float: left;
    border-radius: 0 0 3px 0;
}

.fc-rtl .fc-basic-view .fc-day-top .fc-week-number {
    float: right;
    border-radius: 0 0 0 3px;
}

.fc-basic-view .fc-day-top .fc-week-number {
    min-width: 1.5em;
    text-align: center;
    background-color: #f2f2f2;
    color: #808080;
}

.fc-basic-view td.fc-week-number {
    text-align: center;
}

    .fc-basic-view td.fc-week-number > * {
        display: inline-block;
        min-width: 1.25em;
    }

.fc-agenda-view .fc-day-grid {
    position: relative;
    z-index: 2;
}

    .fc-agenda-view .fc-day-grid .fc-row {
        min-height: 3em;
    }

        .fc-agenda-view .fc-day-grid .fc-row .fc-content-skeleton {
            padding-bottom: 1em;
        }

.fc .fc-axis {
    vertical-align: middle;
    padding: 0 4px;
    white-space: nowrap;
}

.fc-ltr .fc-axis {
    text-align: right;
}

.fc-rtl .fc-axis {
    text-align: left;
}

.ui-widget td.fc-axis {
    font-weight: normal;
}

.fc-time-grid-container,
.fc-time-grid {
    position: relative;
    z-index: 1;
}

.fc-time-grid {
    min-height: 100%;
}

    .fc-time-grid table {
        border: 0 hidden transparent;
    }

    .fc-time-grid > .fc-bg {
        z-index: 1;
    }

    .fc-time-grid .fc-slats,
    .fc-time-grid > hr {
        position: relative;
        z-index: 2;
    }

    .fc-time-grid .fc-content-col {
        position: relative;
    }

    .fc-time-grid .fc-content-skeleton {
        position: absolute;
        z-index: 3;
        top: 0;
        left: 0;
        right: 0;
    }

    .fc-time-grid .fc-business-container {
        position: relative;
        z-index: 1;
    }

    .fc-time-grid .fc-bgevent-container {
        position: relative;
        z-index: 2;
    }

    .fc-time-grid .fc-highlight-container {
        position: relative;
        z-index: 3;
    }

    .fc-time-grid .fc-event-container {
        position: relative;
        z-index: 4;
    }

    .fc-time-grid .fc-now-indicator-line {
        z-index: 5;
    }

    .fc-time-grid .fc-helper-container {
        position: relative;
        z-index: 6;
    }

    .fc-time-grid .fc-slats td {
        height: 1.5em;
        border-bottom: 0;
    }

    .fc-time-grid .fc-slats .fc-minor td {
        border-top-style: dotted;
    }

    .fc-time-grid .fc-slats .ui-widget-content {
        background: none;
    }

    .fc-time-grid .fc-highlight-container {
        position: relative;
    }

    .fc-time-grid .fc-highlight {
        position: absolute;
        left: 0;
        right: 0;
    }

.fc-ltr .fc-time-grid .fc-event-container {
    margin: 0 2.5% 0 2px;
}

.fc-rtl .fc-time-grid .fc-event-container {
    margin: 0 2px 0 2.5%;
}

.fc-time-grid .fc-event,
.fc-time-grid .fc-bgevent {
    position: absolute;
    z-index: 1;
}

.fc-time-grid .fc-bgevent {
    left: 0;
    right: 0;
}

.fc-v-event.fc-not-start {
    border-top-width: 0;
    padding-top: 1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.fc-v-event.fc-not-end {
    border-bottom-width: 0;
    padding-bottom: 1px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.fc-time-grid-event {
    overflow: hidden;
}

    .fc-time-grid-event.fc-selected {
        overflow: visible;
    }

        .fc-time-grid-event.fc-selected .fc-bg {
            display: none;
        }

    .fc-time-grid-event .fc-content {
        overflow: hidden;
    }

    .fc-time-grid-event .fc-time,
    .fc-time-grid-event .fc-title {
        padding: 0 1px;
    }

    .fc-time-grid-event .fc-time {
        font-size: .85em;
        white-space: nowrap;
    }

    .fc-time-grid-event.fc-short .fc-content {
        white-space: nowrap;
    }

    .fc-time-grid-event.fc-short .fc-time,
    .fc-time-grid-event.fc-short .fc-title {
        display: inline-block;
        vertical-align: top;
    }

        .fc-time-grid-event.fc-short .fc-time span {
            display: none;
        }

        .fc-time-grid-event.fc-short .fc-time:before {
            content: attr(data-start);
        }

        .fc-time-grid-event.fc-short .fc-time:after {
            content: "\000A0-\000A0";
        }

    .fc-time-grid-event.fc-short .fc-title {
        font-size: .85em;
        padding: 0;
    }

    .fc-time-grid-event.fc-allow-mouse-resize .fc-resizer {
        left: 0;
        right: 0;
        bottom: 0;
        height: 8px;
        overflow: hidden;
        line-height: 8px;
        font-size: 11px;
        font-family: monospace;
        text-align: center;
        cursor: s-resize;
    }

        .fc-time-grid-event.fc-allow-mouse-resize .fc-resizer:after {
            content: "=";
        }

    .fc-time-grid-event.fc-selected .fc-resizer {
        border-radius: 5px;
        border-width: 1px;
        width: 8px;
        height: 8px;
        border-style: solid;
        border-color: inherit;
        background: #fff;
        left: 50%;
        margin-left: -5px;
        bottom: -5px;
    }

.fc-time-grid .fc-now-indicator-line {
    border-top-width: 1px;
    left: 0;
    right: 0;
}

.fc-time-grid .fc-now-indicator-arrow {
    margin-top: -5px;
}

.fc-ltr .fc-time-grid .fc-now-indicator-arrow {
    left: 0;
    border-width: 5px 0 5px 6px;
    border-top-color: transparent;
    border-bottom-color: transparent;
}

.fc-rtl .fc-time-grid .fc-now-indicator-arrow {
    right: 0;
    border-width: 5px 6px 5px 0;
    border-top-color: transparent;
    border-bottom-color: transparent;
}

.fc-event-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 5px;
}

.fc-rtl .fc-list-view {
    direction: rtl;
}

.fc-list-view {
    border-width: 1px;
    border-style: solid;
}

.fc .fc-list-table {
    table-layout: auto;
}

.fc-list-table td {
    border-width: 1px 0 0;
    padding: 8px 14px;
}

.fc-list-table tr:first-child td {
    border-top-width: 0;
}

.fc-list-heading {
    border-bottom-width: 1px;
}

    .fc-list-heading td {
        font-weight: bold;
    }

.fc-ltr .fc-list-heading-main {
    float: left;
}

.fc-ltr .fc-list-heading-alt {
    float: right;
}

.fc-rtl .fc-list-heading-main {
    float: right;
}

.fc-rtl .fc-list-heading-alt {
    float: left;
}

.fc-list-item.fc-has-url {
    cursor: pointer;
}

.fc-list-item:hover td {
    background-color: #f5f5f5;
}

.fc-list-item-marker,
.fc-list-item-time {
    white-space: nowrap;
    width: 1px;
}

.fc-ltr .fc-list-item-marker {
    padding-right: 0;
}

.fc-rtl .fc-list-item-marker {
    padding-left: 0;
}

.fc-list-item-title a {
    text-decoration: none;
    color: inherit;
}

    .fc-list-item-title a[href]:hover {
        text-decoration: underline;
    }

.fc-list-empty-wrap2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.fc-list-empty-wrap1 {
    width: 100%;
    height: 100%;
    display: table;
}

.fc-list-empty {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.fc-unthemed .fc-list-empty {
    background-color: #eee;
}

.fc-view {
    overflow: visible;
}

.fc-toolbar {
    height: 50px;
    color: #fff;
    background-color: #03a9f4;
    border-radius: 3px 3px 0 0;
    margin: 0;
}

    .fc-toolbar .fc-button {
        color: #fff;
        background: transparent;
        border: none;
        box-shadow: none;
        text-shadow: none;
        margin: 0;
        height: 50px;
        line-height: 28px;
        padding: 10px;
    }

    .fc-toolbar h2 {
        font-size: 20px;
        line-height: 50px;
        margin: 0;
        text-transform: uppercase;
    }

.fc-view .fc-widget-header {
    background-color: rgba(168, 168, 168, 0.05);
    border: none;
}

.fc-row:hover,
.fc-row:focus,
.fc-row:active {
    position: relative;
    z-index: 1000;
}

.fc-view .fc-widget-header,
.fc-view .fc-widget-content {
    border-color: rgba(168, 168, 168, 0.1);
    font-weight: normal;
}

.fc-view .fc-day-header {
    padding: 4px 4px;
}

.fc-view .fc-event {
    padding: 4px 8px;
    box-shadow: 0 1px 0px rgba(0, 0, 0, 0.05);
}

.fc-view .fc-event-hori {
    padding: 4px 8px;
}

.fc-event {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.fc-event-inner {
    position: relative;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.fc-state-highlight {
    background-color: #f1ffed;
}

.fc-overlay {
    display: none;
    position: absolute;
    min-width: 300px;
    padding: 17px 0;
    top: auto;
    left: 50%;
    margin-left: -150px;
    z-index: 1000;
}

    .fc-overlay.left {
        left: 100%;
        top: -15px;
        padding: 0 10px;
        margin: 0;
    }

    .fc-overlay.right {
        left: auto;
        right: 100%;
        top: -15px;
        padding: 0 10px;
        margin: 0;
    }

    .fc-overlay.top {
        top: auto;
        bottom: -30px;
    }

    .fc-overlay .panel {
        padding: 15px 20px;
    }

    .fc-overlay .pull-up {
        top: 26px;
    }

    .fc-overlay .pull-down {
        bottom: 11px;
    }

.fc-event:hover,
.fc-event:focus,
.fc-event:active {
    z-index: 1000;
}

    .fc-event:hover .fc-overlay,
    .fc-event:focus .fc-overlay,
    .fc-event:active .fc-overlay {
        display: block;
    }

.fc-time-grid-event {
    overflow: visible;
}

.fc-time-grid .fc-event:hover {
    z-index: 1000 !important;
}

.fc-scroller {
    -webkit-overflow-scrolling: touch;
}

.select2-container {
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle;
}

    .select2-container .select2-selection--single {
        box-sizing: border-box;
        cursor: pointer;
        display: block;
        height: 28px;
        user-select: none;
        -webkit-user-select: none;
    }

        .select2-container .select2-selection--single .select2-selection__rendered {
            display: block;
            padding-left: 8px;
            padding-right: 20px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .select2-container .select2-selection--single .select2-selection__clear {
            position: relative;
        }

    .select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
        padding-right: 8px;
        padding-left: 20px;
    }

    .select2-container .select2-selection--multiple {
        box-sizing: border-box;
        cursor: pointer;
        display: block;
        min-height: 32px;
        user-select: none;
        -webkit-user-select: none;
    }

        .select2-container .select2-selection--multiple .select2-selection__rendered {
            display: inline-block;
            overflow: hidden;
            padding-left: 8px;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

    .select2-container .select2-search--inline {
        float: left;
    }

        .select2-container .select2-search--inline .select2-search__field {
            box-sizing: border-box;
            border: none;
            font-size: 100%;
            margin-top: 5px;
            padding: 0;
        }

            .select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
                -webkit-appearance: none;
            }

.select2-dropdown {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    box-sizing: border-box;
    display: block;
    position: absolute;
    left: -100000px;
    width: 100%;
    z-index: 1051;
}

.select2-results {
    display: block;
}

.select2-results__options {
    list-style: none;
    margin: 0;
    padding: 0;
}

.select2-results__option {
    padding: 6px;
    user-select: none;
    -webkit-user-select: none;
}

    .select2-results__option[aria-selected] {
        cursor: pointer;
    }

.select2-container--open .select2-dropdown {
    left: 0;
}

.select2-container--open .select2-dropdown--above {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.select2-search--dropdown {
    display: block;
    padding: 4px;
}

    .select2-search--dropdown .select2-search__field {
        padding: 4px;
        width: 100%;
        box-sizing: border-box;
    }

        .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
            -webkit-appearance: none;
        }

    .select2-search--dropdown.select2-search--hide {
        display: none;
    }

.select2-close-mask {
    border: 0;
    margin: 0;
    padding: 0;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 99;
    background-color: #fff;
    filter: alpha(opacity=0);
}

.select2-hidden-accessible {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
}

.select2-container--open .select2-dropdown--below {
    border: 1px solid rgba(160,160,160,0.2);
}

.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid rgba(160,160,160,0.2);
    height: 34px;
    /*border-radius: 4px;*/
}

    .select2-container--default .select2-selection--single .select2-selection__rendered {
        color: #444;
        line-height: 31px;
    }

    .select2-container--default .select2-selection--single .select2-selection__clear {
        cursor: pointer;
        float: right;
        font-weight: bold;
    }

    .select2-container--default .select2-selection--single .select2-selection__placeholder {
        color: #999;
    }

    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 26px;
        position: absolute;
        top: 4px;
        right: 1px;
        width: 20px;
    }

        .select2-container--default .select2-selection--single .select2-selection__arrow b {
            border-color: #000 transparent transparent transparent;
            border-style: solid;
            border-width: 5px 4px 0 4px;
            height: 0;
            left: 50%;
            margin-left: -4px;
            margin-top: -2px;
            position: absolute;
            top: 50%;
            width: 0;
        }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
    float: left;
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
    left: 1px;
    right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #eee;
    cursor: default;
}

    .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
        display: none;
    }

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #000 transparent;
    border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: text;
}

    .select2-container--default .select2-selection--multiple .select2-selection__rendered {
        box-sizing: border-box;
        list-style: none;
        margin: 0;
        padding: 0 5px;
        width: 100%;
    }

        .select2-container--default .select2-selection--multiple .select2-selection__rendered li {
            list-style: none;
        }

    .select2-container--default .select2-selection--multiple .select2-selection__placeholder {
        color: #999;
        margin-top: 5px;
        float: left;
    }

    .select2-container--default .select2-selection--multiple .select2-selection__clear {
        cursor: pointer;
        float: right;
        font-weight: bold;
        margin-top: 5px;
        margin-right: 10px;
    }

    .select2-container--default .select2-selection--multiple .select2-selection__choice {
        background-color: #e4e4e4;
        border: 1px solid #aaa;
        border-radius: 4px;
        cursor: default;
        float: left;
        margin-right: 5px;
        margin-top: 5px;
        padding: 0 5px;
    }

    .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
        color: #999;
        cursor: pointer;
        display: inline-block;
        font-weight: bold;
        margin-right: 2px;
    }

        .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
            color: #333;
        }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder,
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
    float: right;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
    margin-left: 5px;
    margin-right: auto;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
    margin-left: 2px;
    margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: solid black 1px;
    outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
    background-color: #eee;
    cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
    display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
    background: transparent;
    border: none;
    outline: 0;
    box-shadow: none;
    -webkit-appearance: textfield;
}

.select2-container--default .select2-results > .select2-results__options {
    max-height: 200px;
    overflow-y: auto;
}

.select2-container--default .select2-results__option[role=group] {
    padding: 0;
}

.select2-container--default .select2-results__option[aria-disabled=true] {
    color: #999;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #ddd;
}

.select2-container--default .select2-results__option .select2-results__option {
    padding-left: 1em;
}

    .select2-container--default .select2-results__option .select2-results__option .select2-results__group {
        padding-left: 0;
    }

    .select2-container--default .select2-results__option .select2-results__option .select2-results__option {
        margin-left: -1em;
        padding-left: 2em;
    }

        .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
            margin-left: -2em;
            padding-left: 3em;
        }

            .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
                margin-left: -3em;
                padding-left: 4em;
            }

                .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
                    margin-left: -4em;
                    padding-left: 5em;
                }

                    .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
                        margin-left: -5em;
                        padding-left: 6em;
                    }

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #5897fb;
    color: white;
}

.select2-container--default .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px;
}

.select2-container--classic .select2-selection--single {
    background-color: #f7f7f7;
    border: 1px solid #aaa;
    border-radius: 4px;
    outline: 0;
    background-image: -webkit-linear-gradient(top, white 50%, #eee 100%);
    background-image: -o-linear-gradient(top, white 50%, #eee 100%);
    background-image: linear-gradient(to bottom, white 50%, #eee 100%);
    background-repeat: repeat-x;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}

    .select2-container--classic .select2-selection--single:focus {
        border: 1px solid #5897fb;
    }

    .select2-container--classic .select2-selection--single .select2-selection__rendered {
        color: #444;
        line-height: 28px;
    }

    .select2-container--classic .select2-selection--single .select2-selection__clear {
        cursor: pointer;
        float: right;
        font-weight: bold;
        margin-right: 10px;
    }

    .select2-container--classic .select2-selection--single .select2-selection__placeholder {
        color: #999;
    }

    .select2-container--classic .select2-selection--single .select2-selection__arrow {
        background-color: #ddd;
        border: none;
        border-left: 1px solid #aaa;
        border-top-right-radius: 4px;
        border-bottom-right-radius: 4px;
        height: 26px;
        position: absolute;
        top: 1px;
        right: 1px;
        width: 20px;
        background-image: -webkit-linear-gradient(top, #eee 50%, #ccc 100%);
        background-image: -o-linear-gradient(top, #eee 50%, #ccc 100%);
        background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%);
        background-repeat: repeat-x;
        filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0);
    }

        .select2-container--classic .select2-selection--single .select2-selection__arrow b {
            border-color: #888 transparent transparent transparent;
            border-style: solid;
            border-width: 5px 4px 0 4px;
            height: 0;
            left: 50%;
            margin-left: -4px;
            margin-top: -2px;
            position: absolute;
            top: 50%;
            width: 0;
        }

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
    float: left;
}

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
    border: none;
    border-right: 1px solid #aaa;
    border-radius: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    left: 1px;
    right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
    border: 1px solid #5897fb;
}

    .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
        background: transparent;
        border: none;
    }

        .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
            border-color: transparent transparent #888 transparent;
            border-width: 0 4px 5px 4px;
        }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-image: -webkit-linear-gradient(top, white 0%, #eee 50%);
    background-image: -o-linear-gradient(top, white 0%, #eee 50%);
    background-image: linear-gradient(to bottom, white 0%, #eee 50%);
    background-repeat: repeat-x;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-image: -webkit-linear-gradient(top, #eee 50%, white 100%);
    background-image: -o-linear-gradient(top, #eee 50%, white 100%);
    background-image: linear-gradient(to bottom, #eee 50%, white 100%);
    background-repeat: repeat-x;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: text;
    outline: 0;
}

    .select2-container--classic .select2-selection--multiple:focus {
        border: 1px solid #5897fb;
    }

    .select2-container--classic .select2-selection--multiple .select2-selection__rendered {
        list-style: none;
        margin: 0;
        padding: 0 5px;
    }

    .select2-container--classic .select2-selection--multiple .select2-selection__clear {
        display: none;
    }

    .select2-container--classic .select2-selection--multiple .select2-selection__choice {
        background-color: #e4e4e4;
        border: 1px solid #aaa;
        border-radius: 4px;
        cursor: default;
        float: left;
        margin-right: 5px;
        margin-top: 5px;
        padding: 0 5px;
    }

    .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
        color: #888;
        cursor: pointer;
        display: inline-block;
        font-weight: bold;
        margin-right: 2px;
    }

        .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
            color: #555;
        }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
    float: right;
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
    margin-left: 5px;
    margin-right: auto;
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
    margin-left: 2px;
    margin-right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
    border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
    outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
    outline: 0;
    box-shadow: none;
}

.select2-container--classic .select2-dropdown {
    background-color: white;
    border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
    border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
    border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
    max-height: 200px;
    overflow-y: auto;
}

.select2-container--classic .select2-results__option[role=group] {
    padding: 0;
}

.select2-container--classic .select2-results__option[aria-disabled=true] {
    color: grey;
}

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
    background-color: #3875d7;
    color: white;
}

.select2-container--classic .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
    border-color: #5897fb;
}

/*!
 * Datetimepicker for Bootstrap 3
 * version : 4.17.47
 * https://github.com/Eonasdan/bootstrap-datetimepicker/
 */

.bootstrap-datetimepicker-widget {
    list-style: none;
}

    .bootstrap-datetimepicker-widget.dropdown-menu {
        display: block;
        margin: 2px 0;
        padding: 4px;
        width: 19em;
    }

@media (min-width:768px) {
    .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
        width: 38em;
    }
}

@media (min-width:992px) {
    .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
        width: 38em;
    }
}

@media (min-width:1200px) {
    .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
        width: 38em;
    }
}

.bootstrap-datetimepicker-widget.dropdown-menu:before,
.bootstrap-datetimepicker-widget.dropdown-menu:after {
    content: '';
    display: inline-block;
    position: absolute;
}

.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before {
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #ccc;
    border-bottom-color: rgba(0, 0, 0, 0.2);
    top: -7px;
    left: 7px;
}

.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after {
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid white;
    top: -6px;
    left: 8px;
}

.bootstrap-datetimepicker-widget.dropdown-menu.top:before {
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #ccc;
    border-top-color: rgba(0, 0, 0, 0.2);
    bottom: -7px;
    left: 6px;
}

.bootstrap-datetimepicker-widget.dropdown-menu.top:after {
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid white;
    bottom: -6px;
    left: 7px;
}

.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:before {
    left: auto;
    right: 6px;
}

.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:after {
    left: auto;
    right: 7px;
}

.bootstrap-datetimepicker-widget .list-unstyled {
    margin: 0;
}

.bootstrap-datetimepicker-widget a[data-action] {
    padding: 6px 0;
}

    .bootstrap-datetimepicker-widget a[data-action]:active {
        box-shadow: none;
    }

.bootstrap-datetimepicker-widget .timepicker-hour,
.bootstrap-datetimepicker-widget .timepicker-minute,
.bootstrap-datetimepicker-widget .timepicker-second {
    width: 54px;
    font-weight: bold;
    font-size: 1.2em;
    margin: 0;
}

.bootstrap-datetimepicker-widget button[data-action] {
    padding: 6px;
}

.bootstrap-datetimepicker-widget .btn[data-action="incrementHours"]::after {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    content: "Increment Hours";
}

.bootstrap-datetimepicker-widget .btn[data-action="incrementMinutes"]::after {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    content: "Increment Minutes";
}

.bootstrap-datetimepicker-widget .btn[data-action="decrementHours"]::after {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    content: "Decrement Hours";
}

.bootstrap-datetimepicker-widget .btn[data-action="decrementMinutes"]::after {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    content: "Decrement Minutes";
}

.bootstrap-datetimepicker-widget .btn[data-action="showHours"]::after {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    content: "Show Hours";
}

.bootstrap-datetimepicker-widget .btn[data-action="showMinutes"]::after {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    content: "Show Minutes";
}

.bootstrap-datetimepicker-widget .btn[data-action="togglePeriod"]::after {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    content: "Toggle AM/PM";
}

.bootstrap-datetimepicker-widget .btn[data-action="clear"]::after {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    content: "Clear the picker";
}

.bootstrap-datetimepicker-widget .btn[data-action="today"]::after {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    content: "Set the date to today";
}

.bootstrap-datetimepicker-widget .picker-switch {
    text-align: center;
}

    .bootstrap-datetimepicker-widget .picker-switch::after {
        position: absolute;
        width: 1px;
        height: 1px;
        margin: -1px;
        padding: 0;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        border: 0;
        content: "Toggle Date and Time Screens";
    }

    .bootstrap-datetimepicker-widget .picker-switch td {
        padding: 0;
        margin: 0;
        height: auto;
        width: auto;
        line-height: inherit;
    }

        .bootstrap-datetimepicker-widget .picker-switch td span {
            line-height: 2.5;
            height: 2.5em;
            width: 100%;
        }

.bootstrap-datetimepicker-widget table {
    width: 100%;
    margin: 0;
}

    .bootstrap-datetimepicker-widget table td,
    .bootstrap-datetimepicker-widget table th {
        text-align: center;
        border-radius: 4px;
    }

    .bootstrap-datetimepicker-widget table th {
        height: 20px;
        line-height: 20px;
        width: 20px;
    }

        .bootstrap-datetimepicker-widget table th.picker-switch {
            width: 145px;
        }

        .bootstrap-datetimepicker-widget table th.disabled,
        .bootstrap-datetimepicker-widget table th.disabled:hover {
            background: none;
            color: #777;
            cursor: not-allowed;
        }

        .bootstrap-datetimepicker-widget table th.prev::after {
            position: absolute;
            width: 1px;
            height: 1px;
            margin: -1px;
            padding: 0;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
            content: "Previous Month";
        }

        .bootstrap-datetimepicker-widget table th.next::after {
            position: absolute;
            width: 1px;
            height: 1px;
            margin: -1px;
            padding: 0;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
            content: "Next Month";
        }

    .bootstrap-datetimepicker-widget table thead tr:first-child th {
        cursor: pointer;
    }

        .bootstrap-datetimepicker-widget table thead tr:first-child th:hover {
            background: #eee;
        }

    .bootstrap-datetimepicker-widget table td {
        height: 54px;
        line-height: 54px;
        width: 54px;
    }

        .bootstrap-datetimepicker-widget table td.cw {
            font-size: .8em;
            height: 20px;
            line-height: 20px;
            color: #777;
        }

        .bootstrap-datetimepicker-widget table td.day {
            height: 20px;
            line-height: 20px;
            width: 20px;
        }

            .bootstrap-datetimepicker-widget table td.day:hover,
            .bootstrap-datetimepicker-widget table td.hour:hover,
            .bootstrap-datetimepicker-widget table td.minute:hover,
            .bootstrap-datetimepicker-widget table td.second:hover {
                background: #eee;
                cursor: pointer;
            }

        .bootstrap-datetimepicker-widget table td.old,
        .bootstrap-datetimepicker-widget table td.new {
            color: #777;
        }

        .bootstrap-datetimepicker-widget table td.today {
            position: relative;
        }

            .bootstrap-datetimepicker-widget table td.today:before {
                content: '';
                display: inline-block;
                border: solid transparent;
                border-width: 0 0 7px 7px;
                border-bottom-color: #337ab7;
                border-top-color: rgba(0, 0, 0, 0.2);
                position: absolute;
                bottom: 4px;
                right: 4px;
            }

        .bootstrap-datetimepicker-widget table td.active,
        .bootstrap-datetimepicker-widget table td.active:hover {
            background-color: #337ab7;
            color: #fff;
            text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
        }

            .bootstrap-datetimepicker-widget table td.active.today:before {
                border-bottom-color: #fff;
            }

        .bootstrap-datetimepicker-widget table td.disabled,
        .bootstrap-datetimepicker-widget table td.disabled:hover {
            background: none;
            color: #777;
            cursor: not-allowed;
        }

        .bootstrap-datetimepicker-widget table td span {
            display: inline-block;
            width: 54px;
            height: 54px;
            line-height: 54px;
            margin: 2px 1.5px;
            cursor: pointer;
            border-radius: 4px;
        }

            .bootstrap-datetimepicker-widget table td span:hover {
                background: #eee;
            }

            .bootstrap-datetimepicker-widget table td span.active {
                background-color: #337ab7;
                color: #fff;
                text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
            }

            .bootstrap-datetimepicker-widget table td span.old {
                color: #777;
            }

            .bootstrap-datetimepicker-widget table td span.disabled,
            .bootstrap-datetimepicker-widget table td span.disabled:hover {
                background: none;
                color: #777;
                cursor: not-allowed;
            }

.bootstrap-datetimepicker-widget.usetwentyfour td.hour {
    height: 27px;
    line-height: 27px;
}

.bootstrap-datetimepicker-widget.wider {
    width: 21em;
}

.bootstrap-datetimepicker-widget .datepicker-decades .decade {
    line-height: 1.8em !important;
}

.input-group.date .input-group-addon {
    cursor: pointer;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/*!
 * Bootstrap Colorpicker v2.5.1
 * https://itsjavi.com/bootstrap-colorpicker/
 *
 * Originally written by (c) 2012 Stefan Petre
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0.txt
 *
 */

.colorpicker-saturation {
    width: 100px;
    height: 100px;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAQAAADa613fAAAP9klEQVR4XnRWC47rNgwcKjlA0bv2VL1Qi/YELRav7203iS1ppqZoiXCAhuBHVLI74xFtG3/Hz2joIOjRGuR5eMYuRn9YA1fds859KX8ZvczLr9/pImiR3Rqky9/wlajRIdVE/1Rufeu/0No3/ASgBZAJUkwgi0iCaEatekJJoEqiTQncd67/gyOfRCZshTed0Nl8LbLj8D6qxtoq9/7kJz/aH/3Xfu8VwI5+AUH8DxE7gUyiIpZ5LwiGzUqE3CScJsCDQHAsvBnxWpkbC0QMHmBp6latWS0bnvrCN/x1+xPfce+Ij0GAyeAGGz15sOiax2UylPhKrFaMPnVWClwepKh07hdhkVDsK2uoyEIySergjdbY2VBtV8VLr8Mf9mF/4wMb7kR8FOhzFWZZe7HIZD9JRIbee28eJKBweTB6TwjYkAgWaUmtDveGw1Wx3zZ76YlPPfQd/+gTTUFkiGiJ+NQAszU1EPT/QJEgufolAMPkNU4CVOyUIBLg4xglEZHGQnTFOFV0VaulYddBhA986ge/7N/yQi/3flFgwfQq2ibLnTDBRl9TmUHyJASPV/eoN0UISIr+ICQKIFV4EpljSjV1uFVUq9hRtet5e9gXvuyHPW0zMhQxWaoBBa9Tg8vsCEhww23Smd0CKjIkmPIoxWrUBDgJqFCyESF43ctQxLUoHN7Q1KyVhqrNNm3cy2vMyQNPVKjc29Rh5SSU+giWdRJHkLnQG71FQEuNyNGBTDdBQQAKCuGiEUS/jcyGbkMPq931OIzb/dUPGuVlG7f+slqkO5NAAlzTMdcq0NkzmsEBmAQkbI+pSHbiqnuWIA6lijhvqwIxMyWxMGZiPU669XJE1tADDTs2HWpwKxuqdnTpOiOR42xlzLtm3pXGel3xd8/oTs8Xy0MV8GM1RlsC2Y3Wy3wut3M+2mEVux0Gt9fhzTWyLvGiiJYaqY5DWRFIwAiQ5r6gB9GpQihJw4I9j5Mkscj3BnzGjBhv8xna5P1Jo428o6IOPY5KFZtVOkEKqUjqQY9Gi+jrIOFwJUDzRtA9xyoIrGGmkNRmxVAnZoK+TkUIeUYni5wEzgOG5iZX5HCr2JyQNqdk++G0rgb1ochSIGutTj4P7F0PuRUAolmh5sCzAHn1BYyaADh6bgFeoBx6vst091CEvcSLWBBpqGq384jZ5llVHSwEShLx+D4d0mU3D5eEAJQ9KEhOZUYnDENV2qKgmIlQhWfdvcoXYaegPp/n1oKIOgYFqxrzQSciqNhv/5FqPpy6b0UcX2vf13DfWySRSEgkEYlEJJGQSyKJSEQSCYlEEpHexIVO3XOevffze2a+PfPv9x1rne1c3b3Mmlmz9mE++zuzngfnw/E+Dlc4LL4NwHdFy7u3KGPVmZ6/4eeMoDyre3i/KHADIHYO04w9zO0mAotuKnrc7XaPjvu66bNe5cDT7RlPepEnfS2X8dF1/utDvD+OwGDBxEgQywLCvIMYWBY+DShwAAORAdv9PswhDAqOUCi5+71AbFcDMR4xBDNfhySKXPXZ1+Vub+Q1Ltf5z7eC0AjVldHI26rIFdKIAyYBJCFVUhVDwttAnM52B3Ect1TFQXzJ0z33lOuib/QO8g+CuO0gKBRU80A8hkeJ0b1KRQWmFQVSh8mf3lpUpNaRulzN5NArrmKKGMijXgzk7w5ijdFVgT8f1IdFNjVWjDWicUYWEEMmSFDtILdzHW5XueHp7p+yuS54ep5/c5BE2Gw/gWPNYU4/PZaak2VGEsFjSbOf8irea6KQgojGCk0KxZY31tWWgzwayF8N5KYyo3VADVicWWrhwzr3ZqIOa5xW5zbqMPPMiyDURHDIHQTeWq7KFXcQPOqzPOL5Ov/iIDEDy7DHEwx0PTgjO8SS0fOEHcZNMt+XKEFMj8Q4QUSvPu6HPuvd4N9/x12RPwcIVRCAakSOUzHgsUSMFWYzDQ+PiOJqAOuYc9jh5TecnA+xHfFyOYhebeTH89P80wrCJzUjlsx7euIV0g4zQFUSiBPioIWBACFC7GgDj8P91ZSJOQmQP74MAnQo8H5RIe8kZ0kBcQCMAlEpRDiKROBxbR0ksdhWFq0gR9q9uQzkDzuIFQSPqAgRCAsCaVNF2ZAAhxvtzcqcnDk6tpXxSsayqXLIgSOb6zqeH+fvO0i9XEu5EVV+OZehRZJ6BGTeaRhCkTzVIZeAzaWGAFfErIPogQI5CuR3HQQx7DzBB16R3s7e0MBUPedjWutgG/JUTPqMeAQNEiytJRnJearWUgdwFNxN7rtBoECuj/O3BMHaTIxQ0a4GctireElTJHJvLTaalih5kvBCGMvkdESUMAdCFaI4yG8SpDfRWAptqkAJUwCG6B7lOREFSZBqKs57MEHqVJEBwHa2lp0OiKtiQ18gx9P89QrSXyc0vObBM4vPmBADqJZLAo/yzK7qPSZstCy+fDSZlhrm+Zkyjsf5q2otdC14zkLjHLf0me9wjNqQo0B1a6wBJRaIEgC2Qw9oby/cRHA+xHCQy/xlB1HVSV3Y/5yVhsc7dBi2UoIWCMcbELZWgxNCGUZ5y4ceBaLlE8dAfrEosrYT+z8ya3sxXndFBxuQivNGEHFCbLGBlBLKGYHZoeoQpcjtMn/uICPefcxecpuDOEemg9S/44cflZPIlWolyHkLrEpgbS9IQRlAgZgi0WDjsEiPh+PN/Fkogq4GdzPtarlRGW2tJwEK1RMTEvdVdmhAKHO1pdUuGQsVcX+rSfGzDbwGyE8NRPQc83HCaOkTZwPqABZBdFq8zAN1gue0FPO8wYUFBE1WkMwVzM1iQ4BItFh+H36Qy/yJg0DRQICmBl+tbKUC5cCj3yXI+SUFBS78ZAcBtHt+e9lBuiqpTNh9zTvIjzuIWxVYGQJpAZY+VWS3QKh84iSZbwuIdiDpc4KztQa/sjhMaDJEJDSZ8mZ+kCBdC0JpKVNQzZdKu+EsOeFCosrngVAkDS/uy6iGnW7UxmMpkB8FyFKo6iQW8z1HuBdMu1pdkZdB8jWTjlFtNaiJRYniIDcD+eECMqFLS9ED6DgxzCMKnRD3HYYA2uMCJUh70OK8G0EUnJV8lqe8nj84QdqLhdoJskNlEw1ivajM8LtPBhIeN99LESXI9xcQIHFQudHngZjUhXOQeGlUYmAddh5pxMhzV0M1vMAtMFIVmfp6fq+DgEWefjQVenstaqUy3bJQAiVlEihDghCDINFQg8oUhoQPkO8SBEM7SFQ72VYBwPuE7k8uYF5LNwg/TEd2zkuKjIIhTiJRlYrDfNS1QL7DYUcbcCyKJNwOwucVCVSwBBj/DwghXA2hQtACgCBBPprfXkAIFIYRXhONQARFU00Tsh6LEmmQUbkTImMi9me5qaHDIeBgHeRbdxAIqAJBCDSoCNVQglrciqX/ZCD9RRP6rgpBvhmKAFhg2ForBLXBYPtUjj7vCHPe8SXbYAY47gHB9mKeqjjIg/53fmMD0fR9Bug7SFcHI6EA1OC/E8QTL4NgBSGiCiyTChnI1zcQxmyfRZGM6w701KRybDvsIK3LWDx6mxGkcglEZQLkawnCdppZ6sgCh8trWWBUQaUWCEOlOs7HAenFE45QSu9RQQDAqchXNxDq4orQR44qRIFUQvM+mRJuB6GDEixgCbSBQGXghEEbdn1P/zO/QhAWCsWsmRhLa2VFkSZIgSVKmgEQhvk6K8YKMRZl7Dwg4amOUYvFBfLlE4RasOCB5S9PXKq0AqGDMiYIReXF0mYctITWBmqR5F38X5Y7yJfeCtKBzNbWYm5XpsMpf3dRZD3jPDesvdVCOs6KYQXIFw1E4fcE8dHWOepZBXpLJcACWUZVMRZbfvgXR4Ak8A7VVSKSVuu9p6/mFxyE7cOWavtLp952O8huK83+gmHzHaAsVXLgAvl8gPCvHzAFsM8GNXGKPH5cmN02sXTLa8QdKRXMzHv67/k5A9k1UIx36UH/VlWWtuKssNiRapB6BaLXl6MA+ayDcNS3v/sYXgCL620F1kk8QhKAEOvKu4DvajDO5zkHc4fBg76anyEIIcamBPex5EK8AoVHhMW7QAqWrYD1204CJB1hCfOAV/PTBPH0zBmJmsZZKCEaAmdqm4zMcYxYLN0JuHThIAjirAnp3px7TRgD+ZSD/K92M1CNIgbC8Ex7FkSEIlQEEUQEQQQBRBABEUQQEQTx3X0Evap9AhP39jL5OvuzAWuvbDaTTDIzX2aypUCJ0i7nAigoQAk9gUIUSxXEoCFyyVIuL9ZQcMZoArnwr4D0OLS8jGNGTgGnsZQWMYrcOARoIReAALBeWhf+RUCAIEsECFQHLkwR5zj4JW3t5WOUU5djvgQIawD53EDsctmYz8xGaZGPBUR3qNkiGwqDICUYIFpqBgRaayCfFiAWR2wWvoobmzxdF8N5kyxXmvap/sgGcLF/aoBosbG+lE395R8zCA4BqUYgOgYq+HtvBrT0LK15X8lZwx5f9klCX0rdgXzIIGbdhXMqZtHzJhuptEjmsFc4KzmN5IFPtfM7gWw2kPczSIqQSPUDYKYBMamsBCpKphW0iA5H8AbMDPJOQYjLZg1Vk4G49GlCYNYAkdOd0kwRQ8FCyAHydgLZ6Z2AqrVtjDUQ7hCEmrkEooDAsB2YnBCvkBpZ6yBvJpCd7Mn5zJ6C4QF2BUQPgHEIGUrGnHzQ8rlMekBeTyAzwDJksxwM4+w3BY02B8mIl0CmFRm+ZscxAuSnvwqQsECTIGSV6FEoJFTygVuzB5xAsKqBvAQE3+nkVoJDI1BJIaPBWik7ZSu5NIp5A3mRQaTFvLgkO9fVgEgMqqeVfb+p55tijWH+Kea71ubq4v8Sl8089sZKbKEZNq+VUfISJJF7j79WrbYgS994ZEf+nIz0pNFRWqapSmK6P45i3OQuItIiPDyg6RnxZ4D0g+CFPxAzluoRsWsaA6I6JOqVWCisDvJ0BgHTzMSRgMi0vmi8R+sR6tg/XUh7kCc7kMRqSNkTBDx0OkAUegFcMazciBXNpm798R6klXap/WZz49TQwBHqEcj4oCToUPjUuP9lfxcbyKMAwT6bTf1qqIIQDl3i5oCERNmVm0wgW4A8BGRxMX3hWh8bEV5Rvfp4DS5F3djWH2ztDNWKW7OBjgjIwsDWaKRknJjqMsh9QCa1p608lLovFkBE969DYtYelSzwSRcg535vAsFeNU9SzRCYZb4LDmxmFQKkwYGM+5y/G7b1uxMIylLdyE5yxIyYsoXWhQIpzQhYPi3JkJoKkB9+BxD0OMuyOEBe36DgyPSrxscmATldgKj8PxrkA/kA5PYMgkrocwIQ6GSRGmF0VaNqBKQZ5FYDEZSDzFTzq9mBQjAayE1A+ryDTzcQZe0Ibbxj7EwpAmTrJwEimZR9CCPtODhzxuNtY19Zd2Lf/fjCTnEiDAOg62j1utb/dv9mZ/aHCj4AyOHbsW3/As0BTzIgeJU7AAAAAElFTkSuQmCC);
    cursor: crosshair;
    float: left;
}

    .colorpicker-saturation i {
        display: block;
        height: 5px;
        width: 5px;
        border: 1px solid #000;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        position: absolute;
        top: 0;
        left: 0;
        margin: -4px 0 0 -4px;
    }

        .colorpicker-saturation i b {
            display: block;
            height: 5px;
            width: 5px;
            border: 1px solid #fff;
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            border-radius: 5px;
        }

.colorpicker-alpha,
.colorpicker-hue {
    width: 15px;
    height: 100px;
    float: left;
    cursor: row-resize;
    margin-left: 4px;
    margin-bottom: 4px;
}

    .colorpicker-alpha i,
    .colorpicker-hue i {
        display: block;
        height: 1px;
        background: #000;
        border-top: 1px solid #fff;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        margin-top: -1px;
    }

.colorpicker-hue {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAABkCAMAAABw8qpSAAABLFBMVEXqFBb/ABH/ACL/ADH/AEH/AFD/AGD/AG7/AH7/AI3/AJ3/AKz/ALz/AMr/ANv/AOr/APr2AP/mAP/XAP/HAP+4AP+oAP+aAP+JAP97AP9rAP9cAP9MAP8+AP8tAP8fAP8PAP8BAv8AEP8AH/8AL/8APv8ATv8AXP8Abf8Ae/8Ai/8Amv8Aqv8AuP8Ayf8A1/8A5/8A9/8A//gA/+kA/9kA/8oA/7oA/6wA/5sA/40A/30A/24A/14A/1AA/z8A/zEA/yEA/xEB/wMN/wAd/wAs/wA8/wBK/wBb/wBp/wB5/wCI/wCY/wCm/wC3/wDF/wDV/wDk/wD1/wD/+gD/7AD/3AD/zAD/vgD/rQD/nwD/jgD/gAD/cAD/YgD/UQD/QwD/MgD/JAD/FAD4Eg42qAedAAAAh0lEQVR4XgXAg3EDAAAAwI9to7Zt27a1/w49BASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTS1tHXo1KVbj159+g0YNGTYiFFjxk2YNGXajFlz5i1YtGTZilVr1m3YtGXbjl179h04dOTYiVNnzl24dOXajVt37j149OTZi1dv3n349OXbj19//wOxE1dQ8reGAAAAAElFTkSuQmCC);
}

.colorpicker-alpha {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAABkCAQAAAAVxWkcAAABr0lEQVR4Xo2VwU0DQQxF7dmRuNIFlzlSAR3QAaXQQdIBJVABFXDcOVAAd67cjJLR07dkhcSrkZKfb/t7bG88rFo3B5gZPMNycItu2xloGV7MWHzM9zuzFWCkmA0nK6AszCUJDW6+mG6R03ncw5v8EMTEvZ2O3AliYjpslblc0RF9LmZYWxURU6aKytWZYsoWCAe+xwOZp1GsEukGiIkYxcQCHck99+gRgB7JncyIB5SGEhP3Yh5P6JwX+u6AnYot104d8DJT7uH7M9JH6OZbimj0vfMVaYnJIZFJDBW9kHlerL2C6JV4mSt7uuo2N57RxnZ+usQjn0R1jwBJBrNO3evJpVYUWsJ/E3UiXRlv24/7YZ04xmEdWlzcKS+B/eapeyMvFd2k0+hRk/T0AmTW8h69s2sjYMsdPntECiILhAeIMZAeH4QvUwfn6ijC0tTV+fT9ky8jM9nK2g7Ly1VjSpKYq6IvsAm7MtNu1orEqa/K3KNvgMFdhfquPfJmp2dbh0/8Gzb6Y22ViaNr6n5410zXdngVhbu6XqdOtWOuin5hjABGp4a2uotZ71MVCfwDBt2/v37yo6AAAAAASUVORK5CYII=);
    display: none;
}

.colorpicker-alpha,
.colorpicker-hue,
.colorpicker-saturation {
    background-size: contain;
}

.colorpicker {
    padding: 4px;
    min-width: 130px;
    margin-top: 1px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    z-index: 2500;
}

    .colorpicker:after,
    .colorpicker:before {
        display: table;
        content: "";
        line-height: 0;
    }

    .colorpicker:after {
        clear: both;
    }

    .colorpicker:before {
        content: '';
        display: inline-block;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-bottom: 7px solid #ccc;
        border-bottom-color: rgba(0, 0, 0, .2);
        position: absolute;
        top: -7px;
        left: 6px;
    }

    .colorpicker:after {
        content: '';
        display: inline-block;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-bottom: 6px solid #fff;
        position: absolute;
        top: -6px;
        left: 7px;
    }

    .colorpicker div {
        position: relative;
    }

    .colorpicker.colorpicker-with-alpha {
        min-width: 140px;
    }

        .colorpicker.colorpicker-with-alpha .colorpicker-alpha {
            display: block;
        }

.colorpicker-color {
    height: 10px;
    margin-top: 5px;
    clear: both;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAABkCAQAAAAVxWkcAAABr0lEQVR4Xo2VwU0DQQxF7dmRuNIFlzlSAR3QAaXQQdIBJVABFXDcOVAAd67cjJLR07dkhcSrkZKfb/t7bG88rFo3B5gZPMNycItu2xloGV7MWHzM9zuzFWCkmA0nK6AszCUJDW6+mG6R03ncw5v8EMTEvZ2O3AliYjpslblc0RF9LmZYWxURU6aKytWZYsoWCAe+xwOZp1GsEukGiIkYxcQCHck99+gRgB7JncyIB5SGEhP3Yh5P6JwX+u6AnYot104d8DJT7uH7M9JH6OZbimj0vfMVaYnJIZFJDBW9kHlerL2C6JV4mSt7uuo2N57RxnZ+usQjn0R1jwBJBrNO3evJpVYUWsJ/E3UiXRlv24/7YZ04xmEdWlzcKS+B/eapeyMvFd2k0+hRk/T0AmTW8h69s2sjYMsdPntECiILhAeIMZAeH4QvUwfn6ijC0tTV+fT9ky8jM9nK2g7Ly1VjSpKYq6IvsAm7MtNu1orEqa/K3KNvgMFdhfquPfJmp2dbh0/8Gzb6Y22ViaNr6n5410zXdngVhbu6XqdOtWOuin5hjABGp4a2uotZ71MVCfwDBt2/v37yo6AAAAAASUVORK5CYII=);
    background-position: 0 100%;
}

    .colorpicker-color div {
        height: 10px;
    }

.colorpicker-selectors {
    display: none;
    height: 10px;
    margin-top: 5px;
    clear: both;
}

    .colorpicker-selectors i {
        cursor: pointer;
        float: left;
        height: 10px;
        width: 10px;
    }

        .colorpicker-selectors i + i {
            margin-left: 3px;
        }

.colorpicker-element .add-on i,
.colorpicker-element .input-group-addon i {
    display: inline-block;
    cursor: pointer;
    height: 16px;
    vertical-align: text-top;
    width: 16px;
}

.colorpicker.colorpicker-inline {
    position: relative;
    display: inline-block;
    float: none;
    z-index: auto;
}

.colorpicker.colorpicker-horizontal {
    width: 110px;
    min-width: 110px;
    height: auto;
}

    .colorpicker.colorpicker-horizontal .colorpicker-saturation {
        margin-bottom: 4px;
    }

    .colorpicker.colorpicker-horizontal .colorpicker-color {
        width: 100px;
    }

    .colorpicker.colorpicker-horizontal .colorpicker-alpha,
    .colorpicker.colorpicker-horizontal .colorpicker-hue {
        width: 100px;
        height: 15px;
        float: left;
        cursor: col-resize;
        margin-left: 0;
        margin-bottom: 4px;
    }

        .colorpicker.colorpicker-horizontal .colorpicker-alpha i,
        .colorpicker.colorpicker-horizontal .colorpicker-hue i {
            display: block;
            height: 15px;
            background: #fff;
            position: absolute;
            top: 0;
            left: 0;
            width: 1px;
            border: none;
            margin-top: 0;
        }

    .colorpicker.colorpicker-horizontal .colorpicker-hue {
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAABCAMAAAAfBfuPAAABLFBMVEXqFBb/ABH/ACL/ADH/AEH/AFD/AGD/AG7/AH7/AI3/AJ3/AKz/ALz/AMr/ANv/AOr/APr2AP/mAP/XAP/HAP+4AP+oAP+aAP+JAP97AP9rAP9cAP9MAP8+AP8tAP8fAP8PAP8BAv8AEP8AH/8AL/8APv8ATv8AXP8Abf8Ae/8Ai/8Amv8Aqv8AuP8Ayf8A1/8A5/8A9/8A//gA/+kA/9kA/8oA/7oA/6wA/5sA/40A/30A/24A/14A/1AA/z8A/zEA/yEA/xEB/wMN/wAd/wAs/wA8/wBK/wBb/wBp/wB5/wCI/wCY/wCm/wC3/wDF/wDV/wDk/wD1/wD/+gD/7AD/3AD/zAD/vgD/rQD/nwD/jgD/gAD/cAD/YgD/UQD/QwD/MgD/JAD/FAD4Eg42qAedAAAAbUlEQVR4XgXAghEDsbxtlrZt27ax/w49ACAYQTGcICmaYTleECVZUTXdMC1Wm93hdLk9Xp8/EAyFI9FYPJFMpTPZXL5QLJUr1Vq90Wy1O91efzAcjSfT2XyxXK03293+cDydL9fb/fF8vT/f3x+LfRNXARMbCAAAAABJRU5ErkJggg==);
    }

    .colorpicker.colorpicker-horizontal .colorpicker-alpha {
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAAKCAQAAADoFTP1AAAB9ElEQVR4XoWTQW4VMRBEu9qWEimL7DhEMp8NF+ASnJJLcAQgE1bcgBUSkYKUuHCrZ9pjeqSU5Yn9LPu7umJQBIIv+k7vIOrtK66L4lmr3pVOrOv3otp619KZ0/KjdNI79L52Uo09FBQWrU0vfe5trezU+hLsoUKd3Repovte+0vbq/7Lj5XbaHECKasR9G4MPlbp+gzZxd6koPEJCkAYC5SjcOTAIIOK90Dja1IfIZ8Z+zAY9jm3b5Ia+MT5sFcqRJrR2AYYA8Kua5BzYRrFPNmD4PQMegGJMOffJJUsWiI3nCHZZjInNdffLWOufzbc3JaboCAVxwmnRHbhLSPwRJ4wU0BRSc6HkECYYVw95nMKgJOcylxrJttE5Ibzf9Xq9GPvP+WX3MiV/MGHfRu/SentRQrfG1GzsIrytdNXucSRKxQNIGHM9YhGFQJcdjNcBZvfJayuYe4Sia1CzwW+19mWOhe37HsxJWKwbu/jluEU15QzAQjAqCEbhMJc78GYV2E0kooHDubUImWkTOhGpgv8PoT8DJG/bzxna4BZ0eOFSOaLADGeSpFsg5AzeaDZIDQQXjZ4y/8ryfzUXBwdELRjTjCNvOeT0rNlrJz90vwy6N9pXXQEluX0inElpPWokSdiLCfiNJJjMKQ8Qsh8GEKQKMo/eiHrNbI9UksAAAAASUVORK5CYII=);
    }

.colorpicker-right:before {
    left: auto;
    right: 6px;
}

.colorpicker-right:after {
    left: auto;
    right: 7px;
}

.colorpicker-no-arrow:before {
    border-right: 0;
    border-left: 0;
}

.colorpicker-no-arrow:after {
    border-right: 0;
    border-left: 0;
}

.colorpicker-alpha.colorpicker-visible,
.colorpicker-hue.colorpicker-visible,
.colorpicker-saturation.colorpicker-visible,
.colorpicker-selectors.colorpicker-visible,
.colorpicker.colorpicker-visible {
    display: block;
}

.colorpicker-alpha.colorpicker-hidden,
.colorpicker-hue.colorpicker-hidden,
.colorpicker-saturation.colorpicker-hidden,
.colorpicker-selectors.colorpicker-hidden,
.colorpicker.colorpicker-hidden {
    display: none;
}

.colorpicker-inline.colorpicker-visible {
    display: inline-block;
}

/*# Bootstrap theme for select2 */

.select2-container--bootstrap {
    display: block;
}

    .select2-container--bootstrap .select2-selection {
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
        background-color: #fff;
        border: 1px solid #ccc;
        border-radius: 4px;
        color: #555;
        font-size: 14px;
        outline: 0;
    }

        .select2-container--bootstrap .select2-selection.form-control {
            border-radius: 4px;
        }

    .select2-container--bootstrap .select2-search--dropdown .select2-search__field {
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
        background-color: #fff;
        border: 1px solid #ccc;
        border-radius: 4px;
        color: #555;
        font-size: 14px;
    }

    .select2-container--bootstrap .select2-search__field {
        outline: 0;
    }

        .select2-container--bootstrap .select2-search__field::-webkit-input-placeholder {
            color: #999;
        }

        .select2-container--bootstrap .select2-search__field:-moz-placeholder {
            color: #999;
        }

        .select2-container--bootstrap .select2-search__field::-moz-placeholder {
            color: #999;
            opacity: 1;
        }

        .select2-container--bootstrap .select2-search__field:-ms-input-placeholder {
            color: #999;
        }

    .select2-container--bootstrap .select2-results__option {
        padding: 6px 12px;
    }

        .select2-container--bootstrap .select2-results__option[role=group] {
            padding: 0;
        }

        .select2-container--bootstrap .select2-results__option[aria-disabled=true] {
            color: #777;
            cursor: not-allowed;
        }

        .select2-container--bootstrap .select2-results__option[aria-selected=true] {
            background-color: #f5f5f5;
            color: #262626;
        }

    .select2-container--bootstrap .select2-results__option--highlighted[aria-selected] {
        background-color: #337ab7;
        color: #fff;
    }

    .select2-container--bootstrap .select2-results__option .select2-results__option {
        padding: 6px 12px;
    }

        .select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__group {
            padding-left: 0;
        }

        .select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option {
            margin-left: -12px;
            padding-left: 24px;
        }

            .select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
                margin-left: -24px;
                padding-left: 36px;
            }

                .select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
                    margin-left: -36px;
                    padding-left: 48px;
                }

                    .select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
                        margin-left: -48px;
                        padding-left: 60px;
                    }

                        .select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
                            margin-left: -60px;
                            padding-left: 72px;
                        }

    .select2-container--bootstrap .select2-results__group {
        color: #777;
        display: block;
        padding: 6px 12px;
        font-size: 12px;
        line-height: 1.42857143;
        white-space: nowrap;
    }

    .select2-container--bootstrap.select2-container--focus .select2-selection,
    .select2-container--bootstrap.select2-container--open .select2-selection {
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
        -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
        -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
        transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
        transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
        transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
        border-color: #66afe9;
    }

        .select2-container--bootstrap.select2-container--open .select2-selection .select2-selection__arrow b {
            border-color: transparent transparent #999;
            border-width: 0 4px 4px;
        }

    .select2-container--bootstrap.select2-container--open.select2-container--below .select2-selection {
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
        border-bottom-color: transparent;
    }

    .select2-container--bootstrap.select2-container--open.select2-container--above .select2-selection {
        border-top-right-radius: 0;
        border-top-left-radius: 0;
        border-top-color: transparent;
    }

    .select2-container--bootstrap .select2-selection__clear {
        color: #999;
        cursor: pointer;
        float: right;
        font-weight: 700;
        margin-right: 10px;
    }

        .select2-container--bootstrap .select2-selection__clear:hover {
            color: #333;
        }

    .select2-container--bootstrap.select2-container--disabled .select2-selection {
        border-color: #ccc;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .select2-container--bootstrap.select2-container--disabled .select2-search__field,
    .select2-container--bootstrap.select2-container--disabled .select2-selection {
        cursor: not-allowed;
    }

    .select2-container--bootstrap.select2-container--disabled .select2-selection,
    .select2-container--bootstrap.select2-container--disabled .select2-selection--multiple .select2-selection__choice {
        background-color: #eee;
    }

    .select2-container--bootstrap.select2-container--disabled .select2-selection--multiple .select2-selection__choice__remove,
    .select2-container--bootstrap.select2-container--disabled .select2-selection__clear {
        display: none;
    }

    .select2-container--bootstrap .select2-dropdown {
        -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
        box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
        border-color: #66afe9;
        overflow-x: hidden;
        margin-top: -1px;
    }

    .select2-container--bootstrap .select2-dropdown--above {
        -webkit-box-shadow: 0 -6px 12px rgba(0, 0, 0, .175);
        box-shadow: 0 -6px 12px rgba(0, 0, 0, .175);
        margin-top: 1px;
    }

    .select2-container--bootstrap .select2-results > .select2-results__options {
        max-height: 200px;
        overflow-y: auto;
    }

    .select2-container--bootstrap .select2-selection--single {
        height: 38px;
        line-height: 1.42857143;
        padding: 8px 24px 6px 12px;
    }

        .select2-container--bootstrap .select2-selection--single .select2-selection__arrow {
            position: absolute;
            bottom: 0;
            right: 12px;
            top: 0;
            width: 4px;
        }

            .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b {
                border-color: #999 transparent transparent;
                border-style: solid;
                border-width: 4px 4px 0;
                height: 0;
                left: 0;
                margin-left: -4px;
                margin-top: -2px;
                position: absolute;
                top: 50%;
                width: 0;
            }

        .select2-container--bootstrap .select2-selection--single .select2-selection__rendered {
            color: #555;
            padding: 0;
        }

        .select2-container--bootstrap .select2-selection--single .select2-selection__placeholder {
            color: #999;
        }

    .select2-container--bootstrap .select2-selection--multiple {
        min-height: 34px;
        padding: 0;
        height: auto;
    }

        .select2-container--bootstrap .select2-selection--multiple .select2-selection__rendered {
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
            display: block;
            line-height: 1.42857143;
            list-style: none;
            margin: 0;
            overflow: hidden;
            padding: 0;
            width: 100%;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .select2-container--bootstrap .select2-selection--multiple .select2-selection__placeholder {
            color: #999;
            float: left;
            margin-top: 5px;
        }

        .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice {
            color: #555;
            background: #fff;
            border: 1px solid #ccc;
            border-radius: 4px;
            cursor: default;
            float: left;
            margin: 5px 0 0 6px;
            padding: 0 6px;
        }

        .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field {
            background: 0 0;
            padding: 0 12px;
            height: 32px;
            line-height: 1.42857143;
            margin-top: 0;
            min-width: 5em;
        }

        .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice__remove {
            color: #999;
            cursor: pointer;
            display: inline-block;
            font-weight: 700;
            margin-right: 3px;
        }

            .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice__remove:hover {
                color: #333;
            }

        .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear {
            margin-top: 6px;
        }

    .form-group-sm .select2-container--bootstrap .select2-selection--single,
    .input-group-sm .select2-container--bootstrap .select2-selection--single,
    .select2-container--bootstrap .select2-selection--single.input-sm {
        border-radius: 3px;
        font-size: 12px;
        height: 30px;
        line-height: 1.5;
        padding: 5px 22px 5px 10px;
    }

        .form-group-sm .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b,
        .input-group-sm .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b,
        .select2-container--bootstrap .select2-selection--single.input-sm .select2-selection__arrow b {
            margin-left: -5px;
        }

    .form-group-sm .select2-container--bootstrap .select2-selection--multiple,
    .input-group-sm .select2-container--bootstrap .select2-selection--multiple,
    .select2-container--bootstrap .select2-selection--multiple.input-sm {
        min-height: 30px;
        border-radius: 3px;
    }

        .form-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice,
        .input-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice,
        .select2-container--bootstrap .select2-selection--multiple.input-sm .select2-selection__choice {
            font-size: 12px;
            line-height: 1.5;
            margin: 4px 0 0 5px;
            padding: 0 5px;
        }

        .form-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field,
        .input-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field,
        .select2-container--bootstrap .select2-selection--multiple.input-sm .select2-search--inline .select2-search__field {
            padding: 0 10px;
            font-size: 12px;
            height: 28px;
            line-height: 1.5;
        }

        .form-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear,
        .input-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear,
        .select2-container--bootstrap .select2-selection--multiple.input-sm .select2-selection__clear {
            margin-top: 5px;
        }

    .form-group-lg .select2-container--bootstrap .select2-selection--single,
    .input-group-lg .select2-container--bootstrap .select2-selection--single,
    .select2-container--bootstrap .select2-selection--single.input-lg {
        border-radius: 6px;
        font-size: 18px;
        height: 46px;
        line-height: 1.3333333;
        padding: 10px 31px 10px 16px;
    }

        .form-group-lg .select2-container--bootstrap .select2-selection--single .select2-selection__arrow,
        .input-group-lg .select2-container--bootstrap .select2-selection--single .select2-selection__arrow,
        .select2-container--bootstrap .select2-selection--single.input-lg .select2-selection__arrow {
            width: 5px;
        }

            .form-group-lg .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b,
            .input-group-lg .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b,
            .select2-container--bootstrap .select2-selection--single.input-lg .select2-selection__arrow b {
                border-width: 5px 5px 0;
                margin-left: -10px;
                margin-top: -2.5px;
            }

    .form-group-lg .select2-container--bootstrap .select2-selection--multiple,
    .input-group-lg .select2-container--bootstrap .select2-selection--multiple,
    .select2-container--bootstrap .select2-selection--multiple.input-lg {
        min-height: 46px;
        border-radius: 6px;
    }

        .form-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice,
        .input-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice,
        .select2-container--bootstrap .select2-selection--multiple.input-lg .select2-selection__choice {
            font-size: 18px;
            line-height: 1.3333333;
            border-radius: 4px;
            margin: 9px 0 0 8px;
            padding: 0 10px;
        }

        .form-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field,
        .input-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field,
        .select2-container--bootstrap .select2-selection--multiple.input-lg .select2-search--inline .select2-search__field {
            padding: 0 16px;
            font-size: 18px;
            height: 44px;
            line-height: 1.3333333;
        }

        .form-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear,
        .input-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear,
        .select2-container--bootstrap .select2-selection--multiple.input-lg .select2-selection__clear {
            margin-top: 10px;
        }

    .input-group-lg .select2-container--bootstrap .select2-selection.select2-container--open .select2-selection--single .select2-selection__arrow b,
    .select2-container--bootstrap .select2-selection.input-lg.select2-container--open .select2-selection--single .select2-selection__arrow b {
        border-color: transparent transparent #999;
        border-width: 0 5px 5px;
    }

    .select2-container--bootstrap[dir=rtl] .select2-selection--single {
        padding-left: 24px;
        padding-right: 12px;
    }

        .select2-container--bootstrap[dir=rtl] .select2-selection--single .select2-selection__rendered {
            padding-right: 0;
            padding-left: 0;
            text-align: right;
        }

        .select2-container--bootstrap[dir=rtl] .select2-selection--single .select2-selection__clear {
            float: left;
        }

        .select2-container--bootstrap[dir=rtl] .select2-selection--single .select2-selection__arrow {
            left: 12px;
            right: auto;
        }

            .select2-container--bootstrap[dir=rtl] .select2-selection--single .select2-selection__arrow b {
                margin-left: 0;
            }

    .select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-search--inline,
    .select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-selection__choice,
    .select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-selection__placeholder {
        float: right;
    }

    .select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-selection__choice {
        margin-left: 0;
        margin-right: 6px;
    }

    .select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
        margin-left: 2px;
        margin-right: auto;
    }

.has-warning .select2-dropdown,
.has-warning .select2-selection {
    border-color: #8a6d3b;
}

.has-warning .select2-container--focus .select2-selection,
.has-warning .select2-container--open .select2-selection {
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
    border-color: #66512c;
}

.has-warning.select2-drop-active {
    border-color: #66512c;
}

    .has-warning.select2-drop-active.select2-drop.select2-drop-above {
        border-top-color: #66512c;
    }

.has-error .select2-dropdown,
.has-error .select2-selection {
    border-color: #a94442;
}

.has-error .select2-container--focus .select2-selection,
.has-error .select2-container--open .select2-selection {
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
    border-color: #843534;
}

.has-error.select2-drop-active {
    border-color: #843534;
}

    .has-error.select2-drop-active.select2-drop.select2-drop-above {
        border-top-color: #843534;
    }

.has-success .select2-dropdown,
.has-success .select2-selection {
    border-color: #3c763d;
}

.has-success .select2-container--focus .select2-selection,
.has-success .select2-container--open .select2-selection {
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
    border-color: #2b542c;
}

.has-success.select2-drop-active {
    border-color: #2b542c;
}

    .has-success.select2-drop-active.select2-drop.select2-drop-above {
        border-top-color: #2b542c;
    }

.input-group > .select2-hidden-accessible:first-child + .select2-container--bootstrap > .selection > .select2-selection,
.input-group > .select2-hidden-accessible:first-child + .select2-container--bootstrap > .selection > .select2-selection.form-control {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

.input-group > .select2-hidden-accessible:not(:first-child) + .select2-container--bootstrap:not(:last-child) > .selection > .select2-selection,
.input-group > .select2-hidden-accessible:not(:first-child) + .select2-container--bootstrap:not(:last-child) > .selection > .select2-selection.form-control {
    border-radius: 0;
}

.input-group > .select2-hidden-accessible:not(:first-child):not(:last-child) + .select2-container--bootstrap:last-child > .selection > .select2-selection,
.input-group > .select2-hidden-accessible:not(:first-child):not(:last-child) + .select2-container--bootstrap:last-child > .selection > .select2-selection.form-control {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.input-group > .select2-container--bootstrap {
    display: table;
    table-layout: fixed;
    position: relative;
    z-index: 2;
    width: 100%;
    margin-bottom: 0;
}

    .input-group > .select2-container--bootstrap > .selection > .select2-selection.form-control {
        float: none;
    }

    .input-group > .select2-container--bootstrap.select2-container--focus,
    .input-group > .select2-container--bootstrap.select2-container--open {
        z-index: 3;
    }

    .input-group > .select2-container--bootstrap,
    .input-group > .select2-container--bootstrap .input-group-btn,
    .input-group > .select2-container--bootstrap .input-group-btn .btn {
        vertical-align: top;
    }

.form-control.select2-hidden-accessible {
    position: absolute !important;
    width: 1px !important;
}

@media (min-width:768px) {
    .form-inline .select2-container--bootstrap {
        display: inline-block;
    }
}

/*
 *  Bootstrap TouchSpin - v3.1.2
 *  A mobile and touch friendly input spinner component for Bootstrap 3.
 *  http://www.virtuosoft.eu/code/bootstrap-touchspin/
 *
 *  Made by István Ujj-Mészáros
 *  Under Apache License v2.0 License
 */

.bootstrap-touchspin .input-group-btn-vertical {
    position: relative;
    white-space: nowrap;
    width: 1%;
    vertical-align: middle;
    display: table-cell;
}

    .bootstrap-touchspin .input-group-btn-vertical > .btn {
        display: block;
        float: none;
        width: 100%;
        max-width: 100%;
        padding: 9px 10px;
        margin-left: -1px;
        position: relative;
    }

    .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {
        border-radius: 0;
        border-top-right-radius: 4px;
    }

    .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
        margin-top: -2px;
        border-radius: 0;
        border-bottom-right-radius: 4px;
    }

    .bootstrap-touchspin .input-group-btn-vertical i {
        position: absolute;
        top: 3px;
        left: 5px;
        font-size: 9px;
        font-weight: 400;
    }

/*!
 * Ladda
 * http://lab.hakim.se/ladda
 * MIT licensed
 *
 * Copyright (C) 2016 Hakim El Hattab, http://hakim.se
 */

.ladda-button {
    position: relative;
}

.ladda-spinner {
    position: absolute;
    z-index: 2;
    display: inline-block;
    width: 32px;
    top: 50%;
    margin-top: 0;
    opacity: 0;
    pointer-events: none;
}

.ladda-button .ladda-label {
    position: relative;
    z-index: 3;
}

.ladda-progress {
    position: absolute;
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.2);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.1s linear all !important;
    -moz-transition: 0.1s linear all !important;
    -ms-transition: 0.1s linear all !important;
    -o-transition: 0.1s linear all !important;
    transition: 0.1s linear all !important;
}

.ladda-button[data-loading] .ladda-progress {
    opacity: 1;
    visibility: visible;
}

.ladda-button,
.ladda-button .ladda-spinner,
.ladda-button .ladda-label {
    -webkit-transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) all !important;
    -moz-transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) all !important;
    -ms-transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) all !important;
    -o-transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) all !important;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) all !important;
}

    .ladda-button[data-style=zoom-in],
    .ladda-button[data-style=zoom-in] .ladda-spinner,
    .ladda-button[data-style=zoom-in] .ladda-label,
    .ladda-button[data-style=zoom-out],
    .ladda-button[data-style=zoom-out] .ladda-spinner,
    .ladda-button[data-style=zoom-out] .ladda-label {
        -webkit-transition: 0.3s ease all !important;
        -moz-transition: 0.3s ease all !important;
        -ms-transition: 0.3s ease all !important;
        -o-transition: 0.3s ease all !important;
        transition: 0.3s ease all !important;
    }

    .ladda-button[data-style=expand-right] .ladda-spinner {
        right: -6px;
    }

    .ladda-button[data-style=expand-right][data-size="s"] .ladda-spinner,
    .ladda-button[data-style=expand-right][data-size="xs"] .ladda-spinner {
        right: -12px;
    }

    .ladda-button[data-style=expand-right][data-loading] {
        padding-right: 56px;
    }

        .ladda-button[data-style=expand-right][data-loading] .ladda-spinner {
            opacity: 1;
        }

        .ladda-button[data-style=expand-right][data-loading][data-size="s"],
        .ladda-button[data-style=expand-right][data-loading][data-size="xs"] {
            padding-right: 40px;
        }

    .ladda-button[data-style=expand-left] .ladda-spinner {
        left: 26px;
    }

    .ladda-button[data-style=expand-left][data-size="s"] .ladda-spinner,
    .ladda-button[data-style=expand-left][data-size="xs"] .ladda-spinner {
        left: 4px;
    }

    .ladda-button[data-style=expand-left][data-loading] {
        padding-left: 56px;
    }

        .ladda-button[data-style=expand-left][data-loading] .ladda-spinner {
            opacity: 1;
        }

        .ladda-button[data-style=expand-left][data-loading][data-size="s"],
        .ladda-button[data-style=expand-left][data-loading][data-size="xs"] {
            padding-left: 40px;
        }

    .ladda-button[data-style=expand-up] {
        overflow: hidden;
    }

        .ladda-button[data-style=expand-up] .ladda-spinner {
            top: -32px;
            left: 50%;
            margin-left: 0;
        }

        .ladda-button[data-style=expand-up][data-loading] {
            padding-top: 54px;
        }

            .ladda-button[data-style=expand-up][data-loading] .ladda-spinner {
                opacity: 1;
                top: 26px;
                margin-top: 0;
            }

            .ladda-button[data-style=expand-up][data-loading][data-size="s"],
            .ladda-button[data-style=expand-up][data-loading][data-size="xs"] {
                padding-top: 32px;
            }

                .ladda-button[data-style=expand-up][data-loading][data-size="s"] .ladda-spinner,
                .ladda-button[data-style=expand-up][data-loading][data-size="xs"] .ladda-spinner {
                    top: 4px;
                }

    .ladda-button[data-style=expand-down] {
        overflow: hidden;
    }

        .ladda-button[data-style=expand-down] .ladda-spinner {
            top: 62px;
            left: 50%;
            margin-left: 0;
        }

        .ladda-button[data-style=expand-down][data-size="s"] .ladda-spinner,
        .ladda-button[data-style=expand-down][data-size="xs"] .ladda-spinner {
            top: 40px;
        }

        .ladda-button[data-style=expand-down][data-loading] {
            padding-bottom: 54px;
        }

            .ladda-button[data-style=expand-down][data-loading] .ladda-spinner {
                opacity: 1;
            }

            .ladda-button[data-style=expand-down][data-loading][data-size="s"],
            .ladda-button[data-style=expand-down][data-loading][data-size="xs"] {
                padding-bottom: 32px;
            }

    .ladda-button[data-style=slide-left] {
        overflow: hidden;
    }

        .ladda-button[data-style=slide-left] .ladda-label {
            position: relative;
        }

        .ladda-button[data-style=slide-left] .ladda-spinner {
            left: 100%;
            margin-left: 0;
        }

        .ladda-button[data-style=slide-left][data-loading] .ladda-label {
            opacity: 0;
            left: -100%;
        }

        .ladda-button[data-style=slide-left][data-loading] .ladda-spinner {
            opacity: 1;
            left: 50%;
        }

    .ladda-button[data-style=slide-right] {
        overflow: hidden;
    }

        .ladda-button[data-style=slide-right] .ladda-label {
            position: relative;
        }

        .ladda-button[data-style=slide-right] .ladda-spinner {
            right: 100%;
            margin-left: 0;
            left: 16px;
        }

[dir="rtl"] .ladda-button[data-style=slide-right] .ladda-spinner {
    right: auto;
}

.ladda-button[data-style=slide-right][data-loading] .ladda-label {
    opacity: 0;
    left: 100%;
}

.ladda-button[data-style=slide-right][data-loading] .ladda-spinner {
    opacity: 1;
    left: 50%;
}

.ladda-button[data-style=slide-up] {
    overflow: hidden;
}

    .ladda-button[data-style=slide-up] .ladda-label {
        position: relative;
    }

    .ladda-button[data-style=slide-up] .ladda-spinner {
        left: 50%;
        margin-left: 0;
        margin-top: 1em;
    }

    .ladda-button[data-style=slide-up][data-loading] .ladda-label {
        opacity: 0;
        top: -1em;
    }

    .ladda-button[data-style=slide-up][data-loading] .ladda-spinner {
        opacity: 1;
        margin-top: 0;
    }

.ladda-button[data-style=slide-down] {
    overflow: hidden;
}

    .ladda-button[data-style=slide-down] .ladda-label {
        position: relative;
    }

    .ladda-button[data-style=slide-down] .ladda-spinner {
        left: 50%;
        margin-left: 0;
        margin-top: -2em;
    }

    .ladda-button[data-style=slide-down][data-loading] .ladda-label {
        opacity: 0;
        top: 1em;
    }

    .ladda-button[data-style=slide-down][data-loading] .ladda-spinner {
        opacity: 1;
        margin-top: 0;
    }

.ladda-button[data-style=zoom-out] {
    overflow: hidden;
}

    .ladda-button[data-style=zoom-out] .ladda-spinner {
        left: 50%;
        margin-left: 32px;
        -webkit-transform: scale(2.5);
        -moz-transform: scale(2.5);
        -ms-transform: scale(2.5);
        -o-transform: scale(2.5);
        transform: scale(2.5);
    }

    .ladda-button[data-style=zoom-out] .ladda-label {
        position: relative;
        display: inline-block;
    }

    .ladda-button[data-style=zoom-out][data-loading] .ladda-label {
        opacity: 0;
        -webkit-transform: scale(0.5);
        -moz-transform: scale(0.5);
        -ms-transform: scale(0.5);
        -o-transform: scale(0.5);
        transform: scale(0.5);
    }

    .ladda-button[data-style=zoom-out][data-loading] .ladda-spinner {
        opacity: 1;
        margin-left: 0;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }

.ladda-button[data-style=zoom-in] {
    overflow: hidden;
}

    .ladda-button[data-style=zoom-in] .ladda-spinner {
        left: 50%;
        margin-left: -16px;
        -webkit-transform: scale(0.2);
        -moz-transform: scale(0.2);
        -ms-transform: scale(0.2);
        -o-transform: scale(0.2);
        transform: scale(0.2);
    }

    .ladda-button[data-style=zoom-in] .ladda-label {
        position: relative;
        display: inline-block;
    }

    .ladda-button[data-style=zoom-in][data-loading] .ladda-label {
        opacity: 0;
        -webkit-transform: scale(2.2);
        -moz-transform: scale(2.2);
        -ms-transform: scale(2.2);
        -o-transform: scale(2.2);
        transform: scale(2.2);
    }

    .ladda-button[data-style=zoom-in][data-loading] .ladda-spinner {
        opacity: 1;
        margin-left: 0;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }

.ladda-button[data-style=contract] {
    overflow: hidden;
    width: 100px;
}

    .ladda-button[data-style=contract] .ladda-spinner {
        left: 50%;
        margin-left: 0;
    }

    .ladda-button[data-style=contract][data-loading] {
        border-radius: 50%;
        width: 52px;
    }

        .ladda-button[data-style=contract][data-loading] .ladda-label {
            opacity: 0;
        }

        .ladda-button[data-style=contract][data-loading] .ladda-spinner {
            opacity: 1;
        }

.ladda-button[data-style=contract-overlay] .ladda-spinner {
    left: 50%;
    margin-left: 0;
}

.ladda-button[data-style=contract-overlay][data-loading] {
    border-radius: 50%;
    width: 52px;
    box-shadow: 0px 0px 0px 2000px rgba(0, 0, 0, 0.8);
}

    .ladda-button[data-style=contract-overlay][data-loading] .ladda-label {
        opacity: 0;
    }

    .ladda-button[data-style=contract-overlay][data-loading] .ladda-spinner {
        opacity: 1;
    }

[dir="rtl"] .ladda-spinner > div {
    left: 25% !important;
}

.ladda-button[data-color=green] {
    background: #2aca76;
}

    .ladda-button[data-color=green]:hover {
        background-color: #38d683;
    }

.ladda-button[data-color=blue] {
    background: #009de0;
}

    .ladda-button[data-color=blue]:hover {
        background-color: #69bfe9;
    }

.ladda-button[data-color=red] {
    background: #ea8557;
}

    .ladda-button[data-color=red]:hover {
        background-color: #ed956e;
    }

.ladda-button[data-color=purple] {
    background: #9973C2;
}

    .ladda-button[data-color=purple]:hover {
        background-color: #a685ca;
    }

.ladda-button[data-color=mint] {
    background: #16a085;
}

    .ladda-button[data-color=mint]:hover {
        background-color: #19b698;
    }

.ladda-button[disabled],
.ladda-button[data-loading] {
    border-color: rgba(0, 0, 0, 0.07);
}

    .ladda-button[disabled],
    .ladda-button[disabled]:hover,
    .ladda-button[data-loading],
    .ladda-button[data-loading]:hover {
        cursor: default;
        background-color: #009de0;
    }

.ladda-button[data-size=xs] {
    padding: 4px 8px;
}

    .ladda-button[data-size=xs] .ladda-label {
        font-size: 0.7em;
    }

.ladda-button[data-size=s] {
    padding: 6px 10px;
}

    .ladda-button[data-size=s] .ladda-label {
        font-size: 0.9em;
    }

.ladda-button[data-size=l] .ladda-label {
    font-size: 1.2em;
}

.ladda-button[data-size=xl] .ladda-label {
    font-size: 1.5em;
}

.cercle {
    width: 80px;
    height: 80px;
    border-radius: 40px;
    border: solid 2px black;
    text-align: center;
    margin-left: 50%;
    line-height: 80px;
    font-size: 25px;
}

.footable-empty td {
    display: none !important;
}

.footable-empty .footable-first-visible {
    display: table-cell !important;
}

/*
jQuery time picker css
*/
.ui-timepicker-container {
    position: absolute;
    overflow: hidden;
    box-sizing: border-box
}

.ui-timepicker, .ui-timepicker-viewport {
    box-sizing: content-box;
    height: 205px;
    display: block;
    margin: 0
}

.ui-timepicker {
    list-style: none;
    padding: 0 1px;
    text-align: center
}

.ui-timepicker-viewport {
    padding: 0;
    overflow: auto;
    overflow-x: hidden
}

.ui-timepicker-standard {
    font-family: Verdana,Arial,sans-serif;
    font-size: 1.1em;
    background-color: #FFF;
    border: 1px solid #AAA;
    color: #222;
    margin: 0;
    padding: 2px
}

    .ui-timepicker-standard a {
        border: 1px solid transparent;
        color: #222;
        display: block;
        padding: .2em .4em;
        text-decoration: none
    }

    .ui-timepicker-standard .ui-state-hover {
        background-color: #DADADA;
        border: 1px solid #999;
        font-weight: 400;
        color: #212121
    }

    .ui-timepicker-standard .ui-menu-item {
        margin: 0;
        padding: 0
    }

.ui-timepicker-corners, .ui-timepicker-corners .ui-corner-all {
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px
}

.ui-timepicker-hidden {
    display: none
}

.ui-timepicker-no-scrollbar .ui-timepicker {
    border: none
}
/*# sourceMappingURL=jquery.timepicker.min.css.map */

/*
    date range picker css
*/
.daterangepicker {
    position: absolute;
    color: inherit;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #ddd;
    width: 278px;
    max-width: none;
    padding: 0;
    margin-top: 7px;
    top: 100px;
    left: 20px;
    z-index: 3001;
    display: none;
    font-family: arial;
    font-size: 15px;
    line-height: 1em;
}

    .daterangepicker:before, .daterangepicker:after {
        position: absolute;
        display: inline-block;
        border-bottom-color: rgba(0, 0, 0, 0.2);
        content: '';
    }

    .daterangepicker:before {
        top: -7px;
        border-right: 7px solid transparent;
        border-left: 7px solid transparent;
        border-bottom: 7px solid #ccc;
    }

    .daterangepicker:after {
        top: -6px;
        border-right: 6px solid transparent;
        border-bottom: 6px solid #fff;
        border-left: 6px solid transparent;
    }

    .daterangepicker.opensleft:before {
        right: 9px;
    }

    .daterangepicker.opensleft:after {
        right: 10px;
    }

    .daterangepicker.openscenter:before {
        left: 0;
        right: 0;
        width: 0;
        margin-left: auto;
        margin-right: auto;
    }

    .daterangepicker.openscenter:after {
        left: 0;
        right: 0;
        width: 0;
        margin-left: auto;
        margin-right: auto;
    }

    .daterangepicker.opensright:before {
        left: 9px;
    }

    .daterangepicker.opensright:after {
        left: 10px;
    }

    .daterangepicker.drop-up {
        margin-top: -7px;
    }

        .daterangepicker.drop-up:before {
            top: initial;
            bottom: -7px;
            border-bottom: initial;
            border-top: 7px solid #ccc;
        }

        .daterangepicker.drop-up:after {
            top: initial;
            bottom: -6px;
            border-bottom: initial;
            border-top: 6px solid #fff;
        }

    .daterangepicker.single .daterangepicker .ranges, .daterangepicker.single .drp-calendar {
        float: none;
    }

    .daterangepicker.single .drp-selected {
        display: none;
    }

    .daterangepicker.show-calendar .drp-calendar {
        display: block;
    }

    .daterangepicker.show-calendar .drp-buttons {
        display: block;
    }

    .daterangepicker.auto-apply .drp-buttons {
        display: none;
    }

    .daterangepicker .drp-calendar {
        display: none;
        max-width: 270px;
    }

        .daterangepicker .drp-calendar.left {
            padding: 8px 0 8px 8px;
        }

        .daterangepicker .drp-calendar.right {
            padding: 8px;
        }

        .daterangepicker .drp-calendar.single .calendar-table {
            border: none;
        }

    .daterangepicker .calendar-table .next span, .daterangepicker .calendar-table .prev span {
        color: #fff;
        border: solid black;
        border-width: 0 2px 2px 0;
        border-radius: 0;
        display: inline-block;
        padding: 3px;
    }

    .daterangepicker .calendar-table .next span {
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
    }

    .daterangepicker .calendar-table .prev span {
        transform: rotate(135deg);
        -webkit-transform: rotate(135deg);
    }

    .daterangepicker .calendar-table th, .daterangepicker .calendar-table td {
        white-space: nowrap;
        text-align: center;
        vertical-align: middle;
        min-width: 32px;
        width: 32px;
        height: 24px;
        line-height: 24px;
        font-size: 12px;
        border-radius: 4px;
        border: 1px solid transparent;
        white-space: nowrap;
        cursor: pointer;
    }

    .daterangepicker .calendar-table {
        border: 1px solid #fff;
        border-radius: 4px;
        background-color: #fff;
    }

        .daterangepicker .calendar-table table {
            width: 100%;
            margin: 0;
            border-spacing: 0;
            border-collapse: collapse;
        }

    .daterangepicker td.available:hover, .daterangepicker th.available:hover {
        background-color: #eee;
        border-color: transparent;
        color: inherit;
    }

    .daterangepicker td.week, .daterangepicker th.week {
        font-size: 80%;
        color: #ccc;
    }

    .daterangepicker td.off, .daterangepicker td.off.in-range, .daterangepicker td.off.start-date, .daterangepicker td.off.end-date {
        background-color: #fff;
        border-color: transparent;
        color: #999;
    }

    .daterangepicker td.in-range {
        background-color: #ebf4f8;
        border-color: transparent;
        color: #000;
        border-radius: 0;
    }

    .daterangepicker td.start-date {
        border-radius: 4px 0 0 4px;
    }

    .daterangepicker td.end-date {
        border-radius: 0 4px 4px 0;
    }

    .daterangepicker td.start-date.end-date {
        border-radius: 4px;
    }

    .daterangepicker td.active, .daterangepicker td.active:hover {
        background-color: #357ebd;
        border-color: transparent;
        color: #fff;
    }

    .daterangepicker th.month {
        width: auto;
    }

    .daterangepicker td.disabled, .daterangepicker option.disabled {
        color: #999;
        cursor: not-allowed;
        text-decoration: line-through;
    }

    .daterangepicker select.monthselect, .daterangepicker select.yearselect {
        font-size: 12px;
        padding: 1px;
        height: auto;
        margin: 0;
        cursor: default;
    }

    .daterangepicker select.monthselect {
        margin-right: 2%;
        width: 56%;
    }

    .daterangepicker select.yearselect {
        width: 40%;
    }

    .daterangepicker select.hourselect, .daterangepicker select.minuteselect, .daterangepicker select.secondselect, .daterangepicker select.ampmselect {
        width: 50px;
        margin: 0 auto;
        background: #eee;
        border: 1px solid #eee;
        padding: 2px;
        outline: 0;
        font-size: 12px;
    }

    .daterangepicker .calendar-time {
        text-align: center;
        margin: 4px auto 0 auto;
        line-height: 30px;
        position: relative;
    }

        .daterangepicker .calendar-time select.disabled {
            color: #ccc;
            cursor: not-allowed;
        }

    .daterangepicker .drp-buttons {
        clear: both;
        text-align: right;
        padding: 8px;
        border-top: 1px solid #ddd;
        display: none;
        line-height: 12px;
        vertical-align: middle;
    }

    .daterangepicker .drp-selected {
        display: inline-block;
        font-size: 12px;
        padding-right: 8px;
    }

    .daterangepicker .drp-buttons .btn {
        margin-left: 8px;
        font-size: 12px;
        font-weight: bold;
        padding: 4px 8px;
    }

    .daterangepicker.show-ranges.single.rtl .drp-calendar.left {
        border-right: 1px solid #ddd;
    }

    .daterangepicker.show-ranges.single.ltr .drp-calendar.left {
        border-left: 1px solid #ddd;
    }

    .daterangepicker.show-ranges.rtl .drp-calendar.right {
        border-right: 1px solid #ddd;
    }

    .daterangepicker.show-ranges.ltr .drp-calendar.left {
        border-left: 1px solid #ddd;
    }

    .daterangepicker .ranges {
        float: none;
        text-align: left;
        margin: 0;
    }

    .daterangepicker.show-calendar .ranges {
        margin-top: 8px;
    }

    .daterangepicker .ranges ul {
        list-style: none;
        margin: 0 auto;
        padding: 0;
        width: 100%;
    }

    .daterangepicker .ranges li {
        font-size: 12px;
        padding: 8px 12px;
        cursor: pointer;
    }

        .daterangepicker .ranges li:hover {
            background-color: #eee;
        }

        .daterangepicker .ranges li.active {
            background-color: #08c;
            color: #fff;
        }

/*  Larger Screen Styling */
@media (min-width: 564px) {
    .daterangepicker {
        width: auto;
    }

        .daterangepicker .ranges ul {
            width: 140px;
        }

        .daterangepicker.single .ranges ul {
            width: 100%;
        }

        .daterangepicker.single .drp-calendar.left {
            clear: none;
        }

        .daterangepicker.single .ranges, .daterangepicker.single .drp-calendar {
            float: left;
        }

    .daterangepicker {
        direction: ltr;
        text-align: left;
    }

        .daterangepicker .drp-calendar.left {
            clear: left;
            margin-right: 0;
        }

            .daterangepicker .drp-calendar.left .calendar-table {
                border-right: none;
                border-top-right-radius: 0;
                border-bottom-right-radius: 0;
            }

        .daterangepicker .drp-calendar.right {
            margin-left: 0;
        }

            .daterangepicker .drp-calendar.right .calendar-table {
                border-left: none;
                border-top-left-radius: 0;
                border-bottom-left-radius: 0;
            }

        .daterangepicker .drp-calendar.left .calendar-table {
            padding-right: 8px;
        }

        .daterangepicker .ranges, .daterangepicker .drp-calendar {
            float: left;
        }
}

@media (min-width: 730px) {
    .daterangepicker .ranges {
        width: auto;
    }

    .daterangepicker .ranges {
        float: left;
    }

    .daterangepicker.rtl .ranges {
        float: right;
    }

    .daterangepicker .drp-calendar.left {
        clear: none !important;
    }
}
