

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

.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;
}

@-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    60% {
        -webkit-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
}

@-webkit-keyframes flash {
    0%, 50%, 100% {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}

@keyframes flash {
    0%, 50%, 100% {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}

.flash {
    -webkit-animation-name: flash;
    animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

@-webkit-keyframes rubberBand {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    30% {
        -webkit-transform: scaleX(1.25) scaleY(0.75);
        transform: scaleX(1.25) scaleY(0.75);
    }

    40% {
        -webkit-transform: scaleX(0.75) scaleY(1.25);
        transform: scaleX(0.75) scaleY(1.25);
    }

    60% {
        -webkit-transform: scaleX(1.15) scaleY(0.85);
        transform: scaleX(1.15) scaleY(0.85);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes rubberBand {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    30% {
        -webkit-transform: scaleX(1.25) scaleY(0.75);
        -ms-transform: scaleX(1.25) scaleY(0.75);
        transform: scaleX(1.25) scaleY(0.75);
    }

    40% {
        -webkit-transform: scaleX(0.75) scaleY(1.25);
        -ms-transform: scaleX(0.75) scaleY(1.25);
        transform: scaleX(0.75) scaleY(1.25);
    }

    60% {
        -webkit-transform: scaleX(1.15) scaleY(0.85);
        -ms-transform: scaleX(1.15) scaleY(0.85);
        transform: scaleX(1.15) scaleY(0.85);
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
}

@-webkit-keyframes shake {
    0%, 100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    20%, 40%, 60%, 80% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
}

@keyframes shake {
    0%, 100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    20%, 40%, 60%, 80% {
        -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
        transform: translateX(10px);
    }
}

.shake {
    -webkit-animation-name: shake;
    animation-name: shake;
}

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg);
    }

    40% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }

    60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg);
    }

    80% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        -ms-transform: rotate(15deg);
        transform: rotate(15deg);
    }

    40% {
        -webkit-transform: rotate(-10deg);
        -ms-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }

    60% {
        -webkit-transform: rotate(5deg);
        -ms-transform: rotate(5deg);
        transform: rotate(5deg);
    }

    80% {
        -webkit-transform: rotate(-5deg);
        -ms-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

.swing {
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing;
}

@-webkit-keyframes tada {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    10%, 20% {
        -webkit-transform: scale(0.9) rotate(-3deg);
        transform: scale(0.9) rotate(-3deg);
    }

    30%, 50%, 70%, 90% {
        -webkit-transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg);
    }

    40%, 60%, 80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg);
    }

    100% {
        -webkit-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0);
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    10%, 20% {
        -webkit-transform: scale(0.9) rotate(-3deg);
        -ms-transform: scale(0.9) rotate(-3deg);
        transform: scale(0.9) rotate(-3deg);
    }

    30%, 50%, 70%, 90% {
        -webkit-transform: scale(1.1) rotate(3deg);
        -ms-transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg);
    }

    40%, 60%, 80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
        -ms-transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg);
    }

    100% {
        -webkit-transform: scale(1) rotate(0);
        -ms-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0);
    }
}

.tada {
    -webkit-animation-name: tada;
    animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
    0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }

    15% {
        -webkit-transform: translateX(-25%) rotate(-5deg);
        transform: translateX(-25%) rotate(-5deg);
    }

    30% {
        -webkit-transform: translateX(20%) rotate(3deg);
        transform: translateX(20%) rotate(3deg);
    }

    45% {
        -webkit-transform: translateX(-15%) rotate(-3deg);
        transform: translateX(-15%) rotate(-3deg);
    }

    60% {
        -webkit-transform: translateX(10%) rotate(2deg);
        transform: translateX(10%) rotate(2deg);
    }

    75% {
        -webkit-transform: translateX(-5%) rotate(-1deg);
        transform: translateX(-5%) rotate(-1deg);
    }

    100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
}

@keyframes wobble {
    0% {
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
    }

    15% {
        -webkit-transform: translateX(-25%) rotate(-5deg);
        -ms-transform: translateX(-25%) rotate(-5deg);
        transform: translateX(-25%) rotate(-5deg);
    }

    30% {
        -webkit-transform: translateX(20%) rotate(3deg);
        -ms-transform: translateX(20%) rotate(3deg);
        transform: translateX(20%) rotate(3deg);
    }

    45% {
        -webkit-transform: translateX(-15%) rotate(-3deg);
        -ms-transform: translateX(-15%) rotate(-3deg);
        transform: translateX(-15%) rotate(-3deg);
    }

    60% {
        -webkit-transform: translateX(10%) rotate(2deg);
        -ms-transform: translateX(10%) rotate(2deg);
        transform: translateX(10%) rotate(2deg);
    }

    75% {
        -webkit-transform: translateX(-5%) rotate(-1deg);
        -ms-transform: translateX(-5%) rotate(-1deg);
        transform: translateX(-5%) rotate(-1deg);
    }

    100% {
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
    }
}

.wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble;
}

@-webkit-keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3);
        transform: scale(.3);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

    70% {
        -webkit-transform: scale(.9);
        transform: scale(.9);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3);
        -ms-transform: scale(.3);
        transform: scale(.3);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05);
    }

    70% {
        -webkit-transform: scale(.9);
        -ms-transform: scale(.9);
        transform: scale(.9);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

.bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }

    80% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes bounceInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
        -ms-transform: translateY(30px);
        transform: translateY(30px);
    }

    80% {
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }

    80% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(30px);
        -ms-transform: translateX(30px);
        transform: translateX(30px);
    }

    80% {
        -webkit-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px);
    }

    80% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(-30px);
        -ms-transform: translateX(-30px);
        transform: translateX(-30px);
    }

    80% {
        -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
        transform: translateX(10px);
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    80% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes bounceInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    80% {
        -webkit-transform: translateY(10px);
        -ms-transform: translateY(10px);
        transform: translateY(10px);
    }

    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    25% {
        -webkit-transform: scale(.95);
        transform: scale(.95);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.3);
        transform: scale(.3);
    }
}

@keyframes bounceOut {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    25% {
        -webkit-transform: scale(.95);
        -ms-transform: scale(.95);
        transform: scale(.95);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.3);
        -ms-transform: scale(.3);
        transform: scale(.3);
    }
}

.bounceOut {
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }
}

@keyframes bounceOutDown {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px);
    }
}

.bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

@keyframes bounceOutLeft {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

.bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

@keyframes bounceOutRight {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

.bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

@keyframes bounceOutUp {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

.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: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.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;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }
}

.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px);
    }
}

.fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }
}

.fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

.fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }
}

.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

.fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

.fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
    0% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    80% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

@keyframes flip {
    0% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    80% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    -ms-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip;
}

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
        transform: perspective(400px) rotateX(-10deg);
    }

    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg);
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        -ms-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
        -ms-transform: perspective(400px) rotateX(-10deg);
        transform: perspective(400px) rotateX(-10deg);
    }

    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        -ms-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg);
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        -ms-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
}

@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
        transform: perspective(400px) rotateY(-10deg);
    }

    70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg);
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}

@keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        -ms-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
        -ms-transform: perspective(400px) rotateY(-10deg);
        transform: perspective(400px) rotateY(-10deg);
    }

    70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        -ms-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg);
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        -ms-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}

.flipInY {
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

@keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        -ms-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        -ms-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

.flipOutX {
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}

@keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        -ms-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        -ms-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}

.flipOutY {
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
    0% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }

    60% {
        -webkit-transform: translateX(-20%) skewX(30deg);
        transform: translateX(-20%) skewX(30deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: translateX(0%) skewX(-15deg);
        transform: translateX(0%) skewX(-15deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
}

@keyframes lightSpeedIn {
    0% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        -ms-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }

    60% {
        -webkit-transform: translateX(-20%) skewX(30deg);
        -ms-transform: translateX(-20%) skewX(30deg);
        transform: translateX(-20%) skewX(30deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: translateX(0%) skewX(-15deg);
        -ms-transform: translateX(0%) skewX(-15deg);
        transform: translateX(0%) skewX(-15deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(0%) skewX(0deg);
        -ms-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        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% {
        -webkit-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
}

@keyframes lightSpeedOut {
    0% {
        -webkit-transform: translateX(0%) skewX(0deg);
        -ms-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        -ms-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) 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 center;
        transform-origin: center center;
        -webkit-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateIn {
    0% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(-200deg);
        -ms-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        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: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        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: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        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: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        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: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
    0% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0;
    }
}

@keyframes rotateOut {
    0% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(200deg);
        -ms-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0;
    }
}

.rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
}

.rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
}

.rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
}

.rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
}

.rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight;
}

@-webkit-keyframes slideInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }

    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}

@-webkit-keyframes slideOutLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

@keyframes slideOutLeft {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

@keyframes slideOutRight {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

.slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

@keyframes slideOutUp {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

.slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp;
}

@-webkit-keyframes slideOutDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }
}

@keyframes slideOutDown {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px);
    }
}

.slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown;
}

@-webkit-keyframes hinge {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(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: rotate(80deg);
        transform: rotate(80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    40% {
        -webkit-transform: rotate(60deg);
        transform: rotate(60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    80% {
        -webkit-transform: rotate(60deg) translateY(0);
        transform: rotate(60deg) translateY(0);
        -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: translateY(700px);
        transform: translateY(700px);
        opacity: 0;
    }
}

@keyframes hinge {
    0% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        -webkit-transform-origin: top left;
        -ms-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: rotate(80deg);
        -ms-transform: rotate(80deg);
        transform: rotate(80deg);
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    40% {
        -webkit-transform: rotate(60deg);
        -ms-transform: rotate(60deg);
        transform: rotate(60deg);
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    80% {
        -webkit-transform: rotate(60deg) translateY(0);
        -ms-transform: rotate(60deg) translateY(0);
        transform: rotate(60deg) translateY(0);
        -webkit-transform-origin: top left;
        -ms-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: translateY(700px);
        -ms-transform: translateY(700px);
        transform: translateY(700px);
        opacity: 0;
    }
}

.hinge {
    -webkit-animation-name: hinge;
    animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%) rotate(-120deg);
        transform: translateX(-100%) rotate(-120deg);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg);
    }
}

@keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%) rotate(-120deg);
        -ms-transform: translateX(-100%) rotate(-120deg);
        transform: translateX(-100%) rotate(-120deg);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        -ms-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg);
    }
}

.rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(100%) rotate(120deg);
        transform: translateX(100%) rotate(120deg);
    }
}

@keyframes rollOut {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        -ms-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(100%) rotate(120deg);
        -ms-transform: translateX(100%) rotate(120deg);
        transform: translateX(100%) rotate(120deg);
    }
}

.rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut;
}
/*!
 * Bootstrap v3.2.0 (http://getbootstrap.com)
 * Copyright 2011-2014 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

body {
  margin: 0; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block; }

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden],
template {
  display: none; }

a {
  background: transparent; }

a:active,
a:hover {
  outline: 0; }

abbr[title] {
  border-bottom: 1px dotted; }

b,
strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

h1 {
  margin: .67em 0;
  font-size: 2em; }

mark {
  color: #000;
  background: #ff0; }

small {
  font-size: 80%; }

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline; }

sup {
  top: -.5em; }

sub {
  bottom: -.25em; }

img {
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 1em 40px; }

hr {
  height: 0;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box; }

pre {
  overflow: auto; }

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font: inherit;
  color: inherit; }

button {
  overflow: visible; }

button,
select {
  text-transform: none; }

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled],
html input[disabled] {
  cursor: default; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0; }

input {
  line-height: normal; }

input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0; }

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

input[type="search"] {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-appearance: textfield; }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

fieldset {
  padding: .35em .625em .75em;
  margin: 0 2px;
  border: 1px solid #c0c0c0; }

legend {
  padding: 0;
  border: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: bold; }

table {
  border-spacing: 0;
  border-collapse: collapse; }

td,
th {
  padding: 0; }

@media print {
  * {
    color: #000 !important;
    text-shadow: none !important;
    background: transparent !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important; }
  a,
  a:visited {
    text-decoration: underline; }
  a[href]:after {
    content: " (" attr(href) ")"; }
  abbr[title]:after {
    content: " (" attr(title) ")"; }
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: ""; }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; }
  select {
    background: #fff !important; }
  .navbar {
    display: none; }
  .table td,
  .table th {
    background-color: #fff !important; }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important; }
  .label {
    border: 1px solid #000; }
  .table {
    border-collapse: collapse !important; }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important; } }

@font-face {
  font-family: 'Glyphicons Halflings';
  src: url(/assets/glyphicons-halflings-regular-15415a60389705f0e6e2bf7114bcb8df41d5b64c9e1285efdf1ed5bdbf608050.eot);
  src: url(/assets/glyphicons-halflings-regular-15415a60389705f0e6e2bf7114bcb8df41d5b64c9e1285efdf1ed5bdbf608050.eot?#iefix) format("embedded-opentype"), url(/assets/glyphicons-halflings-regular-64da709cee30cc2d0f694fb5b2558d2e4b99e18be0faa9d8f04d6cd0dfb441c7.woff) format("woff"), url(/assets/glyphicons-halflings-regular-2d41026d28df88dd547243cfb38ce91b6937b50ffaf7e2c19a76d75119de61e8.ttf) format("truetype"), url(/assets/glyphicons-halflings-regular-159b5da43cd075c538889e1b84883da31c7f6b2e3608bfc4d424d810a773f034.svg#glyphicons_halflingsregular) format("svg"); }

.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.glyphicon-asterisk:before {
  content: "\2a"; }

.glyphicon-plus:before {
  content: "\2b"; }

.glyphicon-euro:before {
  content: "\20ac"; }

.glyphicon-minus:before {
  content: "\2212"; }

.glyphicon-cloud:before {
  content: "\2601"; }

.glyphicon-envelope:before {
  content: "\2709"; }

.glyphicon-pencil:before {
  content: "\270f"; }

.glyphicon-glass:before {
  content: "\e001"; }

.glyphicon-music:before {
  content: "\e002"; }

.glyphicon-search:before {
  content: "\e003"; }

.glyphicon-heart:before {
  content: "\e005"; }

.glyphicon-star:before {
  content: "\e006"; }

.glyphicon-star-empty:before {
  content: "\e007"; }

.glyphicon-user:before {
  content: "\e008"; }

.glyphicon-film:before {
  content: "\e009"; }

.glyphicon-th-large:before {
  content: "\e010"; }

.glyphicon-th:before {
  content: "\e011"; }

.glyphicon-th-list:before {
  content: "\e012"; }

.glyphicon-ok:before {
  content: "\e013"; }

.glyphicon-remove:before {
  content: "\e014"; }

.glyphicon-zoom-in:before {
  content: "\e015"; }

.glyphicon-zoom-out:before {
  content: "\e016"; }

.glyphicon-off:before {
  content: "\e017"; }

.glyphicon-signal:before {
  content: "\e018"; }

.glyphicon-cog:before {
  content: "\e019"; }

.glyphicon-trash:before {
  content: "\e020"; }

.glyphicon-home:before {
  content: "\e021"; }

.glyphicon-file:before {
  content: "\e022"; }

.glyphicon-time:before {
  content: "\e023"; }

.glyphicon-road:before {
  content: "\e024"; }

.glyphicon-download-alt:before {
  content: "\e025"; }

.glyphicon-download:before {
  content: "\e026"; }

.glyphicon-upload:before {
  content: "\e027"; }

.glyphicon-inbox:before {
  content: "\e028"; }

.glyphicon-play-circle:before {
  content: "\e029"; }

.glyphicon-repeat:before {
  content: "\e030"; }

.glyphicon-refresh:before {
  content: "\e031"; }

.glyphicon-list-alt:before {
  content: "\e032"; }

.glyphicon-lock:before {
  content: "\e033"; }

.glyphicon-flag:before {
  content: "\e034"; }

.glyphicon-headphones:before {
  content: "\e035"; }

.glyphicon-volume-off:before {
  content: "\e036"; }

.glyphicon-volume-down:before {
  content: "\e037"; }

.glyphicon-volume-up:before {
  content: "\e038"; }

.glyphicon-qrcode:before {
  content: "\e039"; }

.glyphicon-barcode:before {
  content: "\e040"; }

.glyphicon-tag:before {
  content: "\e041"; }

.glyphicon-tags:before {
  content: "\e042"; }

.glyphicon-book:before {
  content: "\e043"; }

.glyphicon-bookmark:before {
  content: "\e044"; }

.glyphicon-print:before {
  content: "\e045"; }

.glyphicon-camera:before {
  content: "\e046"; }

.glyphicon-font:before {
  content: "\e047"; }

.glyphicon-bold:before {
  content: "\e048"; }

.glyphicon-italic:before {
  content: "\e049"; }

.glyphicon-text-height:before {
  content: "\e050"; }

.glyphicon-text-width:before {
  content: "\e051"; }

.glyphicon-align-left:before {
  content: "\e052"; }

.glyphicon-align-center:before {
  content: "\e053"; }

.glyphicon-align-right:before {
  content: "\e054"; }

.glyphicon-align-justify:before {
  content: "\e055"; }

.glyphicon-list:before {
  content: "\e056"; }

.glyphicon-indent-left:before {
  content: "\e057"; }

.glyphicon-indent-right:before {
  content: "\e058"; }

.glyphicon-facetime-video:before {
  content: "\e059"; }

.glyphicon-picture:before {
  content: "\e060"; }

.glyphicon-map-marker:before {
  content: "\e062"; }

.glyphicon-adjust:before {
  content: "\e063"; }

.glyphicon-tint:before {
  content: "\e064"; }

.glyphicon-edit:before {
  content: "\e065"; }

.glyphicon-share:before {
  content: "\e066"; }

.glyphicon-check:before {
  content: "\e067"; }

.glyphicon-move:before {
  content: "\e068"; }

.glyphicon-step-backward:before {
  content: "\e069"; }

.glyphicon-fast-backward:before {
  content: "\e070"; }

.glyphicon-backward:before {
  content: "\e071"; }

.glyphicon-play:before {
  content: "\e072"; }

.glyphicon-pause:before {
  content: "\e073"; }

.glyphicon-stop:before {
  content: "\e074"; }

.glyphicon-forward:before {
  content: "\e075"; }

.glyphicon-fast-forward:before {
  content: "\e076"; }

.glyphicon-step-forward:before {
  content: "\e077"; }

.glyphicon-eject:before {
  content: "\e078"; }

.glyphicon-chevron-left:before {
  content: "\e079"; }

.glyphicon-chevron-right:before {
  content: "\e080"; }

.glyphicon-plus-sign:before {
  content: "\e081"; }

.glyphicon-minus-sign:before {
  content: "\e082"; }

.glyphicon-remove-sign:before {
  content: "\e083"; }

.glyphicon-ok-sign:before {
  content: "\e084"; }

.glyphicon-question-sign:before {
  content: "\e085"; }

.glyphicon-info-sign:before {
  content: "\e086"; }

.glyphicon-screenshot:before {
  content: "\e087"; }

.glyphicon-remove-circle:before {
  content: "\e088"; }

.glyphicon-ok-circle:before {
  content: "\e089"; }

.glyphicon-ban-circle:before {
  content: "\e090"; }

.glyphicon-arrow-left:before {
  content: "\e091"; }

.glyphicon-arrow-right:before {
  content: "\e092"; }

.glyphicon-arrow-up:before {
  content: "\e093"; }

.glyphicon-arrow-down:before {
  content: "\e094"; }

.glyphicon-share-alt:before {
  content: "\e095"; }

.glyphicon-resize-full:before {
  content: "\e096"; }

.glyphicon-resize-small:before {
  content: "\e097"; }

.glyphicon-exclamation-sign:before {
  content: "\e101"; }

.glyphicon-gift:before {
  content: "\e102"; }

.glyphicon-leaf:before {
  content: "\e103"; }

.glyphicon-fire:before {
  content: "\e104"; }

.glyphicon-eye-open:before {
  content: "\e105"; }

.glyphicon-eye-close:before {
  content: "\e106"; }

.glyphicon-warning-sign:before {
  content: "\e107"; }

.glyphicon-plane:before {
  content: "\e108"; }

.glyphicon-calendar:before {
  content: "\e109"; }

.glyphicon-random:before {
  content: "\e110"; }

.glyphicon-comment:before {
  content: "\e111"; }

.glyphicon-magnet:before {
  content: "\e112"; }

.glyphicon-chevron-up:before {
  content: "\e113"; }

.glyphicon-chevron-down:before {
  content: "\e114"; }

.glyphicon-retweet:before {
  content: "\e115"; }

.glyphicon-shopping-cart:before {
  content: "\e116"; }

.glyphicon-folder-close:before {
  content: "\e117"; }

.glyphicon-folder-open:before {
  content: "\e118"; }

.glyphicon-resize-vertical:before {
  content: "\e119"; }

.glyphicon-resize-horizontal:before {
  content: "\e120"; }

.glyphicon-hdd:before {
  content: "\e121"; }

.glyphicon-bullhorn:before {
  content: "\e122"; }

.glyphicon-bell:before {
  content: "\e123"; }

.glyphicon-certificate:before {
  content: "\e124"; }

.glyphicon-thumbs-up:before {
  content: "\e125"; }

.glyphicon-thumbs-down:before {
  content: "\e126"; }

.glyphicon-hand-right:before {
  content: "\e127"; }

.glyphicon-hand-left:before {
  content: "\e128"; }

.glyphicon-hand-up:before {
  content: "\e129"; }

.glyphicon-hand-down:before {
  content: "\e130"; }

.glyphicon-circle-arrow-right:before {
  content: "\e131"; }

.glyphicon-circle-arrow-left:before {
  content: "\e132"; }

.glyphicon-circle-arrow-up:before {
  content: "\e133"; }

.glyphicon-circle-arrow-down:before {
  content: "\e134"; }

.glyphicon-globe:before {
  content: "\e135"; }

.glyphicon-wrench:before {
  content: "\e136"; }

.glyphicon-tasks:before {
  content: "\e137"; }

.glyphicon-filter:before {
  content: "\e138"; }

.glyphicon-briefcase:before {
  content: "\e139"; }

.glyphicon-fullscreen:before {
  content: "\e140"; }

.glyphicon-dashboard:before {
  content: "\e141"; }

.glyphicon-paperclip:before {
  content: "\e142"; }

.glyphicon-heart-empty:before {
  content: "\e143"; }

.glyphicon-link:before {
  content: "\e144"; }

.glyphicon-phone:before {
  content: "\e145"; }

.glyphicon-pushpin:before {
  content: "\e146"; }

.glyphicon-usd:before {
  content: "\e148"; }

.glyphicon-gbp:before {
  content: "\e149"; }

.glyphicon-sort:before {
  content: "\e150"; }

.glyphicon-sort-by-alphabet:before {
  content: "\e151"; }

.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152"; }

.glyphicon-sort-by-order:before {
  content: "\e153"; }

.glyphicon-sort-by-order-alt:before {
  content: "\e154"; }

.glyphicon-sort-by-attributes:before {
  content: "\e155"; }

.glyphicon-sort-by-attributes-alt:before {
  content: "\e156"; }

.glyphicon-unchecked:before {
  content: "\e157"; }

.glyphicon-expand:before {
  content: "\e158"; }

.glyphicon-collapse-down:before {
  content: "\e159"; }

.glyphicon-collapse-up:before {
  content: "\e160"; }

.glyphicon-log-in:before {
  content: "\e161"; }

.glyphicon-flash:before {
  content: "\e162"; }

.glyphicon-log-out:before {
  content: "\e163"; }

.glyphicon-new-window:before {
  content: "\e164"; }

.glyphicon-record:before {
  content: "\e165"; }

.glyphicon-save:before {
  content: "\e166"; }

.glyphicon-open:before {
  content: "\e167"; }

.glyphicon-saved:before {
  content: "\e168"; }

.glyphicon-import:before {
  content: "\e169"; }

.glyphicon-export:before {
  content: "\e170"; }

.glyphicon-send:before {
  content: "\e171"; }

.glyphicon-floppy-disk:before {
  content: "\e172"; }

.glyphicon-floppy-saved:before {
  content: "\e173"; }

.glyphicon-floppy-remove:before {
  content: "\e174"; }

.glyphicon-floppy-save:before {
  content: "\e175"; }

.glyphicon-floppy-open:before {
  content: "\e176"; }

.glyphicon-credit-card:before {
  content: "\e177"; }

.glyphicon-transfer:before {
  content: "\e178"; }

.glyphicon-cutlery:before {
  content: "\e179"; }

.glyphicon-header:before {
  content: "\e180"; }

.glyphicon-compressed:before {
  content: "\e181"; }

.glyphicon-earphone:before {
  content: "\e182"; }

.glyphicon-phone-alt:before {
  content: "\e183"; }

.glyphicon-tower:before {
  content: "\e184"; }

.glyphicon-stats:before {
  content: "\e185"; }

.glyphicon-sd-video:before {
  content: "\e186"; }

.glyphicon-hd-video:before {
  content: "\e187"; }

.glyphicon-subtitles:before {
  content: "\e188"; }

.glyphicon-sound-stereo:before {
  content: "\e189"; }

.glyphicon-sound-dolby:before {
  content: "\e190"; }

.glyphicon-sound-5-1:before {
  content: "\e191"; }

.glyphicon-sound-6-1:before {
  content: "\e192"; }

.glyphicon-sound-7-1:before {
  content: "\e193"; }

.glyphicon-copyright-mark:before {
  content: "\e194"; }

.glyphicon-registration-mark:before {
  content: "\e195"; }

.glyphicon-cloud-download:before {
  content: "\e197"; }

.glyphicon-cloud-upload:before {
  content: "\e198"; }

.glyphicon-tree-conifer:before {
  content: "\e199"; }

.glyphicon-tree-deciduous:before {
  content: "\e200"; }

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333;
  background-color: #fff; }

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit; }

a {
  color: #428bca;
  text-decoration: none; }

a:hover,
a:focus {
  color: #2a6496;
  text-decoration: underline; }

a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px; }

figure {
  margin: 0; }

img {
  vertical-align: middle; }

.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  width: 100% \9;
  max-width: 100%;
  height: auto; }

.img-rounded {
  border-radius: 6px; }

.img-thumbnail {
  display: inline-block;
  width: 100% \9;
  max-width: 100%;
  height: auto;
  padding: 4px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out; }

.img-circle {
  border-radius: 50%; }

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eee; }

.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; }

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit; }

h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #777; }

h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin-top: 20px;
  margin-bottom: 10px; }

h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h1 .small,
.h1 .small,
h2 .small,
.h2 .small,
h3 .small,
.h3 .small {
  font-size: 65%; }

h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 10px;
  margin-bottom: 10px; }

h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small,
h4 .small,
.h4 .small,
h5 .small,
.h5 .small,
h6 .small,
.h6 .small {
  font-size: 75%; }

h1,
.h1 {
  font-size: 36px; }

h2,
.h2 {
  font-size: 30px; }

h3,
.h3 {
  font-size: 24px; }

h4,
.h4 {
  font-size: 18px; }

h5,
.h5 {
  font-size: 14px; }

h6,
.h6 {
  font-size: 12px; }

p {
  margin: 0 0 10px; }

.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4; }

@media (min-width: 768px) {
  .lead {
    font-size: 21px; } }

small,
.small {
  font-size: 85%; }

cite {
  font-style: normal; }

mark,
.mark {
  padding: .2em;
  background-color: #fcf8e3; }

.text-left {
  text-align: left; }

.text-right {
  text-align: right; }

.text-center {
  text-align: center; }

.text-justify {
  text-align: justify; }

.text-nowrap {
  white-space: nowrap; }

.text-lowercase {
  text-transform: lowercase; }

.text-uppercase {
  text-transform: uppercase; }

.text-capitalize {
  text-transform: capitalize; }

.text-muted {
  color: #777; }

.text-primary {
  color: #428bca; }

a.text-primary:hover {
  color: #3071a9; }

.text-success {
  color: #3c763d; }

a.text-success:hover {
  color: #2b542c; }

.text-info {
  color: #31708f; }

a.text-info:hover {
  color: #245269; }

.text-warning {
  color: #8a6d3b; }

a.text-warning:hover {
  color: #66512c; }

.text-danger {
  color: #a94442; }

a.text-danger:hover {
  color: #843534; }

.bg-primary {
  color: #fff;
  background-color: #428bca; }

a.bg-primary:hover {
  background-color: #3071a9; }

.bg-success {
  background-color: #dff0d8; }

a.bg-success:hover {
  background-color: #c1e2b3; }

.bg-info {
  background-color: #d9edf7; }

a.bg-info:hover {
  background-color: #afd9ee; }

.bg-warning {
  background-color: #fcf8e3; }

a.bg-warning:hover {
  background-color: #f7ecb5; }

.bg-danger {
  background-color: #f2dede; }

a.bg-danger:hover {
  background-color: #e4b9b9; }

.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eee; }

ul,
ol {
  margin-top: 0;
  margin-bottom: 10px; }

ul ul,
ol ul,
ul ol,
ol ol {
  margin-bottom: 0; }

.list-unstyled {
  padding-left: 0;
  list-style: none; }

.list-inline {
  padding-left: 0;
  margin-left: -5px;
  list-style: none; }

.list-inline > li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px; }

dl {
  margin-top: 0;
  margin-bottom: 20px; }

dt,
dd {
  line-height: 1.42857143; }

dt {
  font-weight: bold; }

dd {
  margin-left: 0; }

@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    overflow: hidden;
    clear: left;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap; }
  .dl-horizontal dd {
    margin-left: 180px; } }

abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #777; }

.initialism {
  font-size: 90%;
  text-transform: uppercase; }

blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eee; }

blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0; }

blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.42857143;
  color: #777; }

blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: '\2014 \00A0'; }

.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  text-align: right;
  border-right: 5px solid #eee;
  border-left: 0; }

.blockquote-reverse footer:before,
blockquote.pull-right footer:before,
.blockquote-reverse small:before,
blockquote.pull-right small:before,
.blockquote-reverse .small:before,
blockquote.pull-right .small:before {
  content: ''; }

.blockquote-reverse footer:after,
blockquote.pull-right footer:after,
.blockquote-reverse small:after,
blockquote.pull-right small:after,
.blockquote-reverse .small:after,
blockquote.pull-right .small:after {
  content: '\00A0 \2014'; }

blockquote:before,
blockquote:after {
  content: ""; }

address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857143; }

code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace; }

code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px; }

kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); }

kbd kbd {
  padding: 0;
  font-size: 100%;
  -webkit-box-shadow: none;
  box-shadow: none; }

pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857143;
  color: #333;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px; }

pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0; }

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll; }

.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }

@media (min-width: 768px) {
  .container {
    width: 750px; } }

@media (min-width: 992px) {
  .container {
    width: 970px; } }

@media (min-width: 1200px) {
  .container {
    width: 1170px; } }

.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }

.row {
  margin-right: -15px;
  margin-left: -15px; }

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px; }

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left; }

.col-xs-12 {
  width: 100%; }

.col-xs-11 {
  width: 91.66666667%; }

.col-xs-10 {
  width: 83.33333333%; }

.col-xs-9 {
  width: 75%; }

.col-xs-8 {
  width: 66.66666667%; }

.col-xs-7 {
  width: 58.33333333%; }

.col-xs-6 {
  width: 50%; }

.col-xs-5 {
  width: 41.66666667%; }

.col-xs-4 {
  width: 33.33333333%; }

.col-xs-3 {
  width: 25%; }

.col-xs-2 {
  width: 16.66666667%; }

.col-xs-1 {
  width: 8.33333333%; }

.col-xs-pull-12 {
  right: 100%; }

.col-xs-pull-11 {
  right: 91.66666667%; }

.col-xs-pull-10 {
  right: 83.33333333%; }

.col-xs-pull-9 {
  right: 75%; }

.col-xs-pull-8 {
  right: 66.66666667%; }

.col-xs-pull-7 {
  right: 58.33333333%; }

.col-xs-pull-6 {
  right: 50%; }

.col-xs-pull-5 {
  right: 41.66666667%; }

.col-xs-pull-4 {
  right: 33.33333333%; }

.col-xs-pull-3 {
  right: 25%; }

.col-xs-pull-2 {
  right: 16.66666667%; }

.col-xs-pull-1 {
  right: 8.33333333%; }

.col-xs-pull-0 {
  right: auto; }

.col-xs-push-12 {
  left: 100%; }

.col-xs-push-11 {
  left: 91.66666667%; }

.col-xs-push-10 {
  left: 83.33333333%; }

.col-xs-push-9 {
  left: 75%; }

.col-xs-push-8 {
  left: 66.66666667%; }

.col-xs-push-7 {
  left: 58.33333333%; }

.col-xs-push-6 {
  left: 50%; }

.col-xs-push-5 {
  left: 41.66666667%; }

.col-xs-push-4 {
  left: 33.33333333%; }

.col-xs-push-3 {
  left: 25%; }

.col-xs-push-2 {
  left: 16.66666667%; }

.col-xs-push-1 {
  left: 8.33333333%; }

.col-xs-push-0 {
  left: auto; }

.col-xs-offset-12 {
  margin-left: 100%; }

.col-xs-offset-11 {
  margin-left: 91.66666667%; }

.col-xs-offset-10 {
  margin-left: 83.33333333%; }

.col-xs-offset-9 {
  margin-left: 75%; }

.col-xs-offset-8 {
  margin-left: 66.66666667%; }

.col-xs-offset-7 {
  margin-left: 58.33333333%; }

.col-xs-offset-6 {
  margin-left: 50%; }

.col-xs-offset-5 {
  margin-left: 41.66666667%; }

.col-xs-offset-4 {
  margin-left: 33.33333333%; }

.col-xs-offset-3 {
  margin-left: 25%; }

.col-xs-offset-2 {
  margin-left: 16.66666667%; }

.col-xs-offset-1 {
  margin-left: 8.33333333%; }

.col-xs-offset-0 {
  margin-left: 0; }

@media (min-width: 768px) {
  .col-sm-1, .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-sm-10, .col-sm-11, .col-sm-12 {
    float: left; }
  .col-sm-12 {
    width: 100%; }
  .col-sm-11 {
    width: 91.66666667%; }
  .col-sm-10 {
    width: 83.33333333%; }
  .col-sm-9 {
    width: 75%; }
  .col-sm-8 {
    width: 66.66666667%; }
  .col-sm-7 {
    width: 58.33333333%; }
  .col-sm-6 {
    width: 50%; }
  .col-sm-5 {
    width: 41.66666667%; }
  .col-sm-4 {
    width: 33.33333333%; }
  .col-sm-3 {
    width: 25%; }
  .col-sm-2 {
    width: 16.66666667%; }
  .col-sm-1 {
    width: 8.33333333%; }
  .col-sm-pull-12 {
    right: 100%; }
  .col-sm-pull-11 {
    right: 91.66666667%; }
  .col-sm-pull-10 {
    right: 83.33333333%; }
  .col-sm-pull-9 {
    right: 75%; }
  .col-sm-pull-8 {
    right: 66.66666667%; }
  .col-sm-pull-7 {
    right: 58.33333333%; }
  .col-sm-pull-6 {
    right: 50%; }
  .col-sm-pull-5 {
    right: 41.66666667%; }
  .col-sm-pull-4 {
    right: 33.33333333%; }
  .col-sm-pull-3 {
    right: 25%; }
  .col-sm-pull-2 {
    right: 16.66666667%; }
  .col-sm-pull-1 {
    right: 8.33333333%; }
  .col-sm-pull-0 {
    right: auto; }
  .col-sm-push-12 {
    left: 100%; }
  .col-sm-push-11 {
    left: 91.66666667%; }
  .col-sm-push-10 {
    left: 83.33333333%; }
  .col-sm-push-9 {
    left: 75%; }
  .col-sm-push-8 {
    left: 66.66666667%; }
  .col-sm-push-7 {
    left: 58.33333333%; }
  .col-sm-push-6 {
    left: 50%; }
  .col-sm-push-5 {
    left: 41.66666667%; }
  .col-sm-push-4 {
    left: 33.33333333%; }
  .col-sm-push-3 {
    left: 25%; }
  .col-sm-push-2 {
    left: 16.66666667%; }
  .col-sm-push-1 {
    left: 8.33333333%; }
  .col-sm-push-0 {
    left: auto; }
  .col-sm-offset-12 {
    margin-left: 100%; }
  .col-sm-offset-11 {
    margin-left: 91.66666667%; }
  .col-sm-offset-10 {
    margin-left: 83.33333333%; }
  .col-sm-offset-9 {
    margin-left: 75%; }
  .col-sm-offset-8 {
    margin-left: 66.66666667%; }
  .col-sm-offset-7 {
    margin-left: 58.33333333%; }
  .col-sm-offset-6 {
    margin-left: 50%; }
  .col-sm-offset-5 {
    margin-left: 41.66666667%; }
  .col-sm-offset-4 {
    margin-left: 33.33333333%; }
  .col-sm-offset-3 {
    margin-left: 25%; }
  .col-sm-offset-2 {
    margin-left: 16.66666667%; }
  .col-sm-offset-1 {
    margin-left: 8.33333333%; }
  .col-sm-offset-0 {
    margin-left: 0; } }

@media (min-width: 992px) {
  .col-md-1, .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-md-10, .col-md-11, .col-md-12 {
    float: left; }
  .col-md-12 {
    width: 100%; }
  .col-md-11 {
    width: 91.66666667%; }
  .col-md-10 {
    width: 83.33333333%; }
  .col-md-9 {
    width: 75%; }
  .col-md-8 {
    width: 66.66666667%; }
  .col-md-7 {
    width: 58.33333333%; }
  .col-md-6 {
    width: 50%; }
  .col-md-5 {
    width: 41.66666667%; }
  .col-md-4 {
    width: 33.33333333%; }
  .col-md-3 {
    width: 25%; }
  .col-md-2 {
    width: 16.66666667%; }
  .col-md-1 {
    width: 8.33333333%; }
  .col-md-pull-12 {
    right: 100%; }
  .col-md-pull-11 {
    right: 91.66666667%; }
  .col-md-pull-10 {
    right: 83.33333333%; }
  .col-md-pull-9 {
    right: 75%; }
  .col-md-pull-8 {
    right: 66.66666667%; }
  .col-md-pull-7 {
    right: 58.33333333%; }
  .col-md-pull-6 {
    right: 50%; }
  .col-md-pull-5 {
    right: 41.66666667%; }
  .col-md-pull-4 {
    right: 33.33333333%; }
  .col-md-pull-3 {
    right: 25%; }
  .col-md-pull-2 {
    right: 16.66666667%; }
  .col-md-pull-1 {
    right: 8.33333333%; }
  .col-md-pull-0 {
    right: auto; }
  .col-md-push-12 {
    left: 100%; }
  .col-md-push-11 {
    left: 91.66666667%; }
  .col-md-push-10 {
    left: 83.33333333%; }
  .col-md-push-9 {
    left: 75%; }
  .col-md-push-8 {
    left: 66.66666667%; }
  .col-md-push-7 {
    left: 58.33333333%; }
  .col-md-push-6 {
    left: 50%; }
  .col-md-push-5 {
    left: 41.66666667%; }
  .col-md-push-4 {
    left: 33.33333333%; }
  .col-md-push-3 {
    left: 25%; }
  .col-md-push-2 {
    left: 16.66666667%; }
  .col-md-push-1 {
    left: 8.33333333%; }
  .col-md-push-0 {
    left: auto; }
  .col-md-offset-12 {
    margin-left: 100%; }
  .col-md-offset-11 {
    margin-left: 91.66666667%; }
  .col-md-offset-10 {
    margin-left: 83.33333333%; }
  .col-md-offset-9 {
    margin-left: 75%; }
  .col-md-offset-8 {
    margin-left: 66.66666667%; }
  .col-md-offset-7 {
    margin-left: 58.33333333%; }
  .col-md-offset-6 {
    margin-left: 50%; }
  .col-md-offset-5 {
    margin-left: 41.66666667%; }
  .col-md-offset-4 {
    margin-left: 33.33333333%; }
  .col-md-offset-3 {
    margin-left: 25%; }
  .col-md-offset-2 {
    margin-left: 16.66666667%; }
  .col-md-offset-1 {
    margin-left: 8.33333333%; }
  .col-md-offset-0 {
    margin-left: 0; } }

@media (min-width: 1200px) {
  .col-lg-1, .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-lg-10, .col-lg-11, .col-lg-12 {
    float: left; }
  .col-lg-12 {
    width: 100%; }
  .col-lg-11 {
    width: 91.66666667%; }
  .col-lg-10 {
    width: 83.33333333%; }
  .col-lg-9 {
    width: 75%; }
  .col-lg-8 {
    width: 66.66666667%; }
  .col-lg-7 {
    width: 58.33333333%; }
  .col-lg-6 {
    width: 50%; }
  .col-lg-5 {
    width: 41.66666667%; }
  .col-lg-4 {
    width: 33.33333333%; }
  .col-lg-3 {
    width: 25%; }
  .col-lg-2 {
    width: 16.66666667%; }
  .col-lg-1 {
    width: 8.33333333%; }
  .col-lg-pull-12 {
    right: 100%; }
  .col-lg-pull-11 {
    right: 91.66666667%; }
  .col-lg-pull-10 {
    right: 83.33333333%; }
  .col-lg-pull-9 {
    right: 75%; }
  .col-lg-pull-8 {
    right: 66.66666667%; }
  .col-lg-pull-7 {
    right: 58.33333333%; }
  .col-lg-pull-6 {
    right: 50%; }
  .col-lg-pull-5 {
    right: 41.66666667%; }
  .col-lg-pull-4 {
    right: 33.33333333%; }
  .col-lg-pull-3 {
    right: 25%; }
  .col-lg-pull-2 {
    right: 16.66666667%; }
  .col-lg-pull-1 {
    right: 8.33333333%; }
  .col-lg-pull-0 {
    right: auto; }
  .col-lg-push-12 {
    left: 100%; }
  .col-lg-push-11 {
    left: 91.66666667%; }
  .col-lg-push-10 {
    left: 83.33333333%; }
  .col-lg-push-9 {
    left: 75%; }
  .col-lg-push-8 {
    left: 66.66666667%; }
  .col-lg-push-7 {
    left: 58.33333333%; }
  .col-lg-push-6 {
    left: 50%; }
  .col-lg-push-5 {
    left: 41.66666667%; }
  .col-lg-push-4 {
    left: 33.33333333%; }
  .col-lg-push-3 {
    left: 25%; }
  .col-lg-push-2 {
    left: 16.66666667%; }
  .col-lg-push-1 {
    left: 8.33333333%; }
  .col-lg-push-0 {
    left: auto; }
  .col-lg-offset-12 {
    margin-left: 100%; }
  .col-lg-offset-11 {
    margin-left: 91.66666667%; }
  .col-lg-offset-10 {
    margin-left: 83.33333333%; }
  .col-lg-offset-9 {
    margin-left: 75%; }
  .col-lg-offset-8 {
    margin-left: 66.66666667%; }
  .col-lg-offset-7 {
    margin-left: 58.33333333%; }
  .col-lg-offset-6 {
    margin-left: 50%; }
  .col-lg-offset-5 {
    margin-left: 41.66666667%; }
  .col-lg-offset-4 {
    margin-left: 33.33333333%; }
  .col-lg-offset-3 {
    margin-left: 25%; }
  .col-lg-offset-2 {
    margin-left: 16.66666667%; }
  .col-lg-offset-1 {
    margin-left: 8.33333333%; }
  .col-lg-offset-0 {
    margin-left: 0; } }

table {
  background-color: transparent; }

th {
  text-align: left; }

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px; }

.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #ddd; }

.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd; }

.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
  border-top: 0; }

.table > tbody + tbody {
  border-top: 2px solid #ddd; }

.table .table {
  background-color: #fff; }

.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
  padding: 5px; }

.table-bordered {
  border: 1px solid #ddd; }

.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ddd; }

.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px; }

.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
  background-color: #f9f9f9; }

.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th {
  background-color: #f5f5f5; }

table col[class*="col-"] {
  position: static;
  display: table-column;
  float: none; }

table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  display: table-cell;
  float: none; }

.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5; }

.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8; }

.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
  background-color: #dff0d8; }

.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6; }

.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
  background-color: #d9edf7; }

.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3; }

.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3; }

.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc; }

.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
  background-color: #f2dede; }

.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc; }

@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd; }
  .table-responsive > .table {
    margin-bottom: 0; }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap; }
  .table-responsive > .table-bordered {
    border: 0; }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0; }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0; }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0; } }

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0; }

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333;
  border: 0;
  border-bottom: 1px solid #e5e5e5; }

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold; }

input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal; }

input[type="file"] {
  display: block; }

input[type="range"] {
  display: block;
  width: 100%; }

select[multiple],
select[size] {
  height: auto; }

input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px; }

output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555; }

.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  -o-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; }

.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); }

.form-control::-moz-placeholder {
  color: #777;
  opacity: 1; }

.form-control:-ms-input-placeholder {
  color: #777; }

.form-control::-webkit-input-placeholder {
  color: #777; }

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  cursor: not-allowed;
  background-color: #eee;
  opacity: 1; }

textarea.form-control {
  height: auto; }

input[type="search"] {
  -webkit-appearance: none; }

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  line-height: 34px;
  line-height: 1.42857143 \0; }

input.input-sm[type="date"],
input.input-sm[type="time"],
input.input-sm[type="datetime-local"],
input.input-sm[type="month"] {
  line-height: 30px; }

input.input-lg[type="date"],
input.input-lg[type="time"],
input.input-lg[type="datetime-local"],
input.input-lg[type="month"] {
  line-height: 46px; }

.form-group {
  margin-bottom: 15px; }

.radio,
.checkbox {
  position: relative;
  display: block;
  min-height: 20px;
  margin-top: 10px;
  margin-bottom: 10px; }

.radio label,
.checkbox label {
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer; }

.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-top: 4px \9;
  margin-left: -20px; }

.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px; }

.radio-inline,
.checkbox-inline {
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  vertical-align: middle;
  cursor: pointer; }

.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px; }

input[type="radio"][disabled],
input[type="checkbox"][disabled],
input.disabled[type="radio"],
input.disabled[type="checkbox"],
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
  cursor: not-allowed; }

.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed; }

.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
  cursor: not-allowed; }

.form-control-static {
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0; }

.form-control-static.input-lg,
.form-control-static.input-sm {
  padding-right: 0;
  padding-left: 0; }

.input-sm,
.form-horizontal .form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

select.input-sm {
  height: 30px;
  line-height: 30px; }

textarea.input-sm,
select.input-sm[multiple] {
  height: auto; }

.input-lg,
.form-horizontal .form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px; }

select.input-lg {
  height: 46px;
  line-height: 46px; }

textarea.input-lg,
select.input-lg[multiple] {
  height: auto; }

.has-feedback {
  position: relative; }

.has-feedback .form-control {
  padding-right: 42.5px; }

.form-control-feedback {
  position: absolute;
  top: 25px;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center; }

.input-lg + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px; }

.input-sm + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px; }

.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline {
  color: #3c763d; }

.has-success .form-control {
  border-color: #3c763d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }

.has-success .form-control:focus {
  border-color: #2b542c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; }

.has-success .input-group-addon {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #3c763d; }

.has-success .form-control-feedback {
  color: #3c763d; }

.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline {
  color: #8a6d3b; }

.has-warning .form-control {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }

.has-warning .form-control:focus {
  border-color: #66512c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; }

.has-warning .input-group-addon {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #8a6d3b; }

.has-warning .form-control-feedback {
  color: #8a6d3b; }

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline {
  color: #a94442; }

.has-error .form-control {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }

.has-error .form-control:focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; }

.has-error .input-group-addon {
  color: #a94442;
  background-color: #f2dede;
  border-color: #a94442; }

.has-error .form-control-feedback {
  color: #a94442; }

.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0; }

.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373; }

@media (min-width: 768px) {
  .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 .input-group {
    display: inline-table;
    vertical-align: middle; }
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .form-inline .input-group .form-control {
    width: auto; }
  .form-inline .input-group > .form-control {
    width: 100%; }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle; }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle; }
  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0; }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0; }
  .form-inline .has-feedback .form-control-feedback {
    top: 0; } }

.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  padding-top: 7px;
  margin-top: 0;
  margin-bottom: 0; }

.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 27px; }

.form-horizontal .form-group {
  margin-right: -15px;
  margin-left: -15px; }

@media (min-width: 768px) {
  .form-horizontal .control-label {
    padding-top: 7px;
    margin-bottom: 0;
    text-align: right; } }

.form-horizontal .has-feedback .form-control-feedback {
  top: 0;
  right: 15px; }

@media (min-width: 768px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 14.3px; } }

@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px; } }

.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.42857143;
  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;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px; }

.btn:focus,
.btn:active:focus,
.btn.active:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px; }

.btn:hover,
.btn:focus {
  color: #333;
  text-decoration: none; }

.btn:active,
.btn.active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  pointer-events: none;
  cursor: not-allowed;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
  opacity: .65; }

.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc; }

.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad; }

.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  background-image: none; }

.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default.active[disabled],
fieldset[disabled] .btn-default.active {
  background-color: #fff;
  border-color: #ccc; }

.btn-default .badge {
  color: #fff;
  background-color: #333; }

.btn-primary {
  color: #fff;
  background-color: #428bca;
  border-color: #357ebd; }

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #3071a9;
  border-color: #285e8e; }

.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  background-image: none; }

.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary.active[disabled],
fieldset[disabled] .btn-primary.active {
  background-color: #428bca;
  border-color: #357ebd; }

.btn-primary .badge {
  color: #428bca;
  background-color: #fff; }

.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c; }

.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  color: #fff;
  background-color: #449d44;
  border-color: #398439; }

.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  background-image: none; }

.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success.active[disabled],
fieldset[disabled] .btn-success.active {
  background-color: #5cb85c;
  border-color: #4cae4c; }

.btn-success .badge {
  color: #5cb85c;
  background-color: #fff; }

.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da; }

.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc; }

.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  background-image: none; }

.btn-info.disabled,
.btn-info[disabled],
fieldset[disabled] .btn-info,
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled:active,
.btn-info[disabled]:active,
fieldset[disabled] .btn-info:active,
.btn-info.disabled.active,
.btn-info.active[disabled],
fieldset[disabled] .btn-info.active {
  background-color: #5bc0de;
  border-color: #46b8da; }

.btn-info .badge {
  color: #5bc0de;
  background-color: #fff; }

.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236; }

.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512; }

.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  background-image: none; }

.btn-warning.disabled,
.btn-warning[disabled],
fieldset[disabled] .btn-warning,
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled:active,
.btn-warning[disabled]:active,
fieldset[disabled] .btn-warning:active,
.btn-warning.disabled.active,
.btn-warning.active[disabled],
fieldset[disabled] .btn-warning.active {
  background-color: #f0ad4e;
  border-color: #eea236; }

.btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff; }

.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a; }

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925; }

.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  background-image: none; }

.btn-danger.disabled,
.btn-danger[disabled],
fieldset[disabled] .btn-danger,
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled:active,
.btn-danger[disabled]:active,
fieldset[disabled] .btn-danger:active,
.btn-danger.disabled.active,
.btn-danger.active[disabled],
fieldset[disabled] .btn-danger.active {
  background-color: #d9534f;
  border-color: #d43f3a; }

.btn-danger .badge {
  color: #d9534f;
  background-color: #fff; }

.btn-link {
  font-weight: normal;
  color: #428bca;
  cursor: pointer;
  border-radius: 0; }

.btn-link,
.btn-link:active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none; }

.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  border-color: transparent; }

.btn-link:hover,
.btn-link:focus {
  color: #2a6496;
  text-decoration: underline;
  background-color: transparent; }

.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
  color: #777;
  text-decoration: none; }

.btn-lg,
.btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px; }

.btn-sm,
.btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

.btn-xs,
.btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

.btn-block {
  display: block;
  width: 100%; }

.btn-block + .btn-block {
  margin-top: 5px; }

input.btn-block[type="submit"],
input.btn-block[type="reset"],
input.btn-block[type="button"] {
  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; }

tr.collapse.in {
  display: table-row; }

tbody.collapse.in {
  display: table-row-group; }

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height .35s ease;
  -o-transition: height .35s ease;
  transition: height .35s ease; }

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent; }

.dropdown {
  position: relative; }

.dropdown-toggle:focus {
  outline: 0; }

.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: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); }

.dropdown-menu.pull-right {
  right: 0;
  left: auto; }

.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5; }

.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap; }

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  color: #262626;
  text-decoration: none;
  background-color: #f5f5f5; }

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  background-color: #428bca;
  outline: 0; }

.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #777; }

.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  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: 3px 20px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #777;
  white-space: nowrap; }

.dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990; }

.pull-right > .dropdown-menu {
  right: 0;
  left: auto; }

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  content: "";
  border-top: 0;
  border-bottom: 4px solid; }

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 1px; }

@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto; }
  .navbar-right .dropdown-menu-left {
    right: auto;
    left: 0; } }

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle; }

.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left; }

.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
  z-index: 2; }

.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus {
  outline: 0; }

.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: -5px; }

.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left; }

.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px; }

.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-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-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 > .btn:last-child,
.btn-group > .btn-group:first-child > .dropdown-toggle {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.btn-group > .btn-group:last-child > .btn:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0; }

.btn-group > .btn + .dropdown-toggle {
  padding-right: 8px;
  padding-left: 8px; }

.btn-group > .btn-lg + .dropdown-toggle {
  padding-right: 12px;
  padding-left: 12px; }

.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }

.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
  box-shadow: none; }

.btn .caret {
  margin-left: 0; }

.btn-lg .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0; }

.dropup .btn-lg .caret {
  border-width: 0 5px 5px; }

.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 > .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-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 4px; }

.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-left-radius: 0;
  border-top-right-radius: 0; }

.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate; }

.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  display: table-cell;
  float: none;
  width: 1%; }

.btn-group-justified > .btn-group .btn {
  width: 100%; }

.btn-group-justified > .btn-group .dropdown-menu {
  left: auto; }

[data-toggle="buttons"] > .btn > input[type="radio"],
[data-toggle="buttons"] > .btn > input[type="checkbox"] {
  position: absolute;
  z-index: -1;
  filter: alpha(opacity=0);
  opacity: 0; }

.input-group {
  position: relative;
  display: table;
  border-collapse: separate; }

.input-group[class*="col-"] {
  float: none;
  padding-right: 0;
  padding-left: 0; }

.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0; }

.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px; }

select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  line-height: 46px; }

textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn,
select.input-group-lg[multiple] > .form-control,
select.input-group-lg[multiple] > .input-group-addon,
select.input-group-lg[multiple] > .input-group-btn > .btn {
  height: auto; }

.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  line-height: 30px; }

textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn,
select.input-group-sm[multiple] > .form-control,
select.input-group-sm[multiple] > .input-group-addon,
select.input-group-sm[multiple] > .input-group-btn > .btn {
  height: auto; }

.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell; }

.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control: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: 6px 12px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #555;
  text-align: center;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 4px; }

.input-group-addon.input-sm {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px; }

.input-group-addon.input-lg {
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 6px; }

.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0; }

.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.input-group-addon:first-child {
  border-right: 0; }

.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

.input-group-addon:last-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:hover,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:active {
  z-index: 2; }

.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px; }

.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  margin-left: -1px; }

.nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none; }

.nav > li {
  position: relative;
  display: block; }

.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px; }

.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
  background-color: #eee; }

.nav > li.disabled > a {
  color: #777; }

.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
  color: #777;
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent; }

.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: #eee;
  border-color: #428bca; }

.nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5; }

.nav > li > a > img {
  max-width: none; }

.nav-tabs {
  border-bottom: 1px solid #ddd; }

.nav-tabs > li {
  float: left;
  margin-bottom: -1px; }

.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.42857143;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0; }

.nav-tabs > li > a:hover {
  border-color: #eee #eee #ddd; }

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #555;
  cursor: default;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent; }

.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0; }

.nav-tabs.nav-justified > li {
  float: none; }

.nav-tabs.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center; }

.nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto; }

@media (min-width: 768px) {
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%; }
  .nav-tabs.nav-justified > li > a {
    margin-bottom: 0; } }

.nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px; }

.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #ddd; }

@media (min-width: 768px) {
  .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0; }
  .nav-tabs.nav-justified > .active > a,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #fff; } }

.nav-pills > li {
  float: left; }

.nav-pills > li > a {
  border-radius: 4px; }

.nav-pills > li + li {
  margin-left: 2px; }

.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #428bca; }

.nav-stacked > li {
  float: none; }

.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0; }

.nav-justified {
  width: 100%; }

.nav-justified > li {
  float: none; }

.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center; }

.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto; }

@media (min-width: 768px) {
  .nav-justified > li {
    display: table-cell;
    width: 1%; }
  .nav-justified > li > a {
    margin-bottom: 0; } }

.nav-tabs-justified {
  border-bottom: 0; }

.nav-tabs-justified > li > a {
  margin-right: 0;
  border-radius: 4px; }

.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
  border: 1px solid #ddd; }

@media (min-width: 768px) {
  .nav-tabs-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0; }
  .nav-tabs-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus {
    border-bottom-color: #fff; } }

.tab-content > .tab-pane {
  display: none; }

.tab-content > .active {
  display: block; }

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent; }

@media (min-width: 768px) {
  .navbar {
    border-radius: 4px; } }

@media (min-width: 768px) {
  .navbar-header {
    float: left; } }

.navbar-collapse {
  padding-right: 15px;
  padding-left: 15px;
  overflow-x: visible;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); }

.navbar-collapse.in {
  overflow-y: auto; }

@media (min-width: 768px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important; }
  .navbar-collapse.in {
    overflow-y: visible; }
  .navbar-fixed-top .navbar-collapse,
  .navbar-static-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    padding-right: 0;
    padding-left: 0; } }

.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px; }

@media (max-width: 480px) and (orientation: landscape) {
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px; } }

.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px; }

@media (min-width: 768px) {
  .container > .navbar-header,
  .container-fluid > .navbar-header,
  .container > .navbar-collapse,
  .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0; } }

.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px; }

@media (min-width: 768px) {
  .navbar-static-top {
    border-radius: 0; } }

.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
  -webkit-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

@media (min-width: 768px) {
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    border-radius: 0; } }

.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px; }

.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0; }

.navbar-brand {
  float: left;
  height: 50px;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px; }

.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none; }

@media (min-width: 768px) {
  .navbar > .container .navbar-brand,
  .navbar > .container-fluid .navbar-brand {
    margin-left: -15px; } }

.navbar-toggle {
  position: relative;
  float: right;
  padding: 9px 10px;
  margin-top: 8px;
  margin-right: 15px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px; }

.navbar-toggle:focus {
  outline: 0; }

.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px; }

.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px; }

@media (min-width: 768px) {
  .navbar-toggle {
    display: none; } }

.navbar-nav {
  margin: 7.5px -15px; }

.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px; }

@media (max-width: 767px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px; }
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px; }
  .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none; } }

@media (min-width: 768px) {
  .navbar-nav {
    float: left;
    margin: 0; }
  .navbar-nav > li {
    float: left; }
  .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px; }
  .navbar-nav.navbar-right:last-child {
    margin-right: -15px; } }

@media (min-width: 768px) {
  .navbar-left {
    float: left !important; }
  .navbar-right {
    float: right !important; } }

.navbar-form {
  padding: 10px 15px;
  margin-top: 8px;
  margin-right: -15px;
  margin-bottom: 8px;
  margin-left: -15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); }

@media (min-width: 768px) {
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle; }
  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle; }
  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle; }
  .navbar-form .input-group .input-group-addon,
  .navbar-form .input-group .input-group-btn,
  .navbar-form .input-group .form-control {
    width: auto; }
  .navbar-form .input-group > .form-control {
    width: 100%; }
  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle; }
  .navbar-form .radio,
  .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle; }
  .navbar-form .radio label,
  .navbar-form .checkbox label {
    padding-left: 0; }
  .navbar-form .radio input[type="radio"],
  .navbar-form .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0; }
  .navbar-form .has-feedback .form-control-feedback {
    top: 0; } }

@media (max-width: 767px) {
  .navbar-form .form-group {
    margin-bottom: 5px; } }

@media (min-width: 768px) {
  .navbar-form {
    width: auto;
    padding-top: 0;
    padding-bottom: 0;
    margin-right: 0;
    margin-left: 0;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .navbar-form.navbar-right:last-child {
    margin-right: -15px; } }

.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px; }

.navbar-btn.btn-sm {
  margin-top: 10px;
  margin-bottom: 10px; }

.navbar-btn.btn-xs {
  margin-top: 14px;
  margin-bottom: 14px; }

.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px; }

@media (min-width: 768px) {
  .navbar-text {
    float: left;
    margin-right: 15px;
    margin-left: 15px; }
  .navbar-text.navbar-right:last-child {
    margin-right: 0; } }

.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7; }

.navbar-default .navbar-brand {
  color: #777; }

.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent; }

.navbar-default .navbar-text {
  color: #777; }

.navbar-default .navbar-nav > li > a {
  color: #777; }

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #333;
  background-color: transparent; }

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #555;
  background-color: #e7e7e7; }

.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent; }

.navbar-default .navbar-toggle {
  border-color: #ddd; }

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #ddd; }

.navbar-default .navbar-toggle .icon-bar {
  background-color: #888; }

.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e7e7e7; }

.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
  color: #555;
  background-color: #e7e7e7; }

@media (max-width: 767px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777; }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333;
    background-color: transparent; }
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555;
    background-color: #e7e7e7; }
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent; } }

.navbar-default .navbar-link {
  color: #777; }

.navbar-default .navbar-link:hover {
  color: #333; }

.navbar-default .btn-link {
  color: #777; }

.navbar-default .btn-link:hover,
.navbar-default .btn-link:focus {
  color: #333; }

.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:hover,
.navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:focus {
  color: #ccc; }

.navbar-inverse {
  background-color: #222;
  border-color: #080808; }

.navbar-inverse .navbar-brand {
  color: #777; }

.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent; }

.navbar-inverse .navbar-text {
  color: #777; }

.navbar-inverse .navbar-nav > li > a {
  color: #777; }

.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
  color: #fff;
  background-color: transparent; }

.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #080808; }

.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444;
  background-color: transparent; }

.navbar-inverse .navbar-toggle {
  border-color: #333; }

.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
  background-color: #333; }

.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff; }

.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #101010; }

.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
  color: #fff;
  background-color: #080808; }

@media (max-width: 767px) {
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #080808; }
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #080808; }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #777; }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: transparent; }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #080808; }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444;
    background-color: transparent; } }

.navbar-inverse .navbar-link {
  color: #777; }

.navbar-inverse .navbar-link:hover {
  color: #fff; }

.navbar-inverse .btn-link {
  color: #777; }

.navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link:focus {
  color: #fff; }

.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #444; }

.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px; }

.breadcrumb > li {
  display: inline-block; }

.breadcrumb > li + li:before {
  padding: 0 5px;
  color: #ccc;
  content: "/\00a0"; }

.breadcrumb > .active {
  color: #777; }

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px; }

.pagination > li {
  display: inline; }

.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #428bca;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd; }

.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px; }

.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px; }

.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  color: #2a6496;
  background-color: #eee;
  border-color: #ddd; }

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 2;
  color: #fff;
  cursor: default;
  background-color: #428bca;
  border-color: #428bca; }

.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd; }

.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px; }

.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px; }

.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px; }

.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px; }

.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px; }

.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px; }

.pager {
  padding-left: 0;
  margin: 20px 0;
  text-align: center;
  list-style: none; }

.pager li {
  display: inline; }

.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px; }

.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #eee; }

.pager .next > a,
.pager .next > span {
  float: right; }

.pager .previous > a,
.pager .previous > span {
  float: left; }

.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #777;
  cursor: not-allowed;
  background-color: #fff; }

.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em; }

a.label:hover,
a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer; }

.label:empty {
  display: none; }

.btn .label {
  position: relative;
  top: -1px; }

.label-default {
  background-color: #777; }

.label-default[href]:hover,
.label-default[href]:focus {
  background-color: #5e5e5e; }

.label-primary {
  background-color: #428bca; }

.label-primary[href]:hover,
.label-primary[href]:focus {
  background-color: #3071a9; }

.label-success {
  background-color: #5cb85c; }

.label-success[href]:hover,
.label-success[href]:focus {
  background-color: #449d44; }

.label-info {
  background-color: #5bc0de; }

.label-info[href]:hover,
.label-info[href]:focus {
  background-color: #31b0d5; }

.label-warning {
  background-color: #f0ad4e; }

.label-warning[href]:hover,
.label-warning[href]:focus {
  background-color: #ec971f; }

.label-danger {
  background-color: #d9534f; }

.label-danger[href]:hover,
.label-danger[href]:focus {
  background-color: #c9302c; }

.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  background-color: #777;
  border-radius: 10px; }

.badge:empty {
  display: none; }

.btn .badge {
  position: relative;
  top: -1px; }

.btn-xs .badge {
  top: 0;
  padding: 1px 5px; }

a.badge:hover,
a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer; }

a.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
  color: #428bca;
  background-color: #fff; }

.nav-pills > li > a > .badge {
  margin-left: 3px; }

.jumbotron {
  padding: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eee; }

.jumbotron h1,
.jumbotron .h1 {
  color: inherit; }

.jumbotron p {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 200; }

.jumbotron > hr {
  border-top-color: #d5d5d5; }

.container .jumbotron {
  border-radius: 6px; }

.jumbotron .container {
  max-width: 100%; }

@media screen and (min-width: 768px) {
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px; }
  .container .jumbotron {
    padding-right: 60px;
    padding-left: 60px; }
  .jumbotron h1,
  .jumbotron .h1 {
    font-size: 63px; } }

.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out; }

.thumbnail > img,
.thumbnail a > img {
  margin-right: auto;
  margin-left: auto; }

a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #428bca; }

.thumbnail .caption {
  padding: 9px;
  color: #333; }

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px; }

.alert h4 {
  margin-top: 0;
  color: inherit; }

.alert .alert-link {
  font-weight: bold; }

.alert > p,
.alert > ul {
  margin-bottom: 0; }

.alert > p + p {
  margin-top: 5px; }

.alert-dismissable,
.alert-dismissible {
  padding-right: 35px; }

.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit; }

.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6; }

.alert-success hr {
  border-top-color: #c9e2b3; }

.alert-success .alert-link {
  color: #2b542c; }

.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1; }

.alert-info hr {
  border-top-color: #a6e1ec; }

.alert-info .alert-link {
  color: #245269; }

.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc; }

.alert-warning hr {
  border-top-color: #f7e1b5; }

.alert-warning .alert-link {
  color: #66512c; }

.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1; }

.alert-danger hr {
  border-top-color: #e4b9c0; }

.alert-danger .alert-link {
  color: #843534; }

@-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; } }

.progress {
  height: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); }

.progress-bar {
  float: left;
  width: 0;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #428bca;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width .6s ease;
  -o-transition: width .6s ease;
  transition: width .6s ease; }

.progress-striped .progress-bar,
.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: 40px 40px;
  background-size: 40px 40px; }

.progress.active .progress-bar,
.progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  -o-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite; }

.progress-bar[aria-valuenow="1"],
.progress-bar[aria-valuenow="2"] {
  min-width: 30px; }

.progress-bar[aria-valuenow="0"] {
  min-width: 30px;
  color: #777;
  background-color: transparent;
  background-image: none;
  -webkit-box-shadow: none;
  box-shadow: none; }

.progress-bar-success {
  background-color: #5cb85c; }

.progress-striped .progress-bar-success {
  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); }

.progress-bar-info {
  background-color: #5bc0de; }

.progress-striped .progress-bar-info {
  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); }

.progress-bar-warning {
  background-color: #f0ad4e; }

.progress-striped .progress-bar-warning {
  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); }

.progress-bar-danger {
  background-color: #d9534f; }

.progress-striped .progress-bar-danger {
  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); }

.media,
.media-body {
  overflow: hidden;
  zoom: 1; }

.media,
.media .media {
  margin-top: 15px; }

.media:first-child {
  margin-top: 0; }

.media-object {
  display: block; }

.media-heading {
  margin: 0 0 5px; }

.media > .pull-left {
  margin-right: 10px; }

.media > .pull-right {
  margin-left: 10px; }

.media-list {
  padding-left: 0;
  list-style: none; }

.list-group {
  padding-left: 0;
  margin-bottom: 20px; }

.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd; }

.list-group-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px; }

.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px; }

.list-group-item > .badge {
  float: right; }

.list-group-item > .badge + .badge {
  margin-right: 5px; }

a.list-group-item {
  color: #555; }

a.list-group-item .list-group-item-heading {
  color: #333; }

a.list-group-item:hover,
a.list-group-item:focus {
  color: #555;
  text-decoration: none;
  background-color: #f5f5f5; }

.list-group-item.disabled,
.list-group-item.disabled:hover,
.list-group-item.disabled:focus {
  color: #777;
  background-color: #eee; }

.list-group-item.disabled .list-group-item-heading,
.list-group-item.disabled:hover .list-group-item-heading,
.list-group-item.disabled:focus .list-group-item-heading {
  color: inherit; }

.list-group-item.disabled .list-group-item-text,
.list-group-item.disabled:hover .list-group-item-text,
.list-group-item.disabled:focus .list-group-item-text {
  color: #777; }

.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #428bca;
  border-color: #428bca; }

.list-group-item.active .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small,
.list-group-item.active:hover .list-group-item-heading > .small,
.list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit; }

.list-group-item.active .list-group-item-text,
.list-group-item.active:hover .list-group-item-text,
.list-group-item.active:focus .list-group-item-text {
  color: #e1edf7; }

.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8; }

a.list-group-item-success {
  color: #3c763d; }

a.list-group-item-success .list-group-item-heading {
  color: inherit; }

a.list-group-item-success:hover,
a.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6; }

a.list-group-item-success.active,
a.list-group-item-success.active:hover,
a.list-group-item-success.active:focus {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d; }

.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7; }

a.list-group-item-info {
  color: #31708f; }

a.list-group-item-info .list-group-item-heading {
  color: inherit; }

a.list-group-item-info:hover,
a.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3; }

a.list-group-item-info.active,
a.list-group-item-info.active:hover,
a.list-group-item-info.active:focus {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f; }

.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3; }

a.list-group-item-warning {
  color: #8a6d3b; }

a.list-group-item-warning .list-group-item-heading {
  color: inherit; }

a.list-group-item-warning:hover,
a.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc; }

a.list-group-item-warning.active,
a.list-group-item-warning.active:hover,
a.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b; }

.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede; }

a.list-group-item-danger {
  color: #a94442; }

a.list-group-item-danger .list-group-item-heading {
  color: inherit; }

a.list-group-item-danger:hover,
a.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc; }

a.list-group-item-danger.active,
a.list-group-item-danger.active:hover,
a.list-group-item-danger.active:focus {
  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; }

.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); }

.panel-body {
  padding: 15px; }

.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px; }

.panel-heading > .dropdown .dropdown-toggle {
  color: inherit; }

.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit; }

.panel-title > a {
  color: inherit; }

.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px; }

.panel > .list-group {
  margin-bottom: 0; }

.panel > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0; }

.panel > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px; }

.panel > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px; }

.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0; }

.list-group + .panel-footer {
  border-top-width: 0; }

.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0; }

.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px; }

.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px; }

.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px; }

.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px; }

.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px; }

.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px; }

.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive {
  border-top: 1px solid #ddd; }

.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0; }

.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0; }

.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0; }

.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0; }

.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0; }

.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0; }

.panel > .table-responsive {
  margin-bottom: 0;
  border: 0; }

.panel-group {
  margin-bottom: 20px; }

.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px; }

.panel-group .panel + .panel {
  margin-top: 5px; }

.panel-group .panel-heading {
  border-bottom: 0; }

.panel-group .panel-heading + .panel-collapse > .panel-body {
  border-top: 1px solid #ddd; }

.panel-group .panel-footer {
  border-top: 0; }

.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd; }

.panel-default {
  border-color: #ddd; }

.panel-default > .panel-heading {
  color: #333;
  background-color: #f5f5f5;
  border-color: #ddd; }

.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ddd; }

.panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333; }

.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ddd; }

.panel-primary {
  border-color: #428bca; }

.panel-primary > .panel-heading {
  color: #fff;
  background-color: #428bca;
  border-color: #428bca; }

.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #428bca; }

.panel-primary > .panel-heading .badge {
  color: #428bca;
  background-color: #fff; }

.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #428bca; }

.panel-success {
  border-color: #d6e9c6; }

.panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6; }

.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d6e9c6; }

.panel-success > .panel-heading .badge {
  color: #dff0d8;
  background-color: #3c763d; }

.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d6e9c6; }

.panel-info {
  border-color: #bce8f1; }

.panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1; }

.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #bce8f1; }

.panel-info > .panel-heading .badge {
  color: #d9edf7;
  background-color: #31708f; }

.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #bce8f1; }

.panel-warning {
  border-color: #faebcc; }

.panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc; }

.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #faebcc; }

.panel-warning > .panel-heading .badge {
  color: #fcf8e3;
  background-color: #8a6d3b; }

.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #faebcc; }

.panel-danger {
  border-color: #ebccd1; }

.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1; }

.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ebccd1; }

.panel-danger > .panel-heading .badge {
  color: #f2dede;
  background-color: #a94442; }

.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ebccd1; }

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden; }

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0; }

.embed-responsive.embed-responsive-16by9 {
  padding-bottom: 56.25%; }

.embed-responsive.embed-responsive-4by3 {
  padding-bottom: 75%; }

.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); }

.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15); }

.well-lg {
  padding: 24px;
  border-radius: 6px; }

.well-sm {
  padding: 9px;
  border-radius: 3px; }

.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: .2; }

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: .5; }

button.close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0; }

.modal-open {
  overflow: hidden; }

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0; }

.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform .3s ease-out;
  -o-transition: -o-transform .3s ease-out;
  transition: transform .3s ease-out;
  -webkit-transform: translate3d(0, -25%, 0);
  -o-transform: translate3d(0, -25%, 0);
  transform: translate3d(0, -25%, 0); }

.modal.in .modal-dialog {
  -webkit-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 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 #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  outline: 0;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); }

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000; }

.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0; }

.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: .5; }

.modal-header {
  min-height: 16.42857143px;
  padding: 15px;
  border-bottom: 1px solid #e5e5e5; }

.modal-header .close {
  margin-top: -2px; }

.modal-title {
  margin: 0;
  line-height: 1.42857143; }

.modal-body {
  position: relative;
  padding: 15px; }

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5; }

.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px; }

.modal-footer .btn-group .btn + .btn {
  margin-left: -1px; }

.modal-footer .btn-block + .btn-block {
  margin-left: 0; }

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto; }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }
  .modal-sm {
    width: 300px; } }

@media (min-width: 992px) {
  .modal-lg {
    width: 900px; } }

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-size: 12px;
  line-height: 1.4;
  visibility: visible;
  filter: alpha(opacity=0);
  opacity: 0; }

.tooltip.in {
  filter: alpha(opacity=90);
  opacity: .9; }

.tooltip.top {
  padding: 5px 0;
  margin-top: -3px; }

.tooltip.right {
  padding: 0 5px;
  margin-left: 3px; }

.tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px; }

.tooltip.left {
  padding: 0 5px;
  margin-left: -3px; }

.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #000;
  border-radius: 4px; }

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid; }

.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000; }

.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  left: 5px;
  border-width: 5px 5px 0;
  border-top-color: #000; }

.tooltip.top-right .tooltip-arrow {
  right: 5px;
  bottom: 0;
  border-width: 5px 5px 0;
  border-top-color: #000; }

.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000; }

.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000; }

.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000; }

.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  left: 5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000; }

.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  right: 5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000; }

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  text-align: left;
  white-space: normal;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); }

.popover.top {
  margin-top: -10px; }

.popover.right {
  margin-left: 10px; }

.popover.bottom {
  margin-top: 10px; }

.popover.left {
  margin-left: -10px; }

.popover-title {
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 18px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0; }

.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; }

.popover.top > .arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: #999;
  border-top-color: rgba(0, 0, 0, 0.25);
  border-bottom-width: 0; }

.popover.top > .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  content: " ";
  border-top-color: #fff;
  border-bottom-width: 0; }

.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-right-color: #999;
  border-right-color: rgba(0, 0, 0, 0.25);
  border-left-width: 0; }

.popover.right > .arrow:after {
  bottom: -10px;
  left: 1px;
  content: " ";
  border-right-color: #fff;
  border-left-width: 0; }

.popover.bottom > .arrow {
  top: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999;
  border-bottom-color: rgba(0, 0, 0, 0.25); }

.popover.bottom > .arrow:after {
  top: 1px;
  margin-left: -10px;
  content: " ";
  border-top-width: 0;
  border-bottom-color: #fff; }

.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999;
  border-left-color: rgba(0, 0, 0, 0.25); }

.popover.left > .arrow:after {
  right: 1px;
  bottom: -10px;
  content: " ";
  border-right-width: 0;
  border-left-color: #fff; }

.carousel {
  position: relative; }

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden; }

.carousel-inner > .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 > .item > img,
.carousel-inner > .item > a > img {
  line-height: 1; }

.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);
  filter: alpha(opacity=50);
  opacity: .5; }

.carousel-control.left {
  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: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  background-repeat: repeat-x; }

.carousel-control.right {
  right: 0;
  left: auto;
  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: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  background-repeat: repeat-x; }

.carousel-control:hover,
.carousel-control:focus {
  color: #fff;
  text-decoration: none;
  filter: alpha(opacity=90);
  outline: 0;
  opacity: .9; }

.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block; }

.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px; }

.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px; }

.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  margin-top: -10px;
  font-family: serif; }

.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: #000 \9;
  background-color: rgba(0, 0, 0, 0);
  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 screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    font-size: 30px; }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -15px; }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -15px; }
  .carousel-caption {
    right: 20%;
    left: 20%;
    padding-bottom: 30px; }
  .carousel-indicators {
    bottom: 20px; } }

.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-footer:before,
.modal-footer:after {
  display: table;
  content: " "; }

.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-footer:after {
  clear: both; }

.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto; }

.pull-right {
  float: right !important; }

.pull-left {
  float: left !important; }

.hide {
  display: none !important; }

.show {
  display: block !important; }

.invisible {
  visibility: hidden; }

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0; }

.hidden {
  display: none !important;
  visibility: hidden !important; }

.affix {
  position: fixed;
  -webkit-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

@-ms-viewport {
  width: device-width; }

.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important; }

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important; }

@media (max-width: 767px) {
  .visible-xs {
    display: block !important; }
  table.visible-xs {
    display: table; }
  tr.visible-xs {
    display: table-row !important; }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important; } }

@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important; } }

@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important; } }

@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important; }
  table.visible-sm {
    display: table; }
  tr.visible-sm {
    display: table-row !important; }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important; }
  table.visible-md {
    display: table; }
  tr.visible-md {
    display: table-row !important; }
  th.visible-md,
  td.visible-md {
    display: table-cell !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important; } }

@media (min-width: 1200px) {
  .visible-lg {
    display: block !important; }
  table.visible-lg {
    display: table; }
  tr.visible-lg {
    display: table-row !important; }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important; } }

@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important; } }

@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important; } }

@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important; } }

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important; } }

@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important; } }

.visible-print {
  display: none !important; }

@media print {
  .visible-print {
    display: block !important; }
  table.visible-print {
    display: table; }
  tr.visible-print {
    display: table-row !important; }
  th.visible-print,
  td.visible-print {
    display: table-cell !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; } }
/* ============================================================
 * bootstrapSwitch v1.8 by Larentis Mattia @SpiritualGuru
 * http://www.larentis.eu/
 *
 * Enhanced for radiobuttons by Stein, Peter @BdMdesigN
 * http://www.bdmdesign.org/
 *
 * Project site:
 * http://www.larentis.eu/switch/
 * ============================================================
 * Licensed under the Apache License, Version 2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 * ============================================================ */
.has-switch {
    display: inline-block;
    cursor: pointer;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    position: relative;
    text-align: left;
    overflow: hidden;
    line-height: 8px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    vertical-align: middle;
    min-width: 100px;
}

.has-switch.switch-mini {
    min-width: 72px;
}

.has-switch.switch-mini i.switch-mini-icons {
    height: 1.20em;
    line-height: 9px;
    vertical-align: text-top;
    text-align: center;
    transform: scale(0.6);
    margin-top: -1px;
    margin-bottom: -1px;
}

.has-switch.switch-small {
    min-width: 80px;
}

.has-switch.switch-large {
    min-width: 120px;
}

.has-switch.deactivate {
    opacity: 0.5;
    filter: alpha(opacity=50);
    cursor: default !important;
}

.has-switch.deactivate label,
.has-switch.deactivate span {
    cursor: default !important;
}

.has-switch > div {
    display: inline-block;
    width: 150%;
    position: relative;
    top: 0;
}

.has-switch > div.switch-animate {
    -webkit-transition: left 0.5s;
    -moz-transition: left 0.5s;
    -o-transition: left 0.5s;
    transition: left 0.5s;
}

.has-switch > div.switch-off {
    left: -50%;
}

.has-switch > div.switch-on {
    left: 0%;
}

.has-switch input[type=radio],
.has-switch input[type=checkbox] {
    display: none;
}

.has-switch span,
.has-switch label {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
    display: inline-block;
    height: 100%;
    padding-bottom: 4px;
    padding-top: 4px;
    font-size: 14px;
    line-height: 20px;
}

.has-switch span.switch-mini,
.has-switch label.switch-mini {
    padding-bottom: 4px;
    padding-top: 4px;
    font-size: 10px;
    line-height: 9px;
}

.has-switch span.switch-small,
.has-switch label.switch-small {
    padding-bottom: 3px;
    padding-top: 3px;
    font-size: 12px;
    line-height: 18px;
}

.has-switch span.switch-large,
.has-switch label.switch-large {
    padding-bottom: 9px;
    padding-top: 9px;
    font-size: 16px;
    line-height: normal;
}

.has-switch label {
    text-align: center;
    margin-top: -1px;
    margin-bottom: -1px;
    z-index: 100;
    width: 34%;
    border-left: 1px solid #cccccc;
    border-right: 1px solid #cccccc;
    color: #333333;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    background-color: #f5f5f5;
    background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
    background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
    background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
    background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
    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);
    *background-color: #e6e6e6;
    /* Darken IE7 buttons by default so they stand out more given they won't have borders */

    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.has-switch label:hover,
.has-switch label:focus,
.has-switch label:active,
.has-switch label.active,
.has-switch label.disabled,
.has-switch label[disabled] {
    color: #333333;
    background-color: #e6e6e6;
    *background-color: #d9d9d9;
}

.has-switch label:active,
.has-switch label.active {
    background-color: #cccccc \9;
}

.has-switch label i {
    color: #000;
    text-shadow: 0 1px 0 #fff;
    line-height: 18px;
    pointer-events: none;
}

.has-switch span {
    text-align: center;
    z-index: 1;
    width: 33%;
}

.has-switch span.switch-left {
    -webkit-border-top-left-radius: 4px;
    -moz-border-radius-topleft: 4px;
    border-top-left-radius: 4px;
    -webkit-border-bottom-left-radius: 4px;
    -moz-border-radius-bottomleft: 4px;
    border-bottom-left-radius: 4px;
}

.has-switch span.switch-right {
    color: #333333;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
    background-color: #f0f0f0;
    background-image: -moz-linear-gradient(top, #e6e6e6, #ffffff);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#e6e6e6), to(#ffffff));
    background-image: -webkit-linear-gradient(top, #e6e6e6, #ffffff);
    background-image: -o-linear-gradient(top, #e6e6e6, #ffffff);
    background-image: linear-gradient(to bottom, #e6e6e6, #ffffff);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe6e6e6', endColorstr='#ffffffff', GradientType=0);
    border-color: #ffffff #ffffff #d9d9d9;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    *background-color: #ffffff;
    /* Darken IE7 buttons by default so they stand out more given they won't have borders */

    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.has-switch span.switch-right:hover,
.has-switch span.switch-right:focus,
.has-switch span.switch-right:active,
.has-switch span.switch-right.active,
.has-switch span.switch-right.disabled,
.has-switch span.switch-right[disabled] {
    color: #333333;
    background-color: #ffffff;
    *background-color: #f2f2f2;
}

.has-switch span.switch-right:active,
.has-switch span.switch-right.active {
    background-color: #e6e6e6 \9;
}

.has-switch span.switch-primary,
.has-switch span.switch-left {
    color: #ffffff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    background-color: #005fcc;
    background-image: -moz-linear-gradient(top, #0044cc, #0088cc);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0044cc), to(#0088cc));
    background-image: -webkit-linear-gradient(top, #0044cc, #0088cc);
    background-image: -o-linear-gradient(top, #0044cc, #0088cc);
    background-image: linear-gradient(to bottom, #0044cc, #0088cc);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0044cc', endColorstr='#ff0088cc', GradientType=0);
    border-color: #0088cc #0088cc #005580;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    *background-color: #0088cc;
    /* Darken IE7 buttons by default so they stand out more given they won't have borders */

    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.has-switch span.switch-primary:hover,
.has-switch span.switch-left:hover,
.has-switch span.switch-primary:focus,
.has-switch span.switch-left:focus,
.has-switch span.switch-primary:active,
.has-switch span.switch-left:active,
.has-switch span.switch-primary.active,
.has-switch span.switch-left.active,
.has-switch span.switch-primary.disabled,
.has-switch span.switch-left.disabled,
.has-switch span.switch-primary[disabled],
.has-switch span.switch-left[disabled] {
    color: #ffffff;
    background-color: #0088cc;
    *background-color: #0077b3;
}

.has-switch span.switch-primary:active,
.has-switch span.switch-left:active,
.has-switch span.switch-primary.active,
.has-switch span.switch-left.active {
    background-color: #006699 \9;
}

.has-switch span.switch-info {
    color: #ffffff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    background-color: #41a7c5;
    background-image: -moz-linear-gradient(top, #2f96b4, #5bc0de);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#2f96b4), to(#5bc0de));
    background-image: -webkit-linear-gradient(top, #2f96b4, #5bc0de);
    background-image: -o-linear-gradient(top, #2f96b4, #5bc0de);
    background-image: linear-gradient(to bottom, #2f96b4, #5bc0de);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff2f96b4', endColorstr='#ff5bc0de', GradientType=0);
    border-color: #5bc0de #5bc0de #28a1c5;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    *background-color: #5bc0de;
    /* Darken IE7 buttons by default so they stand out more given they won't have borders */

    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.has-switch span.switch-info:hover,
.has-switch span.switch-info:focus,
.has-switch span.switch-info:active,
.has-switch span.switch-info.active,
.has-switch span.switch-info.disabled,
.has-switch span.switch-info[disabled] {
    color: #ffffff;
    background-color: #5bc0de;
    *background-color: #46b8da;
}

.has-switch span.switch-info:active,
.has-switch span.switch-info.active {
    background-color: #31b0d5 \9;
}

.has-switch span.switch-success {
    color: #ffffff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    background-color: #58b058;
    background-image: -moz-linear-gradient(top, #51a351, #62c462);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#51a351), to(#62c462));
    background-image: -webkit-linear-gradient(top, #51a351, #62c462);
    background-image: -o-linear-gradient(top, #51a351, #62c462);
    background-image: linear-gradient(to bottom, #51a351, #62c462);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff51a351', endColorstr='#ff62c462', GradientType=0);
    border-color: #62c462 #62c462 #3b9e3b;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    *background-color: #62c462;
    /* Darken IE7 buttons by default so they stand out more given they won't have borders */

    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.has-switch span.switch-success:hover,
.has-switch span.switch-success:focus,
.has-switch span.switch-success:active,
.has-switch span.switch-success.active,
.has-switch span.switch-success.disabled,
.has-switch span.switch-success[disabled] {
    color: #ffffff;
    background-color: #62c462;
    *background-color: #4fbd4f;
}

.has-switch span.switch-success:active,
.has-switch span.switch-success.active {
    background-color: #42b142 \9;
}

.has-switch span.switch-warning {
    color: #ffffff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    background-color: #f9a123;
    background-image: -moz-linear-gradient(top, #f89406, #fbb450);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f89406), to(#fbb450));
    background-image: -webkit-linear-gradient(top, #f89406, #fbb450);
    background-image: -o-linear-gradient(top, #f89406, #fbb450);
    background-image: linear-gradient(to bottom, #f89406, #fbb450);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff89406', endColorstr='#fffbb450', GradientType=0);
    border-color: #fbb450 #fbb450 #f89406;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    *background-color: #fbb450;
    /* Darken IE7 buttons by default so they stand out more given they won't have borders */

    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.has-switch span.switch-warning:hover,
.has-switch span.switch-warning:focus,
.has-switch span.switch-warning:active,
.has-switch span.switch-warning.active,
.has-switch span.switch-warning.disabled,
.has-switch span.switch-warning[disabled] {
    color: #ffffff;
    background-color: #fbb450;
    *background-color: #faa937;
}

.has-switch span.switch-warning:active,
.has-switch span.switch-warning.active {
    background-color: #fa9f1e \9;
}

.has-switch span.switch-danger {
    color: #ffffff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    background-color: #d14641;
    background-image: -moz-linear-gradient(top, #bd362f, #ee5f5b);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#bd362f), to(#ee5f5b));
    background-image: -webkit-linear-gradient(top, #bd362f, #ee5f5b);
    background-image: -o-linear-gradient(top, #bd362f, #ee5f5b);
    background-image: linear-gradient(to bottom, #bd362f, #ee5f5b);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffbd362f', endColorstr='#ffee5f5b', GradientType=0);
    border-color: #ee5f5b #ee5f5b #e51d18;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    *background-color: #ee5f5b;
    /* Darken IE7 buttons by default so they stand out more given they won't have borders */

    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.has-switch span.switch-danger:hover,
.has-switch span.switch-danger:focus,
.has-switch span.switch-danger:active,
.has-switch span.switch-danger.active,
.has-switch span.switch-danger.disabled,
.has-switch span.switch-danger[disabled] {
    color: #ffffff;
    background-color: #ee5f5b;
    *background-color: #ec4844;
}

.has-switch span.switch-danger:active,
.has-switch span.switch-danger.active {
    background-color: #e9322d \9;
}

.has-switch span.switch-default {
    color: #333333;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
    background-color: #f0f0f0;
    background-image: -moz-linear-gradient(top, #e6e6e6, #ffffff);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#e6e6e6), to(#ffffff));
    background-image: -webkit-linear-gradient(top, #e6e6e6, #ffffff);
    background-image: -o-linear-gradient(top, #e6e6e6, #ffffff);
    background-image: linear-gradient(to bottom, #e6e6e6, #ffffff);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe6e6e6', endColorstr='#ffffffff', GradientType=0);
    border-color: #ffffff #ffffff #d9d9d9;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    *background-color: #ffffff;
    /* Darken IE7 buttons by default so they stand out more given they won't have borders */

    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.has-switch span.switch-default:hover,
.has-switch span.switch-default:focus,
.has-switch span.switch-default:active,
.has-switch span.switch-default.active,
.has-switch span.switch-default.disabled,
.has-switch span.switch-default[disabled] {
    color: #333333;
    background-color: #ffffff;
    *background-color: #f2f2f2;
}

.has-switch span.switch-default:active,
.has-switch span.switch-default.active {
    background-color: #e6e6e6 \9;
}
/*!
 *  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 PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url(/assets/fontawesome-webfont-82ff0fe46a6f60e0ab3c4a9891a0ae0a1f7b7e84c625f55358379177a2dcb202.eot?v=4.7.0);
  src: url(/assets/fontawesome-webfont-82ff0fe46a6f60e0ab3c4a9891a0ae0a1f7b7e84c625f55358379177a2dcb202.eot?#iefix&v=4.7.0) format("embedded-opentype"), url(/assets/fontawesome-webfont-fa79d127baca4558a0b973f5f514b90fc5ef43314c41095f5cb285ffaa0a4029.woff2?v=4.7.0) format("woff2"), url(/assets/fontawesome-webfont-c9a0a23a23a3f6f7165cba218b40483a0b1750d92b49c40842f1d8f566f5f421.woff?v=4.7.0) format("woff"), url(/assets/fontawesome-webfont-2794b002e3568f5abce8991e2431ca79e0ce84a08ea1268884b4e097b62762a6.ttf?v=4.7.0) format("truetype"), url(/assets/fontawesome-webfont-67c6c8e9ffb0fcd7c7c64eaff12a298abf5b54a54b54f0e6c4c49161dba62d6d.svg?v=4.7.0#fontawesomeregular) format("svg");
  font-weight: normal;
  font-style: normal; }

.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; }

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.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: 0.14285714em;
  text-align: center; }

.fa-li.fa-lg {
  left: -1.85714286em; }

.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  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; }

/* Deprecated as of 4.4.0 */
.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: #ffffff; }

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.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; }
/*! jQuery UI - v1.10.4 - 2014-06-12
* http://jqueryui.com
* Includes: jquery.ui.core.css, jquery.ui.resizable.css, jquery.ui.selectable.css, jquery.ui.accordion.css, jquery.ui.autocomplete.css, jquery.ui.button.css, jquery.ui.datepicker.css, jquery.ui.dialog.css, jquery.ui.menu.css, jquery.ui.progressbar.css, jquery.ui.slider.css, jquery.ui.spinner.css, jquery.ui.tabs.css, jquery.ui.tooltip.css, jquery.ui.theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Trebuchet%20MS%2CTahoma%2CVerdana%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=f6a828&bgTextureHeader=gloss_wave&bgImgOpacityHeader=35&borderColorHeader=e78f08&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=eeeeee&bgTextureContent=highlight_soft&bgImgOpacityContent=100&borderColorContent=dddddd&fcContent=333333&iconColorContent=222222&bgColorDefault=f6f6f6&bgTextureDefault=glass&bgImgOpacityDefault=100&borderColorDefault=cccccc&fcDefault=1c94c4&iconColorDefault=ef8c08&bgColorHover=fdf5ce&bgTextureHover=glass&bgImgOpacityHover=100&borderColorHover=fbcb09&fcHover=c77405&iconColorHover=ef8c08&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=fbd850&fcActive=eb8f00&iconColorActive=ef8c08&bgColorHighlight=ffe45c&bgTextureHighlight=highlight_soft&bgImgOpacityHighlight=75&borderColorHighlight=fed22f&fcHighlight=363636&iconColorHighlight=228ef1&bgColorError=b81900&bgTextureError=diagonals_thick&bgImgOpacityError=18&borderColorError=cd0a0a&fcError=ffffff&iconColorError=ffd27a&bgColorOverlay=666666&bgTextureOverlay=diagonals_thick&bgImgOpacityOverlay=20&opacityOverlay=50&bgColorShadow=000000&bgTextureShadow=flat&bgImgOpacityShadow=10&opacityShadow=20&thicknessShadow=5px&offsetTopShadow=-5px&offsetLeftShadow=-5px&cornerRadiusShadow=5px
* Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */

/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
    display: none;
}

.ui-helper-hidden-accessible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.ui-helper-reset {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    line-height: 1.3;
    text-decoration: none;
    font-size: 100%;
    list-style: none;
}

.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
    content: "";
    display: table;
    border-collapse: collapse;
}

.ui-helper-clearfix:after {
    clear: both;
}

.ui-helper-clearfix {
    min-height: 0; /* support: IE7 */
}

.ui-helper-zfix {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    opacity: 0;
    filter: Alpha(Opacity=0);
}

.ui-front {
    z-index: 100;
}

/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
    cursor: default !important;
}

/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
    display: block;
    text-indent: -99999px;
    overflow: hidden;
    background-repeat: no-repeat;
}

/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ui-resizable {
    position: relative;
}

.ui-resizable-handle {
    position: absolute;
    font-size: 0.1px;
    display: block;
}

.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
    display: none;
}

.ui-resizable-n {
    cursor: n-resize;
    height: 7px;
    width: 100%;
    top: -5px;
    left: 0;
}

.ui-resizable-s {
    cursor: s-resize;
    height: 7px;
    width: 100%;
    bottom: -5px;
    left: 0;
}

.ui-resizable-e {
    cursor: e-resize;
    width: 7px;
    right: -5px;
    top: 0;
    height: 100%;
}

.ui-resizable-w {
    cursor: w-resize;
    width: 7px;
    left: -5px;
    top: 0;
    height: 100%;
}

.ui-resizable-se {
    cursor: se-resize;
    width: 12px;
    height: 12px;
    right: 1px;
    bottom: 1px;
}

.ui-resizable-sw {
    cursor: sw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    bottom: -5px;
}

.ui-resizable-nw {
    cursor: nw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    top: -5px;
}

.ui-resizable-ne {
    cursor: ne-resize;
    width: 9px;
    height: 9px;
    right: -5px;
    top: -5px;
}

.ui-selectable-helper {
    position: absolute;
    z-index: 100;
    border: 1px dotted black;
}

.ui-accordion .ui-accordion-header {
    display: block;
    cursor: pointer;
    position: relative;
    margin-top: 2px;
    padding: .5em .5em .5em .7em;
    min-height: 0; /* support: IE7 */
}

.ui-accordion .ui-accordion-icons {
    padding-left: 2.2em;
}

.ui-accordion .ui-accordion-noicons {
    padding-left: .7em;
}

.ui-accordion .ui-accordion-icons .ui-accordion-icons {
    padding-left: 2.2em;
}

.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
    position: absolute;
    left: .5em;
    top: 50%;
    margin-top: -8px;
}

.ui-accordion .ui-accordion-content {
    padding: 1em 2.2em;
    border-top: 0;
    overflow: auto;
    height: auto !important; 
}

.ui-autocomplete {
    position: absolute;
    top: 0;
    left: 0;
    cursor: default;
}

.ui-button {
    display: inline-block;
    position: relative;
    padding: 0;
    line-height: normal;
    margin-right: .1em;
    cursor: pointer;
    vertical-align: middle;
    text-align: center;
    overflow: visible; /* removes extra width in IE */
}

.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
    text-decoration: none;
}

/* to make room for the icon, a width needs to be set here */
.ui-button-icon-only {
    width: 2.2em;
}

/* button elements seem to need a little more width */
button.ui-button-icon-only {
    width: 2.4em;
}

.ui-button-icons-only {
    width: 3.4em;
}

button.ui-button-icons-only {
    width: 3.7em;
}

/* button text element */
.ui-button .ui-button-text {
    display: block;
    line-height: normal;
}

.ui-button-text-only .ui-button-text {
    padding: .4em 1em;
}

.ui-button-icon-only .ui-button-text,
.ui-button-icons-only .ui-button-text {
    padding: .4em;
    text-indent: -9999999px;
}

.ui-button-text-icon-primary .ui-button-text,
.ui-button-text-icons .ui-button-text {
    padding: .4em 1em .4em 2.1em;
}

.ui-button-text-icon-secondary .ui-button-text,
.ui-button-text-icons .ui-button-text {
    padding: .4em 2.1em .4em 1em;
}

.ui-button-text-icons .ui-button-text {
    padding-left: 2.1em;
    padding-right: 2.1em;
}

/* no icon support for input elements, provide padding by default */
input.ui-button {
    padding: .4em 1em;
}

/* button icon element(s) */
.ui-button-icon-only .ui-icon,
.ui-button-text-icon-primary .ui-icon,
.ui-button-text-icon-secondary .ui-icon,
.ui-button-text-icons .ui-icon,
.ui-button-icons-only .ui-icon {
    position: absolute;
    top: 50%;
    margin-top: -8px;
}

.ui-button-icon-only .ui-icon {
    left: 50%;
    margin-left: -8px;
}

.ui-button-text-icon-primary .ui-button-icon-primary,
.ui-button-text-icons .ui-button-icon-primary,
.ui-button-icons-only .ui-button-icon-primary {
    left: .5em;
}

.ui-button-text-icon-secondary .ui-button-icon-secondary,
.ui-button-text-icons .ui-button-icon-secondary,
.ui-button-icons-only .ui-button-icon-secondary {
    right: .5em;
}

/* button sets */
.ui-buttonset {
    margin-right: 7px;
}

.ui-buttonset .ui-button {
    margin-left: 0;
    margin-right: -.3em;
}

/* workarounds */
/* reset extra padding in Firefox, see h5bp.com/l */
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
    border: 0;
    padding: 0;
}

.ui-datepicker {
    width: 17em;
    padding: .2em .2em 0;
    display: none;
}

.ui-datepicker .ui-datepicker-header {
    position: relative;
    padding: .2em 0;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    position: absolute;
    top: 2px;
    width: 1.8em;
    height: 1.8em;
}

.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
    top: 1px;
}

.ui-datepicker .ui-datepicker-prev {
    left: 2px;
}

.ui-datepicker .ui-datepicker-next {
    right: 2px;
}

.ui-datepicker .ui-datepicker-prev-hover {
    left: 1px;
}

.ui-datepicker .ui-datepicker-next-hover {
    right: 1px;
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
    display: block;
    position: absolute;
    left: 50%;
    margin-left: -8px;
    top: 50%;
    margin-top: -8px;
}

.ui-datepicker .ui-datepicker-title {
    margin: 0 2.3em;
    line-height: 1.8em;
    text-align: center;
}

.ui-datepicker .ui-datepicker-title select {
    font-size: 1em;
    margin: 1px 0;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
    width: 49%;
}

.ui-datepicker table {
    width: 100%;
    font-size: .9em;
    border-collapse: collapse;
    margin: 0 0 .4em;
}

.ui-datepicker th {
    padding: .7em .3em;
    text-align: center;
    font-weight: bold;
    border: 0;
}

.ui-datepicker td {
    border: 0;
    padding: 1px;
}

.ui-datepicker td span,
.ui-datepicker td a {
    display: block;
    padding: .2em;
    text-align: right;
    text-decoration: none;
}

.ui-datepicker .ui-datepicker-buttonpane {
    background-image: none;
    margin: .7em 0 0 0;
    padding: 0 .2em;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
}

.ui-datepicker .ui-datepicker-buttonpane button {
    float: right;
    margin: .5em .2em .4em;
    cursor: pointer;
    padding: .2em .6em .3em .6em;
    width: auto;
    overflow: visible;
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
    float: left;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
    width: auto;
}

.ui-datepicker-multi .ui-datepicker-group {
    float: left;
}

.ui-datepicker-multi .ui-datepicker-group table {
    width: 95%;
    margin: 0 auto .4em;
}

.ui-datepicker-multi-2 .ui-datepicker-group {
    width: 50%;
}

.ui-datepicker-multi-3 .ui-datepicker-group {
    width: 33.3%;
}

.ui-datepicker-multi-4 .ui-datepicker-group {
    width: 25%;
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
    border-left-width: 0;
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
    clear: left;
}

.ui-datepicker-row-break {
    clear: both;
    width: 100%;
    font-size: 0;
}

/* RTL support */
.ui-datepicker-rtl {
    direction: rtl;
}

.ui-datepicker-rtl .ui-datepicker-prev {
    right: 2px;
    left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next {
    left: 2px;
    right: auto;
}

.ui-datepicker-rtl .ui-datepicker-prev:hover {
    right: 1px;
    left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next:hover {
    left: 1px;
    right: auto;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane {
    clear: right;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
    float: left;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
    float: right;
}

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
    border-right-width: 0;
    border-left-width: 1px;
}

.ui-dialog {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    padding: .2em;
    outline: 0;
}

.ui-dialog .ui-dialog-titlebar {
    padding: .4em 1em;
    position: relative;
}

.ui-dialog .ui-dialog-title {
    float: left;
    margin: .1em 0;
    white-space: nowrap;
    width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ui-dialog .ui-dialog-titlebar-close {
    position: absolute;
    right: .3em;
    top: 50%;
    width: 20px;
    margin: -10px 0 0 0;
    padding: 1px;
    height: 20px;
}

.ui-dialog .ui-dialog-content {
    position: relative;
    border: 0;
    padding: .5em 1em;
    background: none;
    overflow: auto;
}

.ui-dialog .ui-dialog-buttonpane {
    text-align: left;
    border-width: 1px 0 0 0;
    background-image: none;
    margin-top: .5em;
    padding: .3em 1em .5em .4em;
}

.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
    float: right;
}

.ui-dialog .ui-dialog-buttonpane button {
    margin: .5em .4em .5em 0;
    cursor: pointer;
}

.ui-dialog .ui-resizable-se {
    width: 12px;
    height: 12px;
    right: -5px;
    bottom: -5px;
    background-position: 16px 16px;
}

.ui-draggable .ui-dialog-titlebar {
    cursor: move;
}

.ui-menu {
    list-style: none;
    padding: 2px;
    margin: 0;
    display: block;
    outline: none;
}

.ui-menu .ui-menu {
    margin-top: -3px;
    position: absolute;
}

.ui-menu .ui-menu-item {
    margin: 0;
    padding: 0;
    width: 100%;
    /* support: IE10, see #8844 */
    list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
}

.ui-menu .ui-menu-divider {
    margin: 5px -2px 5px -2px;
    height: 0;
    font-size: 0;
    line-height: 0;
    border-width: 1px 0 0 0;
}

.ui-menu .ui-menu-item a {
    text-decoration: none;
    display: block;
    padding: 2px .4em;
    line-height: 1.5;
    min-height: 0; /* support: IE7 */
    font-weight: normal;
}

.ui-menu .ui-menu-item a.ui-state-focus,
.ui-menu .ui-menu-item a.ui-state-active {
    font-weight: normal;
    margin: -1px;
}

.ui-menu .ui-state-disabled {
    font-weight: normal;
    margin: .4em 0 .2em;
    line-height: 1.5;
}

.ui-menu .ui-state-disabled a {
    cursor: default;
}

/* icon support */
.ui-menu-icons {
    position: relative;
}

.ui-menu-icons .ui-menu-item a {
    position: relative;
    padding-left: 2em;
}

/* left-aligned */
.ui-menu .ui-icon {
    position: absolute;
    top: .2em;
    left: .2em;
}

/* right-aligned */
.ui-menu .ui-menu-icon {
    position: static;
    float: right;
}

.ui-progressbar {
    height: 2em;
    text-align: left;
    overflow: hidden;
}

.ui-progressbar .ui-progressbar-value {
    margin: -1px;
    height: 100%;
}

.ui-progressbar .ui-progressbar-overlay {
    background: url(/images/animated-overlay.gif);
    height: 100%;
    filter: alpha(opacity=25);
    opacity: 0.25;
}

.ui-progressbar-indeterminate .ui-progressbar-value {
    background-image: none;
}

.ui-slider {
    position: relative;
    text-align: left;
}

.ui-slider .ui-slider-handle {
    position: absolute;
    z-index: 2;
    width: 1.2em;
    height: 1.2em;
    cursor: default;
}

.ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    font-size: .7em;
    display: block;
    border: 0;
    background-position: 0 0;
}

/* For IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
    filter: inherit;
}

.ui-slider-horizontal {
    height: .8em;
}

.ui-slider-horizontal .ui-slider-handle {
    top: -.3em;
    margin-left: -.6em;
}

.ui-slider-horizontal .ui-slider-range {
    top: 0;
    height: 100%;
}

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

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

.ui-slider-vertical {
    width: .8em;
    height: 100px;
}

.ui-slider-vertical .ui-slider-handle {
    left: -.3em;
    margin-left: 0;
    margin-bottom: -.6em;
}

.ui-slider-vertical .ui-slider-range {
    left: 0;
    width: 100%;
}

.ui-slider-vertical .ui-slider-range-min {
    bottom: 0;
}

.ui-slider-vertical .ui-slider-range-max {
    top: 0;
}

.ui-spinner {
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding: 0;
    vertical-align: middle;
}

.ui-spinner-input {
    border: none;
    background: none;
    color: inherit;
    padding: 0;
    margin: .2em 0;
    vertical-align: middle;
    margin-left: .4em;
    margin-right: 22px;
}

.ui-spinner-button {
    width: 16px;
    height: 50%;
    font-size: .5em;
    padding: 0;
    margin: 0;
    text-align: center;
    position: absolute;
    cursor: default;
    display: block;
    overflow: hidden;
    right: 0;
}

/* more specificity required here to override default borders */
.ui-spinner a.ui-spinner-button {
    border-top: none;
    border-bottom: none;
    border-right: none;
}

/* vertically center icon */
.ui-spinner .ui-icon {
    position: absolute;
    margin-top: -8px;
    top: 50%;
    left: 0;
}

.ui-spinner-up {
    top: 0;
}

.ui-spinner-down {
    bottom: 0;
}

/* TR overrides */
.ui-spinner .ui-icon-triangle-1-s {
    /* need to fix icons sprite */
    background-position: -65px -16px;
}

.ui-tabs {
    position: relative; /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
    padding: .2em;
}

.ui-tabs .ui-tabs-nav {
    margin: 0;
    padding: .2em .2em 0;
}

.ui-tabs .ui-tabs-nav li {
    list-style: none;
    float: left;
    position: relative;
    top: 0;
    margin: 1px .2em 0 0;
    border-bottom-width: 0;
    padding: 0;
    white-space: nowrap;
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
    float: left;
    padding: .5em 1em;
    text-decoration: none;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
    margin-bottom: -1px;
    padding-bottom: 1px;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
    cursor: text;
}

.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
    cursor: pointer;
}

.ui-tabs .ui-tabs-panel {
    display: block;
    border-width: 0;
    padding: 1em 1.4em;
    background: none;
}

.ui-tooltip {
    padding: 8px;
    position: absolute;
    z-index: 9999;
    max-width: 300px;
    -webkit-box-shadow: 0 0 5px #aaa;
    box-shadow: 0 0 5px #aaa;
}

body .ui-tooltip {
    border-width: 2px;
}

/* Component containers
----------------------------------*/
.ui-widget {
    font-family: Trebuchet MS, Tahoma, Verdana, Arial, sans-serif;
    font-size: 1.1em;
}

.ui-widget .ui-widget {
    font-size: 1em;
}

.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
    font-family: Trebuchet MS, Tahoma, Verdana, Arial, sans-serif;
    font-size: 1em;
}

.ui-widget-content {
    border: 1px solid #dddddd;
    background: #eeeeee url(/images/ui-bg_highlight-soft_100_eeeeee_1x100.png) 50% top repeat-x;
    color: #333333;
}

.ui-widget-content a {
    color: #333333;
}

.ui-widget-header {
    border: 1px solid #e78f08;
    background: #f6a828 url(/images/ui-bg_gloss-wave_35_f6a828_500x100.png) 50% 50% repeat-x;
    color: #ffffff;
    font-weight: bold;
}

.ui-widget-header a {
    color: #ffffff;
}

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
    border: 1px solid #cccccc;
    background: #f6f6f6 url(/images/ui-bg_glass_100_f6f6f6_1x400.png) 50% 50% repeat-x;
    font-weight: bold;
    color: #1c94c4;
}

.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited {
    color: #1c94c4;
    text-decoration: none;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
    border: 1px solid #fbcb09;
    background: #fdf5ce url(/images/ui-bg_glass_100_fdf5ce_1x400.png) 50% 50% repeat-x;
    font-weight: bold;
    color: #c77405;
}

.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited {
    color: #c77405;
    text-decoration: none;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
    border: 1px solid #fbd850;
    background: #ffffff url(/images/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x;
    font-weight: bold;
    color: #eb8f00;
}

.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
    color: #eb8f00;
    text-decoration: none;
}

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    border: 1px solid #fed22f;
    background: #ffe45c url(/images/ui-bg_highlight-soft_75_ffe45c_1x100.png) 50% top repeat-x;
    color: #363636;
}

.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
    color: #363636;
}

.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
    border: 1px solid #cd0a0a;
    background: #b81900 url(/images/ui-bg_diagonals-thick_18_b81900_40x40.png) 50% 50% repeat;
    color: #ffffff;
}

.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
    color: #ffffff;
}

.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
    color: #ffffff;
}

.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
    font-weight: bold;
}

.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
    opacity: .7;
    filter: Alpha(Opacity=70);
    font-weight: normal;
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
    opacity: .35;
    filter: Alpha(Opacity=35);
    background-image: none;
}

.ui-state-disabled .ui-icon {
    filter: Alpha(Opacity=35); /* For IE8 - See #6059 */
}

/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
    width: 16px;
    height: 16px;
}

.ui-icon,
.ui-widget-content .ui-icon {
    background-image: url(/images/ui-icons_222222_256x240.png);
}

.ui-widget-header .ui-icon {
    background-image: url(/images/ui-icons_ffffff_256x240.png);
}

.ui-state-default .ui-icon {
    background-image: url(/images/ui-icons_ef8c08_256x240.png);
}

.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon {
    background-image: url(/images/ui-icons_ef8c08_256x240.png);
}

.ui-state-active .ui-icon {
    background-image: url(/images/ui-icons_ef8c08_256x240.png);
}

.ui-state-highlight .ui-icon {
    background-image: url(/images/ui-icons_228ef1_256x240.png);
}

.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
    background-image: url(/images/ui-icons_ffd27a_256x240.png);
}

/* positioning */
.ui-icon-blank {
    background-position: 16px 16px;
}

.ui-icon-carat-1-n {
    background-position: 0 0;
}

.ui-icon-carat-1-ne {
    background-position: -16px 0;
}

.ui-icon-carat-1-e {
    background-position: -32px 0;
}

.ui-icon-carat-1-se {
    background-position: -48px 0;
}

.ui-icon-carat-1-s {
    background-position: -64px 0;
}

.ui-icon-carat-1-sw {
    background-position: -80px 0;
}

.ui-icon-carat-1-w {
    background-position: -96px 0;
}

.ui-icon-carat-1-nw {
    background-position: -112px 0;
}

.ui-icon-carat-2-n-s {
    background-position: -128px 0;
}

.ui-icon-carat-2-e-w {
    background-position: -144px 0;
}

.ui-icon-triangle-1-n {
    background-position: 0 -16px;
}

.ui-icon-triangle-1-ne {
    background-position: -16px -16px;
}

.ui-icon-triangle-1-e {
    background-position: -32px -16px;
}

.ui-icon-triangle-1-se {
    background-position: -48px -16px;
}

.ui-icon-triangle-1-s {
    background-position: -64px -16px;
}

.ui-icon-triangle-1-sw {
    background-position: -80px -16px;
}

.ui-icon-triangle-1-w {
    background-position: -96px -16px;
}

.ui-icon-triangle-1-nw {
    background-position: -112px -16px;
}

.ui-icon-triangle-2-n-s {
    background-position: -128px -16px;
}

.ui-icon-triangle-2-e-w {
    background-position: -144px -16px;
}

.ui-icon-arrow-1-n {
    background-position: 0 -32px;
}

.ui-icon-arrow-1-ne {
    background-position: -16px -32px;
}

.ui-icon-arrow-1-e {
    background-position: -32px -32px;
}

.ui-icon-arrow-1-se {
    background-position: -48px -32px;
}

.ui-icon-arrow-1-s {
    background-position: -64px -32px;
}

.ui-icon-arrow-1-sw {
    background-position: -80px -32px;
}

.ui-icon-arrow-1-w {
    background-position: -96px -32px;
}

.ui-icon-arrow-1-nw {
    background-position: -112px -32px;
}

.ui-icon-arrow-2-n-s {
    background-position: -128px -32px;
}

.ui-icon-arrow-2-ne-sw {
    background-position: -144px -32px;
}

.ui-icon-arrow-2-e-w {
    background-position: -160px -32px;
}

.ui-icon-arrow-2-se-nw {
    background-position: -176px -32px;
}

.ui-icon-arrowstop-1-n {
    background-position: -192px -32px;
}

.ui-icon-arrowstop-1-e {
    background-position: -208px -32px;
}

.ui-icon-arrowstop-1-s {
    background-position: -224px -32px;
}

.ui-icon-arrowstop-1-w {
    background-position: -240px -32px;
}

.ui-icon-arrowthick-1-n {
    background-position: 0 -48px;
}

.ui-icon-arrowthick-1-ne {
    background-position: -16px -48px;
}

.ui-icon-arrowthick-1-e {
    background-position: -32px -48px;
}

.ui-icon-arrowthick-1-se {
    background-position: -48px -48px;
}

.ui-icon-arrowthick-1-s {
    background-position: -64px -48px;
}

.ui-icon-arrowthick-1-sw {
    background-position: -80px -48px;
}

.ui-icon-arrowthick-1-w {
    background-position: -96px -48px;
}

.ui-icon-arrowthick-1-nw {
    background-position: -112px -48px;
}

.ui-icon-arrowthick-2-n-s {
    background-position: -128px -48px;
}

.ui-icon-arrowthick-2-ne-sw {
    background-position: -144px -48px;
}

.ui-icon-arrowthick-2-e-w {
    background-position: -160px -48px;
}

.ui-icon-arrowthick-2-se-nw {
    background-position: -176px -48px;
}

.ui-icon-arrowthickstop-1-n {
    background-position: -192px -48px;
}

.ui-icon-arrowthickstop-1-e {
    background-position: -208px -48px;
}

.ui-icon-arrowthickstop-1-s {
    background-position: -224px -48px;
}

.ui-icon-arrowthickstop-1-w {
    background-position: -240px -48px;
}

.ui-icon-arrowreturnthick-1-w {
    background-position: 0 -64px;
}

.ui-icon-arrowreturnthick-1-n {
    background-position: -16px -64px;
}

.ui-icon-arrowreturnthick-1-e {
    background-position: -32px -64px;
}

.ui-icon-arrowreturnthick-1-s {
    background-position: -48px -64px;
}

.ui-icon-arrowreturn-1-w {
    background-position: -64px -64px;
}

.ui-icon-arrowreturn-1-n {
    background-position: -80px -64px;
}

.ui-icon-arrowreturn-1-e {
    background-position: -96px -64px;
}

.ui-icon-arrowreturn-1-s {
    background-position: -112px -64px;
}

.ui-icon-arrowrefresh-1-w {
    background-position: -128px -64px;
}

.ui-icon-arrowrefresh-1-n {
    background-position: -144px -64px;
}

.ui-icon-arrowrefresh-1-e {
    background-position: -160px -64px;
}

.ui-icon-arrowrefresh-1-s {
    background-position: -176px -64px;
}

.ui-icon-arrow-4 {
    background-position: 0 -80px;
}

.ui-icon-arrow-4-diag {
    background-position: -16px -80px;
}

.ui-icon-extlink {
    background-position: -32px -80px;
}

.ui-icon-newwin {
    background-position: -48px -80px;
}

.ui-icon-refresh {
    background-position: -64px -80px;
}

.ui-icon-shuffle {
    background-position: -80px -80px;
}

.ui-icon-transfer-e-w {
    background-position: -96px -80px;
}

.ui-icon-transferthick-e-w {
    background-position: -112px -80px;
}

.ui-icon-folder-collapsed {
    background-position: 0 -96px;
}

.ui-icon-folder-open {
    background-position: -16px -96px;
}

.ui-icon-document {
    background-position: -32px -96px;
}

.ui-icon-document-b {
    background-position: -48px -96px;
}

.ui-icon-note {
    background-position: -64px -96px;
}

.ui-icon-mail-closed {
    background-position: -80px -96px;
}

.ui-icon-mail-open {
    background-position: -96px -96px;
}

.ui-icon-suitcase {
    background-position: -112px -96px;
}

.ui-icon-comment {
    background-position: -128px -96px;
}

.ui-icon-person {
    background-position: -144px -96px;
}

.ui-icon-print {
    background-position: -160px -96px;
}

.ui-icon-trash {
    background-position: -176px -96px;
}

.ui-icon-locked {
    background-position: -192px -96px;
}

.ui-icon-unlocked {
    background-position: -208px -96px;
}

.ui-icon-bookmark {
    background-position: -224px -96px;
}

.ui-icon-tag {
    background-position: -240px -96px;
}

.ui-icon-home {
    background-position: 0 -112px;
}

.ui-icon-flag {
    background-position: -16px -112px;
}

.ui-icon-calendar {
    background-position: -32px -112px;
}

.ui-icon-cart {
    background-position: -48px -112px;
}

.ui-icon-pencil {
    background-position: -64px -112px;
}

.ui-icon-clock {
    background-position: -80px -112px;
}

.ui-icon-disk {
    background-position: -96px -112px;
}

.ui-icon-calculator {
    background-position: -112px -112px;
}

.ui-icon-zoomin {
    background-position: -128px -112px;
}

.ui-icon-zoomout {
    background-position: -144px -112px;
}

.ui-icon-search {
    background-position: -160px -112px;
}

.ui-icon-wrench {
    background-position: -176px -112px;
}

.ui-icon-gear {
    background-position: -192px -112px;
}

.ui-icon-heart {
    background-position: -208px -112px;
}

.ui-icon-star {
    background-position: -224px -112px;
}

.ui-icon-link {
    background-position: -240px -112px;
}

.ui-icon-cancel {
    background-position: 0 -128px;
}

.ui-icon-plus {
    background-position: -16px -128px;
}

.ui-icon-plusthick {
    background-position: -32px -128px;
}

.ui-icon-minus {
    background-position: -48px -128px;
}

.ui-icon-minusthick {
    background-position: -64px -128px;
}

.ui-icon-close {
    background-position: -80px -128px;
}

.ui-icon-closethick {
    background-position: -96px -128px;
}

.ui-icon-key {
    background-position: -112px -128px;
}

.ui-icon-lightbulb {
    background-position: -128px -128px;
}

.ui-icon-scissors {
    background-position: -144px -128px;
}

.ui-icon-clipboard {
    background-position: -160px -128px;
}

.ui-icon-copy {
    background-position: -176px -128px;
}

.ui-icon-contact {
    background-position: -192px -128px;
}

.ui-icon-image {
    background-position: -208px -128px;
}

.ui-icon-video {
    background-position: -224px -128px;
}

.ui-icon-script {
    background-position: -240px -128px;
}

.ui-icon-alert {
    background-position: 0 -144px;
}

.ui-icon-info {
    background-position: -16px -144px;
}

.ui-icon-notice {
    background-position: -32px -144px;
}

.ui-icon-help {
    background-position: -48px -144px;
}

.ui-icon-check {
    background-position: -64px -144px;
}

.ui-icon-bullet {
    background-position: -80px -144px;
}

.ui-icon-radio-on {
    background-position: -96px -144px;
}

.ui-icon-radio-off {
    background-position: -112px -144px;
}

.ui-icon-pin-w {
    background-position: -128px -144px;
}

.ui-icon-pin-s {
    background-position: -144px -144px;
}

.ui-icon-play {
    background-position: 0 -160px;
}

.ui-icon-pause {
    background-position: -16px -160px;
}

.ui-icon-seek-next {
    background-position: -32px -160px;
}

.ui-icon-seek-prev {
    background-position: -48px -160px;
}

.ui-icon-seek-end {
    background-position: -64px -160px;
}

.ui-icon-seek-start {
    background-position: -80px -160px;
}

/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first {
    background-position: -80px -160px;
}

.ui-icon-stop {
    background-position: -96px -160px;
}

.ui-icon-eject {
    background-position: -112px -160px;
}

.ui-icon-volume-off {
    background-position: -128px -160px;
}

.ui-icon-volume-on {
    background-position: -144px -160px;
}

.ui-icon-power {
    background-position: 0 -176px;
}

.ui-icon-signal-diag {
    background-position: -16px -176px;
}

.ui-icon-signal {
    background-position: -32px -176px;
}

.ui-icon-battery-0 {
    background-position: -48px -176px;
}

.ui-icon-battery-1 {
    background-position: -64px -176px;
}

.ui-icon-battery-2 {
    background-position: -80px -176px;
}

.ui-icon-battery-3 {
    background-position: -96px -176px;
}

.ui-icon-circle-plus {
    background-position: 0 -192px;
}

.ui-icon-circle-minus {
    background-position: -16px -192px;
}

.ui-icon-circle-close {
    background-position: -32px -192px;
}

.ui-icon-circle-triangle-e {
    background-position: -48px -192px;
}

.ui-icon-circle-triangle-s {
    background-position: -64px -192px;
}

.ui-icon-circle-triangle-w {
    background-position: -80px -192px;
}

.ui-icon-circle-triangle-n {
    background-position: -96px -192px;
}

.ui-icon-circle-arrow-e {
    background-position: -112px -192px;
}

.ui-icon-circle-arrow-s {
    background-position: -128px -192px;
}

.ui-icon-circle-arrow-w {
    background-position: -144px -192px;
}

.ui-icon-circle-arrow-n {
    background-position: -160px -192px;
}

.ui-icon-circle-zoomin {
    background-position: -176px -192px;
}

.ui-icon-circle-zoomout {
    background-position: -192px -192px;
}

.ui-icon-circle-check {
    background-position: -208px -192px;
}

.ui-icon-circlesmall-plus {
    background-position: 0 -208px;
}

.ui-icon-circlesmall-minus {
    background-position: -16px -208px;
}

.ui-icon-circlesmall-close {
    background-position: -32px -208px;
}

.ui-icon-squaresmall-plus {
    background-position: -48px -208px;
}

.ui-icon-squaresmall-minus {
    background-position: -64px -208px;
}

.ui-icon-squaresmall-close {
    background-position: -80px -208px;
}

.ui-icon-grip-dotted-vertical {
    background-position: 0 -224px;
}

.ui-icon-grip-dotted-horizontal {
    background-position: -16px -224px;
}

.ui-icon-grip-solid-vertical {
    background-position: -32px -224px;
}

.ui-icon-grip-solid-horizontal {
    background-position: -48px -224px;
}

.ui-icon-gripsmall-diagonal-se {
    background-position: -64px -224px;
}

.ui-icon-grip-diagonal-se {
    background-position: -80px -224px;
}

/* Misc visuals
----------------------------------*/

/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
    border-top-left-radius: 4px;
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
    border-top-right-radius: 4px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
    border-bottom-left-radius: 4px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
    border-bottom-right-radius: 4px;
}

/* Overlays */
.ui-widget-overlay {
    background: #666666 url(/images/ui-bg_diagonals-thick_20_666666_40x40.png) 50% 50% repeat;
    opacity: .5;
    filter: Alpha(Opacity=50);
}

.ui-widget-shadow {
    margin: -5px 0 0 -5px;
    padding: 5px;
    background: #000000 url(/images/ui-bg_flat_10_000000_40x100.png) 50% 50% repeat-x;
    opacity: .2;
    filter: Alpha(Opacity=20);
    border-radius: 5px;
}
.icon-spin {
  display: inline-block;
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  -webkit-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear; }

.no-border-radius {
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important; }

.text-uppercase {
  text-transform: uppercase; }

.text-justify {
  text-align: justify; }

.text-line-through {
  text-decoration: line-through; }

.box-heading {
  font-weight: bold;
  font-family: 'Oswald';
  margin-bottom: 15px; }

.input-group .form-control {
  z-index: 0; }

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

html {
  font-size: 62.5%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  height: 100%; }

body {
  font-family: 'Ubuntu', sans-serif;
  font-size: 13px;
  line-height: 1.42857143;
  color: #777777;
  background-color: #f0f2f5;
  height: 100%; }

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit; }

a {
  color: #777777;
  text-decoration: none; }

a:hover,
a:focus {
  color: #bf4346;
  text-decoration: none; }

a:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px; }

figure {
  margin: 0; }

img {
  vertical-align: middle; }

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto; }

.img-rounded {
  border-radius: 6px; }

.img-thumbnail {
  padding: 4px;
  line-height: 1.42857143;
  background-color: #f0f2f5;
  border: 1px solid #dddddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto; }

.img-circle {
  border-radius: 50%; }

hr {
  margin-top: 18px;
  margin-bottom: 18px;
  border: 0;
  border-top: 1px solid #eeeeee; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.require {
  color: #ff0000; }

.admin-menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden; }

.admin-menu li {
  float: left;
  padding: 20px; }

.admin-menu li a i {
  font-size: 20px;
  color: #18333f; }

.admin-footer {
  bottom: 0;
  position: fixed; }

.admin-menu > li:hover ul.sub-menu {
  background: #fff;
  display: grid;
  position: absolute;
  z-index: 999;
  width: 250px;
  margin-top: 8px !important;
  list-style-type: none;
  margin: 0;
  padding: 0;
  border-top: 3px solid #18333f;
  box-shadow: 0px 6px 10px 1px rgba(0, 0, 0, 0.2); }

.admin-menu li ul li a i {
  font-size: 16px; }

.admin-page-content {
  margin-top: 50px !important; }

ul li ul.sub-menu {
  background: #f2f2f2;
  display: none;
  position: absolute;
  z-index: 999;
  width: 250px;
  margin-top: 8px !important;
  list-style-type: none;
  margin: 0;
  padding: 0; }

ul li ul.sub-menu li a {
  padding: 0px !important; }

.admin-menu li ul li {
  padding: 8px 15px; }

#wrapper {
  width: 100%;
  min-height: 100%;
  /*height: 100% !important;*/
  background-color: #4b5d67; }

#page-wrapper {
  min-height: 100%;
  padding: 0 !important;
  height: 100% !important;
  /*padding-bottom: 20px !important;*/
  background-color: #f0f2f5; }

@media (min-width: 768px) {
  #page-wrapper {
    position: relative;
    margin: 0 0 0 250px;
    padding: 0; } }

#topbar {
  background: #ffffff;
  width: 100%;
  height: 50px; }

#topbar.navbar-default {
  border: 0; }

#topbar .navbar-header {
  width: 250px;
  height: 100%;
  background: #475861;
  text-align: center; }

#topbar .navbar-header #logo {
  font-size: 20px;
  line-height: 20px;
  color: #ffffff;
  height: 100%;
  width: 100%; }

#topbar .navbar-header #logo span.fa {
  display: none; }

#topbar .navbar-header #logo span.logo-text {
  display: block;
  font-weight: bold;
  font-family: 'Oswald', sans-serif;
  font-size: 30px; }

#topbar .topbar-main {
  display: block;
  height: 100%;
  background: #405058; }

#topbar .topbar-main #menu-toggle {
  float: left;
  padding: 15px 20px;
  background-color: transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  height: 50px;
  border-radius: 0;
  color: #ffffff; }

#topbar .topbar-main #menu-toggle:hover,
#topbar .topbar-main #menu-toggle:focus {
  color: #bf4346; }

#topbar .topbar-main #menu-toggle i {
  font-size: 18px;
  margin-top: 3px; }

#topbar .topbar-main #theme-setting {
  background-color: rgba(0, 0, 0, 0.15); }

#topbar .topbar-main ul.nav.navbar-nav {
  display: none; }

#topbar .topbar-main ul.nav.navbar-nav.horizontal-menu {
  display: block; }

#topbar .topbar-main ul.nav.navbar-nav li.active a,
#topbar .topbar-main ul.nav.navbar-nav li:hover a,
#topbar .topbar-main ul.nav.navbar-nav li.open a {
  background: #ffffff;
  color: #777777; }

#topbar .topbar-main ul.nav.navbar-nav li.mega-menu-dropdown {
  position: static; }

#topbar .topbar-main ul.nav.navbar-nav li.mega-menu-dropdown.mega-menu-full .dropdown-menu {
  left: 20px;
  right: 20px; }

#topbar .topbar-main ul.nav.navbar-nav li.mega-menu-dropdown > .dropdown-menu {
  left: auto;
  width: auto; }

#topbar .topbar-main ul.nav.navbar-nav li.mega-menu-dropdown > .dropdown-menu .mega-menu-content {
  padding: 10px;
  margin: 0; }

#topbar .topbar-main ul.nav.navbar-nav li.mega-menu-dropdown > .dropdown-menu .mega-menu-content .mega-menu-submenu {
  *width: auto !important;
  padding: 0px 15px !important;
  margin: 0 !important;
  border-right: 1px solid #eeeeee; }

#topbar .topbar-main ul.nav.navbar-nav li.mega-menu-dropdown > .dropdown-menu .mega-menu-content .mega-menu-submenu:last-child {
  border-right: 0; }

#topbar .topbar-main ul.nav.navbar-nav li.mega-menu-dropdown > .dropdown-menu .mega-menu-content .mega-menu-submenu li {
  padding: 2px !important;
  margin: 0 !important;
  list-style: none; }

#topbar .topbar-main ul.nav.navbar-nav li.mega-menu-dropdown > .dropdown-menu .mega-menu-content .mega-menu-submenu li h3 {
  color: #555555;
  margin-top: 10px;
  padding-left: 5px;
  font-size: 15px;
  font-weight: normal; }

#topbar .topbar-main ul.nav.navbar-nav li.mega-menu-dropdown > .dropdown-menu .mega-menu-content .mega-menu-submenu li a {
  padding: 5px !important;
  margin: 0 !important;
  font-weight: normal;
  display: block; }

#topbar .topbar-main ul.nav.navbar-nav li.mega-menu-dropdown > .dropdown-menu .mega-menu-content .mega-menu-submenu li a:hover {
  background: #f0f0f0; }

#topbar .topbar-main ul.nav.navbar-nav li.mega-menu-dropdown > .dropdown-menu .mega-menu-content .mega-menu-submenu li a i {
  margin-right: 5px; }

#topbar .topbar-main ul.nav.navbar-nav li.mega-menu-dropdown > .dropdown-menu .mega-menu-content .document-demo .mega-menu-submenu {
  border-right: none; }

#topbar .topbar-main ul.nav.navbar-nav li.mega-menu-dropdown > .dropdown-menu .mega-menu-content .document-demo .mega-menu-submenu li a {
  text-align: center;
  padding: 30px 5px !important; }

#topbar .topbar-main ul.nav.navbar-nav li.mega-menu-dropdown > .dropdown-menu .mega-menu-content .document-demo .mega-menu-submenu li a:hover {
  background: transparent; }

#topbar .topbar-main ul.nav.navbar-nav li.mega-menu-dropdown > .dropdown-menu .mega-menu-content .document-demo .mega-menu-submenu li a i {
  font-size: 50px;
  display: block;
  width: 100%;
  margin-bottom: 20px; }

#topbar .topbar-main ul.nav.navbar-nav li a {
  color: #ffffff; }

#topbar #topbar-search {
  display: inline-block;
  width: 50px;
  position: absolute;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.15); }

#topbar #topbar-search .input-group .form-control {
  height: 50px;
  border: 0;
  background: transparent !important;
  padding-left: 0;
  margin-left: 12px;
  text-indent: -999999px;
  color: #efefef; }

#topbar #topbar-search .input-group .form-control:hover {
  cursor: pointer; }

#topbar #topbar-search .input-group .input-group-btn {
  height: 50px; }

#topbar #topbar-search .input-group .input-group-btn .btn.submit {
  margin-left: -24px;
  padding: 0;
  width: 50px;
  background: none;
  border: 0 !important;
  display: block;
  color: #ffffff;
  cursor: pointer; }

#topbar #topbar-search .input-group .input-group-btn .btn.submit i {
  font-size: 16px; }

#topbar #topbar-search.open {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  width: 300px !important;
  background-color: rgba(255, 255, 255, 0.15); }

#topbar #topbar-search.open .input-group .form-control {
  text-indent: 0; }

#topbar #topbar-search.open .input-group .form-control:hover {
  cursor: text; }

#topbar #topbar-search.open .input-group .form-control .input-group-btn .btn.submit {
  margin-left: 0; }

#topbar #topbar-search input:-moz-placeholder {
  color: #efefef; }

#topbar #topbar-search input::-webkit-input-placeholder {
  color: #efefef; }

#topbar .navbar-top-links li {
  display: inline-block; }

#topbar .navbar-top-links li:last-child {
  margin-right: 15px; }

#topbar .navbar-top-links li.open > a {
  background: #4b5d67 !important;
  color: #ffffff !important; }

#topbar .navbar-top-links li.open > a:hover,
#topbar .navbar-top-links li.open > a:focus {
  background: #4b5d67 !important; }

#topbar .navbar-top-links li.open > a i {
  color: #ffffff; }

#topbar .navbar-top-links li > a {
  padding: 15px 20px;
  height: 100%;
  color: #ffffff;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }

#topbar .navbar-top-links li > a:hover,
#topbar .navbar-top-links li > a:focus {
  background: #4b5d67 !important; }

#topbar .navbar-top-links li > a i {
  font-size: 16px;
  color: #ffffff; }

#topbar .navbar-top-links li > a span.badge {
  position: absolute;
  top: 5px;
  right: 30px;
  padding: 3px 6px;
  color: #ffffff; }

#topbar .navbar-top-links li > a img {
  position: relative;
  width: 25px;
  height: 25px;
  display: inline-block; }

#topbar .navbar-top-links li .dropdown-menu li {
  display: block;
  position: relative; }

#topbar .navbar-top-links li .dropdown-menu li:last-child {
  margin-right: 0; }

#topbar .navbar-top-links li .dropdown-menu li a {
  padding: 3px 20px;
  min-height: 0;
  color: #777777; }

#topbar .navbar-top-links li .dropdown-menu li a div {
  white-space: normal; }

#topbar .navbar-top-links li .dropdown-menu li a.btn {
  color: #FFFFFF; }

#topbar .navbar-top-links li.topbar-user a {
  padding: 12px 15px 11px; }

#topbar .navbar-top-links li.topbar-user a img {
  margin-right: 5px; }

#topbar .navbar-top-links li#theme-setting a {
  padding: 12px 15px 11px; }

#topbar .navbar-top-links ul.dropdown-alerts {
  width: 250px;
  min-width: 0; }

#topbar .navbar-top-links ul.dropdown-alerts li {
  float: left;
  width: 100%; }

#topbar .navbar-top-links ul.dropdown-alerts li a:hover,
#topbar .navbar-top-links ul.dropdown-alerts li a:focus {
  background: #f7f7f8 !important; }

#topbar .navbar-top-links ul.dropdown-alerts li ul {
  padding: 0;
  margin: 0; }

#topbar .navbar-top-links ul.dropdown-alerts li ul li a {
  padding: 15px;
  display: block;
  border-top: 1px solid #efefef;
  font-size: 12px; }

#topbar .navbar-top-links ul.dropdown-alerts li ul li a span {
  margin-right: 10px;
  padding: 3px; }

#topbar .navbar-top-links ul.dropdown-alerts li ul li a span i {
  font-size: 14px;
  color: #FFFFFF; }

#topbar .navbar-top-links ul.dropdown-alerts li:first-child a {
  border-top: 0; }

#topbar .navbar-top-links ul.dropdown-alerts li.last a {
  background: #f7f7f8;
  width: 100%;
  border-top: 0;
  padding: 10px 15px;
  text-align: right;
  font-size: 12px; }

#topbar .navbar-top-links ul.dropdown-alerts li.last a:hover {
  text-decoration: underline; }

#topbar .navbar-top-links ul.dropdown-alerts li p {
  padding: 10px 15px;
  margin-bottom: 0;
  background: #4b5d67;
  color: #ffffff; }

#topbar .navbar-top-links ul.dropdown-messages {
  width: 250px;
  min-width: 0; }

#topbar .navbar-top-links ul.dropdown-messages li {
  float: left;
  width: 100%; }

#topbar .navbar-top-links ul.dropdown-messages li a:hover,
#topbar .navbar-top-links ul.dropdown-messages li a:focus {
  background: #f7f7f8 !important; }

#topbar .navbar-top-links ul.dropdown-messages li ul {
  padding: 0;
  margin: 0; }

#topbar .navbar-top-links ul.dropdown-messages li ul li a {
  padding: 15px;
  display: block;
  border-top: 1px solid #efefef; }

#topbar .navbar-top-links ul.dropdown-messages li ul li a .avatar img {
  width: 40px;
  height: 40px;
  margin-top: 0;
  float: left;
  display: block; }

#topbar .navbar-top-links ul.dropdown-messages li ul li a .info {
  margin-left: 50px;
  display: block; }

#topbar .navbar-top-links ul.dropdown-messages li ul li a .info .name {
  font-size: 12px;
  font-weight: bold;
  display: block; }

#topbar .navbar-top-links ul.dropdown-messages li ul li a .info .name .label {
  font-size: 10px;
  padding: 3px; }

#topbar .navbar-top-links ul.dropdown-messages li ul li a .info .desc {
  font-size: 12px; }

#topbar .navbar-top-links ul.dropdown-messages li:first-child a {
  border-top: 0; }

#topbar .navbar-top-links ul.dropdown-messages li.last a {
  background: #f7f7f8;
  width: 100%;
  border-top: 0;
  padding: 10px 15px;
  text-align: right;
  font-size: 12px; }

#topbar .navbar-top-links ul.dropdown-messages li.last a:hover {
  text-decoration: underline; }

#topbar .navbar-top-links ul.dropdown-messages li p {
  padding: 10px 15px;
  margin-bottom: 0;
  background: #4b5d67;
  color: #ffffff; }

#topbar .navbar-top-links ul.dropdown-tasks {
  width: 250px;
  min-width: 0;
  margin-left: -59px; }

#topbar .navbar-top-links ul.dropdown-tasks li {
  float: left;
  width: 100%; }

#topbar .navbar-top-links ul.dropdown-tasks li a:hover,
#topbar .navbar-top-links ul.dropdown-tasks li a:focus {
  background: #f7f7f8 !important; }

#topbar .navbar-top-links ul.dropdown-tasks li ul {
  padding: 0;
  margin: 0; }

#topbar .navbar-top-links ul.dropdown-tasks li ul li a {
  padding: 15px;
  display: block;
  border-top: 1px solid #efefef;
  font-size: 12px; }

#topbar .navbar-top-links ul.dropdown-tasks li ul li a span {
  margin-right: 10px; }

#topbar .navbar-top-links ul.dropdown-tasks li ul li a span i {
  font-size: 13px;
  color: #FFFFFF;
  padding: 3px; }

#topbar .navbar-top-links ul.dropdown-tasks li ul li a .progress {
  margin-bottom: 5px; }

#topbar .navbar-top-links ul.dropdown-tasks li:first-child a {
  border-top: 0; }

#topbar .navbar-top-links ul.dropdown-tasks li.last a {
  background: #f7f7f8;
  width: 100%;
  border-top: 0;
  padding: 10px 15px;
  text-align: right; }

#topbar .navbar-top-links ul.dropdown-tasks li.last a:hover {
  text-decoration: underline; }

#topbar .navbar-top-links ul.dropdown-tasks li p {
  padding: 10px 15px;
  margin-bottom: 0;
  background: #4b5d67;
  color: #ffffff; }

#topbar .navbar-top-links .dropdown-user li a {
  padding: 10px !important;
  height: auto; }

#topbar .navbar-top-links .dropdown-user li a:hover,
#topbar .navbar-top-links .dropdown-user li a:focus {
  background: #f7f7f8 !important; }

#topbar .navbar-top-links .dropdown-user li a i {
  margin-right: 5px;
  color: #777777;
  width: 14px; }

#topbar .navbar-top-links .dropdown-user li a .badge {
  position: absolute;
  margin-top: 5px;
  right: 10px;
  display: inline;
  font-size: 11px;
  padding: 3px 6px 3px 6px;
  text-align: center;
  vertical-align: middle; }

#topbar .navbar-top-links .dropdown-theme-setting {
  width: 250px;
  min-width: 0;
  background-color: #4b5d67; }

#topbar .navbar-top-links .dropdown-theme-setting li {
  padding: 10px !important; }

#topbar .navbar-top-links .dropdown-theme-setting li h4 {
  color: #ffffff; }

#topbar .navbar-top-links .dropdown-theme-setting li ul#list-color li {
  cursor: pointer;
  width: 35px;
  height: 35px;
  border: 5px solid transparent;
  margin: 0 5px;
  display: inline-block; }

#topbar .navbar-top-links .dropdown-theme-setting li ul#list-color li.green-dark {
  background: #594857;
  border-color: #488c6c; }

#topbar .navbar-top-links .dropdown-theme-setting li ul#list-color li.red-dark {
  background: #594857;
  border-color: #bf4346; }

#topbar .navbar-top-links .dropdown-theme-setting li ul#list-color li.pink-dark {
  background: #594857;
  border-color: #bf3773; }

#topbar .navbar-top-links .dropdown-theme-setting li ul#list-color li.blue-dark {
  background: #594857;
  border-color: #0a819c; }

#topbar .navbar-top-links .dropdown-theme-setting li ul#list-color li.yellow-dark {
  background: #594857;
  border-color: #f2994b; }

#topbar .navbar-top-links .dropdown-theme-setting li ul#list-color li.green-grey {
  background: #4b5d67;
  border-color: #488c6c; }

#topbar .navbar-top-links .dropdown-theme-setting li ul#list-color li.red-grey {
  background: #4b5d67;
  border-color: #bf4346; }

#topbar .navbar-top-links .dropdown-theme-setting li ul#list-color li.pink-grey {
  background: #4b5d67;
  border-color: #bf3773; }

#topbar .navbar-top-links .dropdown-theme-setting li ul#list-color li.blue-grey {
  background: #4b5d67;
  border-color: #0a819c; }

#topbar .navbar-top-links .dropdown-theme-setting li ul#list-color li.yellow-grey {
  background: #4b5d67;
  border-color: #f2994b; }

#topbar .navbar-top-links .dropdown-theme-setting li ul#list-color li.yellow-green {
  background: #007451;
  border-color: #CCA32F; }

#topbar .navbar-top-links .dropdown-theme-setting li ul#list-color li.orange-grey {
  background: #322F2B;
  border-color: #D94E37; }

#topbar .navbar-top-links .dropdown-theme-setting li ul#list-color li.pink-blue {
  background: #40516F;
  border-color: #DC6767; }

#topbar .navbar-top-links .dropdown-theme-setting li ul#list-color li.pink-violet {
  background: #554161;
  border-color: #E82A62; }

#topbar .navbar-top-links .dropdown-theme-setting li ul#list-color li.orange-violet {
  background: #554161;
  border-color: #FF422B; }

#topbar .navbar-top-links .dropdown-theme-setting li ul#list-color li.pink-green {
  background: #456445;
  border-color: #FF5E70; }

#topbar .navbar-top-links .dropdown-theme-setting li ul#list-color li.pink-brown {
  background: #573F2F;
  border-color: #A21E46; }

#topbar .navbar-top-links .dropdown-theme-setting li ul#list-color li.orange-blue {
  background: #33485C;
  border-color: #E74C3C; }

#topbar .navbar-top-links .dropdown-theme-setting li ul#list-color li.yellow-blue {
  background: #417CB2;
  border-color: #FFC34C; }

#topbar .navbar-top-links .dropdown-theme-setting li ul#list-color li.green-blue {
  background: #417CB2;
  border-color: #66B354; }

@media (min-width: 768px) {
  .navbar-top-links .dropdown-messages,
  .navbar-top-links .dropdown-tasks,
  .navbar-top-links .dropdown-alerts {
    margin-left: auto; } }

.page-title-breadcrumb {
  padding: 0px 20px;
  background: #ffffff;
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(0, 0, 0, 0.05);
  clear: both;
  height: 50px;
  width: 100%;
  left: 0; }

.page-title-breadcrumb.admin-breadcrumb {
  padding: 0px !important; }

.page-title-breadcrumb .page-header {
  margin: 0;
  padding: 0;
  border-bottom: 0; }

.page-title-breadcrumb .page-header .page-title {
  font-size: 25px;
  font-weight: 300;
  display: inline-block;
  padding-top: 5px; }

.page-title-breadcrumb .page-header .page-subtitle {
  font-size: 14px;
  font-weight: 300;
  color: #bcbcbc;
  display: inline-block; }

.page-title-breadcrumb .breadcrumb {
  float: right;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  border-radius: 0;
  background: transparent;
  padding-top: 17px;
  margin-left: 10px; }

.page-title-breadcrumb .breadcrumb li + li:before {
  content: "";
  padding: 0; }

.page-title-breadcrumb .reportrange {
  float: right;
  margin-top: 7px; }

.horizontal-menu-page #sidebar {
  display: none; }

.horizontal-menu-page #page-wrapper {
  margin-left: 0; }

.horizontal-menu-page #menu-toggle {
  display: none; }

#chat-form {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 280px;
  background: #4b5d67;
  z-index: 9999;
  display: none; }

#chat-form.fixed {
  position: fixed;
  min-height: 0 !important; }

#chat-form .user-status {
  display: inline-block;
  background: #575d67;
  margin-right: 5px;
  width: 8px;
  height: 8px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  -webkit-border-radius: 8 !important;
  -moz-border-radius: 8px !important;
  border-radius: 8px !important; }

#chat-form .user-status.is-online {
  background-color: #06b53c; }

#chat-form .user-status.is-busy {
  background-color: #ee4749; }

#chat-form .user-status.is-idle {
  background-color: #f7d227; }

#chat-form .user-status.is-offline {
  background-color: #666666; }

#chat-form .chat-inner {
  overflow: auto;
  height: 100%; }

#chat-form .chat-header {
  font-size: 16px;
  color: #ffffff;
  padding: 30px 35px;
  line-height: 1;
  margin: 0;
  border-bottom: 1px solid #607885;
  position: relative; }

#chat-form .chat-header .chat-form-close {
  color: #ededed;
  font-size: 13px; }

#chat-form .chat-group {
  margin-top: 30px; }

#chat-form .chat-group > strong {
  text-transform: uppercase;
  color: #ededed;
  display: block;
  padding: 6px 35px;
  font-size: 14px; }

#chat-form .chat-group > a {
  display: block;
  padding: 6px 35px;
  position: relative;
  color: #eaeaea;
  text-decoration: none; }

#chat-form .chat-group > a .badge {
  font-size: 9px;
  margin-left: 5px;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1; }

#chat-form .chat-group > a .badge.is-hidden {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0; }

#chat-form .chat-group > a.active {
  background: #566a76; }

#chat-form .chat-group > a.active:before {
  content: '';
  display: block;
  position: absolute;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 8px 0 8px 8px;
  border-color: transparent transparent transparent #405058;
  left: 0;
  top: 50%;
  margin-top: -8px; }

#chat-form .chat-group > a:hover {
  background: #566a76; }

#chat-form #chat-box {
  position: absolute;
  right: 280px;
  width: 340px;
  background: #405058;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  display: none; }

#chat-form #chat-box .chat-box-header {
  padding: 20px 24px;
  font-size: 14px;
  color: #fff;
  border-bottom: 1px solid #607885; }

#chat-form #chat-box .chat-box-header .chat-box-close {
  color: #ededed;
  font-size: 13px; }

#chat-form #chat-box .chat-box-header small {
  color: #BBBBBB;
  font-size: 12px;
  padding-left: 8px; }

#chat-form #chat-box .chat-content {
  height: 250px; }

#chat-form #chat-box ul.chat-box-body {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: auto;
  height: 250px; }

#chat-form #chat-box ul.chat-box-body > li {
  padding: 20px 24px;
  padding-bottom: 5px;
  padding-top: 0px; }

#chat-form #chat-box ul.chat-box-body > li:before {
  content: " ";
  display: table; }

#chat-form #chat-box ul.chat-box-body > li:after {
  clear: both;
  content: " ";
  display: table; }

#chat-form #chat-box ul.chat-box-body > li.odd {
  background: #45555e; }

#chat-form #chat-box ul.chat-box-body > li .avt {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin: 5px 5px 0px 0px;
  vertical-align: -9px; }

#chat-form #chat-box ul.chat-box-body > li .user {
  font-weight: bold;
  color: #fff; }

#chat-form #chat-box ul.chat-box-body > li .user:after {
  content: ':'; }

#chat-form #chat-box ul.chat-box-body > li .time {
  float: right;
  font-style: italic;
  color: #ededed;
  font-size: 11px;
  margin-top: 12px; }

#chat-form #chat-box ul.chat-box-body > li p {
  margin: 10px 0 8.5px;
  color: #eaeaea; }

#chat-form #chat-box .chat-textarea {
  padding: 20px 24px;
  position: relative; }

#chat-form #chat-box .chat-textarea textarea {
  background: #516570;
  border: 1px solid #516570;
  color: #fff;
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none; }

#chat-form #chat-box .chat-textarea textarea::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #ededed; }

#chat-form #chat-box .chat-textarea textarea:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #ededed; }

#chat-form #chat-box .chat-textarea textarea::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #ededed; }

#chat-form #chat-box .chat-textarea textarea:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #ededed; }

.sidebar-fixed {
  position: fixed; }

#sidebar {
  background: #4b5d67; }

.navbar-static-side ul li {
  border-bottom: 1px solid #4f626d; }

.navbar-static-side ul li:first-child a {
  padding: 0; }

.navbar-static-side ul li.active a {
  background: #bf4346;
  outline: none; }

.navbar-static-side ul li a {
  color: #FFFFFF;
  padding: 12px 15px; }

.navbar-static-side ul li a span.menu-title {
  margin-left: 10px; }

.navbar-static-side ul li a i {
  font-size: 16px;
  min-width: 20px;
  text-align: center; }

.navbar-static-side ul li a i .icon-bg {
  display: none; }

.navbar-static-side ul li a:hover,
.navbar-static-side ul li a:focus {
  background: #bf4346;
  transition: 0.2s all ease-in-out;
  outline: none; }

.navbar-static-side ul li a .badge,
.navbar-static-side ul li a .label {
  float: right;
  margin-right: 10px; }

.navbar-static-side ul li a.menu-title {
  margin-left: 10px; }

.navbar-static-side ul li .nav-second-level li {
  border-bottom: 1px solid #475861; }

.navbar-static-side ul li .nav-second-level li.active a,
.navbar-static-side ul li .nav-second-level li:hover a,
.navbar-static-side ul li .nav-second-level li:focus a {
  color: #bf4346; }

.navbar-static-side ul li .nav-second-level li a {
  padding: 14px 15px 14px 40px;
  background: #405058;
  color: #efefef; }

.navbar-static-side ul li .nav-second-level li a span.submenu-title {
  margin-left: 10px; }

.navbar-static-side ul li .nav-second-level li .nav-third-level li {
  border-bottom: 1px solid #42525b; }

.navbar-static-side ul li .nav-second-level li .nav-third-level li.active a,
.navbar-static-side ul li .nav-second-level li .nav-third-level li:hover a,
.navbar-static-side ul li .nav-second-level li .nav-third-level li:focus a {
  color: #bf4346; }

.navbar-static-side ul li .nav-second-level li .nav-third-level li a {
  padding: 15px 15px 15px 40px;
  background: #3a484f;
  color: #efefef; }

.navbar-static-side ul li .nav-second-level li .nav-third-level li a span.submenu-title {
  margin-left: 10px; }

.navbar-static-side ul li.sidebar-heading {
  padding: 5px 15px; }

.navbar-static-side ul li.sidebar-heading h4 {
  font-family: 'Oswald';
  font-size: 18px;
  font-weight: bold;
  color: #bf4346; }

.navbar-static-side ul li.user-panel {
  padding: 15px; }

.navbar-static-side ul li.user-panel .thumb {
  float: left;
  border: 5px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%; }

.navbar-static-side ul li.user-panel .thumb img {
  width: 45px;
  height: 45px; }

.navbar-static-side ul li.user-panel .info {
  float: left;
  padding: 5px 5px 5px 15px;
  color: #ffffff; }

.navbar-static-side ul li.user-panel .info p {
  margin-bottom: 3px;
  font-size: 16px; }

.navbar-static-side ul li.user-panel .info a {
  font-size: 10px; }

.navbar-static-side ul li.user-panel .info a i {
  font-size: 14px;
  color: #999; }

.navbar-static-side ul li.user-panel .info a:hover,
.navbar-static-side ul li.user-panel .info a:focus {
  background-color: transparent; }

.navbar-static-side ul li.user-panel .info a:hover i,
.navbar-static-side ul li.user-panel .info a:focus i {
  color: #777; }

.navbar-static-side ul li.user-panel ul li {
  border-bottom: 0; }

.sidebar-user-info {
  padding: 15px; }

.sidebar-user-info img {
  border: 5px solid #b53e41;
  width: 75px;
  height: 75px;
  display: inline-block; }

.sidebar-user-info h4 {
  color: #FFFFFF;
  margin-bottom: 5px; }

.sidebar-user-info ul {
  margin-bottom: 3px; }

.sidebar-user-info ul li {
  border-bottom: 0 !important; }

.sidebar-user-info ul li a {
  color: #cdcdcd; }

.sidebar-user-info .user-status {
  width: 10px;
  height: 10px;
  border-radius: 50% !important;
  display: inline-block;
  background: transparent;
  margin-right: 5px; }

.sidebar-user-info .user-status.is-online {
  background: #06B53C; }

.sidebar-user-info .user-status.is-idle {
  background: #F7D227; }

.sidebar-user-info .user-status.is-busy {
  background: #ee4749; }

.sidebar-user-info .user-status.is-offline {
  background: #666666; }

.sidebar-user-info span {
  color: #FFFFFF; }

.sidebar-user-activity {
  padding: 15px;
  border-bottom: 0 !important; }

.sidebar-user-activity h4 {
  color: #FFFFFF; }

.sidebar-user-activity .note {
  padding: 3px 15px;
  margin-bottom: 5px; }

.sidebar-user-activity .note small {
  color: #cdcdcd; }

.sidebar-user-activity .note a:hover,
.sidebar-user-activity .note a:focus {
  background: transparent; }

.arrow {
  float: right;
  margin-top: 3px; }

.fa.arrow:before {
  content: "\f104"; }

.active > a > .fa.arrow:before {
  content: "\f107"; }

@media (min-width: 768px) {
  .navbar-static-side {
    z-index: 1;
    position: absolute;
    width: 250px; } }

.right-sidebar #topbar .navbar-header {
  float: right;
  border-right: 0; }

.right-sidebar #sidebar {
  left: auto;
  right: 0; }

.right-sidebar #page-wrapper {
  margin: 0 250px 0 0; }

/* Begin Left Sidebar Collapsed */
.left-side-collapsed .navbar-static-side {
  width: 55px; }

.left-side-collapsed .navbar-static-side ul#side-menu li.user-panel {
  display: none; }

.left-side-collapsed .navbar-static-side ul#side-menu li.nav-hover a {
  height: 50px; }

.left-side-collapsed .navbar-static-side ul#side-menu li.nav-hover a span.menu-title {
  display: block !important; }

.left-side-collapsed .navbar-static-side ul#side-menu li.nav-hover a span.submenu-title {
  display: block !important;
  margin-left: 0; }

.left-side-collapsed .navbar-static-side ul#side-menu li.nav-hover ul.nav-second-level {
  display: block;
  position: absolute;
  top: 50px;
  left: 55px;
  width: 195px; }

.left-side-collapsed .navbar-static-side ul#side-menu li.nav-hover ul.nav-second-level li a {
  padding: 15px; }

.left-side-collapsed .navbar-static-side ul#side-menu li a span {
  display: none; }

.left-side-collapsed .navbar-static-side ul#side-menu li a i.fa {
  font-size: 18px; }

.left-side-collapsed .navbar-static-side ul#side-menu li a span.menu-title {
  position: absolute;
  top: 0;
  left: 55px;
  padding: 15px;
  margin-left: 0;
  background: #bf4346;
  color: #ffffff;
  width: 195px;
  height: 50px; }

.left-side-collapsed .navbar-static-side ul#side-menu li ul.nav-second-level {
  display: none;
  position: absolute;
  top: 50px;
  left: 55px;
  width: 195px; }

.left-side-collapsed .navbar-static-side ul#side-menu li ul.nav-second-level li a i {
  display: none; }

.left-side-collapsed #page-wrapper {
  margin: 0 0 0 55px; }

/* End Left Sidebar Collapsed */
/* Begin Right Sidebar Collapsed */
.right-side-collapsed .navbar-static-side {
  width: 55px; }

.right-side-collapsed .navbar-static-side ul#side-menu li.user-panel {
  display: none; }

.right-side-collapsed .navbar-static-side ul#side-menu li.nav-hover a {
  height: 50px; }

.right-side-collapsed .navbar-static-side ul#side-menu li.nav-hover a span.menu-title {
  display: block !important; }

.right-side-collapsed .navbar-static-side ul#side-menu li.nav-hover a span.submenu-title {
  display: block !important;
  margin-right: 0; }

.right-side-collapsed .navbar-static-side ul#side-menu li.nav-hover ul.nav-second-level {
  display: block;
  position: absolute;
  top: 50px;
  right: 55px;
  width: 195px; }

.right-side-collapsed .navbar-static-side ul#side-menu li.nav-hover ul.nav-second-level li a {
  padding: 15px 5px; }

.right-side-collapsed .navbar-static-side ul#side-menu li a span {
  display: none; }

.right-side-collapsed .navbar-static-side ul#side-menu li a i.fa {
  font-size: 18px; }

.right-side-collapsed .navbar-static-side ul#side-menu li a span.menu-title {
  position: absolute;
  top: 0;
  right: 55px;
  padding: 15px;
  margin-right: 0;
  background: #bf4346;
  color: #ffffff;
  width: 195px;
  height: 50px; }

.right-side-collapsed .navbar-static-side ul#side-menu li ul.nav-second-level {
  display: none;
  position: absolute;
  top: 50px;
  right: 55px;
  width: 195px; }

.right-side-collapsed .navbar-static-side ul#side-menu li ul.nav-second-level li a i {
  display: none; }

.right-side-collapsed #page-wrapper {
  margin: 0 55px 0 0; }

/* End Left Sidebar Collapsed */
.page-content {
  padding: 20px 20px 50px 15px;
  min-height: 700px;
  clear: both; }

#footer {
  width: 100%;
  padding: 7px 20px;
  background-color: #405058;
  color: #FFFFFF;
  font-size: 12px;
  text-align: right; }

#footer.fixed {
  border-top: 1px solid #f3f3f3;
  background: #fff;
  position: fixed;
  color: #999;
  bottom: 0px; }

/*panel stat*/
#sum_box .db {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s; }

#sum_box .icon {
  color: #777777;
  font-size: 14px;
  margin-bottom: 0px;
  float: right; }

#sum_box .icon.fa-shopping-cart {
  color: #5cb85c; }

#sum_box .icon.fa-money {
  color: #5bc0de; }

#sum_box .icon.fa-signal {
  color: #d9534f; }

#sum_box .icon.fa-group {
  color: #f0ad4e; }

#sum_box h4 {
  text-align: left;
  margin-top: 0px;
  font-size: 30px;
  margin-bottom: 0px;
  padding-bottom: 0px; }

#sum_box h4 span:last-child {
  font-size: 25px; }

#sum_box p.description {
  margin-top: 0px;
  opacity: 0.9; }

#sum_box .db:hover {
  background: #4b5d67;
  color: #fff; }

#sum_box .db:hover .icon {
  opacity: 1;
  color: #fff; }

#sum_box .db:hover p.description {
  opacity: 1; }

/*panel stat*/
/*user profile*/
.profile {
  display: inline-block; }

.profile h2 {
  margin-top: 0; }

.profile .divider {
  border-top: 1px solid rgba(0, 0, 0, 0.1); }

.profile .user-info {
  padding: 15px;
  background: url("http://swlabs.co/madmin/code/images/gallery/13.jpg");
  color: #888; }

.profile .user-info .img-circle {
  border: 2px solid #fff; }

.profile .user-info:hover {
  color: #111; }

.profile .user-action {
  padding: 0px 15px 15px 15px; }

figcaption.ratings {
  margin-top: 20px; }

figcaption.ratings a {
  color: #f1c40f;
  font-size: 11px; }

.emphasis {
  border-top: 4px solid transparent;
  padding-top: 15px; }

.emphasis:hover {
  border-top: 4px solid #1abc9c;
  color: #111; }

.emphasis h2 {
  margin-bottom: 0; }

/*user profile*/
/*to-do list*/
ul.todo-list {
  overflow: hidden;
  width: auto;
  height: 250px;
  padding: 0; }

ul.todo-list li {
  background: #f3f3f3;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  position: relative;
  padding: 13px;
  margin-bottom: 5px;
  cursor: move;
  list-style: none; }

ul.todo-list li span.drag-drop {
  height: 17px;
  display: block;
  float: left;
  width: 7px;
  position: relative;
  top: 2px; }

ul.todo-list li span.drag-drop i {
  height: 2px;
  width: 2px;
  display: block;
  background: #ccc;
  box-shadow: 5px 0 0 0px #ccc,0px 5px 0 0px #ccc,5px 5px 0 0px #ccc,0px 10px 0 0px #ccc,5px 10px 0 0px #ccc,0px 15px 0 0px #ccc,5px 15px 0 0px #ccc;
  -webkit-box-shadow: 5px 0 0 0px #ccc,0px 5px 0 0px #ccc,5px 5px 0 0px #ccc,0px 10px 0 0px #ccc,5px 10px 0 0px #ccc,0px 15px 0 0px #ccc,5px 15px 0 0px #ccc;
  -moz-box-shadow: 5px 0 0 0px #ccc,0px 5px 0 0px #ccc,5px 5px 0 0px #ccc,0px 10px 0 0px #ccc,5px 10px 0 0px #ccc,0px 15px 0 0px #ccc,5px 15px 0 0px #ccc; }

ul.todo-list li .todo-check {
  margin-left: 10px;
  margin-right: 10px; }

ul.todo-list li .todo-title {
  margin-right: 90px; }

ul.todo-list li .todo-actions {
  position: absolute;
  right: 15px;
  top: 13px; }

ul.todo-list li .todo-actions a i {
  color: #777777;
  margin: 0 5px; }

ul.todo-list li .todo-actions a:hover i,
ul.todo-list li .todo-actions a:focus i {
  color: #555555; }

/*to-do list*/
/*chat form*/
ul.chats {
  margin: 0;
  padding: 0; }

ul.chats li {
  list-style: none;
  margin: 30px auto;
  font-size: 12px; }

ul.chats li:first-child {
  margin-top: 0; }

ul.chats li img.avatar {
  width: 50px;
  height: 50px;
  -webkit-border-radius: 50% !important;
  -moz-border-radius: 50% !important;
  border-radius: 50% !important; }

ul.chats li .message {
  display: block;
  padding: 7px;
  position: relative; }

ul.chats li .message .chat-datetime {
  font-style: italic;
  color: #888;
  font-size: 11px; }

ul.chats li .message .chat-body {
  display: block;
  margin-top: 5px; }

ul.chats li.in img.avatar {
  float: left; }

ul.chats li.in .message {
  background: #b3e5fc;
  margin-left: 65px;
  border-left: 3px solid #03a9f4;
  border-radius: 4px; }

.chats li.in .message .chat-arrow {
  display: block;
  position: absolute;
  top: 15px;
  left: -10px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #03a9f4; }

ul.chats li.in .message a.chat-name {
  color: #bf4346; }

ul.chats li.out img.avatar {
  float: right; }

ul.chats li.out .message {
  background: #a3e9a4;
  margin-right: 65px;
  border-right: 3px solid #2baf2b;
  text-align: right;
  border-radius: 4px; }

ul.chats li.out .message .chat-arrow {
  display: block;
  position: absolute;
  top: 15px;
  right: -10px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #2baf2b; }

ul.chats li.out .message a.chat-name {
  color: #bf4346; }

ul.chats li.out .message a.chat-name,
ul.chats li.out .message a.chat-datetime {
  text-align: right; }

.chat-form {
  margin-top: 15px;
  padding: 10px;
  background-color: #f0f0f0;
  overflow: hidden;
  clear: both; }

.chat-form #input-chat,
.chat-form .input-group-btn .btn {
  border: 0; }

.chat-form .input-group-btn:last-child > .btn,
.chat-form .input-group-btn:last-child > .btn-group {
  margin-left: 0; }

/*chat form*/
/* begin Carousel */
ol.list-indicators {
  margin-top: 5px;
  margin-bottom: 0;
  bottom: -25px; }

ol.list-indicators li {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #777777;
  margin: 0 5px;
  cursor: pointer;
  border: 0; }

ol.list-indicators li.active {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #bf4346;
  margin: 0 5px;
  cursor: pointer;
  border: 0; }

.carousel-control {
  top: auto;
  bottom: -25px;
  font-size: 12px;
  text-shadow: none;
  color: #777777; }

.carousel-control:hover,
.carousel-control:focus {
  color: #bf4346; }

.carousel-control.left {
  background: transparent; }

.carousel-control.right {
  background: transparent; }

/* begin Carousel */
.row-icons {
  padding: 15px 0;
  margin: 0; }

.row-icons [class*="col"] {
  margin-bottom: 20px;
  padding: 0; }

.row-icons [class*="col"] a {
  line-height: 30px;
  display: inline-block;
  color: #777777;
  text-decoration: none; }

.row-icons [class*="col"] a:hover i.fa:before {
  color: #cc696b; }

.row-icons [class*="col"] a:hover i.glyphicon:before {
  color: #cc696b; }

.row-icons [class*="col"] i.fa {
  vertical-align: middle;
  margin: 0 10px;
  width: 40px; }

.row-icons [class*="col"] i:before {
  color: #bf4346;
  font-size: 30px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.row-icons [class*="col"] span {
  padding-left: 20px;
  vertical-align: top; }

.modal-full-width {
  width: 100%; }

.modal-wide-width {
  width: 70%; }

.closeTab:hover {
  cursor: pointer; }

.closeTab {
  font-size: 15px; }

#error-page {
  background: #F0F2F5;
  text-align: center;
  position: relative; }

#error-page #error-page-content {
  width: 480px;
  margin: 10% auto 0 auto;
  text-align: center; }

#error-page #error-page-content h1 {
  font-family: 'oswald';
  font-size: 150px;
  font-weight: bold;
  color: #bf4346; }

#error-page #error-page-content p a {
  color: #bf4346; }

#error-page #error-page-content p a:hover,
#error-page #error-page-content p a:focus {
  text-decoration: underline; }

#signin-page {
  background-image: radial-gradient(circle, #a9a393, #ae9b7c, #b59267, #bf8656, #ca7849, #ca6e43, #c9633e, #c9573a, #bd5135, #b14a30, #a6442c, #9a3e27);
  -moz-background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  padding: 5px;
  height: auto; }

#admin-signin-page {
  background: url(/assets/reach-back-d9e6cc966613b1b4e209358e8afe80cd2fbc39fa61a183b1191baa87611784c0.jpg) center center fixed;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  padding: 5px;
  height: auto; }

#signup-page {
  background: url(/assets/sign_up_background-048c04ca9668113de17875bf608e5d46f0e1498aadbb05341a2d3fa6fe7e88bd.jpg) center center fixed;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  padding: 5px;
  height: auto; }

#lock-screen-page {
  background: url("http://swlabs.co/madmin/code/images/bg/3.jpg") center center fixed;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  padding: 5px;
  height: 1000px; }

#lock-screen-page .page-form {
  background-color: rgba(0, 0, 0, 0.2);
  color: #ffffff; }

#lock-screen-page .page-form input {
  background-color: rgba(0, 0, 0, 0.3);
  border: 0; }

.page-form {
  width: 400px;
  margin: 10% auto 0 auto;
  background: #eeeeee;
  border-radius: 4px;
  -webkit-box-shadow: 10px 10px 14px 1px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 10px 10px 14px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 10px 10px 14px 1px rgba(0, 0, 0, 0.2); }

.admin-page-form {
  width: 400px;
  margin: 10% auto 0 auto;
  background: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 10px 10px 14px 1px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 10px 10px 14px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 10px 10px 14px 1px rgba(0, 0, 0, 0.2); }

.admin-page-form .header-content {
  padding: 15px 20px;
  background: #fff;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px; }

.admin-page-form .header-content h1 {
  font-family: 'oswald';
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  margin: 0;
  text-transform: uppercase; }

.admin-page-form .body-content {
  padding: 15px 20px;
  position: relative; }

.admin-page-form .body-content .btn-twitter {
  background: #5bc0de;
  margin-bottom: 10px;
  color: #ffffff; }

.admin-page-form .body-content .btn-twitter i {
  margin-right: 5px; }

.admin-page-form .body-content .btn-twitter:hover,
.admin-page-form .body-content .btn-twitter:focus {
  color: #ffffff; }

.admin-page-form .body-content .btn-facebook {
  background: #418bca;
  margin-bottom: 10px;
  color: #ffffff; }

.admin-page-form .body-content .btn-facebook i {
  margin-right: 5px; }

.admin-page-form .body-content .btn-facebook:hover,
.admin-page-form .body-content .btn-facebook:focus {
  color: #ffffff; }

.admin-page-form .body-content .btn-google-plus {
  background: #dd4c39;
  margin-bottom: 10px;
  color: #ffffff; }

.admin-page-form .body-content .btn-google-plus i {
  margin-right: 5px; }

.admin-page-form .body-content .btn-google-plus:hover,
.admin-page-form .body-content .btn-google-plus:focus {
  color: #ffffff; }

.admin-page-form .body-content p a {
  color: #bf4346; }

.admin-page-form .body-content p a:hover,
.admin-page-form .body-content p a:focus {
  color: #777777;
  text-decoration: none; }

.admin-page-form .body-content .forget-password h4 {
  text-transform: uppercase;
  font-size: 16px; }

.admin-page-form .body-content hr {
  border-color: #e0e0e0; }

.admin-page-form .state-error + em {
  display: block;
  margin-top: 6px;
  padding: 0 1px;
  font-style: normal;
  font-size: 11px;
  line-height: 15px;
  color: #d9534f; }

.admin-page-form .rating.state-error + em {
  margin-top: -4px;
  margin-bottom: 4px; }

.admin-page-form .state-success + em {
  display: block;
  margin-top: 6px;
  padding: 0 1px;
  font-style: normal;
  font-size: 11px;
  line-height: 15px;
  color: #d9534f; }

.admin-page-form .state-error input,
.admin-page-form .state-error select {
  background: #f2dede; }

.admin-page-form .state-success input,
.admin-page-form .state-success select {
  background: #dff0d8; }

.admin-page-form .note-success {
  color: #5cb85c; }

.admin-page-form label {
  font-weight: normal;
  margin-bottom: 0; }

#lock-screen-page .admin-page-form {
  margin-top: 15%;
  text-align: center; }

.page-form input[type='text'],
.page-form input[type='password'],
.page-form input[type='email'],
.page-form select {
  height: 80px;
  border-color: #e5e5e5;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  color: #777777; }

.page-form .input-icon i {
  margin-top: 12px; }

.page-form input[type='text'],
.page-form input[type='password'],
.page-form input[type='email'],
.page-form select {
  height: 40px;
  border-color: #e5e5e5;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  color: #777777; }

.page-form .header-content {
  padding: 15px 20px;
  background: #e9e9e9;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px; }

.page-form .header-content h1 {
  font-family: 'oswald';
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  margin: 0;
  text-transform: uppercase; }

.page-form .body-content {
  padding: 15px 20px;
  position: relative; }

.page-form .body-content .btn-twitter {
  background: #5bc0de;
  margin-bottom: 10px;
  color: #ffffff; }

.page-form .body-content .btn-twitter i {
  margin-right: 5px; }

.page-form .body-content .btn-twitter:hover,
.page-form .body-content .btn-twitter:focus {
  color: #ffffff; }

.page-form .body-content .btn-facebook {
  background: #418bca;
  margin-bottom: 10px;
  color: #ffffff; }

.page-form .body-content .btn-facebook i {
  margin-right: 5px; }

.page-form .body-content .btn-facebook:hover,
.page-form .body-content .btn-facebook:focus {
  color: #ffffff; }

.page-form .body-content .btn-google-plus {
  background: #dd4c39;
  margin-bottom: 10px;
  color: #ffffff; }

.page-form .body-content .btn-google-plus i {
  margin-right: 5px; }

.page-form .body-content .btn-google-plus:hover,
.page-form .body-content .btn-google-plus:focus {
  color: #ffffff; }

.page-form .body-content p a {
  color: #bf4346; }

.page-form .body-content p a:hover,
.page-form .body-content p a:focus {
  color: #777777;
  text-decoration: none; }

.page-form .body-content .forget-password h4 {
  text-transform: uppercase;
  font-size: 16px; }

.page-form .body-content hr {
  border-color: #e0e0e0; }

.page-form .state-error + em {
  display: block;
  margin-top: 6px;
  padding: 0 1px;
  font-style: normal;
  font-size: 11px;
  line-height: 15px;
  color: #d9534f; }

.page-form .rating.state-error + em {
  margin-top: -4px;
  margin-bottom: 4px; }

.page-form .state-success + em {
  display: block;
  margin-top: 6px;
  padding: 0 1px;
  font-style: normal;
  font-size: 11px;
  line-height: 15px;
  color: #d9534f; }

.page-form .state-error input,
.page-form .state-error select {
  background: #f2dede; }

.page-form .state-success input,
.page-form .state-success select {
  background: #dff0d8; }

.page-form .note-success {
  color: #5cb85c; }

.page-form label {
  font-weight: normal;
  margin-bottom: 0; }

#lock-screen-page .page-form {
  margin-top: 15%;
  text-align: center; }

#lock-screen-page .page-form h1 {
  margin: 0;
  font-family: 'Oswald'; }

#lock-screen-avatar {
  top: -78px;
  left: 50%;
  margin-left: -74px;
  position: absolute;
  display: inline-block; }

#lock-screen-avatar img {
  border: 10px solid #eeeeee; }

#lock-screen-info {
  margin-top: 60px; }

@media only screen and (max-width: 480px) {
  .page-form {
    width: 280px; }
  #lock-screen-page .page-form {
    margin-top: 35%; } }

#line-chart-spline canvas {
  height: auto !important; }

.timeline-centered {
  position: relative;
  margin-bottom: 30px; }

.timeline-centered.timeline-sm .timeline-entry {
  margin-bottom: 20px !important; }

.timeline-centered.timeline-sm .timeline-entry .timeline-entry-inner .timeline-label {
  padding: 1em; }

.timeline-centered:before,
.timeline-centered:after {
  content: " ";
  display: table; }

.timeline-centered:after {
  clear: both; }

.timeline-centered:before {
  content: '';
  position: absolute;
  display: block;
  width: 7px;
  background: #ffffff;
  left: 50%;
  top: 20px;
  bottom: 20px;
  margin-left: -4px; }

.timeline-centered .timeline-entry {
  position: relative;
  width: 50%;
  float: right;
  margin-bottom: 70px;
  clear: both; }

.timeline-centered .timeline-entry:before,
.timeline-centered .timeline-entry:after {
  content: " ";
  display: table; }

.timeline-centered .timeline-entry:after {
  clear: both; }

.timeline-centered .timeline-entry.begin {
  margin-bottom: 0; }

.timeline-centered .timeline-entry.left-aligned {
  float: left; }

.timeline-centered .timeline-entry.left-aligned .timeline-entry-inner {
  margin-left: 0;
  margin-right: -28px; }

.timeline-centered .timeline-entry.left-aligned .timeline-entry-inner .timeline-time {
  left: auto;
  right: -115px;
  text-align: left; }

.timeline-centered .timeline-entry.left-aligned .timeline-entry-inner .timeline-icon {
  float: right; }

.timeline-centered .timeline-entry.left-aligned .timeline-entry-inner .timeline-label {
  margin-left: 0;
  margin-right: 85px; }

.timeline-centered .timeline-entry.left-aligned .timeline-entry-inner .timeline-label:after {
  left: auto;
  right: 0;
  margin-left: 0;
  margin-right: -9px;
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg); }

.timeline-centered .timeline-entry .timeline-entry-inner {
  position: relative;
  margin-left: -31px; }

.timeline-centered .timeline-entry .timeline-entry-inner:before,
.timeline-centered .timeline-entry .timeline-entry-inner:after {
  content: " ";
  display: table; }

.timeline-centered .timeline-entry .timeline-entry-inner:after {
  clear: both; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-time {
  position: absolute;
  left: -115px;
  text-align: right;
  padding: 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-time > span {
  display: block; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-time > span:first-child {
  font-size: 18px;
  font-weight: bold; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-time > span:last-child {
  font-size: 12px; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon {
  background: #fff;
  color: #777777;
  display: block;
  width: 60px;
  height: 60px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding-box;
  background-clip: padding-box;
  border-radius: 50%;
  text-align: center;
  border: 7px solid #ffffff;
  line-height: 45px;
  font-size: 15px;
  float: left; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-primary {
  background-color: #bf4346;
  color: #fff; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-success {
  background-color: #5cb85c;
  color: #fff; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-info {
  background-color: #5bc0de;
  color: #fff; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-warning {
  background-color: #f0ad4e;
  color: #fff; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-danger {
  background-color: #d9534f;
  color: #fff; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-red {
  background-color: #bf4346;
  color: #fff; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-green {
  background-color: #488c6c;
  color: #fff; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-blue {
  background-color: #0a819c;
  color: #fff; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-yellow {
  background-color: #f2994b;
  color: #fff; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-orange {
  background-color: #e9662c;
  color: #fff; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-pink {
  background-color: #bf3773;
  color: #fff; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-violet {
  background-color: #9351ad;
  color: #fff; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-grey {
  background-color: #4b5d67;
  color: #fff; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-dark {
  background-color: #594857;
  color: #fff; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label {
  position: relative;
  background: #ffffff;
  padding: 1.7em;
  margin-left: 85px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-red {
  background: #bf4346; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-red:after {
  border-color: transparent #bf4346 transparent transparent; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-red .timeline-title,
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-red p {
  color: #ffffff; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-green {
  background: #488c6c; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-green:after {
  border-color: transparent #488c6c transparent transparent; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-green .timeline-title,
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-green p {
  color: #ffffff; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-orange {
  background: #e9662c; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-orange:after {
  border-color: transparent #e9662c transparent transparent; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-orange .timeline-title,
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-orange p {
  color: #ffffff; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-yellow {
  background: #f2994b; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-yellow:after {
  border-color: transparent #f2994b transparent transparent; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-yellow .timeline-title,
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-yellow p {
  color: #ffffff; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-blue {
  background: #0a819c; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-blue:after {
  border-color: transparent #0a819c transparent transparent; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-blue .timeline-title,
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-blue p {
  color: #ffffff; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-pink {
  background: #bf3773; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-pink:after {
  border-color: transparent #bf3773 transparent transparent; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-pink .timeline-title,
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-pink p {
  color: #ffffff; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-violet {
  background: #9351ad; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-violet:after {
  border-color: transparent #9351ad transparent transparent; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-violet .timeline-title,
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-violet p {
  color: #ffffff; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-grey {
  background: #4b5d67; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-grey:after {
  border-color: transparent #4b5d67 transparent transparent; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-grey .timeline-title,
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-grey p {
  color: #ffffff; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-dark {
  background: #594857; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-dark:after {
  border-color: transparent #594857 transparent transparent; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-dark .timeline-title,
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-dark p {
  color: #ffffff; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label:after {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 9px 9px 0;
  border-color: transparent #ffffff transparent transparent;
  left: 0;
  top: 20px;
  margin-left: -9px; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label .timeline-title,
.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label p {
  color: #777777;
  margin: 0; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label p + p {
  margin-top: 15px; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label .timeline-title {
  margin-bottom: 10px;
  font-family: 'Oswald';
  font-weight: bold; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label .timeline-title span {
  -webkit-opacity: .6;
  -moz-opacity: .6;
  opacity: .6;
  -ms-filter: alpha(opacity=60);
  filter: alpha(opacity=60); }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label p .timeline-img {
  margin: 5px 10px 0 0; }

.timeline-centered .timeline-entry .timeline-entry-inner .timeline-label p .timeline-img.pull-right {
  margin: 5px 0 0 10px; }

.panel-group .panel .panel {
  margin-bottom: 15px; }

.panel-group .panel .panel-title {
  font-size: 17px;
  font-weight: 400; }

.panel-group .panel .panel-title .accordion-toggle {
  padding: 7px 0px; }

.tab-content.tab-edit {
  background: transparent;
  border: 0px; }

.nav-pills li.active a {
  border: 1px solid #bf4346; }

ul.nav.nav-tabs.ul-edit {
  border-bottom: 5px solid #bf4346 !important; }

ul.nav.nav-tabs.ul-edit li a {
  border: 0px;
  background: none;
  padding: 10px 20px; }

ul.nav.nav-tabs.ul-edit li.active a {
  background: #bf4346;
  color: #fff;
  border: 0px; }

.timeline {
  list-style: none;
  padding: 20px 0 20px;
  position: relative; }

.timeline:before {
  top: 0;
  bottom: 0;
  position: absolute;
  content: " ";
  width: 3px;
  background-color: #fff;
  left: 50%;
  margin-left: -1.5px; }

.timeline > li {
  margin-bottom: 20px;
  position: relative; }

.timeline > li:before,
.timeline > li:after {
  content: " ";
  display: table; }

.timeline > li:after {
  clear: both; }

.timeline > li:before,
.timeline > li:after {
  content: " ";
  display: table; }

.timeline > li:after {
  clear: both; }

.timeline > li > .timeline-panel {
  width: 44%;
  float: left;
  border: 1px solid #d4d4d4;
  border-radius: 2px;
  padding: 20px;
  position: relative;
  -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
  background: #fff; }

.timeline > li > .timeline-panel.primary {
  background: #2e6da4;
  color: #fff; }

.timeline > li > .timeline-panel.primary:after {
  border-left: 14px solid #2e6da4;
  border-right: 0 solid #2e6da4; }

.timeline > li > .timeline-panel.success {
  background: #3f903f;
  color: #fff; }

.timeline > li > .timeline-panel.success:after {
  border-left: 14px solid #3f903f;
  border-right: 0 solid #3f903f; }

.timeline > li > .timeline-panel.warning {
  background: #f0ad4e;
  color: #fff; }

.timeline > li > .timeline-panel.warning:after {
  border-left: 14px solid #f0ad4e;
  border-right: 0 solid #f0ad4e; }

.timeline > li > .timeline-panel.danger {
  background: #d9534f;
  color: #fff; }

.timeline > li > .timeline-panel.danger:after {
  border-left: 14px solid #d9534f;
  border-right: 0 solid #d9534f; }

.timeline > li > .timeline-panel.info {
  background: #5bc0de;
  color: #fff; }

.timeline > li > .timeline-panel.info:after {
  border-left: 14px solid #5bc0de;
  border-right: 0 solid #5bc0de; }

.timeline > li > .timeline-panel:before {
  position: absolute;
  top: 26px;
  right: -15px;
  display: inline-block;
  border-top: 15px solid transparent;
  border-left: 15px solid #ccc;
  border-right: 0 solid #ccc;
  border-bottom: 15px solid transparent;
  content: " "; }

.timeline > li > .timeline-panel:after {
  position: absolute;
  top: 27px;
  right: -14px;
  display: inline-block;
  border-top: 14px solid transparent;
  border-left: 14px solid #fff;
  border-right: 0 solid #fff;
  border-bottom: 14px solid transparent;
  content: " "; }

.timeline > li > .timeline-badge {
  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 35px;
  font-size: 1.4em;
  text-align: center;
  position: absolute;
  top: 16px;
  left: 50%;
  margin-left: -25px;
  background-color: #999999;
  z-index: 100;
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  border: 2px solid #fff; }

.timeline > li > .timeline-badge i.glyphicon {
  top: 7px; }

.timeline > li.timeline-inverted > .timeline-panel {
  float: right; }

.timeline > li.timeline-inverted > .timeline-panel:before {
  border-left-width: 0;
  border-right-width: 15px;
  left: -15px;
  right: auto; }

.timeline > li.timeline-inverted > .timeline-panel:after {
  border-left-width: 0;
  border-right-width: 14px;
  left: -14px;
  right: auto; }

.timeline-badge.primary {
  background-color: #2e6da4 !important; }

.timeline-badge.success {
  background-color: #3f903f !important; }

.timeline-badge.warning {
  background-color: #f0ad4e !important; }

.timeline-badge.danger {
  background-color: #d9534f !important; }

.timeline-badge.info {
  background-color: #5bc0de !important; }

.timeline-title {
  margin-top: 0;
  color: inherit; }

.timeline-body > p,
.timeline-body > ul {
  margin-bottom: 0; }

.timeline-body > p + p {
  margin-top: 5px; }

@media (max-width: 767px) {
  ul.timeline:before {
    left: 40px; }
  ul li:not(.timeline-inverted) .timeline-panel:after {
    border-left: 0px !important; }
  ul li:not(.timeline-inverted) .timeline-panel.primary:before {
    border-right: 15px solid #2e6da4; }
  ul li:not(.timeline-inverted) .timeline-panel.danger:before {
    border-right: 15px solid #d9534f; }
  ul.timeline > li > .timeline-panel {
    width: calc(80%);
    width: -moz-calc(80%);
    width: -webkit-calc(80%); }
  ul.timeline > li > .timeline-badge {
    left: 15px;
    margin-left: 0;
    top: 16px; }
  ul.timeline > li > .timeline-panel {
    float: right; }
  ul.timeline > li > .timeline-panel:before {
    border-left-width: 0;
    border-right-width: 15px;
    left: -15px;
    right: auto; }
  ul.timeline > li > .timeline-panel:after {
    border-left-width: 0;
    border-right-width: 14px;
    left: -14px;
    right: auto; } }

#one-column .message-item {
  margin-bottom: 25px;
  margin-left: 40px;
  position: relative; }

#one-column .message-item .message-inner {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0px;
  padding: 10px;
  position: relative; }

#one-column .message-item .message-inner:before {
  border-right: 10px solid #ddd;
  border-style: solid;
  border-width: 10px;
  color: rgba(0, 0, 0, 0);
  content: "";
  display: block;
  height: 0;
  position: absolute;
  left: -20px;
  top: 6px;
  width: 0; }

#one-column .message-item .message-inner:after {
  border-right: 10px solid #fff;
  border-style: solid;
  border-width: 10px;
  color: rgba(0, 0, 0, 0);
  content: "";
  display: block;
  height: 0;
  position: absolute;
  left: -18px;
  top: 6px;
  width: 0; }

#one-column .message-item:before {
  background: #fff;
  border-radius: 2px;
  bottom: -30px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  content: "";
  height: 100%;
  left: -30px;
  position: absolute;
  width: 3px; }

#one-column .message-item:after {
  background: #fff;
  border: 2px solid #ccc;
  border-radius: 0px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  content: "";
  height: 15px;
  left: -36px;
  position: absolute;
  top: 10px;
  width: 15px; }

#one-column .clearfix:before,
#one-column .clearfix:after {
  content: " ";
  display: table; }

#one-column .message-item .message-head {
  border-bottom: 1px solid #eee;
  margin-bottom: 8px;
  padding-bottom: 8px; }

#one-column .message-item .message-head .avatar {
  margin-right: 20px; }

#one-column .message-item .message-head .user-detail {
  overflow: hidden; }

#one-column .message-item .message-head .user-detail h5 {
  font-size: 16px;
  font-weight: bold;
  margin: 0; }

#one-column .message-item .message-head .post-meta {
  float: left;
  padding: 0 15px 0 0; }

#one-column .message-item .message-head .post-meta > div {
  color: #333;
  font-weight: bold;
  text-align: right; }

#one-column .post-meta > div {
  color: #777;
  font-size: 12px;
  line-height: 22px; }

#one-column .message-item .message-head .post-meta > div {
  color: #333;
  font-weight: bold;
  text-align: right; }

#one-column .post-meta > div {
  color: #777;
  font-size: 12px;
  line-height: 22px; }

#one-column .avatar img {
  min-height: 40px;
  max-height: 40px; }

#one-column .post-meta .qa-message-who-pad {
  margin-left: 10px; }

#one-column .message-item.blue:after {
  background: #0a819c; }

#one-column .message-item.blue .message-inner {
  border-color: #0a819c; }

#one-column .message-item.blue .message-inner:before {
  border-right-color: #0a819c; }

#one-column .message-item.red:after {
  background: #bf4346; }

#one-column .message-item.red .message-inner {
  border-color: #bf4346; }

#one-column .message-item.red .message-inner:before {
  border-right-color: #bf4346; }

#one-column .message-item.green:after {
  background: #488c6c; }

#one-column .message-item.green .message-inner {
  border-color: #488c6c; }

#one-column .message-item.green .message-inner:before {
  border-right-color: #488c6c; }

#one-column .message-item.orange:after {
  background: #e9662c; }

#one-column .message-item.orange .message-inner {
  border-color: #e9662c; }

#one-column .message-item.orange .message-inner:before {
  border-right-color: #e9662c; }

#one-column .message-item.pink:after {
  background: #bf3773; }

#one-column .message-item.pink .message-inner {
  border-color: #bf3773; }

#one-column .message-item.pink .message-inner:before {
  border-right-color: #bf3773; }

#one-column .message-item.violet:after {
  background: #9351ad; }

#one-column .message-item.violet .message-inner {
  border-color: #9351ad; }

#one-column .message-item.violet .message-inner:before {
  border-right-color: #9351ad; }

.blog-page h1 {
  margin-bottom: 20px; }

.blog-page .blog-articles {
  padding-bottom: 20px; }

.blog-page .blog-articles .blog-img {
  margin-bottom: 10px; }

.blog-page .blog-articles .blog-img img {
  margin-bottom: 12px; }

.blog-page .blog-articles .blog-img ul {
  margin-bottom: 5px;
  margin-left: 0; }

.blog-page .blog-articles .blog-img ul li {
  padding: 0; }

.blog-page .blog-articles .blog-img ul li i {
  color: #bf4346;
  margin-right: 3px; }

.blog-page .blog-articles .blog-img ul li a {
  margin-right: 8px;
  text-decoration: none; }

.blog-page .blog-articles .blog-img ul.blog-date li i {
  color: #bf4346;
  margin-right: 3px; }

.blog-page .blog-articles .blog-img ul.blog-date li a {
  color: #777777; }

.blog-page .blog-articles .blog-article {
  padding-bottom: 20px; }

.blog-page .blog-articles .blog-article h3 {
  margin-top: 0; }

.blog-page .blog-articles ul.blog-tags {
  margin-bottom: 5px;
  margin-left: 0; }

.blog-page .blog-articles ul.blog-tags li {
  padding: 0; }

.blog-page .blog-articles ul.blog-tags li i {
  color: #bf4346;
  margin-right: 3px; }

.blog-page .blog-articles ul.blog-tags li a {
  margin-right: 8px;
  text-decoration: none; }

.blog-page .blog-articles ul.blog-date li i {
  color: #bf4346;
  margin-right: 3px; }

.blog-page .blog-articles ul.blog-date li a {
  color: #777777; }

.blog-page .blog-sidebar ul li a {
  color: #777777; }

.blog-page .blog-sidebar .blog-images li a img {
  width: 50px;
  height: 50px;
  opacity: 0.6;
  margin: 0 2px 8px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.blog-page .blog-sidebar .blog-images li a img:hover {
  opacity: 1; }

.blog-page .blog-sidebar .sidebar-tags li {
  padding: 0; }

.blog-page .blog-sidebar .sidebar-tags li a {
  color: #ffffff;
  margin: 0 2px 5px 0;
  display: inline-block; }

.blog-page hr {
  margin-bottom: 40px; }

.blog-page h4.media-heading span {
  font-size: 12px; }

.blog-page .media .media-body hr {
  margin-bottom: 20px; }

#external-events .external-event {
  display: inline-block;
  cursor: move;
  margin-bottom: 5px;
  margin-right: 5px; }

.gallery-pages .list-filter {
  margin-top: 10px; }

.gallery-pages .list-filter li {
  cursor: pointer;
  padding: 6px 15px;
  margin-right: 5px;
  margin-bottom: 5px;
  background: #eee;
  display: inline-block;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }

.gallery-pages .list-filter li.active,
.gallery-pages .list-filter li:hover,
.gallery-pages .list-filter li:focus {
  background: #bf4346;
  color: #ffffff; }

.gallery-pages .mix-grid .mix {
  display: none;
  position: relative;
  overflow: hidden;
  margin-bottom: 15px; }

.gallery-pages .mix-grid .mix .hover-effect {
  position: relative;
  border: 0;
  width: 100%;
  height: 100%;
  box-shadow: none;
  overflow: hidden; }

.gallery-pages .mix-grid .mix .hover-effect .img {
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1); }

.gallery-pages .mix-grid .mix .hover-effect .info {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  background: rgba(26, 74, 114, 0.6);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%); }

.gallery-pages .mix-grid .mix .hover-effect .info h3 {
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  font-size: 16px;
  padding: 10px;
  background: #111111;
  margin: 30px 0 0 0; }

.gallery-pages .mix-grid .mix .hover-effect .info p {
  font-style: italic;
  font-size: 12px;
  position: relative;
  color: #e0e0e0;
  padding: 20px 20px 20px;
  text-align: center; }

.gallery-pages .mix-grid .mix .hover-effect .info a.mix-link {
  color: #fff;
  text-align: center;
  padding: 10px 15px;
  background: #bf4346;
  margin: 20px 10px 20px 0;
  display: inline-block; }

.gallery-pages .mix-grid .mix .hover-effect .info a.mix-zoom {
  color: #fff;
  text-align: center;
  padding: 10px 15px;
  background: #bf4346;
  margin: 20px 10px 20px 0;
  display: inline-block; }

.gallery-pages .mix-grid .mix .hover-effect:hover .img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2); }

.gallery-pages .mix-grid .mix .hover-effect:hover .info {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0); }

.gallery-pages .action-group {
  margin-top: 8px;
  margin-bottom: 20px; }

.gallery-pages .action-group button {
  font-size: 13px; }

.frontend-pages .hover-effect {
  position: relative;
  border: 0;
  width: 100%;
  height: 100%;
  box-shadow: none;
  overflow: hidden; }

.frontend-pages .hover-effect .img {
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1); }

.frontend-pages .hover-effect .info {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.7);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%); }

.frontend-pages .hover-effect .info h3 {
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  font-size: 20px;
  padding: 10px;
  background: #bf4346;
  margin: 25% 0 0 0; }

.frontend-pages .hover-effect:hover .info {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0); }

.mail-content {
  overflow-x: hidden;
  overflow-y: auto;
  height: 657px; }

.mail-content .mail-sender {
  width: 100%;
  display: inline-block;
  margin: 0 0 20px 0;
  border-bottom: 1px solid #EFF2F7;
  padding: 10px 0; }

.mail-content .mail-sender .date {
  line-height: 30px;
  margin-bottom: 0;
  text-align: right; }

.mail-content .mail-view {
  margin-bottom: 25px; }

.mail-content .mail-attachment ul {
  padding: 0; }

.mail-content .mail-attachment ul li {
  float: left;
  width: 100px;
  margin-right: 15px;
  margin-top: 15px;
  list-style: none; }

.mail-content .mail-attachment ul li:hover {
  background: #f7f8f9; }

.mail-content .mail-attachment ul li a {
  color: #777777; }

.mail-content .mail-attachment ul li .thumb-attach img {
  width: 100px;
  height: auto;
  margin-bottom: 10px; }

.mail-content .mail-attachment ul li .link {
  color: #bf4346; }

#invoice-page .panel {
  border-radius: 0; }

#invoice-page .panel .panel-body {
  padding: 30px; }

#invoice-page .panel .panel-body .invoice-title {
  float: right;
  text-align: right; }

#invoice-page .panel .panel-body .invoice-title h2 {
  margin-top: 0; }

#invoice-page .panel .panel-body .logo {
  font-family: 'Oswald';
  font-weight: bold;
  margin-top: 0; }

#invoice-page .panel .panel-body hr {
  margin: 30px 0; }

.box-placeholder {
  margin-bottom: 15px;
  padding: 20px;
  border: 1px solid #e5e5e5;
  background: #ffffff;
  color: #444; }

.state-error + em {
  display: block;
  margin-top: 6px;
  padding: 0 1px;
  font-style: normal;
  font-size: 11px;
  line-height: 15px;
  color: #d9534f; }

.state-success + em {
  display: block;
  margin-top: 6px;
  padding: 0 1px;
  font-style: normal;
  font-size: 11px;
  line-height: 15px;
  color: #5cb85c; }

.state-error input,
.state-error select {
  background: #f2dede; }

.state-success input,
.state-success select {
  background: #dff0d8; }

.note-success {
  color: #5cb85c; }

.radio-inline,
.checkbox-inline,
.checkbox,
.radio {
  padding-left: 0;
  margin: 0; }

.checkbox label,
.radio label {
  cursor: pointer;
  margin-right: 10px;
  margin-bottom: 0; }

.checkbox label:first-child,
.radio label:first-child {
  padding-left: 0; }

.form-horizontal.form-bordered .radio,
.form-horizontal.form-bordered .checkbox,
.form-horizontal.form-bordered .radio-inline,
.form-horizontal.form-bordered .checkbox-inline {
  padding-top: 0; }

.social-icons li a {
  border-radius: 50%;
  color: #fff;
  width: 30px;
  height: 30px;
  text-align: center;
  padding-top: 5px;
  display: block; }

.social-icons li a:hover,
.social-icons li a:focus {
  background: #bf4346;
  color: #ffffff; }

.social-icons li a.facebook {
  background-color: #0a819c; }

.social-icons li a.github {
  background-color: #e9662c; }

.social-icons li a.googleplus {
  background-color: #bf4346; }

.social-icons li a.linkedin {
  background-color: #bf3773; }

.social-icons li a.rss {
  background-color: #488c6c; }

.social-icons li a.skype {
  background-color: #2980b9; }

.social-icons li a.twitter {
  background-color: #3498db; }

.social-icons li a.youtube {
  background-color: #e74c3c; }

.member-team {
  background-color: #f9f9f9;
  float: left;
  padding: 5px;
  margin-bottom: 10px;
  max-width: 100%; }

.member-team h3 {
  margin-top: 10px; }

.member-team h3 small {
  color: #ababab;
  display: block;
  margin-top: 5px;
  font-size: 13px; }

#faq .panel-group .panel {
  margin-bottom: 10px; }

#faq .panel-group .panel .panel-heading {
  font-size: 14px;
  padding-top: 0;
  padding-bottom: 0; }

#faq .panel-group .panel .panel-heading a {
  color: #777777; }

#faq .panel-group .panel .panel-heading a strong {
  margin-right: 10px; }

#faq .panel-group .panel .panel-heading:hover,
#faq .panel-group .panel .panel-heading:focus {
  background: #e5e5e5; }

#faq .panel-group .panel .panel-body strong:first-child {
  margin-right: 10px; }

.accordion-toggle {
  display: block;
  line-height: 22px;
  padding: 10px 0;
  position: relative; }

.row .row-merge {
  margin: 0; }

.row .row-merge [class*=col-] {
  padding: 0; }

.row .row-merge [class*=col-] .pricing-widget {
  position: relative;
  border: 0;
  cursor: pointer;
  margin: 20px 0;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) !important;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) !important; }

.row .row-merge [class*=col-] .pricing-widget .pricing-head {
  background: #5cb85c;
  padding: 6px 20px;
  font-size: 18px;
  text-align: center;
  color: #ffffff; }

.row .row-merge [class*=col-] .pricing-widget .pricing-body {
  background: #fff; }

.row .row-merge [class*=col-] .pricing-widget .pricing-cost {
  background: #4cae4c;
  text-align: center;
  padding: 20px;
  border-bottom: 1px solid #efefef;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  font-size: 18px;
  color: #ffffff;
  min-height: 125px; }

.row .row-merge [class*=col-] .pricing-widget .pricing-cost strong {
  font-size: 30px; }

.row .row-merge [class*=col-] .pricing-widget .pricing-list {
  list-style: none;
  padding: 0;
  margin: 0; }

.row .row-merge [class*=col-] .pricing-widget .pricing-list li {
  padding: 10px;
  border-bottom: 1px solid #efefef; }

.row .row-merge [class*=col-] .pricing-widget .pricing-list li:last-child {
  min-height: 84px;
  padding-top: 30px;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  border-bottom: none; }

.row .row-merge [class*=col-] .pricing-widget.active:not(.pricing-title),
.row .row-merge [class*=col-] .pricing-widget:not(.pricing-title):hover {
  -webkit-box-shadow: 0 3px 25px -4px rgba(0, 0, 0, 0.9) !important;
  box-shadow: 0 3px 25px -4px rgba(0, 0, 0, 0.9) !important; }

.row .row-merge [class*=col-] .pricing-widget.active {
  z-index: 2; }

.row .row-merge [class*=col-] .pricing-widget:hover {
  z-index: 2; }

.ribbon-wrapper {
  position: absolute;
  width: 75px;
  height: 75px;
  overflow: hidden;
  top: -1px;
  right: 14px; }

.ribbon-wrapper .ribbon-inner {
  display: block;
  position: relative;
  padding: 5px 0;
  color: #fff;
  background-color: #bf4346;
  font-size: 13px;
  line-height: 17px;
  text-align: center;
  width: 107px;
  top: 11px;
  left: -5px;
  text-shadow: 0 1px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.75) !important;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.75) !important;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg); }

.the-price {
  padding: 20px;
  margin: 0; }

.the-price h1 {
  margin-bottom: 0; }

.the-price .subscript {
  font-size: 14px; }

#faq .panel {
  border: 0; }

#totop {
  position: fixed;
  bottom: 40px;
  right: 1.5%;
  display: none;
  z-index: 9999;
  background: transparent;
  border: 3px solid #bf4346;
  border-radius: 50%;
  height: 45px;
  width: 45px;
  text-align: center; }

#totop i {
  color: #bf4346;
  line-height: 40px;
  font-size: 33px; }

#totop:hover {
  background: #bf4346; }

#totop:hover i {
  color: #ffffff; }

.option-demo {
  position: relative; }

.demo-layout {
  background-color: #ffffff;
  padding: 5px 15px;
  position: absolute;
  top: -30px;
  left: 0;
  z-index: 9999;
  border: 1px solid #e5e5e5;
  cursor: pointer; }

#sidebar-hover #topbar .navbar-header {
  width: 160px; }

#sidebar-hover #wrapper #page-wrapper {
  margin-left: 160px; }

#sidebar-hover #wrapper #sidebar {
  width: 160px; }

#sidebar-hover #wrapper #sidebar ul.menu-hover {
  width: 160px;
  position: absolute;
  top: 50px;
  display: block;
  -webkit-box-shadow: none !important;
  box-shadow: none !important; }

#sidebar-hover #wrapper #sidebar ul.menu-hover > li.active a {
  opacity: 0.95; }

#sidebar-hover #wrapper #sidebar ul.menu-hover > li a {
  background-color: #4b5d67;
  color: #FFFFFF;
  padding: 15px;
  position: relative; }

#sidebar-hover #wrapper #sidebar ul.menu-hover > li a span.menu-title {
  margin-left: 10px; }

#sidebar-hover #wrapper #sidebar ul.menu-hover > li a:after {
  content: '';
  border: 0; }

#sidebar-hover #wrapper #sidebar ul.menu-hover > li a:hover {
  opacity: 0.95; }

#sidebar-hover #wrapper #sidebar ul.menu-hover > li ul.dropdown-menu {
  -webkit-box-shadow: none !important;
  box-shadow: none !important; }

#sidebar-hover #wrapper #sidebar ul.menu-hover > li ul.dropdown-menu > li:first-child > a:before {
  content: '';
  display: block;
  position: absolute;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 8px 8px 8px 0;
  border-color: transparent #a2373a transparent transparent;
  left: -8px;
  top: 50%;
  margin-top: -8px; }

#sidebar-hover #wrapper #sidebar ul.menu-hover > li ul.dropdown-menu > li a {
  background-color: #a2373a; }

#sidebar-hover #wrapper #sidebar ul.menu-hover > li ul.dropdown-menu > li a:hover {
  opacity: 0.95; }

#sidebar-hover #wrapper #sidebar ul.menu-hover > li ul.dropdown-menu > li ul.dropdown-menu {
  -webkit-box-shadow: none !important;
  box-shadow: none !important; }

#sidebar-hover #wrapper #sidebar ul.menu-hover > li ul.dropdown-menu > li ul.dropdown-menu > li:first-child > a:before {
  content: '';
  display: block;
  position: absolute;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 8px 8px 8px 0;
  border-color: transparent #c24b4d transparent transparent;
  left: -8px;
  top: 50%;
  margin-top: -8px; }

#sidebar-hover #wrapper #sidebar ul.menu-hover > li ul.dropdown-menu > li ul.dropdown-menu > li a {
  background-color: #c24b4d; }

#sidebar-hover #wrapper #sidebar ul.menu-hover > li ul.dropdown-menu > li ul.dropdown-menu > li a:hover {
  opacity: 0.95; }

#sidebar-hover .dropdown-submenu > .dropdown-menu {
  margin-left: 0; }

.mail-box {
  margin-bottom: 0; }

.mail-box .list-group-item:nth-child(odd) {
  background-color: #f8f8f8; }

.mail-box .list-group-item {
  border: 0; }

.mail-box .list-group-item:hover {
  color: #777777; }

.mail-box .list-group-item .time-badge {
  float: right;
  font-style: italic;
  color: #999999; }

.mail-box .list-group-item.active,
.mail-box .list-group-item:hover,
.mail-box .list-group-item:focus {
  background-color: #ffc !important;
  color: #777777 !important; }

.bootstrap-wysihtml5-insert-link-modal label.checkbox {
  display: none; }

.bg-primary {
  background-color: #bf4346;
  color: #fff; }

.bg-success {
  background-color: #5cb85c;
  color: #fff; }

.bg-info {
  background-color: #5bc0de;
  color: #fff; }

.bg-warning {
  background-color: #f0ad4e;
  color: #fff; }

.bg-danger {
  background-color: #d9534f;
  color: #fff; }

.bg-red {
  background-color: #bf4346;
  color: #fff; }

.bg-green {
  background-color: #488c6c;
  color: #fff; }

.bg-blue {
  background-color: #0a819c;
  color: #fff; }

.bg-yellow {
  background-color: #f2994b;
  color: #fff; }

.bg-orange {
  background-color: #e9662c;
  color: #fff; }

.bg-pink {
  background-color: #bf3773;
  color: #fff; }

.bg-violet {
  background-color: #9351ad;
  color: #fff; }

.bg-grey {
  background-color: #4b5d67;
  color: #fff; }

.bg-dark {
  background-color: #594857;
  color: #fff; }

body.sidebar-colors #wrapper {
  background-color: #FFFFFF; }

body.sidebar-colors #wrapper #sidebar {
  background-color: #FFFFFF; }

body.sidebar-colors #wrapper #sidebar ul#side-menu li {
  border-bottom: 1px solid #e5e5e5; }

body.sidebar-colors #wrapper #sidebar ul#side-menu li.active a,
body.sidebar-colors #wrapper #sidebar ul#side-menu li:hover a {
  background-color: #f8f8f8; }

body.sidebar-colors #wrapper #sidebar ul#side-menu li.active a i:before,
body.sidebar-colors #wrapper #sidebar ul#side-menu li:hover a i:before {
  color: #FFFFFF; }

body.sidebar-colors #wrapper #sidebar ul#side-menu li.active a i .icon-bg,
body.sidebar-colors #wrapper #sidebar ul#side-menu li:hover a i .icon-bg {
  left: 0; }

body.sidebar-colors #wrapper #sidebar ul#side-menu li.user-panel {
  display: none; }

body.sidebar-colors #wrapper #sidebar ul#side-menu li a {
  color: #777777; }

body.sidebar-colors #wrapper #sidebar ul#side-menu li a:hover,
body.sidebar-colors #wrapper #sidebar ul#side-menu li a:focus {
  background-color: #FFFFFF; }

body.sidebar-colors #wrapper #sidebar ul#side-menu li a i {
  position: relative;
  display: block;
  float: left;
  width: 50px;
  height: 45px;
  line-height: 45px;
  border-right: 1px solid #e5e5e5;
  text-align: center;
  margin: -13px 10px -16px -15px; }

body.sidebar-colors #wrapper #sidebar ul#side-menu li a i:before {
  position: relative;
  z-index: 1; }

body.sidebar-colors #wrapper #sidebar ul#side-menu li a i .icon-bg {
  display: block;
  position: absolute;
  z-index: 12;
  z-index: 0;
  left: -47px;
  width: 100%;
  top: 0;
  bottom: 0;
  -webkit-transition: left 0.15s ease-in-out;
  transition: left 0.15s ease-in-out; }

body.sidebar-colors #wrapper #sidebar ul#side-menu li a .arrow {
  display: none; }

body.sidebar-colors #wrapper #sidebar ul#side-menu li ul.nav-second-level li:first-child,
body.sidebar-colors #wrapper #sidebar ul#side-menu li ul.nav-third-level li:first-child {
  border-top: 1px solid #e5e5e5; }

body.sidebar-colors #wrapper #sidebar ul#side-menu li ul.nav-second-level li:last-child,
body.sidebar-colors #wrapper #sidebar ul#side-menu li ul.nav-third-level li:last-child {
  border-bottom: 0; }

body.sidebar-colors #wrapper #sidebar ul#side-menu li ul.nav-second-level li.active > a,
body.sidebar-colors #wrapper #sidebar ul#side-menu li ul.nav-third-level li.active > a,
body.sidebar-colors #wrapper #sidebar ul#side-menu li ul.nav-second-level li:hover > a,
body.sidebar-colors #wrapper #sidebar ul#side-menu li ul.nav-third-level li:hover > a {
  background-color: #f1f1f1;
  color: #bf4346; }

body.sidebar-colors #wrapper #sidebar ul#side-menu li ul.nav-second-level li > a,
body.sidebar-colors #wrapper #sidebar ul#side-menu li ul.nav-third-level li > a {
  padding: 15px;
  background-color: #f1f1f1; }

body.sidebar-colors #wrapper #sidebar ul#side-menu li ul.nav-second-level li > a i:before,
body.sidebar-colors #wrapper #sidebar ul#side-menu li ul.nav-third-level li > a i:before {
  color: #777777; }

body.sidebar-colors #wrapper #page-wrapper {
  border-left: 2px solid #e5e5e5; }

body.sidebar-icons #topbar .navbar-header {
  width: 105px; }

body.sidebar-icons #topbar .navbar-header .logo-text {
  display: none !important; }

body.sidebar-icons #topbar .navbar-header .logo-text-icon {
  display: block !important;
  font-weight: bold;
  font-family: 'Oswald', sans-serif;
  font-size: 30px; }

body.sidebar-icons #wrapper #sidebar {
  width: 105px; }

body.sidebar-icons #wrapper #sidebar ul#side-menu > li.user-panel {
  display: none; }

body.sidebar-icons #wrapper #sidebar ul#side-menu > li:hover ul.nav-second-level {
  display: block; }

body.sidebar-icons #wrapper #sidebar ul#side-menu > li a {
  padding: 15px 10px;
  text-align: center;
  display: block; }

body.sidebar-icons #wrapper #sidebar ul#side-menu > li a:hover,
body.sidebar-icons #wrapper #sidebar ul#side-menu > li a:focus {
  background-color: transparent; }

body.sidebar-icons #wrapper #sidebar ul#side-menu > li a span.menu-title {
  display: block;
  margin-top: 8px;
  margin-left: 0; }

body.sidebar-icons #wrapper #sidebar ul#side-menu > li a i.fa {
  font-size: 25px; }

body.sidebar-icons #wrapper #sidebar ul#side-menu > li a .arrow,
body.sidebar-icons #wrapper #sidebar ul#side-menu > li a .label {
  display: none; }

body.sidebar-icons #wrapper #sidebar ul#side-menu > li ul.nav-second-level {
  display: none;
  position: absolute;
  top: 0px;
  left: 105px;
  width: 195px; }

body.sidebar-icons #wrapper #sidebar ul#side-menu > li ul.nav-second-level li a {
  text-align: left; }

body.sidebar-icons #wrapper #sidebar ul#side-menu > li ul.nav-second-level li a:hover,
body.sidebar-icons #wrapper #sidebar ul#side-menu > li ul.nav-second-level li a:focus {
  background-color: #bf4346;
  color: #FFFFFF; }

body.sidebar-icons #wrapper #sidebar ul#side-menu > li ul.nav-second-level li a i {
  display: none; }

body.sidebar-icons #wrapper #sidebar ul#side-menu > li ul.nav-second-level li:first-child:before {
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-right: 9px solid #405058;
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -9px;
  left: -9px;
  z-index: 5; }

body.sidebar-icons #wrapper #page-wrapper {
  margin-left: 105px; }

body.sidebar-collapsed #topbar .navbar-header {
  width: 55px; }

body.sidebar-collapsed #topbar .navbar-header .logo-text {
  display: none !important; }

body.sidebar-collapsed #topbar .navbar-header .logo-text-icon {
  display: block !important; }

body.sidebar-collapsed .navbar-static-side {
  width: 55px; }

body.sidebar-collapsed .navbar-static-side ul#side-menu li.user-panel {
  display: none; }

body.sidebar-collapsed .navbar-static-side ul#side-menu li:hover a {
  height: 45px; }

body.sidebar-collapsed .navbar-static-side ul#side-menu li:hover a span.menu-title {
  display: block !important; }

body.sidebar-collapsed .navbar-static-side ul#side-menu li:hover a span.submenu-title {
  display: block !important;
  margin-left: 0; }

body.sidebar-collapsed .navbar-static-side ul#side-menu li:hover ul.nav-second-level {
  display: block;
  position: absolute;
  top: 45px;
  left: 55px;
  width: 195px; }

body.sidebar-collapsed .navbar-static-side ul#side-menu li:hover ul.nav-second-level li a {
  padding: 15px; }

body.sidebar-collapsed .navbar-static-side ul#side-menu li a span {
  display: none; }

body.sidebar-collapsed .navbar-static-side ul#side-menu li a i.fa {
  font-size: 18px; }

body.sidebar-collapsed .navbar-static-side ul#side-menu li a span.menu-title {
  position: absolute;
  top: 0;
  left: 55px;
  padding: 15px;
  margin-left: 0;
  background: #bf4346;
  color: #ffffff;
  width: 195px;
  height: 45px; }

body.sidebar-collapsed .navbar-static-side ul#side-menu li a span.label {
  display: block; }

body.sidebar-collapsed .navbar-static-side ul#side-menu li ul.nav-second-level {
  display: none;
  position: absolute;
  top: 50px;
  left: 55px;
  width: 195px; }

body.sidebar-collapsed .navbar-static-side ul#side-menu li ul.nav-second-level li a i {
  display: none; }

body.sidebar-collapsed .navbar-static-side ul#side-menu li ul.nav-second-level li a span.label {
  position: absolute;
  top: 15px;
  right: 10px; }

body.sidebar-collapsed .navbar-static-side ul#side-menu > li > a span.label {
  display: block !important;
  position: absolute;
  right: -10px;
  top: 0px;
  padding: 2px 4px; }

body.sidebar-collapsed #page-wrapper {
  margin: 0 0 0 55px; }

body.sidebar-collapsed #page-wrapper.admin-page-wrapper {
  margin: 0 0 0 0; }

body.sidebar-collapsed.right .page-header-topbar #topbar .navbar-header {
  float: right; }

body.sidebar-collapsed.right #wrapper #sidebar {
  left: auto;
  right: 0; }

body.sidebar-collapsed.right #wrapper #sidebar ul#side-menu li:hover a span.submenu-title {
  margin-right: 0; }

body.sidebar-collapsed.right #wrapper #sidebar ul#side-menu li:hover ul.nav-second-level {
  right: 55px;
  left: auto; }

body.sidebar-collapsed.right #wrapper #sidebar ul#side-menu li a span.menu-title {
  right: 55px;
  left: auto;
  margin-right: 0; }

body.sidebar-collapsed.right #wrapper #sidebar ul#side-menu li ul.nav-second-level {
  right: 55px;
  left: auto; }

body.sidebar-collapsed.right #wrapper #page-wrapper {
  margin: 0 55px 0 0; }

body.header-fixed .page-header-topbar {
  position: fixed;
  top: 0px;
  z-index: 9999;
  width: 100%; }

body.header-fixed .news-ticker {
  display: none; }

body.header-fixed #wrapper {
  margin-top: 50px; }

body.header-fixed #wrapper.admin-wrapper {
  margin-top: 100px; }

body.header-fixed #sidebar {
  position: fixed; }

a.DTTT_button {
  padding: 7px 8px;
  -webkit-border-radius: 0px !important;
  -moz-border-radius: 0px !important;
  border-radius: 0px !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important; }

ul.user-last-logged-list {
  margin: 0;
  padding: 0;
  list-style: none; }

ul.user-last-logged-list > li {
  margin-top: 0;
  position: relative;
  padding: 10px 0;
  border-top: 1px solid #e5e5e5; }

ul.user-last-logged-list > li:first-child {
  border-top: none; }

ul.user-last-logged-list > li .media-right {
  float: right;
  margin-left: 10px; }

ul.user-last-logged-list > li .meta {
  margin: 0;
  padding: 0;
  list-style: none; }

ul.user-last-logged-list > li .meta > li {
  font-size: 11px;
  line-height: 20px;
  color: #777777; }

ul.user-last-logged-list > li .meta > li i {
  margin-right: 5px;
  min-width: 12px; }

ul.user-last-logged-list > li .meta > li i.fa-envelope-o {
  color: #e67e22; }

ul.user-last-logged-list > li .meta > li i.fa-clock-o {
  color: #27ae60; }

ul.user-last-logged-list > li .meta > li i.fa-globe {
  color: #2980b9; }

ul.user-last-logged-list > li .meta > li .user-list-ip {
  margin-left: 3px; }

ul.user-last-logged-list > li .meta > li strong {
  color: #777777;
  margin-left: 5px; }

ul.user-last-logged-list > li .media-body h4.media-heading {
  font-size: 16px;
  display: block; }

ul.user-last-logged-list > li .media-body h4.media-heading small {
  font-size: 12px;
  margin-left: 5px; }

ul.user-last-logged-list > li .media-body h4.media-heading small a {
  color: #777777; }

ul.user-last-logged-list > li .media-body h4.media-heading .user-list-name {
  color: #bf4346; }

ul.user-last-logged-list > li .media-body h4.media-heading .user-list-name:hover {
  color: #777777; }

ul.user-last-logged-list > li .media-body h4.media-heading i.fa.fa-user {
  font-size: 18px;
  margin-right: 5px; }

#user-last-logged-table .media-thumb .img-shadow {
  position: relative;
  float: left;
  max-width: 100%; }

#user-last-logged-table .media-thumb .img-shadow img {
  float: left;
  height: 35px;
  width: 35px; }

#user-last-logged-table .media-thumb .data {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 12px; }

#user-last-logged-table .media-thumb .data li strong.user-list-ip {
  margin-left: 3px; }

#user-last-logged-table .media-thumb .data li em {
  margin-right: 3px; }

ul.thumb-large {
  margin: 0;
  padding: 0;
  list-style: none; }

ul.thumb-large > li {
  margin-top: 0;
  position: relative;
  padding: 10px 0;
  border-top: 1px solid #e5e5e5; }

ul.thumb-large > li:first-child {
  border-top: none; }

ul.thumb-large > li .media-left {
  float: left;
  margin-right: 10px; }

ul.thumb-large > li .media-thumb .img-shadow img {
  height: 55px;
  width: 55px; }

ul.thumb-large > li .media-body {
  overflow: hidden;
  zoom: 1; }

ul.thumb-large > li .media-body .menu-right {
  float: right;
  margin-left: 10px; }

ul.thumb-large > li .media-body .quick-menu.menu-right {
  margin-left: 5px;
  margin-bottom: 5px; }

ul.thumb-large > li .media-body .media-heading a {
  display: block;
  margin-bottom: 5px;
  color: #bf4346; }

ul.thumb-large > li .media-body .media-heading small {
  font-size: 12px; }

ul.thumb-large > li .media-body .media-heading small a {
  color: #777777; }

ul.thumb-large > li .media-body .meta {
  font-size: 11px;
  line-height: 16px;
  color: #777777; }

.user-list-footer {
  padding: 10px;
  background-color: #f9f9f9; }

ul.thumb-small {
  margin: 0;
  padding: 0;
  list-style: none; }

ul.thumb-small > li {
  margin-top: 0;
  position: relative;
  padding: 10px 0;
  border-top: 1px solid #e5e5e5; }

ul.thumb-small > li:first-child {
  border-top: none; }

ul.thumb-small > li .media-thumb .img-shadow {
  position: relative;
  float: left;
  max-width: 100%; }

ul.thumb-small > li .media-thumb .img-shadow img {
  float: left;
  height: 35px;
  width: 35px; }

ul.thumb-small > li .media-thumb.media-left {
  float: left;
  margin-right: 10px; }

ul.thumb-small > li .media-body {
  overflow: hidden;
  zoom: 1; }

ul.thumb-small > li .media-body .menu-right {
  float: right;
  margin-left: 10px; }

ul.thumb-small > li .media-body .menu-right a {
  margin-right: 4px; }

ul.thumb-small > li .media-body .quick-menu-icon.menu-right i {
  font-size: 18px;
  color: #777777; }

ul.thumb-small > li .media-body .quick-menu-icon.menu-right i.fa-facebook-square {
  color: #2980b9; }

ul.thumb-small > li .media-body .quick-menu-icon.menu-right i.fa-twitter-square {
  color: #3498db; }

ul.thumb-small > li .media-body .quick-menu-icon.menu-right i.fa-google-plus-square {
  color: #c0392b; }

ul.thumb-small > li .media-body .quick-menu-icon.menu-right i.fa-linkedin-square {
  color: #d35400; }

ul.thumb-small > li .media-body .media-heading a {
  display: block;
  margin-bottom: 5px;
  color: #bf4346; }

ul.thumb-small > li .media-body .media-heading small {
  font-size: 12px; }

ul.thumb-small > li .media-body .media-heading small a {
  color: #777777; }

ul.thumb-xxlarge {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left; }

ul.thumb-xxlarge > li {
  margin-top: 0;
  position: relative;
  padding: 10px 0;
  border-top: 1px solid #e5e5e5; }

ul.thumb-xxlarge > li:first-child {
  border-top: none; }

ul.thumb-xxlarge > li .media-thumb .img-shadow {
  position: relative;
  float: left;
  max-width: 100%; }

ul.thumb-xxlarge > li .media-thumb .img-shadow img {
  float: left;
  height: 96px;
  width: 96px; }

ul.thumb-xxlarge > li .media-thumb.media-left {
  float: left;
  margin-right: 10px; }

ul.thumb-xxlarge > li .media-body .menu-right {
  float: right; }

ul.thumb-xxlarge > li .media-body .quick-menu.menu-right {
  margin-left: 5px;
  margin-bottom: 5px; }

ul.thumb-xxlarge > li .media-body .media-heading {
  margin: 0 0 5px; }

ul.thumb-xxlarge > li .media-body .media-heading a {
  margin-bottom: 5px;
  color: #bf4346; }

ul.thumb-xxlarge > li .media-body .media-heading small {
  font-size: 12px; }

ul.thumb-xxlarge > li .media-body .media-heading small a {
  color: #777777; }

ul.thumb-xxlarge > li .media-body .data {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
  z-index: 999; }

.em {
  font-style: italic; }

.media-overflow,
.media-overflow .media,
.media-overflow .media-body {
  overflow: visible; }

.news-ticker {
  position: relative;
  width: 100%;
  padding: 5px 0;
  text-align: center; }

.news-ticker #news-ticker-close {
  position: absolute;
  top: 5px;
  right: 20px;
  color: rgba(255, 255, 255, 0.4); }

ul.list-icon {
  list-style: none;
  padding: 0 20px; }

ul.list-icon li:before {
  content: "\f05d";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  margin-right: 10px; }

ul.list-icon li:hover {
  color: #bf4346; }

.demo-btn > .btn {
  margin-bottom: 5px;
  margin-right: 5px; }

.demo-btn-group > .btn-group {
  margin-bottom: 5px;
  margin-right: 5px; }

.demo-btn-group > .btn-toolbar > .btn-group {
  margin-bottom: 5px;
  margin-right: 5px; }

/*****
  Begin Page Loader
  *****/
#page-loader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #ffffff; }

#page-loader img {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -64px 0 0 -64px;
  width: 128px;
  height: 128px; }

/*****
End Page Loader
*****/
/*****
Begin Header Option Page
*****/
.header-option-page {
  border-bottom: 1px solid #cccccc;
  padding-bottom: 15px; }

/*****
End Header Option Page
*****/
.jstree-hovered,
.jstree-wholerow-hovered {
  -webkit-border-radius: 0px !important;
  -moz-border-radius: 0px !important;
  border-radius: 0px !important;
  background: #bf4346 !important;
  color: #fff !important;
  transition: background-color 0s, box-shadow 0s !important;
  transition-property: background-color, box-shadow !important;
  transition-duration: 0s, 0s !important;
  transition-timing-function: initial, initial;
  transition-delay: initial, initial; }

.jstree-clicked,
.jstree-wholerow-clicked {
  background: #d98f91 !important;
  color: #fff !important; }

.jstree-anchor,
.jstree-wholerow {
  -webkit-border-radius: 0px !important;
  -moz-border-radius: 0px !important;
  border-radius: 0px !important;
  transition: background-color 0s, box-shadow 0s !important;
  transition-property: background-color, box-shadow !important;
  transition-duration: 0s, 0s !important;
  transition-timing-function: initial, initial;
  transition-delay: initial, initial; }

.family-tree-horizontal li a:hover,
.family-tree-horizontal li a:hover + ul li a,
.family-tree-vertical li a:hover,
.family-tree-vertical li a:hover + ul li a {
  background: #bf4346 !important;
  color: #fff !important; }

.header-option-page {
  border-bottom: 1px solid #cccccc;
  padding-bottom: 15px; }

.quick-sidebar {
  position: fixed;
  right: 0;
  top: 78px;
  bottom: 0;
  width: 280px;
  background-color: #353535;
  z-index: 100;
  display: none; }

.quick-sidebar .header-quick-sidebar ul.nav.nav-tabs.ul-edit > li.active > ul > li.active > a {
  background-color: #e5e5e5;
  color: #999999; }

.quick-sidebar .header-quick-sidebar ul.nav.nav-tabs.ul-edit > li > a {
  padding: 10px 0; }

.quick-sidebar .content-quick-sidebar.tab-content {
  background-color: transparent;
  border: 0;
  padding: 0px; }

.quick-sidebar .content-quick-sidebar.tab-content .tab-pane h4 {
  padding: 15px;
  margin: 0;
  font-weight: bold;
  border-bottom: 1px solid #555; }

.quick-sidebar .content-quick-sidebar.tab-content .tab-pane ul.list-update > li {
  padding: 10px;
  border-bottom: 1px solid #414141;
  clear: both; }

.quick-sidebar .content-quick-sidebar.tab-content .tab-pane ul.list-update > li span.label:first-child {
  margin-right: 10px;
  padding: 8px;
  float: left; }

.quick-sidebar .content-quick-sidebar.tab-content .tab-pane ul.list-update > li div {
  margin-left: 25px;
  margin-bottom: 5px; }

.quick-sidebar .content-quick-sidebar.tab-content .tab-pane ul.list-update > li div ul.sub-list-update {
  padding-left: 25px; }

.quick-sidebar .content-quick-sidebar.tab-content .tab-pane ul.list-update > li div ul.sub-list-update li {
  padding: 3px 0;
  color: #777777; }

.quick-sidebar .content-quick-sidebar.tab-content .tab-pane ul.list-features li {
  padding: 10px;
  border-bottom: 1px solid #414141;
  clear: both; }

.quick-sidebar.quick-sidebar-hidden {
  display: block; }

#page-user-profile .tab-content {
  border: 0; }

#page-user-profile #tab-activity ul.list-activity > li {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #efefef; }

#page-user-profile #tab-activity ul.list-activity > li:last-child {
  border-bottom: 0; }

#page-user-profile #tab-activity ul.list-activity > li .avatar {
  float: left;
  margin-right: 10px; }

#page-user-profile #tab-activity ul.list-activity > li .avatar img {
  width: 40px;
  display: inline-block; }

#page-user-profile #tab-activity ul.list-activity > li .body {
  overflow: hidden;
  zoom: 1; }

#page-user-profile #tab-activity ul.list-activity > li .body .desc small.text-muted {
  font-size: 10px;
  color: #BBBBBB; }

#page-user-profile #tab-activity ul.list-activity > li .body .content {
  margin-top: 20px; }

#page-user-profile #tab-activity ul.list-activity > li .body .content a {
  color: #428bca; }

#page-user-profile #tab-activity ul.list-activity > li .body .content a:hover {
  text-decoration: underline; }

#page-user-profile #tab-activity ul.list-activity > li .body .content .content-thumb {
  float: left;
  margin-right: 10px; }

#page-user-profile #tab-activity ul.list-activity > li .body .content .content-thumb img {
  width: 100px;
  display: inline-block; }

#page-user-profile #tab-activity ul.list-activity > li .body .content .content-thumb-large {
  float: left; }

#page-user-profile #tab-activity ul.list-activity > li .body .content .content-thumb-large img {
  width: 180px;
  display: inline-block;
  margin-right: 10px; }

#page-user-profile #tab-activity ul.list-activity > li .body .content .content-info {
  overflow: hidden;
  zoom: 1; }

#page-user-profile #tab-edit .tab-content {
  background: #f8f8f8; }

#page-user-profile #tab-edit .nav-pills li.active a {
  background-color: #5cb85c;
  border-color: #5cb85c; }

#page-user-profile #tab-edit .nav-pills li.active a:hover {
  color: #FFFFFF !important; }

#page-user-profile #tab-edit .nav-pills li a {
  background-color: #f8f8f8; }

#page-user-profile #tab-edit .nav-pills li a:hover {
  color: #777777; }

.news-ticker {
  position: relative;
  width: 100%;
  padding: 5px 0;
  text-align: center; }

.news-ticker a {
  color: #fff; }

.news-ticker #news-ticker-close {
  position: absolute;
  top: 5px;
  right: 20px;
  color: rgba(255, 255, 255, 0.4); }

#preloader button.show_demo {
  display: block;
  margin: auto; }

#preloader .spinner {
  background: #bf4346;
  height: 200px; }

#preloader .spinner.demo {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 1000; }

#preloader #container {
  margin: -45px -60px;
  width: 120px;
  height: 90px;
  position: absolute;
  top: 50%;
  left: 50%; }

#preloader #dot {
  background: #FFF;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  position: absolute;
  bottom: 30px;
  left: 27px;
  transform-origin: center bottom;
  -webkit-animation: dot 0.6s ease-in-out infinite;
  -moz-animation: dot 0.6s ease-in-out infinite;
  animation: dot 0.6s ease-in-out infinite; }

@-webkit-keyframes dot {
  0% {
    transform: scale(1, 0.7); }
  20% {
    transform: scale(0.7, 1.2); }
  40% {
    transform: scale(1, 1); }
  50% {
    bottom: 100px; }
  46% {
    transform: scale(1, 1); }
  80% {
    transform: scale(0.7, 1.2); }
  90% {
    transform: scale(0.7, 1.2); }
  100% {
    transform: scale(1, 0.7); } }

@keyframes dot {
  0% {
    transform: scale(1, 0.7); }
  20% {
    transform: scale(0.7, 1.2); }
  40% {
    transform: scale(1, 1); }
  50% {
    bottom: 100px; }
  46% {
    transform: scale(1, 1); }
  80% {
    transform: scale(0.7, 1.2); }
  90% {
    transform: scale(0.7, 1.2); }
  100% {
    transform: scale(1, 0.7); } }

#preloader .step {
  position: absolute;
  width: 30px;
  height: 30px;
  border-top: 2px solid #FFF;
  top: 0;
  right: 0; }

@-webkit-keyframes anim {
  0% {
    opacity: 0;
    top: 0;
    right: 0; }
  50% {
    opacity: 1; }
  100% {
    top: 90px;
    right: 90px;
    opacity: 0; } }

@keyframes anim {
  0% {
    opacity: 0;
    top: 0;
    right: 0; }
  50% {
    opacity: 1; }
  100% {
    top: 90px;
    right: 90px;
    opacity: 0; } }

#preloader #s1 {
  -webkit-animation: anim 1.8s linear infinite;
  -moz-animation: anim 1.8s linear infinite;
  animation: anim 1.8s linear infinite; }

#preloader #s2 {
  -webkit-animation: anim 1.8s linear infinite -0.6s;
  -moz-animation: anim 1.8s linear infinite -0.6s;
  animation: anim 1.8s linear infinite -0.6s; }

#preloader #s3 {
  -webkit-animation: anim 1.8s linear infinite -1.2s;
  -moz-animation: anim 1.8s linear infinite -1.2s;
  animation: anim 1.8s linear infinite -1.2s; }

#pageloader2 .spinner {
  background: -webkit-linear-gradient(#1e1e21, #17171b);
  background: -o-linear-gradient(#1e1e21, #17171b);
  background: linear-gradient(#1e1e21, #17171b); }

#pageloader2 .center {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

#pageloader2 .bouncywrap {
  position: relative; }

#pageloader2 .dotcon {
  display: block;
  float: left;
  width: 50px;
  position: absolute; }

#pageloader2 .dc1 {
  -webkit-animation: bouncy1 1.5s infinite;
  left: -40px;
  animation: bouncy1 1.5s infinite; }

#pageloader2 .dc2 {
  -webkit-animation: bouncy2 1.5s infinite;
  animation: bouncy2 1.5s infinite;
  left: 0; }

#pageloader2 .dc3 {
  -webkit-animation: bouncy3 1.5s infinite;
  animation: bouncy3 1.5s infinite;
  left: 40px; }

#pageloader2 .dot {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: rgba(150, 160, 180, 0.8); }

@-webkit-keyframes bouncy1 {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg); }
  50% {
    -webkit-transform: translate(0px, 0px) rotate(180deg); }
  100% {
    -webkit-transform: translate(40px, 0px) rotate(-180deg); } }

@keyframes bouncy1 {
  0% {
    transform: translate(0px, 0px) rotate(0deg); }
  50% {
    transform: translate(0px, 0px) rotate(180deg); }
  100% {
    transform: translate(40px, 0px) rotate(-180deg); } }

@-webkit-keyframes bouncy2 {
  0% {
    -webkit-transform: translateX(0px); }
  50% {
    -webkit-transform: translateX(-40px); }
  100% {
    -webkit-transform: translateX(-40px); } }

@keyframes bouncy2 {
  0% {
    transform: translateX(0px); }
  50% {
    transform: translateX(-40px); }
  100% {
    transform: translateX(-40px); } }

@-webkit-keyframes bouncy3 {
  0% {
    -webkit-transform: translateX(0px); }
  50% {
    -webkit-transform: translateX(0px); }
  100% {
    -webkit-transform: translateX(-40px); } }

@keyframes bouncy3 {
  0% {
    transform: translateX(0px); }
  50% {
    transform: translateX(0px); }
  100% {
    transform: translateX(-40px); } }

#pageloader3 .spinner {
  background: #111; }

#pageloader3 .loader {
  position: relative;
  padding-top: 0px;
  width: 40px;
  margin: auto;
  position: absolute;
  top: 35%;
  left: 47%; }

#pageloader3 .loader .circle {
  position: absolute;
  width: 38px;
  height: 38px;
  opacity: 0;
  transform: rotate(225deg);
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: orbit;
  -moz-animation-name: orbit;
  animation-name: orbit;
  -webkit-animation-duration: 5.5s;
  -moz-animation-duration: 5.5s;
  animation-duration: 5.5s; }

#pageloader3 .loader .circle:after {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background: #fff;
  /* Pick a color */ }

#pageloader3 .loader .circle:nth-child(2) {
  -webkit-animation-delay: 240ms;
  -moz-animation-delay: 240ms;
  animation-delay: 240ms; }

#pageloader3 .loader .circle:nth-child(3) {
  -webkit-animation-delay: 480ms;
  -moz-animation-delay: 480ms;
  animation-delay: 480ms; }

#pageloader3 .loader .circle:nth-child(4) {
  -webkit-animation-delay: 720ms;
  -moz-animation-delay: 720ms;
  animation-delay: 720ms; }

#pageloader3 .loader .circle:nth-child(5) {
  -webkit-animation-delay: 960ms;
  -moz-animation-delay: 960ms;
  animation-delay: 960ms; }

@-webkit-keyframes orbit {
  0% {
    transform: rotate(225deg);
    opacity: 1;
    animation-timing-function: ease-out; }
  7% {
    transform: rotate(345deg);
    animation-timing-function: linear; }
  30% {
    transform: rotate(455deg);
    animation-timing-function: ease-in-out; }
  39% {
    transform: rotate(690deg);
    animation-timing-function: linear; }
  70% {
    transform: rotate(815deg);
    opacity: 1;
    animation-timing-function: ease-out; }
  75% {
    transform: rotate(945deg);
    animation-timing-function: ease-out; }
  76% {
    transform: rotate(945deg);
    opacity: 0; }
  100% {
    transform: rotate(945deg);
    opacity: 0; } }

@keyframes orbit {
  0% {
    transform: rotate(225deg);
    opacity: 1;
    animation-timing-function: ease-out; }
  7% {
    transform: rotate(345deg);
    animation-timing-function: linear; }
  30% {
    transform: rotate(455deg);
    animation-timing-function: ease-in-out; }
  39% {
    transform: rotate(690deg);
    animation-timing-function: linear; }
  70% {
    transform: rotate(815deg);
    opacity: 1;
    animation-timing-function: ease-out; }
  75% {
    transform: rotate(945deg);
    animation-timing-function: ease-out; }
  76% {
    transform: rotate(945deg);
    opacity: 0; }
  100% {
    transform: rotate(945deg);
    opacity: 0; } }

#pageloader4 .spinner {
  padding: 80px 0;
  background: #252525;
  text-align: center; }

#pageloader4 .spinftw {
  border-radius: 100%;
  display: inline-block;
  position: absolute;
  top: 35%;
  left: 47%;
  height: 30px;
  width: 30px;
  -webkit-animation: loader infinite 4s;
  -moz-animation: loader infinite 4s;
  animation: loader infinite 4s;
  box-shadow: 25px 25px #3498db, -25px 25px #9b59b6, -25px -25px #e74c3c, 25px -25px #2ecc71; }

@-webkit-keyframes loader {
  0%,
  100% {
    box-shadow: 25px 25px #3498db, -25px 25px #9b59b6, -25px -25px #e74c3c, 25px -25px #2ecc71; }
  25% {
    box-shadow: -25px 25px #3498db, -25px -25px #9b59b6, 25px -25px #e74c3c, 25px 25px #2ecc71; }
  50% {
    box-shadow: -25px -25px #3498db, 25px -25px #9b59b6, 25px 25px #e74c3c, -25px 25px #2ecc71; }
  75% {
    box-shadow: 25px -25px #3498db, 25px 25px #9b59b6, -25px 25px #e74c3c, -25px -25px #2ecc71; } }

@-moz-keyframes loader {
  0%,
  100% {
    box-shadow: 25px 25px #3498db, -25px 25px #9b59b6, -25px -25px #e74c3c, 25px -25px #2ecc71; }
  25% {
    box-shadow: -25px 25px #3498db, -25px -25px #9b59b6, 25px -25px #e74c3c, 25px 25px #2ecc71; }
  50% {
    box-shadow: -25px -25px #3498db, 25px -25px #9b59b6, 25px 25px #e74c3c, -25px 25px #2ecc71; }
  75% {
    box-shadow: 25px -25px #3498db, 25px 25px #9b59b6, -25px 25px #e74c3c, -25px -25px #2ecc71; } }

@keyframes loader {
  0%,
  100% {
    box-shadow: 25px 25px #3498db, -25px 25px #9b59b6, -25px -25px #e74c3c, 25px -25px #2ecc71; }
  25% {
    box-shadow: -25px 25px #3498db, -25px -25px #9b59b6, 25px -25px #e74c3c, 25px 25px #2ecc71; }
  50% {
    box-shadow: -25px -25px #3498db, 25px -25px #9b59b6, 25px 25px #e74c3c, -25px 25px #2ecc71; }
  75% {
    box-shadow: 25px -25px #3498db, 25px 25px #9b59b6, -25px 25px #e74c3c, -25px -25px #2ecc71; } }

#pageloader5 main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }

#pageloader5 .spinner-inline {
  position: relative; }

#pageloader5 .spinner-inline:before,
#pageloader5 .spinner-inline:after {
  content: "";
  position: relative;
  display: block; }

#pageloader5 .spinner-inline:before {
  -webkit-animation: spinner 2.5s cubic-bezier(0.75, 0, 0.5, 1) infinite normal;
  -moz-animation: spinner 2.5s cubic-bezier(0.75, 0, 0.5, 1) infinite normal;
  animation: spinner 2.5s cubic-bezier(0.75, 0, 0.5, 1) infinite normal;
  width: 50px;
  height: 50px;
  background-color: #fff; }

#pageloader5 .spinner-inline:after {
  -webkit-animation: shadow 2.5s cubic-bezier(0.75, 0, 0.5, 1) infinite normal;
  -moz-animation: shadow 2.5s cubic-bezier(0.75, 0, 0.5, 1) infinite normal;
  animation: shadow 2.5s cubic-bezier(0.75, 0, 0.5, 1) infinite normal;
  bottom: -1.5em;
  height: .25em;
  border-radius: 50%;
  background-color: #e9341a; }

@-webkit-keyframes spinner {
  50% {
    border-radius: 50%;
    -webkit-transform: scale(0.5) rotate(360deg); }
  100% {
    -webkit-transform: scale(1) rotate(720deg); } }

@keyframes spinner {
  50% {
    border-radius: 50%;
    transform: scale(0.5) rotate(360deg); }
  100% {
    -webkit-transform: scale(1) rotate(720deg); } }

@-webkit-keyframes shadow {
  50% {
    -webkit-transform: scale(0.5);
    background-color: #ec4931; } }

@keyframes shadow {
  50% {
    transform: scale(0.5);
    background-color: #ec4931; } }

#pageloader6 .spinner {
  overflow-x: hidden;
  overflow-y: hidden;
  width: 100%; }

#pageloader6 .bar {
  position: relative;
  height: 2px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  margin-top: 150px; }

#pageloader6 .circle {
  position: absolute;
  top: -30px;
  margin-left: -30px;
  height: 60px;
  width: 60px;
  left: 0;
  background: #fff;
  border-radius: 30%;
  -webkit-animation: move 5s infinite; }

#pageloader6 p {
  position: absolute;
  top: -35px;
  right: -85px;
  text-transform: uppercase;
  color: #347fc3;
  font-family: helvetica, sans-serif;
  font-weight: bold; }

@-webkit-keyframes move {
  0% {
    left: 0; }
  50% {
    left: 100%;
    -webkit-transform: rotate(450deg);
    width: 150px;
    height: 150px; }
  75% {
    left: 100%;
    -webkit-transform: rotate(450deg);
    width: 150px;
    height: 150px; }
  100% {
    right: 100%; } }

#pageloader7 .spinner {
  margin: 0;
  padding: 0;
  background: #191f27; }

#pageloader7 .container {
  margin: -45px -60px;
  width: 120px;
  height: 90px;
  position: absolute;
  top: 35%;
  left: 50%; }

#pageloader7 .ball {
  width: 10px;
  height: 10px;
  margin: 10px auto;
  border-radius: 50px; }

#pageloader7 .ball:nth-child(1) {
  background: #ff005d;
  -webkit-animation: right 1s infinite ease-in-out;
  -moz-animation: right 1s infinite ease-in-out;
  animation: right 1s infinite ease-in-out; }

#pageloader7 .ball:nth-child(2) {
  background: #35ff99;
  -webkit-animation: left 1.1s infinite ease-in-out;
  -moz-animation: left 1.1s infinite ease-in-out;
  animation: left 1.1s infinite ease-in-out; }

#pageloader7 .ball:nth-child(3) {
  background: #008597;
  -webkit-animation: right 1.05s infinite ease-in-out;
  -moz-animation: right 1.05s infinite ease-in-out;
  animation: right 1.05s infinite ease-in-out; }

#pageloader7 .ball:nth-child(4) {
  background: #ffcc00;
  -webkit-animation: left 1.15s infinite ease-in-out;
  -moz-animation: left 1.15s infinite ease-in-out;
  animation: left 1.15s infinite ease-in-out; }

#pageloader7 .ball:nth-child(5) {
  background: #2d3443;
  -webkit-animation: right 1.1s infinite ease-in-out;
  -moz-animation: right 1.1s infinite ease-in-out;
  animation: right 1.1s infinite ease-in-out; }

#pageloader7 .ball:nth-child(6) {
  background: #ff7c35;
  -webkit-animation: left 1.05s infinite ease-in-out;
  -moz-animation: left 1.05s infinite ease-in-out;
  animation: left 1.05s infinite ease-in-out; }

#pageloader7 .ball:nth-child(7) {
  background: #4d407c;
  -webkit-animation: right 1s infinite ease-in-out;
  -moz-animation: right 1s infinite ease-in-out;
  animation: right 1s infinite ease-in-out; }

@-webkit-keyframes right {
  0% {
    -webkit-transform: translate(-15px); }
  50% {
    -webkit-transform: translate(15px); }
  100% {
    -webkit-transform: translate(-15px); } }

@-webkit-keyframes left {
  0% {
    -webkit-transform: translate(15px); }
  50% {
    -webkit-transform: translate(-15px); }
  100% {
    -webkit-transform: translate(15px); } }

@-moz-keyframes right {
  0% {
    -moz-transform: translate(-15px); }
  50% {
    -moz-transform: translate(15px); }
  100% {
    -moz-transform: translate(-15px); } }

@-moz-keyframes left {
  0% {
    -moz-transform: translate(15px); }
  50% {
    -moz-transform: translate(-15px); }
  100% {
    -moz-transform: translate(15px); } }

@keyframes right {
  0% {
    transform: translate(-15px); }
  50% {
    transform: translate(15px); }
  100% {
    transform: translate(-15px); } }

@keyframes left {
  0% {
    transform: translate(15px); }
  50% {
    transform: translate(-15px); }
  100% {
    transform: translate(15px); } }

#pageloader-img img {
  margin-right: 15px;
  max-width: 32px; }

.table-management .display-option .display-option-content {
  border: 1px solid #e5e5e5;
  padding: 10px 0px;
  display: inline-block;
  margin-top: -1px;
  width: 100%; }

.table-management .display-option .display-option-content a.reset-default {
  text-decoration: underline;
  color: #d2322d; }

.table-management .content-body {
  margin-top: 15px; }

.table-management .content-body .form-group {
  margin-bottom: 0px; }

.table-management .content-body .form-control {
  display: inline; }

.table-management .content-body .action-bar select.more-action {
  width: 200px;
  display: inline;
  padding-top: 3px; }

.table-management .content-body .action-bar ul.pagination {
  float: right;
  margin: 0px; }

.table-management .content-body .filter {
  background: #efefef;
  border: 1px solid #ddd;
  border-bottom: 1px solid #efefef;
  position: relative; }

.table-management .content-body .filter .filter-header {
  padding: 8px 8px 10px 8px;
  border-bottom: 1px solid #ddd;
  margin-bottom: -2px; }

.table-management .content-body .filter a.toggle-filter-content {
  height: 38px;
  border-left: 1px solid #ddd;
  position: absolute;
  top: 0px;
  right: 0px;
  width: 35px; }

.table-management .content-body .filter a.toggle-filter-content span.caret {
  font-size: 15px;
  margin-top: 10px; }

.table-management .content-body .filter a.filter-attr {
  color: #bf3773;
  border-bottom: 1px dotted #777; }

.table-management .content-body .filter .filter-content {
  padding: 8px 5px 0px 8px;
  display: none; }

.table-management .content-body .filter .filter-content .attr-select {
  width: 200px;
  display: inline;
  padding-top: 3px; }

.table-management .content-body .filter .filter-content .filter-attr-content {
  background: #fff;
  padding: 8px 5px 0px 8px;
  padding: 10px;
  border: 1px solid #ddd;
  margin-top: 10px;
  margin-bottom: 10px; }

.table-management .content-body .filter .filter-content .attr-option {
  width: 150px;
  display: inline; }

.table-management .content-body .filter .filter-content .attr-value {
  width: 50%;
  display: inline; }

.table-management .list-table table tbody tr td a.status {
  font-size: 11px; }

.table-management .list-table table tbody tr td a.status i.active {
  color: #2baf2b; }

.table-management .list-table table tbody tr td a.status i.inactive {
  color: #ff3d00; }

.table-management .list-table table tbody tr td a.status i.na {
  color: #ff9800; }

.table-management .list-table table tbody tr td a.value {
  color: #0076BF;
  text-decoration: underline; }

.table-management .list-table table tbody tr td a.value:hover {
  color: #52A437; }

.table-management .list-table table tbody tr td a.trash {
  margin-right: 5px;
  color: #d2322d; }

.table-management .list-table table tbody tr td a.trash i.fa {
  margin-right: 3px; }

.table-management .list-table table tbody tr td a.trash:hover {
  text-decoration: underline; }

.table-management .list-table table tbody tr td a.view {
  color: #5bc0de; }

.table-management .list-table table tbody tr td a.view i.fa {
  margin-right: 3px; }

.table-management .list-table table tbody tr td a.view:hover {
  text-decoration: underline; }

.table-management .list-table table tbody tr td a.view,
.table-management .list-table table tbody tr td a.trash {
  visibility: hidden;
  font-size: 12px; }

.table-management .list-table table tbody tr:hover a.view,
.table-management .list-table table tbody tr:hover a.trash {
  visibility: visible; }

.last-col {
  overflow: hidden !important; }

.pdn {
  padding: 0 !important; }

.pdx {
  padding: 3px; }

.pdm {
  padding: 10px; }

.pdl {
  padding: 20px; }

.pdxl {
  padding: 30px; }

.pdxxl {
  padding: 40px; }

.ptn,
.pvn,
.pan {
  padding-top: 0 !important; }

.ptx,
.pvx,
.pax {
  padding-top: 3px !important; }

.pts,
.pvs,
.pas {
  padding-top: 5px !important; }

.ptm,
.pvm,
.pam {
  padding-top: 10px !important; }

.ptl,
.pvl,
.pal {
  padding-top: 20px !important; }

.ptxl,
.pvxl,
.paxl {
  padding-top: 30px !important; }

.ptxxl,
.pvxxl,
.paxxl {
  padding-top: 40px !important; }

.prn,
.phn,
.pan {
  padding-right: 0 !important; }

.prx,
.phx,
.pax {
  padding-right: 3px !important; }

.prs,
.phs,
.pas {
  padding-right: 5px !important; }

.prm,
.phm,
.pam {
  padding-right: 10px !important; }

.prl,
.phl,
.pal {
  padding-right: 20px !important; }

.prxl,
.phxl,
.paxl {
  padding-right: 30px !important; }

.prxxl,
.phxxl,
.paxxl {
  padding-right: 40px !important; }

.pbn,
.pvn,
.pan {
  padding-bottom: 0 !important; }

.pbx,
.pvx,
.pax {
  padding-bottom: 3px !important; }

.pbs,
.pvs,
.pas {
  padding-bottom: 5px !important; }

.pbm,
.pvm,
.pam {
  padding-bottom: 10px !important; }

.pbl,
.pvl,
.pal {
  padding-bottom: 20px !important; }

.pbxl,
.pvxl,
.paxl {
  padding-bottom: 30px !important; }

.pbxxl,
.pvxxl,
.paxxl {
  padding-bottom: 40px !important; }

.pln,
.phn,
.pan {
  padding-left: 0 !important; }

.plx,
.phx,
.pax {
  padding-left: 3px !important; }

.pls,
.phs,
.pas {
  padding-left: 5px !important; }

.plm,
.phm,
.pam {
  padding-left: 10px !important; }

.pll,
.phl,
.pal {
  padding-left: 20px !important; }

.plxl,
.phxl,
.paxl {
  padding-left: 30px !important; }

.plxxl,
.phxxl,
.paxxl {
  padding-left: 40px !important; }

.mtn,
.mvn,
.man {
  margin-top: 0px !important; }

.mtx,
.mvx,
.max {
  margin-top: 3px !important; }

.mts,
.mvs,
.mas {
  margin-top: 5px !important; }

.mtm,
.mvm,
.mam {
  margin-top: 10px !important; }

.mtl,
.mvl,
.mal {
  margin-top: 20px !important; }

.mtxl,
.mvxl,
.maxl {
  margin-top: 30px !important; }

.mtxxl,
.mvxxl,
.maxxl {
  margin-top: 40px !important; }

.mrn,
.mhn,
.man {
  margin-right: 0px !important; }

.mrx,
.mhx,
.max {
  margin-right: 3px !important; }

.mrs,
.mhs,
.mas {
  margin-right: 5px !important; }

.mrm,
.mhm,
.mam {
  margin-right: 10px !important; }

.mrl,
.mhl,
.mal {
  margin-right: 20px !important; }

.mrxl,
.mhxl,
.maxl {
  margin-right: 30px !important; }

.mrxxl,
.mhxxl,
.maxxl {
  margin-right: 40px !important; }

.mbn,
.mvn,
.man {
  margin-bottom: 0px !important; }

.mbx,
.mvx,
.max {
  margin-bottom: 3px !important; }

.mbs,
.mvs,
.mas {
  margin-bottom: 5px !important; }

.mbm,
.mvm,
.mam {
  margin-bottom: 10px !important; }

.mbl,
.mvl,
.mal {
  margin-bottom: 20px !important; }

.mbxl,
.mvxl,
.maxl {
  margin-bottom: 30px !important; }

.mbxxl,
.mvxxl,
.maxxl {
  margin-bottom: 40px !important; }

.mln,
.mhn,
.man {
  margin-left: 0px !important; }

.mlx,
.mhx,
.max {
  margin-left: 3px !important; }

.mls,
.mhs,
.mas {
  margin-left: 5px !important; }

.mlm,
.mhm,
.mam {
  margin-left: 10px !important; }

.mll,
.mhl,
.mal {
  margin-left: 20px !important; }

.mlxl,
.mhxl,
.maxl {
  margin-left: 30px !important; }

.mlxxl,
.mhxxl,
.maxxl {
  margin-left: 40px !important; }

.alert-hide {
  display: none; }

.alert {
  color: #bf4346; }

#rootwizard-tabdetail2 .navbar-inner .nav-pills li {
  width: 20%; }

#rootwizard-tabdetail2 .navbar-inner .nav-pills li a p.top {
  position: absolute;
  top: 10px;
  left: 0px; }

#rootwizard-tabdetail2 .navbar-inner .nav-pills li a p.icon i.fa {
  width: 50px;
  height: 50px;
  border-radius: 25px !important;
  border: 3px solid #bf4346;
  background-color: transparent;
  position: absolute;
  top: 0px;
  left: 0px; }

#rootwizard-tabdetail2 .navbar-inner .nav-pills li a p.bottom {
  position: absolute;
  top: -10px;
  left: 0px; }

.pace .pace-progress {
  background-color: #bf4346; }

.legendColorBox {
  padding: 3px 0; }

.legendColorBox div {
  border-radius: 50%;
  margin-right: 5px; }

.legendColorBox div div {
  margin-right: 0; }

.ui-state-default {
  border: 0;
  background: #bf4346;
  color: #ffffff; }

.ui-widget-content {
  background: #ffffff;
  border: 1px solid #e5e5e5; }

.ui-widget-content .ui-state-default {
  border: 0;
  background: #bf4346;
  color: #ffffff;
  cursor: pointer; }

.ui-widget-content .ui-state-default:hover,
.ui-widget-content .ui-state-default:focus {
  background: #ad3b3e; }

.ui-widget-header {
  background: #bf4346; }

.ui-widget-header .ui-state-default {
  border: 0;
  background: #bf4346;
  color: #ffffff; }

.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  border: 3px solid #fefefe; }

.ui-slider.ui-slider-horizontal .ui-slider-handle {
  top: -0.9em; }

.ui-slider.ui-slider-vertical .ui-slider-handle {
  left: -0.85em; }

#slider-multi span {
  height: 120px;
  float: left;
  margin: 20px; }

.ui-slider-horizontal {
  height: 0.45em; }

.ui-slider-vertical {
  width: 0.45em; }

.example-val:before {
  content: "Value: ";
  font-weight: bold; }

.irs-line-mid,
.irs-line-left,
.irs-line-right,
.irs-diapason,
.irs-slider {
  background: #E5E5E5; }

.irs-slider {
  width: 1.5em;
  height: 1.5em;
  top: 19px;
  border: 1px solid #fefefe;
  background: #777;
  border-radius: 50%; }

.irs-diapason {
  background: #bf4346; }

.irs {
  height: 40px; }

.irs-with-grid {
  height: 60px; }

.irs-line {
  height: 8px;
  top: 25px; }

.irs-line-left {
  height: 8px; }

.irs-line-mid {
  height: 8px; }

.irs-line-right {
  height: 8px; }

.irs-diapason {
  height: 8px;
  top: 25px; }

.irs-min,
.irs-max {
  color: #999;
  font-size: 10px;
  line-height: 1.333;
  text-shadow: none;
  top: 0;
  padding: 1px 3px;
  background: rgba(0, 0, 0, 0.1); }

.lt-ie9 .irs-min,
.lt-ie9 .irs-max {
  background: #ccc; }

.irs-from,
.irs-to,
.irs-single {
  color: #fff;
  font-size: 10px;
  line-height: 1.333;
  text-shadow: none;
  padding: 1px 3px;
  background: rgba(0, 0, 0, 0.3); }

.lt-ie9 .irs-from,
.lt-ie9 .irs-to,
.lt-ie9 .irs-single {
  background: #999; }

.irs-grid-pol {
  background: #777777; }

.irs-grid-text {
  color: #777777; }

.jquery-notific8-message {
  font-size: 13px; }

[class*="jquery-notific8"],
[class*="jquery-notific8"]:after,
[class*="jquery-notific8"]:before {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box; }

.right .jquery-notific8-close-sticky span,
.left .jquery-notific8-close-sticky span {
  font-size: 10px; }

.jquery-notific8-heading {
  font-weight: 300;
  font-size: 16px; }

.colors {
  clear: both;
  padding: 24px 0 9px; }

.skin-line .colors {
  padding-top: 28px; }

.colors strong {
  float: left;
  line-height: 20px;
  margin-right: 20px; }

.colors li {
  position: relative;
  float: left;
  width: 16px;
  height: 16px;
  margin: 2px 1px 0 0;
  background: #000;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: .5;
  -webkit-transition: opacity .2s;
  -moz-transition: opacity .2s;
  -ms-transition: opacity .2s;
  -o-transition: opacity .2s;
  transition: opacity .2s; }

.colors li:hover {
  filter: alpha(opacity=100);
  opacity: 1; }

.colors li.active {
  height: 20px;
  margin-top: 0;
  filter: alpha(opacity=75);
  opacity: 0.75; }

.colors li.red {
  background: #d54e21; }

.colors li.green {
  background: #78a300; }

.colors li.blue {
  background: #0e76a8; }

.colors li.aero {
  background: #9cc2cb; }

.colors li.grey {
  background: #73716e; }

.colors li.orange {
  background: #ff7700; }

.colors li.yellow {
  background: #ffcc00; }

.colors li.pink {
  background: #ff66b5; }

.colors li.purple {
  background: #6a5a8c; }

.sticky-header {
  z-index: 999; }

.slimScrollDiv {
  float: left; }

.slimScrollRail {
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important; }

.table tbody tr.calendar-month-header:first-child th {
  border-top: 0;
  background: #bf4346;
  color: #ffffff;
  padding: 12px 0; }

.table tbody tr.calendar-month-header:first-child th .calendar-month-navigation {
  padding-top: 0; }

.table tbody tr.calendar-month-header:first-child th span {
  padding-bottom: 0; }

.table tbody tr td {
  border-top: 1px solid #efefef; }

.ticker-wrapper.has-js {
  margin: 0;
  padding: 0;
  float: left;
  background: transparent;
  font-size: 13px; }

.ticker {
  display: block;
  position: relative;
  overflow: hidden;
  background: transparent;
  margin: 0;
  padding: 0; }

.ticker-title {
  background-color: transparent; }

.ticker-content {
  color: #ffffff;
  background: transparent;
  font-weight: normal;
  padding-top: 8px; }

.ticker-content a {
  color: #777777; }

.ticker-content a:hover,
.ticker-content a:focus {
  color: #777777;
  text-decoration: none; }

.ticker-swipe {
  width: 100%;
  height: 42px;
  background: #405058; }

.ticker-swipe span {
  margin-left: 1px;
  background-color: transparent;
  border-bottom: 3px solid #777777;
  height: 21px;
  width: 7px;
  display: block; }

.news-update-box {
  float: left;
  padding: 9px 20px;
  line-height: 30px; }

.introjs-helperLayer {
  background-color: rgba(255, 255, 255, 0.5); }

.introjs-fixParent {
  z-index: auto !important;
  opacity: 1.0 !important;
  position: absolute !important; }

.introjs-helperNumberLayer {
  line-height: 13px; }

body.header-fixed .top .jquery-notific8-notification:first-child {
  margin-top: 50px; }

.bootstrap-select.btn-group .dropdown-menu li.active:not(.disabled) > a small,
.bootstrap-select.btn-group .dropdown-menu li:not(.disabled) > a:focus small,
.bootstrap-select.btn-group .dropdown-menu li:not(.disabled) > a:hover small {
  color: #aaaaaa; }

.counter.warning {
  color: #d9534f; }

#rootwizard-custom-circle {
  margin-top: 50px;
  position: relative; }

#rootwizard-custom-circle .navbar {
  margin-bottom: 35px; }

#rootwizard-custom-circle:before {
  content: "";
  height: 3px;
  width: 100%;
  background-color: #5CB85C;
  position: absolute;
  top: 30px;
  left: 0; }

#rootwizard-custom-circle li {
  background-color: #fff;
  border: 3px solid #6ec06e;
  height: 40px;
  width: 40px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  margin-bottom: 20px;
  padding-top: 0px;
  padding-left: 0px;
  display: inline-block;
  float: left;
  list-style: none;
  margin-left: 17%;
  text-align: center;
  position: relative; }

#rootwizard-custom-circle li:first-child {
  margin-left: 11%; }

#rootwizard-custom-circle li a {
  font-size: 17px;
  line-height: 200%; }

#rootwizard-custom-circle li a i {
  color: #6ec06e;
  top: 2px; }

#rootwizard-custom-circle li a i.glyphicon-send {
  left: -3px; }

#rootwizard-custom-circle li a p.anchor {
  position: absolute;
  top: -35px;
  left: -130px;
  width: 300px;
  font-family: 'oswald'; }

#rootwizard-custom-circle li a p.description {
  font-size: 13px;
  position: absolute;
  left: -130px;
  width: 300px; }

#rootwizard-custom-circle li.active {
  background-color: #fff;
  border: 3px solid #bf4346; }

#rootwizard-custom-circle li.active a,
#rootwizard-custom-circle li.active p,
#rootwizard-custom-circle li.active i {
  color: #bf4346; }

#rootwizard-custom-circle #bar {
  height: 14px;
  border-radius: 5px; }

#rootwizard-custom-circle .tab-content {
  border-width: 0px; }

#rootwizard-custom-circle .tab-content .action {
  padding: 15px 0px;
  border-top: 1px solid #E6E6E6;
  margin-top: 60px; }

#rootwizard-custom-circle .tab-content .action button.btn {
  padding: 7px 21px; }

.news-ticker {
  position: relative;
  width: 100%;
  padding: 5px 0;
  text-align: center; }

.news-ticker a {
  color: #fff; }

.news-ticker a:hover,
.news-ticker a:focus {
  text-decoration: underline; }

.news-ticker #news-ticker-close {
  position: absolute;
  top: 5px;
  right: 20px;
  color: rgba(255, 255, 255, 0.4); }

.daterangepicker .ranges .input-mini {
  width: 74px !important; }

a[data-wysihtml5-command-value="blockquote"] .glyphicon-quote {
  top: -15px;
  left: -6px; }

/**************************************/
/********** Jquery Jvectormap *********/
.jvectormap-zoomin,
.jvectormap-zoomout {
  background: #488c6c;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  padding: 4px 0; }

.jvectormap-zoomout {
  top: 40px; }

/********** Jquery Jvectormap *********/
/**************************************/
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
  border-color: #999999;
  box-shadow: none;
  outline: 0 none; }

a:focus,
.btn:focus {
  outline: 0 !important; }

.img-circle {
  border-radius: 50% !important; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Ubuntu", sans-serif;
  font-weight: 300; }

.note {
  margin: 0 0 20px 0;
  padding: 15px 30px 15px 15px;
  border-left: 3px solid #e5e5e5;
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important; }

.note h1,
.note h2,
.note h3,
.note h4 {
  margin-top: 0; }

.note p:last-child {
  margin-bottom: 0; }

.note code,
.note .highlight {
  background-color: #fff; }

.note-success {
  border-color: #5cb85c;
  background: #dff0d8; }

.note-success .box-heading {
  color: #5cb85c; }

.note-warning {
  border-color: #f0ad4e;
  background: #fcf8e3; }

.note-warning .box-heading {
  color: #f0ad4e; }

.note-info {
  border-color: #5bc0de;
  background: #d9edf7; }

.note-info .box-heading {
  color: #5bc0de; }

.note-danger {
  border-color: #d9534f;
  background: #f2dede; }

.note-danger .box-heading {
  color: #d9534f; }

.pagination {
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important; }

.pagination li a {
  border-color: #e5e5e5; }

.pagination li span {
  border-right: #e5e5e5; }

.pagination li.active a {
  border-color: #bf4346; }

.pagination li.active span {
  border-color: #bf4346; }

.badge {
  font-size: 11px !important;
  font-weight: 300;
  height: 18px;
  padding: 3px 6px 3px 6px;
  -webkit-border-radius: 12px !important;
  -moz-border-radius: 12px !important;
  border-radius: 12px !important;
  text-shadow: none !important;
  text-align: center;
  vertical-align: middle;
  background-color: #bcbcbc; }

.label {
  font-size: 11px;
  font-weight: 300;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important; }

.badge-default,
.label-default {
  background-color: #999 !important; }

.badge-primary,
.label-primary {
  background-color: #bf4346 !important; }

.badge-red,
.label-red {
  background-color: #bf4346 !important; }

.badge-orange,
.label-orange {
  background-color: #e9662c !important; }

.badge-green,
.label-green {
  background-color: #488c6c !important; }

.badge-yellow,
.label-yellow {
  background-color: #f2994b !important; }

.badge-blue,
.label-blue {
  background-color: #0a819c !important; }

.badge-violet,
.label-violet {
  background-color: #9351ad !important; }

.badge-pink,
.label-pink {
  background-color: #bf3773 !important; }

.badge-grey,
.label-grey {
  background-color: #4b5d67 !important; }

.badge-dark,
.label-dark {
  background-color: #594857 !important; }

.label-success,
.badge-success {
  background-color: #5cb85c;
  background-image: none !important; }

.label-warning,
.badge-warning {
  background-color: #f0ad4e;
  background-image: none !important; }

.label-danger,
.badge-danger {
  background-color: #d9534f;
  background-image: none !important; }

.label-info,
.badge-info {
  background-color: #5bc0de;
  background-image: none !important; }

.nav.nav-pills > li > a > .badge {
  margin-top: -2px; }

.nav.nav-stacked > li > a > .badge {
  margin-top: 1px;
  margin-bottom: 0px; }

a.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
  color: #bf4346; }

.pagination li.active a {
  color: #FFFFFF;
  background: #bf4346;
  z-index: 2;
  cursor: default; }

.pagination li.active a:hover,
.pagination li.active a:focus {
  color: #FFFFFF;
  background: #bf4346;
  z-index: 2;
  cursor: default; }

.pagination li.active span {
  color: #FFFFFF;
  background: #bf4346;
  z-index: 2;
  cursor: default; }

.pagination li.active span:hover,
.pagination li.active span:focus {
  color: #FFFFFF;
  background: #bf4346;
  z-index: 2;
  cursor: default; }

.pagination li a {
  color: #bf4346; }

.panel {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important; }

.panel > .panel-heading {
  font-size: 18px;
  padding: 7px 15px;
  border-top-right-radius: 4px !important;
  border-top-left-radius: 4px !important;
  border-color: #e5e5e5 !important; }

.panel > .panel-footer {
  font-size: 18px;
  padding: 7px 15px;
  border-bottom-right-radius: 4px !important;
  border-bottom-left-radius: 4px !important; }

.panel.panel-primary {
  border-color: #bf4346; }

.panel.panel-primary > .panel-heading {
  color: #FFFFFF;
  background: #bf4346;
  border-color: #bf4346 !important; }

.panel.panel-primary > .panel-footer {
  color: #FFFFFF;
  background: #bf4346;
  border-color: #bf4346 !important; }

.panel.panel-red {
  border-color: #bf4346; }

.panel.panel-red > .panel-heading {
  color: #FFFFFF;
  background: #bf4346;
  border-color: #bf4346 !important; }

.panel.panel-red > .panel-footer {
  color: #FFFFFF;
  background: #bf4346;
  border-color: #bf4346 !important; }

.panel.panel-orange {
  border-color: #e9662c; }

.panel.panel-orange > .panel-heading {
  color: #FFFFFF;
  background: #e9662c;
  border-color: #e9662c !important; }

.panel.panel-orange > .panel-footer {
  color: #FFFFFF;
  background: #e9662c;
  border-color: #e9662c !important; }

.panel.panel-green {
  border-color: #488c6c; }

.panel.panel-green > .panel-heading {
  color: #FFFFFF;
  background: #488c6c;
  border-color: #488c6c !important; }

.panel.panel-green > .panel-footer {
  color: #FFFFFF;
  background: #488c6c;
  border-color: #488c6c !important; }

.panel.panel-yellow {
  border-color: #f2994b; }

.panel.panel-yellow > .panel-heading {
  color: #FFFFFF;
  background: #f2994b;
  border-color: #f2994b !important; }

.panel.panel-yellow > .panel-footer {
  color: #FFFFFF;
  background: #f2994b;
  border-color: #f2994b !important; }

.panel.panel-blue {
  border-color: #0a819c; }

.panel.panel-blue > .panel-heading {
  color: #FFFFFF;
  background: #0a819c;
  border-color: #0a819c !important; }

.panel.panel-blue > .panel-footer {
  color: #FFFFFF;
  background: #0a819c;
  border-color: #0a819c !important; }

.panel.panel-pink {
  border-color: #bf3773; }

.panel.panel-pink > .panel-heading {
  color: #FFFFFF;
  background: #bf3773;
  border-color: #bf3773 !important; }

.panel.panel-pink > .panel-footer {
  color: #FFFFFF;
  background: #bf3773;
  border-color: #bf3773 !important; }

.panel.panel-violet {
  border-color: #9351ad; }

.panel.panel-violet > .panel-heading {
  color: #FFFFFF;
  background: #9351ad;
  border-color: #9351ad !important; }

.panel.panel-violet > .panel-footer {
  color: #FFFFFF;
  background: #9351ad;
  border-color: #9351ad !important; }

.panel.panel-grey {
  border-color: #4b5d67; }

.panel.panel-grey > .panel-heading {
  color: #FFFFFF;
  background: #4b5d67;
  border-color: #4b5d67 !important; }

.panel.panel-grey > .panel-footer {
  color: #FFFFFF;
  background: #4b5d67;
  border-color: #4b5d67 !important; }

.panel.panel-dark {
  border-color: #594857; }

.panel.panel-dark > .panel-heading {
  color: #FFFFFF;
  background: #594857;
  border-color: #594857 !important; }

.panel.panel-dark > .panel-footer {
  color: #FFFFFF;
  background: #594857;
  border-color: #594857 !important; }

.panel.panel-white {
  border-color: #efefef; }

.panel.panel-white > .panel-heading {
  border-bottom: 1px solid #faf9fb;
  color: #777777;
  background: #FFFFFF; }

.panel.panel-white > .panel-footer {
  border-top: 1px solid #faf9fb;
  color: #777777;
  background: #FFFFFF; }

.btn {
  outline: none !important;
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important; }

.btn.btn-square {
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important; }

.btn-outlined {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s; }

.btn-outlined.btn-default {
  background: none;
  border: 1px solid #777777;
  color: #777777; }

.btn-outlined.btn-primary {
  background: none;
  border: 1px solid #bf4346;
  color: #bf4346; }

.btn-outlined.btn-success {
  background: none;
  border: 1px solid #5cb85c;
  color: #5cb85c; }

.btn-outlined.btn-warning {
  background: none;
  border: 1px solid #f0ad4e;
  color: #f0ad4e; }

.btn-outlined.btn-info {
  background: none;
  border: 1px solid #5bc0de;
  color: #5bc0de; }

.btn-outlined.btn-danger {
  background: none;
  border: 1px solid #d9534f;
  color: #d9534f; }

.btn-outlined.btn-red {
  background: none;
  border: 1px solid #bf4346;
  color: #bf4346; }

.btn-outlined.btn-orange {
  background: none;
  border: 1px solid #e9662c;
  color: #e9662c; }

.btn-outlined.btn-green {
  background: none;
  border: 1px solid #488c6c;
  color: #488c6c; }

.btn-outlined.btn-yellow {
  background: none;
  border: 1px solid #f2994b;
  color: #f2994b; }

.btn-outlined.btn-blue {
  background: none;
  border: 1px solid #0a819c;
  color: #0a819c; }

.btn-outlined.btn-pink {
  background: none;
  border: 1px solid #bf3773;
  color: #bf3773; }

.btn-outlined.btn-violet {
  background: none;
  border: 1px solid #9351ad;
  color: #9351ad; }

.btn-outlined.btn-grey {
  background: none;
  border: 1px solid #4b5d67;
  color: #4b5d67; }

.btn-outlined.btn-dark {
  background: none;
  border: 1px solid #594857;
  color: #594857; }

.btn-default {
  color: #777777;
  background-color: #efefef;
  border-color: #e5e5e5; }

.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.open .dropdown-toggle.btn-default {
  color: #777777;
  background-color: #dbdbdb;
  border-color: #c6c6c6; }

.btn-default:active,
.btn-default.active,
.open .dropdown-toggle.btn-default {
  background-image: none; }

.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default.active[disabled],
fieldset[disabled] .btn-default.active {
  background-color: #efefef;
  border-color: #e5e5e5; }

.btn-primary {
  color: #ffffff;
  background-color: #bf4346;
  border-color: #b93f42; }

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
  color: #ffffff;
  background-color: #a2373a;
  border-color: #8b2f32; }

.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
  background-image: none; }

.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary.active[disabled],
fieldset[disabled] .btn-primary.active {
  background-color: #bf4346;
  border-color: #b93f42; }

.btn-success {
  color: #ffffff;
  background-color: #5cb85c;
  border-color: #55b555; }

.btn-navy {
  color: #ffffff;
  background-color: #18333f;
  border-color: #18333f; }

.btn-navy:hover,
.btn-navy:focus,
.btn-navy:active,
.btn-navy.active,
.open .dropdown-toggle.btn-navy {
  color: #ffffff;
  background-color: #18333f;
  border-color: #18333f;
  font-weight: bolder; }

.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.open .dropdown-toggle.btn-success {
  color: #ffffff;
  background-color: #47a447;
  border-color: #3e8f3e; }

.btn-success:active,
.btn-success.active,
.open .dropdown-toggle.btn-success {
  background-image: none; }

.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success.active[disabled],
fieldset[disabled] .btn-success.active {
  background-color: #5cb85c;
  border-color: #55b555; }

.btn-info {
  color: #ffffff;
  background-color: #5bc0de;
  border-color: #53bddc; }

.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.open .dropdown-toggle.btn-info {
  color: #ffffff;
  background-color: #39b3d7;
  border-color: #28a4c9; }

.btn-info:active,
.btn-info.active,
.open .dropdown-toggle.btn-info {
  background-image: none; }

.btn-info.disabled,
.btn-info[disabled],
fieldset[disabled] .btn-info,
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled:active,
.btn-info[disabled]:active,
fieldset[disabled] .btn-info:active,
.btn-info.disabled.active,
.btn-info.active[disabled],
fieldset[disabled] .btn-info.active {
  background-color: #5bc0de;
  border-color: #53bddc; }

.btn-warning {
  color: #ffffff;
  background-color: #f0ad4e;
  border-color: #efa945; }

.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active,
.open .dropdown-toggle.btn-warning {
  color: #ffffff;
  background-color: #ed9c28;
  border-color: #e38d13; }

.btn-warning:active,
.btn-warning.active,
.open .dropdown-toggle.btn-warning {
  background-image: none; }

.btn-warning.disabled,
.btn-warning[disabled],
fieldset[disabled] .btn-warning,
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled:active,
.btn-warning[disabled]:active,
fieldset[disabled] .btn-warning:active,
.btn-warning.disabled.active,
.btn-warning.active[disabled],
fieldset[disabled] .btn-warning.active {
  background-color: #f0ad4e;
  border-color: #efa945; }

.btn-danger {
  color: #ffffff;
  background-color: #d9534f;
  border-color: #d74b47; }

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active,
.open .dropdown-toggle.btn-danger {
  color: #ffffff;
  background-color: #d2322d;
  border-color: #b92c28; }

.btn-danger:active,
.btn-danger.active,
.open .dropdown-toggle.btn-danger {
  background-image: none; }

.btn-danger.disabled,
.btn-danger[disabled],
fieldset[disabled] .btn-danger,
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled:active,
.btn-danger[disabled]:active,
fieldset[disabled] .btn-danger:active,
.btn-danger.disabled.active,
.btn-danger.active[disabled],
fieldset[disabled] .btn-danger.active {
  background-color: #d9534f;
  border-color: #d74b47; }

.btn-red {
  color: #ffffff;
  background-color: #bf4346;
  border-color: #b93f42; }

.btn-red:hover,
.btn-red:focus,
.btn-red:active,
.btn-red.active,
.open .dropdown-toggle.btn-red {
  color: #ffffff;
  background-color: #a2373a;
  border-color: #8b2f32; }

.btn-red:active,
.btn-red.active,
.open .dropdown-toggle.btn-red {
  background-image: none; }

.btn-red.disabled,
.btn-red[disabled],
fieldset[disabled] .btn-red,
.btn-red.disabled:hover,
.btn-red[disabled]:hover,
fieldset[disabled] .btn-red:hover,
.btn-red.disabled:focus,
.btn-red[disabled]:focus,
fieldset[disabled] .btn-red:focus,
.btn-red.disabled:active,
.btn-red[disabled]:active,
fieldset[disabled] .btn-red:active,
.btn-red.disabled.active,
.btn-red.active[disabled],
fieldset[disabled] .btn-red.active {
  background-color: #bf4346;
  border-color: #b93f42; }

.btn-orange {
  color: #ffffff;
  background-color: #e9662c;
  border-color: #e85f23; }

.btn-orange:hover,
.btn-orange:focus,
.btn-orange:active,
.btn-orange.active,
.open .dropdown-toggle.btn-orange {
  color: #ffffff;
  background-color: #d65116;
  border-color: #ba4713; }

.btn-orange:active,
.btn-orange.active,
.open .dropdown-toggle.btn-orange {
  background-image: none; }

.btn-orange.disabled,
.btn-orange[disabled],
fieldset[disabled] .btn-orange,
.btn-orange.disabled:hover,
.btn-orange[disabled]:hover,
fieldset[disabled] .btn-orange:hover,
.btn-orange.disabled:focus,
.btn-orange[disabled]:focus,
fieldset[disabled] .btn-orange:focus,
.btn-orange.disabled:active,
.btn-orange[disabled]:active,
fieldset[disabled] .btn-orange:active,
.btn-orange.disabled.active,
.btn-orange.active[disabled],
fieldset[disabled] .btn-orange.active {
  background-color: #e9662c;
  border-color: #e85f23; }

.btn-green {
  color: #ffffff;
  background-color: #488c6c;
  border-color: #458567; }

#event-save-as-template.btn-green {
  width: 135px; }

.btn-green:hover,
.btn-green:focus,
.btn-green:active,
.btn-green.active,
.open .dropdown-toggle.btn-green {
  color: #ffffff;
  background-color: #3a7157;
  border-color: #305d48; }

.btn-green:active,
.btn-green.active,
.open .dropdown-toggle.btn-green {
  background-image: none; }

.btn-green.disabled,
.btn-green[disabled],
fieldset[disabled] .btn-green,
.btn-green.disabled:hover,
.btn-green[disabled]:hover,
fieldset[disabled] .btn-green:hover,
.btn-green.disabled:focus,
.btn-green[disabled]:focus,
fieldset[disabled] .btn-green:focus,
.btn-green.disabled:active,
.btn-green[disabled]:active,
fieldset[disabled] .btn-green:active,
.btn-green.disabled.active,
.btn-green.active[disabled],
fieldset[disabled] .btn-green.active {
  background-color: #488c6c;
  border-color: #458567; }

.btn-yellow {
  color: #ffffff;
  background-color: #f2994b;
  border-color: #f19441; }

.btn-yellow:hover,
.btn-yellow:focus,
.btn-yellow:active,
.btn-yellow.active,
.open .dropdown-toggle.btn-yellow {
  color: #ffffff;
  background-color: #ef8325;
  border-color: #e57411; }

.btn-yellow:active,
.btn-yellow.active,
.open .dropdown-toggle.btn-yellow {
  background-image: none; }

.btn-yellow.disabled,
.btn-yellow[disabled],
fieldset[disabled] .btn-yellow,
.btn-yellow.disabled:hover,
.btn-yellow[disabled]:hover,
fieldset[disabled] .btn-yellow:hover,
.btn-yellow.disabled:focus,
.btn-yellow[disabled]:focus,
fieldset[disabled] .btn-yellow:focus,
.btn-yellow.disabled:active,
.btn-yellow[disabled]:active,
fieldset[disabled] .btn-yellow:active,
.btn-yellow.disabled.active,
.btn-yellow.active[disabled],
fieldset[disabled] .btn-yellow.active {
  background-color: #f2994b;
  border-color: #f19441; }

.btn-blue {
  color: #ffffff;
  background-color: #0a819c;
  border-color: #097992; }

.btn-blue:hover,
.btn-blue:focus,
.btn-blue:active,
.btn-blue.active,
.open .dropdown-toggle.btn-blue {
  color: #ffffff;
  background-color: #086176;
  border-color: #064a59; }

.btn-blue:active,
.btn-blue.active,
.open .dropdown-toggle.btn-blue {
  background-image: none; }

.btn-blue.disabled,
.btn-blue[disabled],
fieldset[disabled] .btn-blue,
.btn-blue.disabled:hover,
.btn-blue[disabled]:hover,
fieldset[disabled] .btn-blue:hover,
.btn-blue.disabled:focus,
.btn-blue[disabled]:focus,
fieldset[disabled] .btn-blue:focus,
.btn-blue.disabled:active,
.btn-blue[disabled]:active,
fieldset[disabled] .btn-blue:active,
.btn-blue.disabled.active,
.btn-blue.active[disabled],
fieldset[disabled] .btn-blue.active {
  background-color: #0a819c;
  border-color: #097992; }

.btn-violet {
  color: #ffffff;
  background-color: #9351ad;
  border-color: #8d4ea6; }

.btn-violet:hover,
.btn-violet:focus,
.btn-violet:active,
.btn-violet.active,
.open .dropdown-toggle.btn-violet {
  color: #ffffff;
  background-color: #7b4491;
  border-color: #6a3a7c; }

.btn-violet:active,
.btn-violet.active,
.open .dropdown-toggle.btn-violet {
  background-image: none; }

.btn-violet.disabled,
.btn-violet[disabled],
fieldset[disabled] .btn-violet,
.btn-violet.disabled:hover,
.btn-violet[disabled]:hover,
fieldset[disabled] .btn-violet:hover,
.btn-violet.disabled:focus,
.btn-violet[disabled]:focus,
fieldset[disabled] .btn-violet:focus,
.btn-violet.disabled:active,
.btn-violet[disabled]:active,
fieldset[disabled] .btn-violet:active,
.btn-violet.disabled.active,
.btn-violet.active[disabled],
fieldset[disabled] .btn-violet.active {
  background-color: #9351ad;
  border-color: #8d4ea6; }

.btn-pink {
  color: #ffffff;
  background-color: #bf3773;
  border-color: #b7356e; }

.btn-pink:hover,
.btn-pink:focus,
.btn-pink:active,
.btn-pink.active,
.open .dropdown-toggle.btn-pink {
  color: #ffffff;
  background-color: #9f2e60;
  border-color: #882752; }

.btn-pink:active,
.btn-pink.active,
.open .dropdown-toggle.btn-pink {
  background-image: none; }

.btn-pink.disabled,
.btn-pink[disabled],
fieldset[disabled] .btn-pink,
.btn-pink.disabled:hover,
.btn-pink[disabled]:hover,
fieldset[disabled] .btn-pink:hover,
.btn-pink.disabled:focus,
.btn-pink[disabled]:focus,
fieldset[disabled] .btn-pink:focus,
.btn-pink.disabled:active,
.btn-pink[disabled]:active,
fieldset[disabled] .btn-pink:active,
.btn-pink.disabled.active,
.btn-pink.active[disabled],
fieldset[disabled] .btn-pink.active {
  background-color: #bf3773;
  border-color: #b7356e; }

.btn-grey {
  color: #ffffff;
  background-color: #4b5d67;
  border-color: #475861; }

.btn-grey:hover,
.btn-grey:focus,
.btn-grey:active,
.btn-grey.active,
.open .dropdown-toggle.btn-grey {
  color: #ffffff;
  background-color: #3a484f;
  border-color: #2d383e; }

.btn-grey:active,
.btn-grey.active,
.open .dropdown-toggle.btn-grey {
  background-image: none; }

.btn-grey.disabled,
.btn-grey[disabled],
fieldset[disabled] .btn-grey,
.btn-grey.disabled:hover,
.btn-grey[disabled]:hover,
fieldset[disabled] .btn-grey:hover,
.btn-grey.disabled:focus,
.btn-grey[disabled]:focus,
fieldset[disabled] .btn-grey:focus,
.btn-grey.disabled:active,
.btn-grey[disabled]:active,
fieldset[disabled] .btn-grey:active,
.btn-grey.disabled.active,
.btn-grey.active[disabled],
fieldset[disabled] .btn-grey.active {
  background-color: #4b5d67;
  border-color: #475861; }

.btn-dark {
  color: #ffffff;
  background-color: #594857;
  border-color: #534351; }

.btn-dark:hover,
.btn-dark:focus,
.btn-dark:active,
.btn-dark.active,
.open .dropdown-toggle.btn-dark {
  color: #ffffff;
  background-color: #423641;
  border-color: #322830; }

.btn-dark:active,
.btn-dark.active,
.open .dropdown-toggle.btn-dark {
  background-image: none; }

.btn-dark.disabled,
.btn-dark[disabled],
fieldset[disabled] .btn-dark,
.btn-dark.disabled:hover,
.btn-dark[disabled]:hover,
fieldset[disabled] .btn-dark:hover,
.btn-dark.disabled:focus,
.btn-dark[disabled]:focus,
fieldset[disabled] .btn-dark:focus,
.btn-dark.disabled:active,
.btn-dark[disabled]:active,
fieldset[disabled] .btn-dark:active,
.btn-dark.disabled.active,
.btn-dark.active[disabled],
fieldset[disabled] .btn-dark.active {
  background-color: #594857;
  border-color: #534351; }

.btn-white {
  color: #777777;
  background-color: #ffffff;
  border-color: #e5e5e5; }

.btn-white:hover,
.btn-white:focus,
.btn-white:active,
.btn-white.active,
.open .dropdown-toggle.btn-white {
  color: #777777;
  background-color: #ebebeb;
  border-color: #c6c6c6; }

.btn-white:active,
.btn-white.active,
.open .dropdown-toggle.btn-white {
  background-image: none; }

.btn-white.disabled,
.btn-white[disabled],
fieldset[disabled] .btn-white,
.btn-white.disabled:hover,
.btn-white[disabled]:hover,
fieldset[disabled] .btn-white:hover,
.btn-white.disabled:focus,
.btn-white[disabled]:focus,
fieldset[disabled] .btn-white:focus,
.btn-white.disabled:active,
.btn-white[disabled]:active,
fieldset[disabled] .btn-white:active,
.btn-white.disabled.active,
.btn-white.active[disabled],
fieldset[disabled] .btn-white.active {
  background-color: #ffffff;
  border-color: #e5e5e5; }

.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0 !important;
  border-top-right-radius: 0 !important; }

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important; }

.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important; }

.btn-group > .btn-group:last-child > .btn:first-child {
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important; }

.btn-group > .btn-group:first-child > .btn:last-child,
.btn-group > .btn-group:first-child > .dropdown-toggle {
  border-bottom-right-radius: 0 !important;
  border-top-right-radius: 0 !important; }

.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 7px !important;
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important; }

.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important; }

.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-bottom-left-radius: 7px !important;
  border-top-right-radius: 0 !important;
  border-top-left-radius: 0 !important; }

.input-group .input-group-addon {
  color: #777777;
  border-color: #e5e5e5;
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important; }

.input-group .input-group-btn .btn {
  border: 1px solid #e5e5e5 !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important; }

.input-group .input-group-btn .btn.btn-primary {
  border-color: #ad3b3e !important; }

.input-group .input-group-btn .btn.btn-success {
  border-color: #4cae4c !important; }

.input-group .input-group-btn .btn.btn-warning {
  border-color: #eea236 !important; }

.input-group .input-group-btn .btn.btn-info {
  border-color: #46b8da !important; }

.input-group .input-group-btn .btn.btn-danger {
  border-color: #d43f3a !important; }

.input-group .input-group-btn .btn.btn-red {
  border-color: #ad3b3e !important; }

.input-group .input-group-btn .btn.btn-orange {
  border-color: #e45618 !important; }

.input-group .input-group-btn .btn.btn-green {
  border-color: #3f7b5f !important; }

.input-group .input-group-btn .btn.btn-yellow {
  border-color: #f08c33 !important; }

.input-group .input-group-btn .btn.btn-blue {
  border-color: #086d84 !important; }

.input-group .input-group-btn .btn.btn-pink {
  border-color: #ab3167 !important; }

.input-group .input-group-btn .btn.btn-violet {
  border-color: #84499c !important; }

.input-group .input-group-btn .btn.btn-grey {
  border-color: #405058 !important; }

.input-group .input-group-btn .btn.btn-dark {
  border-color: #4b3d49 !important; }

.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0 !important;
  border-top-right-radius: 0 !important; }

.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important; }

.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important; }

.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0 !important;
  border-top-right-radius: 0 !important; }

.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important; }

.dropdown-menu {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0; }

.dropdown-menu li a {
  color: #777777;
  padding: 9px 10px;
  font-size: 13px; }

.dropdown-submenu {
  position: relative; }

.dropdown-submenu > .dropdown-menu {
  top: 5px;
  left: 100%;
  margin-top: -6px;
  margin-left: -1px; }

.dropdown-submenu > a:after {
  position: absolute;
  display: inline-block;
  right: 7px;
  top: 7px;
  font-family: FontAwesome;
  height: auto;
  content: "\f105";
  font-weight: 300; }

.dropdown-submenu:hover > .dropdown-menu {
  display: block; }

.dropdown-submenu.pull-left {
  float: none; }

.dropdown-submenu.pull-left > .dropdown-menu {
  left: -100%;
  margin-left: 10px; }

.dropup .dropdown-submenu > .dropdown-menu {
  top: auto;
  bottom: 0;
  margin-top: 0;
  margin-bottom: -2px; }

.nav-pills li.active a {
  background: #bf4346; }

.nav-pills li.active a:hover,
.nav-pills li.active a:focus {
  background: #bf4346; }

.nav-pills li a {
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important; }

.list-group .list-group-item {
  border-color: #e5e5e5;
  color: #777777; }

.list-group .list-group-item.active {
  background: #bf4346;
  border-color: #bf4346; }

.list-group .list-group-item.active:hover,
.list-group .list-group-item.active:focus {
  background: #bf4346;
  border-color: #bf4346; }

.list-group .list-group-item:first-child {
  border-top-right-radius: 5px !important;
  border-top-left-radius: 5px !important; }

.list-group .list-group-item:last-child {
  border-bottom-right-radius: 5px !important;
  border-bottom-left-radius: 5px !important; }

.nav-tabs {
  border-color: #e5e5e5 !important; }

.nav-tabs li a {
  -webkit-border-radius: 7px 7px 0 0 !important;
  -moz-border-radius: 7px 7px 0 0 !important;
  border-radius: 7px 7px 0 0 !important; }

.tab-content {
  background: #fff;
  padding: 20px 15px;
  margin-bottom: 20px;
  border: 1px solid;
  border-color: #e5e5e5 !important;
  border-top: 0; }

.tabbable:before {
  display: table;
  line-height: 0;
  content: ""; }

.tabbable:after {
  display: table;
  line-height: 0;
  content: "";
  clear: both; }

.tabbable.tabs-left .nav-tabs {
  float: left;
  display: inline-block;
  border-bottom: 0; }

.tabbable.tabs-left .nav-tabs > li {
  float: none; }

.tabbable.tabs-left .nav-tabs > li.active > a,
.tabbable.tabs-left .nav-tabs > li:hover > a,
.tabbable.tabs-left .nav-tabs > li:focus > a {
  border: 1px solid;
  border-color: #e5e5e5 !important;
  border-right: 0; }

.tabbable.tabs-left .nav-tabs > li > a {
  border-right: 0;
  min-width: 74px;
  margin-bottom: 3px;
  margin-right: -1px;
  -webkit-border-radius: 7px 0 0 7px !important;
  -moz-border-radius: 7px 0 0 7px !important;
  border-radius: 7px 0 0 7px !important; }

.tabbable.tabs-left .tab-content {
  overflow: auto;
  border: 1px solid;
  border-color: #e5e5e5 !important; }

.tabbable.tabs-right .nav-tabs {
  float: right;
  display: inline-block;
  border-bottom: 0; }

.tabbable.tabs-right .nav-tabs > li {
  float: none; }

.tabbable.tabs-right .nav-tabs > li.active > a,
.tabbable.tabs-right .nav-tabs > li:hover > a,
.tabbable.tabs-right .nav-tabs > li:focus > a {
  border: 1px solid;
  border-color: #e5e5e5 !important;
  border-left: 0; }

.tabbable.tabs-right .nav-tabs > li > a {
  border-left: 0;
  min-width: 74px;
  margin-bottom: 3px;
  margin-left: -1px;
  -webkit-border-radius: 0 7px 7px 0 !important;
  -moz-border-radius: 0 7px 7px 0 !important;
  border-radius: 0 7px 7px 0 !important; }

.tabbable.tabs-right .tab-content {
  overflow: auto;
  border: 1px solid;
  border-color: #e5e5e5 !important; }

.tabbable.tabs-below .nav-tabs {
  margin-bottom: 20px !important;
  border: 0; }

.tabbable.tabs-below .nav-tabs > li {
  margin-top: -1px;
  margin-bottom: 0; }

.tabbable.tabs-below .nav-tabs > li.active > a {
  border: 1px solid;
  border-color: #e5e5e5 !important;
  border-top: 0; }

.tabbable.tabs-below .nav-tabs > li > a {
  -webkit-border-radius: 0 0 7px 7px !important;
  -moz-border-radius: 0 0 7px 7px !important;
  border-radius: 0 0 7px 7px !important; }

.tabbable.tabs-below .tab-content {
  overflow: auto;
  margin-bottom: 0 !important;
  border: 1px solid;
  border-color: #e5e5e5 !important; }

ul.nav.nav-tabs.ul-edit li.active a {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important; }

.progress {
  position: relative;
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important; }

.progress.progress-xs {
  height: 5px;
  margin-top: 5px; }

.progress.progress-sm {
  height: 11px;
  margin-top: 5px; }

.progress.progress-lg {
  height: 25px; }

.progress .progress-bar {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  background-color: #bf4346; }

.progress .progress-bar.progress-bar-success {
  background-color: #5cb85c !important; }

.progress .progress-bar.progress-bar-warning {
  background-color: #f0ad4e !important; }

.progress .progress-bar.progress-bar-info {
  background-color: #5bc0de !important; }

.progress .progress-bar.progress-bar-danger {
  background-color: #d9534f !important; }

.progress .progress-bar.progress-bar-red {
  background-color: #bf4346 !important; }

.progress .progress-bar.progress-bar-orange {
  background-color: #e9662c !important; }

.progress .progress-bar.progress-bar-green {
  background-color: #488c6c !important; }

.progress .progress-bar.progress-bar-yellow {
  background-color: #f2994b !important; }

.progress .progress-bar.progress-bar-blue {
  background-color: #0a819c !important; }

.progress .progress-bar.progress-bar-violet {
  background-color: #9351ad !important; }

.progress .progress-bar.progress-bar-pink {
  background-color: #bf3773 !important; }

.progress .progress-bar.progress-bar-grey {
  background-color: #4b5d67 !important; }

.progress .progress-bar.progress-bar-dark {
  background-color: #594857 !important; }

.progress .progress-bar.progress-bar-white {
  background-color: #ffffff !important; }

.progress .progress-bar.six-sec-ease-in-out {
  -webkit-transition: width 6s ease-in-out;
  -moz-transition: width 6s ease-in-out;
  -ms-transition: width 6s ease-in-out;
  -o-transition: width 6s ease-in-out;
  transition: width 6s ease-in-out; }

.progress.wide {
  width: 60px;
  height: 150px; }

.progress.vertical.progress-xs {
  width: 10px;
  margin-top: 0; }

.progress.vertical.progress-sm {
  width: 20px;
  margin-top: 0; }

.progress.vertical.progress-lg {
  width: 70px; }

.form-actions {
  padding: 20px 0;
  background: #fafafa;
  border-bottom-right-radius: 4px !important;
  border-bottom-left-radius: 4px !important; }

.form-actions:before,
.form-actions:after {
  display: table;
  line-height: 0;
  content: ""; }

.form-actions:after {
  clear: both; }

.form-actions.top {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important; }

.form-actions.none-bg {
  background: transparent;
  border-top: 1px dashed #f3f3f3; }

.form-actions.none-bg.top {
  border-bottom: 1px dashed #f3f3f3;
  border-top: 0; }

.state-success .form-control {
  border-color: #7edc7f !important; }

.state-warning .form-control {
  border-color: #dcb359 !important; }

.state-error .form-control {
  border-color: #db4c4a !important; }

.state-success em {
  color: #7edc7f !important;
  margin-top: 5px;
  display: block; }

.state-warning em {
  color: #dcb359 !important;
  margin-top: 5px;
  display: block; }

.state-error em {
  color: #db4c4a !important;
  margin-top: 5px;
  display: block; }

.state-success input,
.state-success select,
.state-success textarea {
  background: #dff0d8 !important; }

.state-warning input,
.state-warning select,
.state-warning textarea {
  background: #fcf8e3 !important; }

.state-error input,
.state-error select,
.state-error textarea {
  background: #f2dede !important; }

.form-bordered .control-label {
  padding-top: 16px; }

.form-bordered .form-group {
  margin: 0;
  border-bottom: 1px solid #f7f7f7; }

.form-bordered .form-group > div {
  padding: 15px;
  border-left: 1px solid #f7f7f7; }

.form-bordered .form-group:last-child {
  border-bottom: 0; }

.form-bordered .help-block {
  margin-bottom: 0px; }

.form-bordered.dashed .form-group {
  border-bottom: 1px dashed #f3f3f3; }

.form-bordered.dashed .form-group > div {
  border-left: 1px dashed #f3f3f3; }

.form-bordered.dashed .form-group:last-child {
  border-bottom: 0; }

.form-seperated .control-label {
  padding-top: 16px; }

.form-seperated .form-group {
  margin: 0;
  border-bottom: 1px solid #f7f7f7; }

.form-seperated .form-group > div {
  padding: 15px; }

.form-seperated .form-group:last-child {
  border-bottom: 0; }

.form-seperated .help-block {
  margin-bottom: 0px; }

.form-seperated.dashed .form-group {
  border-bottom: 1px dashed #f3f3f3; }

.form-seperated.dashed .form-group:last-child {
  border-bottom: 0; }

.form-horizontal.form-row-stripped .form-group:nth-child(odd) {
  background: #fcfcfc; }

.form-horizontal.form-seperated .radio,
.form-horizontal.form-seperated .checkbox,
.form-horizontal.form-seperated .radio-inline,
.form-horizontal.form-seperated .checkbox-inline {
  padding-top: 0; }

.text-primary {
  color: #bf4346 !important; }

.text-red {
  color: #bf4346 !important; }

.text-orange {
  color: #e9662c !important; }

.text-green {
  color: #488c6c !important; }

.text-yellow {
  color: #f2994b !important; }

.text-blue {
  color: #0a819c !important; }

.text-pink {
  color: #bf3773 !important; }

.text-violet {
  color: #9351ad !important; }

.text-grey {
  color: #4b5d67 !important; }

.text-dark {
  color: #594857 !important; }

.text-white {
  color: #ffffff !important; }

.text-facebook {
  color: #418bca; }

.text-twitter {
  color: #5bc0de; }

.text-google-plus {
  color: #dd4c39; }

.text-dribbble {
  color: #ec5d92; }

.input-mini {
  width: 45px !important; }

.input-xsmall {
  width: 80px !important; }

.input-small {
  width: 120px !important; }

.input-medium {
  width: 240px !important; }

.input-large {
  width: 320px !important; }

.input-xlarge {
  width: 480px !important; }

.input-inline {
  display: inline-block;
  width: auto;
  vertical-align: middle; }

.form-group .input-inline {
  margin-right: 5px; }

.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px; }

.ui-spinner-input {
  height: 24px; }

.modal .modal-dialog .modal-content {
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important; }

.modal .modal-dialog .modal-content .modal-header.modal-header-primary {
  background: #bf4346; }

.modal .modal-dialog .modal-content .modal-header.modal-header-primary .modal-title {
  color: #FFFFFF; }

.modal .modal-dialog .modal-content .modal-footer.modal-footer-left {
  text-align: left !important; }

.portlet {
  clear: both;
  margin-top: 0px;
  margin-bottom: 25px;
  padding: 0px; }

.portlet {
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important; }

.portlet.box > .portlet-header {
  margin-bottom: 0;
  padding: 8px 15px;
  border-top-right-radius: 5px !important;
  border-top-left-radius: 5px !important; }

.portlet > .portlet-header {
  margin-bottom: 15px;
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5; }

.portlet > .portlet-header:before {
  content: "";
  display: table;
  line-height: 0; }

.portlet > .portlet-header:after {
  content: "";
  display: table;
  line-height: 0;
  clear: both; }

.portlet > .portlet-header .caption {
  float: left;
  display: inline-block;
  font-size: 18px;
  line-height: 18px;
  padding: 0; }

.portlet > .portlet-header .caption i {
  float: left;
  margin-top: 4px;
  display: inline-block !important;
  font-size: 13px;
  margin-right: 5px;
  color: #777777; }

.portlet > .portlet-header .actions {
  display: inline-block;
  padding: 0;
  margin: 0;
  margin-top: 6px;
  float: right; }

.portlet > .portlet-header .actions > .btn {
  padding: 4px 10px;
  margin-top: -18px; }

.portlet > .portlet-header .actions > .btn.btn-sm {
  padding: 3px 8px;
  margin-top: -13px; }

.portlet > .portlet-header .actions > .btn.btn-xs {
  padding: 1px 5px;
  margin-top: -13px; }

.portlet > .portlet-header .actions > .btn-group {
  margin-top: -12px; }

.portlet > .portlet-header .actions > .btn-group > .btn {
  padding: 4px 10px;
  margin-top: -1px; }

.portlet > .portlet-header .actions > .btn-group > .btn.btn-sm {
  padding: 3px 8px;
  margin-top: -1px; }

.portlet > .portlet-header .actions > .btn-group > .btn.btn-xs {
  padding: 1px 5px;
  margin-top: -1px; }

.portlet > .portlet-header .pagination.pagination-sm {
  float: right;
  display: inline-block;
  margin: 0px; }

.portlet > .portlet-header .pagination.pagination-sm li a {
  padding: 3px 10px; }

.portlet > .portlet-header .tools {
  display: inline-block;
  padding: 0;
  margin: 0;
  float: right; }

.portlet > .portlet-header .tools i {
  margin-left: 5px;
  cursor: pointer; }

.portlet .portlet-body {
  background: #FFFFFF;
  padding: 15px;
  clear: both;
  border-bottom-right-radius: 5px !important;
  border-bottom-left-radius: 5px !important; }

.portlet .portlet-body.form {
  padding: 0 !important; }

.portlet.portlet-default > .portlet-header {
  background: #FFFFFF;
  color: #777777;
  border-bottom: 1px solid #f0f2f6; }

.portlet.portlet-default > .portlet-header i {
  color: #777777; }

.portlet.portlet-default > .portlet-header .btn i {
  color: #777777; }

.portlet.portlet-primary {
  border-color: #bf4346; }

.portlet.portlet-primary > .portlet-header {
  background: #bf4346;
  color: #ffffff; }

.portlet.portlet-red {
  border-color: #bf4346; }

.portlet.portlet-red > .portlet-header {
  background: #bf4346;
  color: #ffffff; }

.portlet.portlet-orange {
  border-color: #e9662c; }

.portlet.portlet-orange > .portlet-header {
  background: #e9662c;
  color: #ffffff; }

.portlet.portlet-green {
  border-color: #488c6c; }

.portlet.portlet-green > .portlet-header {
  background: #488c6c;
  color: #ffffff; }

.portlet.portlet-yellow {
  border-color: #f2994b; }

.portlet.portlet-yellow > .portlet-header {
  background: #f2994b;
  color: #ffffff; }

.portlet.portlet-blue {
  border-color: #0a819c; }

.portlet.portlet-blue > .portlet-header {
  background: #0a819c;
  color: #ffffff; }

.portlet.portlet-violet {
  border-color: #9351ad; }

.portlet.portlet-violet > .portlet-header {
  background: #9351ad;
  color: #ffffff; }

.portlet.portlet-pink {
  border-color: #bf3773; }

.portlet.portlet-pink > .portlet-header {
  background: #bf3773;
  color: #ffffff; }

.portlet.portlet-grey {
  border-color: #4b5d67; }

.portlet.portlet-grey > .portlet-header {
  background: #4b5d67;
  color: #ffffff; }

.portlet.portlet-dark {
  border-color: #594857; }

.portlet.portlet-dark > .portlet-header {
  background: #594857;
  color: #ffffff; }

.portlet {
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important; }

.portlet.color {
  padding: 0; }

.portlet.color .portlet-header {
  margin-bottom: 0;
  border: 0px; }

.portlet.color .portlet-header .btn.btn-white i {
  color: #777777; }

.portlet.color .portlet-body {
  background: transparent; }

.portlet.color.portlet-default {
  background: #FFFFFF !important; }

.portlet.color.portlet-default > .portlet-header {
  color: #777777;
  border: 0; }

.portlet.color.portlet-default > .portlet-header > .caption i {
  color: #777777;
  border: 0; }

.portlet.color.portlet-default > .portlet-header > .tools {
  border: 0px; }

.portlet.color.portlet-default > .portlet-body {
  color: #777777;
  border: 0;
  padding: 0;
  background: transparent; }

.portlet.color.portlet-primary {
  background: #bf4346 !important; }

.portlet.color.portlet-primary > .portlet-header {
  color: #ffffff;
  border: 0; }

.portlet.color.portlet-primary > .portlet-header > .caption i {
  color: #ffffff;
  border: 0; }

.portlet.color.portlet-primary > .portlet-header > .tools {
  border: 0px; }

.portlet.color.portlet-primary > .portlet-body {
  color: #ffffff;
  border: 0; }

.portlet.color > .portlet-body.brand-primary {
  background: #bf4346 !important; }

.portlet.color.portlet-red {
  background: #bf4346 !important; }

.portlet.color.portlet-red > .portlet-header {
  color: #ffffff;
  border: 0; }

.portlet.color.portlet-red > .portlet-header > .caption i {
  color: #ffffff;
  border: 0; }

.portlet.color.portlet-red > .portlet-header > .tools {
  border: 0px; }

.portlet.color.portlet-red > .portlet-body {
  color: #ffffff;
  border: 0; }

.portlet.color > .portlet-body.color-red {
  background: #bf4346 !important; }

.portlet.color.portlet-orange {
  background: #e9662c !important; }

.portlet.color.portlet-orange > .portlet-header {
  color: #ffffff;
  border: 0; }

.portlet.color.portlet-orange > .portlet-header > .caption i {
  color: #ffffff;
  border: 0; }

.portlet.color.portlet-orange > .portlet-header > .tools {
  border: 0px; }

.portlet.color.portlet-orange > .portlet-body {
  color: #ffffff;
  border: 0; }

.portlet.color > .portlet-body.color-orange {
  background: #e9662c !important; }

.portlet.color.portlet-green {
  background: #488c6c !important; }

.portlet.color.portlet-green > .portlet-header {
  color: #ffffff;
  border: 0; }

.portlet.color.portlet-green > .portlet-header > .caption i {
  color: #ffffff;
  border: 0; }

.portlet.color.portlet-green > .portlet-header > .tools {
  border: 0px; }

.portlet.color.portlet-green > .portlet-body {
  color: #ffffff;
  border: 0; }

.portlet.color > .portlet-body.color-green {
  background: #488c6c !important; }

.portlet.color.portlet-yellow {
  background: #f2994b !important; }

.portlet.color.portlet-yellow > .portlet-header {
  color: #ffffff;
  border: 0; }

.portlet.color.portlet-yellow > .portlet-header > .caption i {
  color: #ffffff;
  border: 0; }

.portlet.color.portlet-yellow > .portlet-header > .tools {
  border: 0px; }

.portlet.color.portlet-yellow > .portlet-body {
  color: #ffffff;
  border: 0; }

.portlet.color > .portlet-body.color-yellow {
  background: #f2994b !important; }

.portlet.color.portlet-blue {
  background: #0a819c !important; }

.portlet.color.portlet-blue > .portlet-header {
  color: #ffffff;
  border: 0; }

.portlet.color.portlet-blue > .portlet-header > .caption i {
  color: #ffffff;
  border: 0; }

.portlet.color.portlet-blue > .portlet-header > .tools {
  border: 0px; }

.portlet.color.portlet-blue > .portlet-body {
  color: #ffffff;
  border: 0; }

.portlet.color > .portlet-body.color-blue {
  background: #0a819c !important; }

.portlet.color.portlet-violet {
  background: #9351ad !important; }

.portlet.color.portlet-violet > .portlet-header {
  color: #ffffff;
  border: 0; }

.portlet.color.portlet-violet > .portlet-header > .caption i {
  color: #ffffff;
  border: 0; }

.portlet.color.portlet-violet > .portlet-header > .tools {
  border: 0px; }

.portlet.color.portlet-violet > .portlet-body {
  color: #ffffff;
  border: 0; }

.portlet.color > .portlet-body.color-violet {
  background: #9351ad !important; }

.portlet.color.portlet-pink {
  background: #bf3773 !important; }

.portlet.color.portlet-pink > .portlet-header {
  color: #ffffff;
  border: 0; }

.portlet.color.portlet-pink > .portlet-header > .caption i {
  color: #ffffff;
  border: 0; }

.portlet.color.portlet-pink > .portlet-header > .tools {
  border: 0px; }

.portlet.color.portlet-pink > .portlet-body {
  color: #ffffff;
  border: 0; }

.portlet.color > .portlet-body.color-pink {
  background: #bf3773 !important; }

.portlet.color.portlet-grey {
  background: #4b5d67 !important; }

.portlet.color.portlet-grey > .portlet-header {
  color: #ffffff;
  border: 0; }

.portlet.color.portlet-grey > .portlet-header > .caption i {
  color: #ffffff;
  border: 0; }

.portlet.color.portlet-grey > .portlet-header > .tools {
  border: 0px; }

.portlet.color.portlet-grey > .portlet-body {
  color: #ffffff;
  border: 0; }

.portlet.color > .portlet-body.color-grey {
  background: #4b5d67 !important; }

.portlet.color.portlet-dark {
  background: #594857 !important; }

.portlet.color.portlet-dark > .portlet-header {
  color: #ffffff;
  border: 0; }

.portlet.color.portlet-dark > .portlet-header > .caption i {
  color: #ffffff;
  border: 0; }

.portlet.color.portlet-dark > .portlet-header > .tools {
  border: 0px; }

.portlet.color.portlet-dark > .portlet-body {
  color: #ffffff;
  border: 0; }

.portlet.color > .portlet-body.color-dark {
  background: #594857 !important; }

.portlet-tabs > .nav-tabs {
  position: relative;
  top: -44px;
  margin-right: 15px;
  border-bottom: none;
  padding: 4px 0px;
  overflow: hidden; }

.portlet-tabs > .nav-tabs > li {
  float: right;
  margin-left: 1px; }

.portlet-tabs > .nav-tabs > li:last-child a {
  border-right: 0; }

.portlet-tabs > .nav-tabs > li.active {
  color: #bf4346;
  border-top-color: transparent; }

.portlet-tabs > .nav-tabs > li.active a {
  margin-bottom: 0px;
  border-bottom: 0;
  margin-left: 0px;
  margin-right: 0px;
  border-left: 0;
  border-right: 0;
  background-color: none !important;
  border-top-color: transparent !important;
  color: #777777;
  cursor: default; }

.portlet-tabs > .nav-tabs > li.active a:hover {
  background-color: #fff !important; }

.portlet-tabs > .nav-tabs > li a {
  color: #fff;
  padding-top: 8px;
  padding-bottom: 10px;
  line-height: 16px;
  margin-top: 6px;
  margin-left: 0px;
  margin-right: 0px;
  border-left: 0;
  border-right: 0; }

.portlet-tabs > .nav-tabs > li a:hover {
  color: #777777;
  margin-bottom: 0;
  border-bottom-color: transparent;
  margin-left: 0;
  margin-right: 0;
  border-left: 0;
  border-right: 0;
  background-color: none !important;
  border-top-color: transparent; }

.portlet-tabs > .tab-content {
  padding: 15px !important;
  margin: 0px;
  margin-top: -50px !important;
  border: 0; }

.portlet.tabbable .portlet-body {
  padding: 0px !important; }

.sortable .portlet .portlet-header {
  cursor: move; }

.sortable-placeholder {
  display: block;
  margin-top: 0px !important;
  margin-bottom: 25px !important;
  background-color: #f5f5f5;
  border: 1px dashed #bf4346; }

.sortable-placeholder * {
  visibility: hidden; }

.wait {
  position: relative;
  background: url(/../../images/icons/loading.gif) center no-repeat !important; }

.family-tree-vertical li {
  margin: 0px 0;
  list-style-type: none;
  position: relative;
  padding: 20px 5px 0px 5px; }

.family-tree-vertical li:before {
  content: '';
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  right: auto;
  left: -20px;
  border-left: 1px solid #ccc;
  bottom: 50px; }

.family-tree-vertical li:after {
  content: '';
  position: absolute;
  top: 30px;
  width: 25px;
  height: 20px;
  right: auto;
  left: -20px;
  border-top: 1px solid #ccc; }

.family-tree-vertical li a {
  display: inline-block;
  border: 1px solid #ccc;
  padding: 5px 10px;
  text-decoration: none;
  color: #666;
  font-family: arial, verdana, tahoma;
  font-size: 11px;
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important; }

.family-tree-vertical li a:hover,
.family-tree-vertical li a:hover + ul li a {
  background: #c8e4f8;
  color: #000;
  border: 1px solid #94a0b4; }

.family-tree-vertical li:last-child:before {
  height: 30px; }

.family-tree-vertical > ul > li::before,
.family-tree-vertical > ul > li::after {
  border: 0; }

.family-tree-vertical li a:hover + ul li::after,
.family-tree-vertical li a:hover + ul li::before,
.family-tree-vertical li a:hover + ul::before,
.family-tree-vertical li a:hover + ul ul::before {
  border-color: #94a0b4; }

.family-tree-horizontal ul {
  padding-top: 20px;
  position: relative;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s; }

.family-tree-horizontal li {
  float: left;
  text-align: center;
  list-style-type: none;
  position: relative;
  padding: 20px 5px 0 5px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s; }

.family-tree-horizontal li::before,
.family-tree-horizontal li::after {
  content: '';
  position: absolute;
  top: 0;
  right: 50%;
  border-top: 1px solid #ccc;
  width: 50%;
  height: 20px; }

.family-tree-horizontal li::after {
  right: auto;
  left: 50%;
  border-left: 1px solid #ccc; }

.family-tree-horizontal li:only-child::after,
.family-tree-horizontal li:only-child::before {
  display: none; }

.family-tree-horizontal li:only-child {
  padding-top: 0; }

.family-tree-horizontal li:first-child::before,
.family-tree-horizontal li:last-child::after {
  border: 0 none; }

.family-tree-horizontal li:last-child::before {
  border-right: 1px solid #ccc; }

.family-tree-horizontal ul ul::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  border-left: 1px solid #ccc;
  width: 0;
  height: 20px; }

.family-tree-horizontal li a {
  border: 1px solid #ccc;
  padding: 5px 10px;
  text-decoration: none;
  color: #666;
  font-family: arial, verdana, tahoma;
  font-size: 11px;
  display: inline-block;
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s; }

.family-tree-horizontal li a:hover,
.family-tree-horizontal li a:hover + ul li a {
  background: #c8e4f8;
  color: #000;
  border: 1px solid #94a0b4; }

.family-tree-horizontal li a:hover + ul li::after,
.family-tree-horizontal li a:hover + ul li::before,
.family-tree-horizontal li a:hover + ul::before,
.family-tree-horizontal li a:hover + ul ul::before {
  border-color: #94a0b4; }

.input-icon {
  position: relative; }

.input-icon input {
  padding-left: 33px !important;
  color: #999999; }

.input-icon i {
  color: #999999;
  display: block;
  position: absolute;
  margin: 10px 2px 4px 10px;
  width: 16px;
  height: 16px;
  font-size: 16px;
  text-align: center; }

.input-icon.right input {
  padding-left: 12px !important;
  padding-right: 33px !important; }

.input-icon.right i {
  right: 8px;
  float: right; }

.has-success .input-icon i {
  color: #5cb85c; }

.has-warning .input-icon i {
  color: #f0ad4e; }

.has-error .input-icon i {
  color: #d9534f; }

.rating {
  margin-bottom: 4px;
  font-size: 15px;
  line-height: 27px;
  color: #777777; }

.rating label {
  display: block;
  float: right;
  height: 17px;
  margin-top: 5px;
  padding: 0 2px;
  font-size: 17px;
  line-height: 17px;
  cursor: pointer;
  color: #ccc;
  -ms-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -webkit-transition: color 0.3s; }

.rating label .fa-star:before {
  content: "\f005"; }

.table thead tr th,
.table thead tr td {
  border-bottom: 0; }

.table.table-sm {
  font-size: .875em; }

.table.table-lg {
  font-size: 1.2em; }

.table > input[type='text'] {
  font-weight: normal;
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5; }

.table select {
  font-weight: normal;
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5; }

.table.table-advanced thead tr th {
  border-bottom-width: 1px !important;
  background-color: #efefef; }

.table.table-advanced thead.primary tr th {
  background: #bf4346;
  color: #FFFFFF; }

.table.table-advanced thead.success tr th {
  background: #5cb85c;
  color: #FFFFFF; }

.table.table-advanced thead.warning tr th {
  background: #f0ad4e;
  color: #FFFFFF; }

.table.table-advanced thead.info tr th {
  background: #5bc0de;
  color: #FFFFFF; }

.table.table-advanced thead.danger tr th {
  background: #d9534f;
  color: #FFFFFF; }

.table.table-advanced thead.red tr th {
  background: #bf4346;
  color: #FFFFFF; }

.table.table-advanced thead.orange tr th {
  background: #e9662c;
  color: #FFFFFF; }

.table.table-advanced thead.green tr th {
  background: #488c6c;
  color: #FFFFFF; }

.table.table-advanced thead.yellow tr th {
  background: #f2994b;
  color: #FFFFFF; }

.table.table-advanced thead.blue tr th {
  background: #0a819c;
  color: #FFFFFF; }

.table.table-advanced thead.pink tr th {
  background: #bf3773;
  color: #FFFFFF; }

.table.table-advanced thead.violet tr th {
  background: #9351ad;
  color: #FFFFFF; }

.table.table-advanced thead.grey tr th {
  background: #4b5d67;
  color: #FFFFFF; }

.table.table-advanced thead.dark tr th {
  background: #594857;
  color: #FFFFFF; }

.table.table-advanced thead.white tr th {
  background: #ffffff;
  color: #777777; }

.table.table-advanced tfoot tr th {
  border-bottom: 0 !important;
  background: #efefef; }

.table.table-advanced tfoot.primary tr th {
  background: #bf4346;
  color: #FFFFFF; }

.table.table-advanced tfoot.success tr th {
  background: #5cb85c;
  color: #FFFFFF; }

.table.table-advanced tfoot.warning tr th {
  background: #f0ad4e;
  color: #FFFFFF; }

.table.table-advanced tfoot.info tr th {
  background: #5bc0de;
  color: #FFFFFF; }

.table.table-advanced tfoot.danger tr th {
  background: #d9534f;
  color: #FFFFFF; }

.table.table-advanced tfoot.red tr th {
  background: #bf4346;
  color: #FFFFFF; }

.table.table-advanced tfoot.orange tr th {
  background: #e9662c;
  color: #FFFFFF; }

.table.table-advanced tfoot.green tr th {
  background: #488c6c;
  color: #FFFFFF; }

.table.table-advanced tfoot.yellow tr th {
  background: #f2994b;
  color: #FFFFFF; }

.table.table-advanced tfoot.blue tr th {
  background: #0a819c;
  color: #FFFFFF; }

.table.table-advanced tfoot.pink tr th {
  background: #bf3773;
  color: #FFFFFF; }

.table.table-advanced tfoot.violet tr th {
  background: #9351ad;
  color: #FFFFFF; }

.table.table-advanced tfoot.grey tr th {
  background: #4b5d67;
  color: #FFFFFF; }

.table.table-advanced tfoot.dark tr th {
  background: #594857;
  color: #FFFFFF; }

.table.table-advanced tfoot.white tr th {
  background: #ffffff;
  color: #777777; }

.table.table-hover-color tbody tr:hover td:first-child {
  border-left: 4px solid #bf4346; }

.table-actions {
  margin-bottom: 20px; }

.table-actions.bottom {
  margin-bottom: 0;
  margin-top: 20px; }

.table-actions .pagination {
  margin: 0; }

.fixed-header {
  top: 0;
  position: fixed;
  width: auto;
  display: none;
  border: none;
  z-index: 999; }

.page-header-breadcrumb {
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important; }

.timeline-label {
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important; }

.form-control {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border-color: #e5e5e5;
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important; }

label {
  font-weight: normal; }

.alert {
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important; }

.breadcrumb {
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important; }

.navbar {
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important; }

.thumbnail {
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important;
  border-color: #e5e5e5 !important; }

.tooltip .tooltip-inner {
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important; }

.popover {
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border-color: #e5e5e5 !important; }

.popover.left .arrow {
  border-left-color: #e5e5e5; }

.popover.right .arrow {
  border-right-color: #e5e5e5; }

.popover.top .arrow {
  border-top-color: #e5e5e5; }

.popover.bottom .arrow {
  border-bottom-color: #e5e5e5;
  top: -14px; }

.well {
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border-color: #e5e5e5 !important; }

ul.todo-list li {
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important; }

ul.chats li.in .message {
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important; }

ul.chats li.out .message {
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important; }

.cke_chrome {
  -webkit-box-shadow: none !important;
  box-shadow: none !important; }

.cke_chrome .cke_top {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  background-image: none; }

.cke_chrome .cke_bottom {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  background-image: none; }

.cke_chrome .cke_combo_button,
.cke_chrome .cke_toolgroup {
  border-color: #e5e5e5;
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  background-image: none; }

.cke_chrome .cke_combo_button:hover,
.cke_chrome .cke_toolgroup:hover,
.cke_chrome .cke_combo_button:focus,
.cke_chrome .cke_toolgroup:focus {
  background-image: none; }

.cke_chrome a.cke_button_off:hover,
.cke_chrome a.cke_button_off:focus,
.cke_chrome a.cke_button_off:active,
.cke_chrome a.cke_button_disabled:hover,
.cke_chrome a.cke_button_disabled:focus,
.cke_chrome a.cke_button_disabled:active,
.cke_chrome .cke_combo_off a.cke_combo_button:hover,
.cke_chrome .cke_combo_off a.cke_combo_button:focus {
  background-image: none; }

.md-editor > textarea {
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important; }

#toast-container > :hover {
  -webkit-box-shadow: none !important;
  box-shadow: none !important; }

#toast-container div {
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important; }

.has-switch {
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important;
  border: 0; }

.has-switch span.switch-left,
.has-switch span.switch-right,
.has-switch label {
  text-shadow: none;
  box-shadow: none;
  background-image: none;
  border: 0; }

.has-switch span.switch-left.switch-primary,
.has-switch span.switch-right.switch-primary,
.has-switch label.switch-primary {
  text-shadow: none;
  box-shadow: none;
  background-image: none;
  background: #bf4346 !important; }

.has-switch .switch-left {
  border-bottom-left-radius: 5px !important;
  border-top-left-radius: 5px !important; }

.has-switch .switch-right {
  border-bottom-right-radius: 5px !important;
  border-top-right-radius: 5px !important; }

.has-switch .switch-on label {
  border-bottom-right-radius: 5px !important;
  border-top-right-radius: 5px !important;
  background-color: #e5e5e5; }

.has-switch .switch-off label {
  border-bottom-left-radius: 5px !important;
  border-top-left-radius: 5px !important;
  background-color: #e5e5e5; }

.slimScrollBar {
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important; }

.clockface .outer,
.clockface .inner {
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important; }

.clockface .inner.active,
.clockface .inner.active:hover,
.clockface .outer.active,
.clockface .outer.active:hover {
  text-shadow: none;
  background-image: none; }

.clockface .inner.active:hover,
.clockface .inner.active:hover:hover,
.clockface .inner.active:active,
.clockface .inner.active:hover:active,
.clockface .inner.active.active,
.clockface .inner.active.active:hover,
.clockface .inner.active.disabled,
.clockface .inner.active.disabled:hover,
.clockface .inner.active[disabled],
.clockface .inner.active[disabled]:hover {
  background: #bf4346; }

.clockface .outer.active:hover,
.clockface .outer.active:hover:hover,
.clockface .outer.active:active,
.clockface .outer.active:hover:active,
.clockface .outer.active.active,
.clockface .outer.active.active:hover,
.clockface .outer.active.disabled,
.clockface .outer.active.disabled:hover,
.clockface .outer.active[disabled],
.clockface .outer.active[disabled]:hover {
  background: #5cb85c; }

.bootstrap-datetimepicker-widget td span {
  height: auto;
  line-height: normal;
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important; }

.datepicker table tr td.active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover {
  background-image: none;
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important; }

.bootstrap-datetimepicker-widget td,
.bootstrap-datetimepicker-widget th {
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important; }

.datepicker td,
.datepicker th {
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important; }

.datepicker table tr td.selected,
.datepicker table tr td.selected:hover,
.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected.disabled:hover {
  background-image: none;
  text-shadow: none; }

.datepicker table tr td span.active,
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active.disabled:hover {
  background-image: none;
  text-shadow: none; }

.datepicker table tr td span {
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important; }

.datepicker {
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important; }

.daterangepicker .ranges li {
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important;
  color: #777777; }

.daterangepicker .ranges li.active,
.daterangepicker .ranges li:hover {
  background: #bf4346;
  border: 1px solid #bf4346; }

.daterangepicker .ranges .input-mini,
.daterangepicker td,
.daterangepicker th,
.daterangepicker .calendar-date {
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important; }

.fc-state-default {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  background-image: none;
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important;
  border: 1px solid #e5e5e5;
  text-shadow: none;
  color: #777777; }

.page-form {
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important; }

.page-form .header-content {
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important; }

.media img.media-object {
  -webkit-border-radius: 50% !important;
  -moz-border-radius: 50% !important;
  border-radius: 50% !important; }

.dd .dd-list .dd-item .dd-handle,
.dd .dd-list .dd-item .dd3-content {
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important;
  border-color: #e5e5e5 !important; }

.dd .dd-list .dd-item .dd-handle.dd3-handle,
.dd .dd-list .dd-item .dd3-content.dd3-handle {
  border-bottom-right-radius: 0 !important;
  border-top-right-radius: 0 !important; }

.jquery-notific8-notification {
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important; }

.wizard > .steps a,
.wizard > .steps a:hover,
.wizard > .steps a:active {
  padding: 0.5em 1em;
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important; }

.wizard > .actions a,
.wizard > .actions a:hover,
.wizard > .actions a:active {
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important; }

#theme-setting .btn-theme-setting {
  border-bottom-left-radius: 10px !important;
  border-top-left-radius: 10px !important; }

#theme-setting .content-theme-setting ul#list-color li {
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important; }

ul.nav.nav-tabs li a {
  border-radius: 4px 4px 0 0 !important; }

#responsive .timeline-panel {
  -webkit-border-radius: 7px !important;
  -moz-border-radius: 7px !important;
  border-radius: 7px !important; }

#one-column .message-item:after {
  -webkit-border-radius: 50% !important;
  -moz-border-radius: 50% !important;
  border-radius: 50% !important; }

#one-column .message-inner {
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important; }

#one-column .avatar img {
  -webkit-border-radius: 50% !important;
  -moz-border-radius: 50% !important;
  border-radius: 50% !important; }

.jplist-panel .jplist-pagination button {
  border: 1px solid #e5e5e5;
  -webkit-border-radius: 7px !important;
  -moz-border-radius: 7px !important;
  border-radius: 7px !important; }

.jplist-panel .jplist-pagination button:hover {
  background: #e5e5e5; }

.jplist-thumbs-view .list-item .block {
  bottom: 10px; }

.jplist-panel .jplist-group {
  -webkit-border-radius: 4px !important;
  -moz-border-radius: 4px !important;
  border-radius: 4px !important;
  border: 1px solid #e5e5e5; }

.jstree-hovered,
.jstree-clicked,
.jstree-wholerow-clicked,
.jstree-wholerow-hovered {
  -webkit-border-radius: 3px !important;
  -moz-border-radius: 3px !important;
  border-radius: 3px !important; }

.jstree-anchor,
.jstree-wholerow {
  -webkit-border-radius: 3px !important;
  -moz-border-radius: 3px !important;
  border-radius: 3px !important; }
.icon-spin {
  display: inline-block;
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  -webkit-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}
.no-border-radius {
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-justify {
  text-align: justify;
}
.text-line-through {
  text-decoration: line-through;
}
.box-heading {
  font-weight: bold;
  font-family: 'Oswald';
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  #sidebar {
    z-index: 99999;
    position: relative;
  }
  #page-wrapper {
    margin-top: 50px;
  }
  #topbar .navbar-header {
    width: 100%;
    text-align: left;
  }
  #topbar .navbar-header #logo {
    line-height: auto;
    width: auto;
    height: auto;
  }
  #topbar .navbar-header .navbar-toggle {
    margin: 4px 15px;
    border: 0;
  }
  #topbar .navbar-header .navbar-toggle:hover,
  #topbar .navbar-header .navbar-toggle:focus {
    background: transparent;
    color: #488c6c;
  }
  #topbar .navbar-header .navbar-toggle .icon-bar {
    background: #ffffff;
    width: 30px;
    height: 5px;
    border-radius: 0;
  }
  #topbar .navbar-top-links {
    margin-left: 15px;
    margin-right: 15px;
  }
  #topbar .navbar-top-links li > a {
    padding: 15px;
  }
  #footer {
    position: relative;
  }
  #sidebar-hover #topbar .navbar-header {
    width: 100%;
  }
  #sidebar-hover #wrapper #page-wrapper {
    margin-left: 0px;
  }
  #sidebar-hover .dropdown-submenu > .dropdown-menu {
    margin-left: 0;
  }
  .timeline-centered .timeline-entry {
    width: 100%;
    float: left;
  }
  .horizontal-menu-page #sidebar {
    display: block;
  }
}
@media (max-width: 768px) {
  .timeline-centered:before {
    margin-left: 27px;
    left: 0px;
  }
  .timeline-centered .timeline-entry .timeline-entry-inner {
    margin-left: 0px;
  }
  .timeline-centered .timeline-entry .timeline-entry-inner .timeline-time,
  .timeline-centered .timeline-entry.left-aligned .timeline-entry-inner .timeline-time {
    left: 73px;
    text-align: left;
    top: -55px;
  }
  .timeline-centered.timeline-sm .timeline-entry {
    margin-bottom: 65px !important;
  }
  .timeline-centered .timeline-entry.left-aligned .timeline-entry-inner .timeline-icon {
    float: left;
  }
  .timeline-centered .timeline-entry.left-aligned .timeline-entry-inner .timeline-label {
    margin-left: 85px;
    margin-right: 27px;
  }
  .timeline-centered .timeline-entry .timeline-entry-inner .timeline-label.bg-green:after {
    border-color: transparent #fff transparent transparent;
  }
  .page-title-breadcrumb {
    height: auto;
    min-height: 50px;
    padding-bottom: 10px;
  }
  .page-title-breadcrumb .reportrange {
    clear: both;
    float: left;
  }
}
@media (min-width: 768px) {
  .sidebar-collapse {
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sidebar-collapse {
    display: block;
  }
  #topbar .navbar-header {
    text-align: center;
  }
  #topbar .navbar-header #logo {
    line-height: auto;
    width: 100%;
    height: auto;
  }
  #topbar .navbar-header .navbar-toggle {
    margin: 4px 15px;
    border: 0;
  }
  #topbar .navbar-header .navbar-toggle:hover,
  #topbar .navbar-header .navbar-toggle:focus {
    background: transparent;
    color: #488c6c;
  }
  #topbar .navbar-header .navbar-toggle .icon-bar {
    background: #ffffff;
    width: 30px;
    height: 5px;
    border-radius: 0;
  }
  #topbar .navbar-top-links {
    margin-left: 15px;
    margin-right: 15px;
  }
  #topbar .navbar-top-links li > a {
    padding: 15px;
  }
  #footer {
    position: relative;
  }
  .timeline-centered .timeline-entry {
    width: 100%;
    float: left;
  }
  .horizontal-menu-page #sidebar {
    display: block;
  }
}
@media only screen and (min-width: 1281px) and (max-width: 1520px) {
  span.text-uppercase {
    display: none;
  }
  #topbar .navbar-top-links li > a {
    padding: 15px 15px;
  }
}
/* BEGIN FLIP SCROLL RESPONSIVE TABLE */
@media only screen and (max-width: 800px) {
  /* Flip Scroll */
  #flip-scroll .cf:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
  }
  #flip-scroll * html .cf {
    zoom: 1;
  }
  #flip-scroll *:first-child + html .cf {
    zoom: 1;
  }
  #flip-scroll table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
  }
  #flip-scroll th,
  #flip-scroll td {
    margin: 0;
    vertical-align: top;
  }
  #flip-scroll th {
    text-align: left;
  }
  #flip-scroll table {
    display: block;
    position: relative;
    width: 100%;
  }
  #flip-scroll thead {
    display: block;
    float: left;
  }
  #flip-scroll tbody {
    display: block;
    width: auto;
    position: relative;
    overflow-x: auto;
    white-space: nowrap;
  }
  #flip-scroll thead tr {
    display: block;
  }
  #flip-scroll th {
    display: block;
    text-align: right;
  }
  #flip-scroll tbody tr {
    display: inline-block;
    vertical-align: top;
  }
  #flip-scroll td {
    display: block;
    min-height: 1.25em;
    text-align: left;
  }
  #flip-scroll th {
    border-bottom: 0;
    border-left: 0;
  }
  #flip-scroll td {
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
  }
  #flip-scroll tbody tr {
    border-left: 1px solid #babcbf;
  }
  #flip-scroll th:last-child,
  #flip-scroll td:last-child {
    border-bottom: 1px solid #babcbf;
  }
  /* Flip Scroll */
  /* No More Table */
  #no-more-tables table,
  #no-more-tables thead,
  #no-more-tables tbody,
  #no-more-tables th,
  #no-more-tables td,
  #no-more-tables tr {
    display: block;
  }
  #no-more-tables thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  #no-more-tables tr {
    border: 1px solid #ccc;
  }
  #no-more-tables td {
    /* Behave  like a "row" */
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 50%;
    white-space: normal;
    text-align: left;
  }
  #no-more-tables td:before {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    text-align: left;
    font-weight: bold;
  }
  #no-more-tables td:before {
    content: attr(data-title);
  }
  /* No More Table */
}
/* END FLIP SCROLL RESPONSIVE TABLE */
.bwizard-steps {
    display: inline-block;
    margin: 0;
    padding: 0;
    background: #fff
}

.bwizard-steps .active {
    color: #fff;
    background: #007ACC
}

.bwizard-steps .active:after {
    border-left-color: #007ACC
}

.bwizard-steps .active a {
    color: #fff;
    cursor: default
}

.bwizard-steps .label {
    position: relative;
    top: -1px;
    margin: 0 5px 0 0;
    padding: 1px 5px 2px
}

.bwizard-steps .active .label {
    background-color: #333;
}

.bwizard-steps li {
    display: inline-block;
    position: relative;
    margin-right: 5px;
    padding: 12px 17px 10px 30px;
    *display: inline;
    *padding-left: 17px;
    background: #efefef;
    line-height: 18px;
    list-style: none;
    zoom: 1;
}

.bwizard-steps li:first-child {
    padding-left: 12px;
    -moz-border-radius: 4px 0 0 4px;
    -webkit-border-radius: 4px 0 0 4px;
    border-radius: 4px 0 0 4px;
}

.bwizard-steps li:first-child:before {
    border: none
}

.bwizard-steps li:last-child {
    margin-right: 0;
    -moz-border-radius: 0 4px 4px 0;
    -webkit-border-radius: 0 4px 4px 0;
    border-radius: 0 4px 4px 0;
}

.bwizard-steps li:last-child:after {
    border: none
}

.bwizard-steps li:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 0;
    width: 0;
    border-bottom: 20px inset transparent;
    border-left: 20px solid #fff;
    border-top: 20px inset transparent;
    content: ""
}

.bwizard-steps li:after {
    position: absolute;
    right: -20px;
    top: 0;
    height: 0;
    width: 0;
    border-bottom: 20px inset transparent;
    border-left: 20px solid #efefef;
    border-top: 20px inset transparent;
    content: "";
    z-index: 2;
}

.bwizard-steps a {
    color: #333
}

.bwizard-steps a:hover {
    text-decoration: none
}

.bwizard-steps.clickable li:not(.active) {
    cursor: pointer
}

.bwizard-steps.clickable li:hover:not(.active) {
    background: #ccc
}

.bwizard-steps.clickable li:hover:not(.active):after {
    border-left-color: #ccc
}

.bwizard-steps.clickable li:hover:not(.active) a {
    color: #08c
}

@media (max-width: 480px) {
    /* badges only on small screens */
    .bwizard-steps li:after,
    .bwizard-steps li:before {
        border: none
    }

    .bwizard-steps li,
    .bwizard-steps li.active,
    .bwizard-steps li:first-child,
    .bwizard-steps li:last-child {
        margin-right: 0;
        padding: 0;
        background-color: transparent
    }
}
/*
    Common 
*/

.wizard,
.tabcontrol {
    display: block;
    width: 100%;
    overflow: hidden;
}

.wizard a,
.tabcontrol a {
    outline: 0;
}

.wizard ul,
.tabcontrol ul {
    list-style: none !important;
    padding: 0;
    margin: 0;
}

.wizard ul > li,
.tabcontrol ul > li {
    display: block;
    padding: 0;
}

/* Accessibility */
.wizard > .steps .current-info,
.tabcontrol > .steps .current-info {
    position: absolute;
    left: -999em;
}

.wizard > .content > .title,
.tabcontrol > .content > .title {
    position: absolute;
    left: -999em;
}

/*
    Wizard
*/

.wizard > .steps {
    position: relative;
    display: block;
    width: 100%;
}

.wizard.vertical > .steps {
    display: inline;
    float: left;
    width: 30%;
}

.wizard > .steps .number {
    font-size: 1.429em;
}

.wizard > .steps > ul > li {
    width: 25%;
}

.wizard > .steps > ul > li,
.wizard > .actions > ul > li {
    float: left;
}

.wizard.vertical > .steps > ul > li {
    float: none;
    width: 100%;
}

.wizard > .steps a,
.wizard > .steps a:hover,
.wizard > .steps a:active {
    display: block;
    width: auto;
    margin: 0 0.5em 0.5em;
    padding: 1em 1em;
    text-decoration: none;

    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.wizard > .steps .disabled a,
.wizard > .steps .disabled a:hover,
.wizard > .steps .disabled a:active {
    background: #eee;
    color: #aaa;
    cursor: default;
}

.wizard > .steps .current a,
.wizard > .steps .current a:hover,
.wizard > .steps .current a:active {
    background: #2184be;
    color: #fff;
    cursor: default;
}

.wizard > .steps .done a,
.wizard > .steps .done a:hover,
.wizard > .steps .done a:active {
    background: #9dc8e2;
    color: #fff;
}

.wizard > .steps .error a,
.wizard > .steps .error a:hover,
.wizard > .steps .error a:active {
    background: #ff3111;
    color: #fff;
}

.wizard > .content {
    background: #eee;
    display: block;
    margin: 0.5em;
    min-height: 35em;
    overflow: hidden;
    position: relative;
    width: auto;

    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.wizard.vertical > .content {
    display: inline;
    float: left;
    margin: 0 2.5% 0.5em 2.5%;
    width: 65%;
}

.wizard > .content > .body {
    float: left;
    position: absolute;
    width: 95%;
    height: 95%;
    padding: 2.5%;
}

.wizard > .content > .body ul {
    list-style: disc !important;
}

.wizard > .content > .body ul > li {
    display: list-item;
}

.wizard > .content > .body > iframe {
    border: 0 none;
    width: 100%;
    height: 100%;
}

.wizard > .content > .body input {
    display: block;
    border: 1px solid #ccc;
}

.wizard > .content > .body input[type="checkbox"] {
    display: inline-block;
}

.wizard > .content > .body input.error {
    background: rgb(251, 227, 228);
    border: 1px solid #fbc2c4;
    color: #8a1f11;
}

.wizard > .content > .body label {
    display: inline-block;
    margin-bottom: 0.5em;
}

.wizard > .content > .body label.error {
    color: #8a1f11;
    display: inline-block;
    margin-left: 1.5em;
}

.wizard > .actions {
    position: relative;
    display: block;
    text-align: right;
    width: 100%;
}

.wizard.vertical > .actions {
    display: inline;
    float: right;
    margin: 0 2.5%;
    width: 95%;
}

.wizard > .actions > ul {
    display: inline-block;
    text-align: right;
}

.wizard > .actions > ul > li {
    margin: 0 0.5em;
}

.wizard.vertical > .actions > ul > li {
    margin: 0 0 0 1em;
}

.wizard > .actions a,
.wizard > .actions a:hover,
.wizard > .actions a:active {
    background: #2184be;
    color: #fff;
    display: block;
    padding: 0.5em 1em;
    text-decoration: none;

    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.wizard > .actions .disabled a,
.wizard > .actions .disabled a:hover,
.wizard > .actions .disabled a:active {
    background: #eee;
    color: #aaa;
}

.wizard > .loading {
}

.wizard > .loading .spinner {
}

/*
    Tabcontrol
*/

.tabcontrol > .steps {
    position: relative;
    display: block;
    width: 100%;
}

.tabcontrol > .steps > ul {
    position: relative;
    margin: 6px 0 0 0;
    top: 1px;
    z-index: 1;
}

.tabcontrol > .steps > ul > li {
    float: left;
    margin: 5px 2px 0 0;
    padding: 1px;

    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.tabcontrol > .steps > ul > li:hover {
    background: #edecec;
    border: 1px solid #bbb;
    padding: 0;
}

.tabcontrol > .steps > ul > li.current {
    background: #fff;
    border: 1px solid #bbb;
    border-bottom: 0 none;
    padding: 0 0 1px 0;
    margin-top: 0;
}

.tabcontrol > .steps > ul > li > a {
    color: #5f5f5f;
    display: inline-block;
    border: 0 none;
    margin: 0;
    padding: 10px 30px;
    text-decoration: none;
}

.tabcontrol > .steps > ul > li > a:hover {
    text-decoration: none;
}

.tabcontrol > .steps > ul > li.current > a {
    padding: 15px 30px 10px 30px;
}

.tabcontrol > .content {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 35em;
    overflow: hidden;
    border-top: 1px solid #bbb;
    padding-top: 20px;
}

.tabcontrol > .content > .body {
    float: left;
    position: absolute;
    width: 95%;
    height: 95%;
    padding: 2.5%;
}

.tabcontrol > .content > .body ul {
    list-style: disc !important;
}

.tabcontrol > .content > .body ul > li {
    display: list-item;
}
/*!
 * Stylesheet for the Date Range Picker, for use with Bootstrap 3.x
 *
 * Copyright 2013 Dan Grossman ( http://www.dangrossman.info )
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Built for http://www.improvely.com
 */

.daterangepicker.dropdown-menu {
    max-width: none;
    z-index: 3000;
}

.daterangepicker.opensleft .ranges, .daterangepicker.opensleft .calendar {
    float: left;
    margin: 4px;
}

.daterangepicker.opensright .ranges, .daterangepicker.opensright .calendar {
    float: right;
    margin: 4px;
}

.daterangepicker .ranges {
    width: 160px;
    text-align: left;
}

.daterangepicker .ranges .range_inputs > div {
    float: left;
}

.daterangepicker .ranges .range_inputs > div:nth-child(2) {
    padding-left: 11px;
}

.daterangepicker .calendar {
    display: none;
    max-width: 270px;
}

.daterangepicker.show-calendar .calendar {
    display: block;
}

.daterangepicker .calendar.single .calendar-date {
    border: none;
}

.daterangepicker .calendar th, .daterangepicker .calendar td {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    white-space: nowrap;
    text-align: center;
    min-width: 32px;
}

.daterangepicker .daterangepicker_start_input label,
.daterangepicker .daterangepicker_end_input label {
    color: #333;
    display: block;
    font-size: 11px;
    font-weight: normal;
    height: 20px;
    line-height: 20px;
    margin-bottom: 2px;
    text-shadow: #fff 1px 1px 0px;
    text-transform: uppercase;
    width: 74px;
}

.daterangepicker .ranges input {
    font-size: 11px;
}

.daterangepicker .ranges .input-mini {
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 4px;
    color: #555;
    display: block;
    font-size: 11px;
    height: 30px;
    line-height: 30px;
    vertical-align: middle;
    margin: 0 0 10px 0;
    padding: 0 6px;
    width: 74px;
}

.daterangepicker .ranges ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.daterangepicker .ranges li {
    font-size: 13px;
    background: #f5f5f5;
    border: 1px solid #f5f5f5;
    color: #08c;
    padding: 3px 12px;
    margin-bottom: 8px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    cursor: pointer;
}

.daterangepicker .ranges li.active, .daterangepicker .ranges li:hover {
    background: #08c;
    border: 1px solid #08c;
    color: #fff;
}

.daterangepicker .calendar-date {
    border: 1px solid #ddd;
    padding: 4px;
    border-radius: 4px;
    background: #fff;
}

.daterangepicker .calendar-time {
    text-align: center;
    margin: 8px auto 0 auto;
    line-height: 30px;
}

.daterangepicker {
    position: absolute;
    background: #fff;
    top: 100px;
    left: 20px;
    padding: 4px;
    margin-top: 1px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.daterangepicker.opensleft:before {
    position: absolute;
    top: -7px;
    right: 9px;
    display: inline-block;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #ccc;
    border-left: 7px solid transparent;
    border-bottom-color: rgba(0, 0, 0, 0.2);
    content: '';
}

.daterangepicker.opensleft:after {
    position: absolute;
    top: -6px;
    right: 10px;
    display: inline-block;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
    border-left: 6px solid transparent;
    content: '';
}

.daterangepicker.opensright:before {
    position: absolute;
    top: -7px;
    left: 9px;
    display: inline-block;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #ccc;
    border-left: 7px solid transparent;
    border-bottom-color: rgba(0, 0, 0, 0.2);
    content: '';
}

.daterangepicker.opensright:after {
    position: absolute;
    top: -6px;
    left: 10px;
    display: inline-block;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
    border-left: 6px solid transparent;
    content: '';
}

.daterangepicker table {
    width: 100%;
    margin: 0;
}

.daterangepicker td, .daterangepicker th {
    text-align: center;
    width: 20px;
    height: 20px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
}

.daterangepicker td.off {
    color: #999;
}

.daterangepicker td.disabled {
    color: #999;
}

.daterangepicker td.available:hover, .daterangepicker th.available:hover {
    background: #eee;
}

.daterangepicker td.in-range {
    background: #ebf4f8;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.daterangepicker td.active, .daterangepicker td.active:hover {
    background-color: #357ebd;
    border-color: #3071a9;
    color: #fff;
}

.daterangepicker td.week, .daterangepicker th.week {
    font-size: 80%;
    color: #ccc;
}

.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.ampmselect {
    width: 50px;
    margin-bottom: 0;
}

.daterangepicker_start_input {
    float: left;
}

.daterangepicker_end_input {
    float: left;
    padding-left: 11px
}

.daterangepicker th.month {
    width: auto;
}
/*!
 * Datetimepicker for Bootstrap 3
 * version : 4.15.35
 * https://github.com/Eonasdan/bootstrap-datetimepicker/
 */
.bootstrap-datetimepicker-widget {
  list-style: none;
}
.bootstrap-datetimepicker-widget.dropdown-menu {
  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 #cccccc;
  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 #cccccc;
  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: #777777;
  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: #eeeeee;
}
.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: #777777;
}
.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: #eeeeee;
  cursor: pointer;
}
.bootstrap-datetimepicker-widget table td.old,
.bootstrap-datetimepicker-widget table td.new {
  color: #777777;
}
.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: #ffffff;
  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: #777777;
  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: #eeeeee;
}
.bootstrap-datetimepicker-widget table td span.active {
  background-color: #337ab7;
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.bootstrap-datetimepicker-widget table td span.old {
  color: #777777;
}
.bootstrap-datetimepicker-widget table td span.disabled,
.bootstrap-datetimepicker-widget table td span.disabled:hover {
  background: none;
  color: #777777;
  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;
}
/*!
 * Datepicker for Bootstrap
 *
 * Copyright 2012 Stefan Petre
 * Improvements by Andrew Rowls
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 */
.datepicker {
    padding: 4px;
    border-radius: 4px;
    direction: ltr;
    /*.dow {
          border-top: 1px solid #ddd !important;
      }*/
}

.datepicker-inline {
    width: 220px;
}

.datepicker.datepicker-rtl {
    direction: rtl;
}

.datepicker.datepicker-rtl table tr td span {
    float: right;
}

.datepicker-dropdown {
    top: 0;
    left: 0;
}

.datepicker-dropdown:before {
    content: '';
    display: inline-block;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #ccc;
    border-top: 0;
    border-bottom-color: rgba(0, 0, 0, 0.2);
    position: absolute;
}

.datepicker-dropdown:after {
    content: '';
    display: inline-block;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
    border-top: 0;
    position: absolute;
}

.datepicker-dropdown.datepicker-orient-left:before {
    left: 6px;
}

.datepicker-dropdown.datepicker-orient-left:after {
    left: 7px;
}

.datepicker-dropdown.datepicker-orient-right:before {
    right: 6px;
}

.datepicker-dropdown.datepicker-orient-right:after {
    right: 7px;
}

.datepicker-dropdown.datepicker-orient-top:before {
    top: -7px;
}

.datepicker-dropdown.datepicker-orient-top:after {
    top: -6px;
}

.datepicker-dropdown.datepicker-orient-bottom:before {
    bottom: -7px;
    border-bottom: 0;
    border-top: 7px solid #999;
}

.datepicker-dropdown.datepicker-orient-bottom:after {
    bottom: -6px;
    border-bottom: 0;
    border-top: 6px solid #fff;
}

.datepicker > div {
    display: none;
}

.datepicker.days div.datepicker-days {
    display: block;
}

.datepicker.months div.datepicker-months {
    display: block;
}

.datepicker.years div.datepicker-years {
    display: block;
}

.datepicker table {
    margin: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.datepicker table tr td,
.datepicker table tr th {
    text-align: center;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    border: none;
}

.table-striped .datepicker table tr td,
.table-striped .datepicker table tr th {
    background-color: transparent;
}

.datepicker table tr td.day:hover,
.datepicker table tr td.day.focused {
    background: #eeeeee;
    cursor: pointer;
}

.datepicker table tr td.old,
.datepicker table tr td.new {
    color: #999999;
}

.datepicker table tr td.disabled,
.datepicker table tr td.disabled:hover {
    background: none;
    color: #999999;
    cursor: default;
}

.datepicker table tr td.today,
.datepicker table tr td.today:hover,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled:hover {
    color: #000000;
    background-color: #ffdb99;
    border-color: #ffb733;
}

.datepicker table tr td.today:hover,
.datepicker table tr td.today:hover:hover,
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today.disabled:hover:hover,
.datepicker table tr td.today:focus,
.datepicker table tr td.today:hover:focus,
.datepicker table tr td.today.disabled:focus,
.datepicker table tr td.today.disabled:hover:focus,
.datepicker table tr td.today:active,
.datepicker table tr td.today:hover:active,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.active,
.datepicker table tr td.today:hover.active,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.today,
.open .dropdown-toggle.datepicker table tr td.today:hover,
.open .dropdown-toggle.datepicker table tr td.today.disabled,
.open .dropdown-toggle.datepicker table tr td.today.disabled:hover {
    color: #000000;
    background-color: #ffcd70;
    border-color: #f59e00;
}

.datepicker table tr td.today:active,
.datepicker table tr td.today:hover:active,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.active,
.datepicker table tr td.today:hover.active,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.today,
.open .dropdown-toggle.datepicker table tr td.today:hover,
.open .dropdown-toggle.datepicker table tr td.today.disabled,
.open .dropdown-toggle.datepicker table tr td.today.disabled:hover {
    background-image: none;
}

.datepicker table tr td.today.disabled,
.datepicker table tr td.today:hover.disabled,
.datepicker table tr td.today.disabled.disabled,
.datepicker table tr td.today.disabled:hover.disabled,
.datepicker table tr td.today[disabled],
.datepicker table tr td.today:hover[disabled],
.datepicker table tr td.today.disabled[disabled],
.datepicker table tr td.today.disabled:hover[disabled],
fieldset[disabled] .datepicker table tr td.today,
fieldset[disabled] .datepicker table tr td.today:hover,
fieldset[disabled] .datepicker table tr td.today.disabled,
fieldset[disabled] .datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today:hover.disabled:hover,
.datepicker table tr td.today.disabled.disabled:hover,
.datepicker table tr td.today.disabled:hover.disabled:hover,
.datepicker table tr td.today[disabled]:hover,
.datepicker table tr td.today:hover[disabled]:hover,
.datepicker table tr td.today.disabled[disabled]:hover,
.datepicker table tr td.today.disabled:hover[disabled]:hover,
fieldset[disabled] .datepicker table tr td.today:hover,
fieldset[disabled] .datepicker table tr td.today:hover:hover,
fieldset[disabled] .datepicker table tr td.today.disabled:hover,
fieldset[disabled] .datepicker table tr td.today.disabled:hover:hover,
.datepicker table tr td.today.disabled:focus,
.datepicker table tr td.today:hover.disabled:focus,
.datepicker table tr td.today.disabled.disabled:focus,
.datepicker table tr td.today.disabled:hover.disabled:focus,
.datepicker table tr td.today[disabled]:focus,
.datepicker table tr td.today:hover[disabled]:focus,
.datepicker table tr td.today.disabled[disabled]:focus,
.datepicker table tr td.today.disabled:hover[disabled]:focus,
fieldset[disabled] .datepicker table tr td.today:focus,
fieldset[disabled] .datepicker table tr td.today:hover:focus,
fieldset[disabled] .datepicker table tr td.today.disabled:focus,
fieldset[disabled] .datepicker table tr td.today.disabled:hover:focus,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today:hover.disabled:active,
.datepicker table tr td.today.disabled.disabled:active,
.datepicker table tr td.today.disabled:hover.disabled:active,
.datepicker table tr td.today[disabled]:active,
.datepicker table tr td.today:hover[disabled]:active,
.datepicker table tr td.today.disabled[disabled]:active,
.datepicker table tr td.today.disabled:hover[disabled]:active,
fieldset[disabled] .datepicker table tr td.today:active,
fieldset[disabled] .datepicker table tr td.today:hover:active,
fieldset[disabled] .datepicker table tr td.today.disabled:active,
fieldset[disabled] .datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today:hover.disabled.active,
.datepicker table tr td.today.disabled.disabled.active,
.datepicker table tr td.today.disabled:hover.disabled.active,
.datepicker table tr td.today[disabled].active,
.datepicker table tr td.today:hover[disabled].active,
.datepicker table tr td.today.disabled[disabled].active,
.datepicker table tr td.today.disabled:hover[disabled].active,
fieldset[disabled] .datepicker table tr td.today.active,
fieldset[disabled] .datepicker table tr td.today:hover.active,
fieldset[disabled] .datepicker table tr td.today.disabled.active,
fieldset[disabled] .datepicker table tr td.today.disabled:hover.active {
    background-color: #ffdb99;
    border-color: #ffb733;
}

.datepicker table tr td.today:hover:hover {
    color: #000;
}

.datepicker table tr td.today.active:hover {
    color: #fff;
}

.datepicker table tr td.range,
.datepicker table tr td.range:hover,
.datepicker table tr td.range.disabled,
.datepicker table tr td.range.disabled:hover {
    background: #eeeeee;
    border-radius: 0;
}

.datepicker table tr td.range.today,
.datepicker table tr td.range.today:hover,
.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today.disabled:hover {
    color: #000000;
    background-color: #f7ca77;
    border-color: #f1a417;
    border-radius: 0;
}

.datepicker table tr td.range.today:hover,
.datepicker table tr td.range.today:hover:hover,
.datepicker table tr td.range.today.disabled:hover,
.datepicker table tr td.range.today.disabled:hover:hover,
.datepicker table tr td.range.today:focus,
.datepicker table tr td.range.today:hover:focus,
.datepicker table tr td.range.today.disabled:focus,
.datepicker table tr td.range.today.disabled:hover:focus,
.datepicker table tr td.range.today:active,
.datepicker table tr td.range.today:hover:active,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.active,
.datepicker table tr td.range.today:hover.active,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.range.today,
.open .dropdown-toggle.datepicker table tr td.range.today:hover,
.open .dropdown-toggle.datepicker table tr td.range.today.disabled,
.open .dropdown-toggle.datepicker table tr td.range.today.disabled:hover {
    color: #000000;
    background-color: #f4bb51;
    border-color: #bf800c;
}

.datepicker table tr td.range.today:active,
.datepicker table tr td.range.today:hover:active,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.active,
.datepicker table tr td.range.today:hover.active,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.range.today,
.open .dropdown-toggle.datepicker table tr td.range.today:hover,
.open .dropdown-toggle.datepicker table tr td.range.today.disabled,
.open .dropdown-toggle.datepicker table tr td.range.today.disabled:hover {
    background-image: none;
}

.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today:hover.disabled,
.datepicker table tr td.range.today.disabled.disabled,
.datepicker table tr td.range.today.disabled:hover.disabled,
.datepicker table tr td.range.today[disabled],
.datepicker table tr td.range.today:hover[disabled],
.datepicker table tr td.range.today.disabled[disabled],
.datepicker table tr td.range.today.disabled:hover[disabled],
fieldset[disabled] .datepicker table tr td.range.today,
fieldset[disabled] .datepicker table tr td.range.today:hover,
fieldset[disabled] .datepicker table tr td.range.today.disabled,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover,
.datepicker table tr td.range.today.disabled:hover,
.datepicker table tr td.range.today:hover.disabled:hover,
.datepicker table tr td.range.today.disabled.disabled:hover,
.datepicker table tr td.range.today.disabled:hover.disabled:hover,
.datepicker table tr td.range.today[disabled]:hover,
.datepicker table tr td.range.today:hover[disabled]:hover,
.datepicker table tr td.range.today.disabled[disabled]:hover,
.datepicker table tr td.range.today.disabled:hover[disabled]:hover,
fieldset[disabled] .datepicker table tr td.range.today:hover,
fieldset[disabled] .datepicker table tr td.range.today:hover:hover,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover:hover,
.datepicker table tr td.range.today.disabled:focus,
.datepicker table tr td.range.today:hover.disabled:focus,
.datepicker table tr td.range.today.disabled.disabled:focus,
.datepicker table tr td.range.today.disabled:hover.disabled:focus,
.datepicker table tr td.range.today[disabled]:focus,
.datepicker table tr td.range.today:hover[disabled]:focus,
.datepicker table tr td.range.today.disabled[disabled]:focus,
.datepicker table tr td.range.today.disabled:hover[disabled]:focus,
fieldset[disabled] .datepicker table tr td.range.today:focus,
fieldset[disabled] .datepicker table tr td.range.today:hover:focus,
fieldset[disabled] .datepicker table tr td.range.today.disabled:focus,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover:focus,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today:hover.disabled:active,
.datepicker table tr td.range.today.disabled.disabled:active,
.datepicker table tr td.range.today.disabled:hover.disabled:active,
.datepicker table tr td.range.today[disabled]:active,
.datepicker table tr td.range.today:hover[disabled]:active,
.datepicker table tr td.range.today.disabled[disabled]:active,
.datepicker table tr td.range.today.disabled:hover[disabled]:active,
fieldset[disabled] .datepicker table tr td.range.today:active,
fieldset[disabled] .datepicker table tr td.range.today:hover:active,
fieldset[disabled] .datepicker table tr td.range.today.disabled:active,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today:hover.disabled.active,
.datepicker table tr td.range.today.disabled.disabled.active,
.datepicker table tr td.range.today.disabled:hover.disabled.active,
.datepicker table tr td.range.today[disabled].active,
.datepicker table tr td.range.today:hover[disabled].active,
.datepicker table tr td.range.today.disabled[disabled].active,
.datepicker table tr td.range.today.disabled:hover[disabled].active,
fieldset[disabled] .datepicker table tr td.range.today.active,
fieldset[disabled] .datepicker table tr td.range.today:hover.active,
fieldset[disabled] .datepicker table tr td.range.today.disabled.active,
fieldset[disabled] .datepicker table tr td.range.today.disabled:hover.active {
    background-color: #f7ca77;
    border-color: #f1a417;
}

.datepicker table tr td.selected,
.datepicker table tr td.selected:hover,
.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected.disabled:hover {
    color: #ffffff;
    background-color: #999999;
    border-color: #555555;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.datepicker table tr td.selected:hover,
.datepicker table tr td.selected:hover:hover,
.datepicker table tr td.selected.disabled:hover,
.datepicker table tr td.selected.disabled:hover:hover,
.datepicker table tr td.selected:focus,
.datepicker table tr td.selected:hover:focus,
.datepicker table tr td.selected.disabled:focus,
.datepicker table tr td.selected.disabled:hover:focus,
.datepicker table tr td.selected:active,
.datepicker table tr td.selected:hover:active,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.active,
.datepicker table tr td.selected:hover.active,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.selected,
.open .dropdown-toggle.datepicker table tr td.selected:hover,
.open .dropdown-toggle.datepicker table tr td.selected.disabled,
.open .dropdown-toggle.datepicker table tr td.selected.disabled:hover {
    color: #ffffff;
    background-color: #858585;
    border-color: #373737;
}

.datepicker table tr td.selected:active,
.datepicker table tr td.selected:hover:active,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.active,
.datepicker table tr td.selected:hover.active,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.selected,
.open .dropdown-toggle.datepicker table tr td.selected:hover,
.open .dropdown-toggle.datepicker table tr td.selected.disabled,
.open .dropdown-toggle.datepicker table tr td.selected.disabled:hover {
    background-image: none;
}

.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected:hover.disabled,
.datepicker table tr td.selected.disabled.disabled,
.datepicker table tr td.selected.disabled:hover.disabled,
.datepicker table tr td.selected[disabled],
.datepicker table tr td.selected:hover[disabled],
.datepicker table tr td.selected.disabled[disabled],
.datepicker table tr td.selected.disabled:hover[disabled],
fieldset[disabled] .datepicker table tr td.selected,
fieldset[disabled] .datepicker table tr td.selected:hover,
fieldset[disabled] .datepicker table tr td.selected.disabled,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover,
.datepicker table tr td.selected.disabled:hover,
.datepicker table tr td.selected:hover.disabled:hover,
.datepicker table tr td.selected.disabled.disabled:hover,
.datepicker table tr td.selected.disabled:hover.disabled:hover,
.datepicker table tr td.selected[disabled]:hover,
.datepicker table tr td.selected:hover[disabled]:hover,
.datepicker table tr td.selected.disabled[disabled]:hover,
.datepicker table tr td.selected.disabled:hover[disabled]:hover,
fieldset[disabled] .datepicker table tr td.selected:hover,
fieldset[disabled] .datepicker table tr td.selected:hover:hover,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover:hover,
.datepicker table tr td.selected.disabled:focus,
.datepicker table tr td.selected:hover.disabled:focus,
.datepicker table tr td.selected.disabled.disabled:focus,
.datepicker table tr td.selected.disabled:hover.disabled:focus,
.datepicker table tr td.selected[disabled]:focus,
.datepicker table tr td.selected:hover[disabled]:focus,
.datepicker table tr td.selected.disabled[disabled]:focus,
.datepicker table tr td.selected.disabled:hover[disabled]:focus,
fieldset[disabled] .datepicker table tr td.selected:focus,
fieldset[disabled] .datepicker table tr td.selected:hover:focus,
fieldset[disabled] .datepicker table tr td.selected.disabled:focus,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover:focus,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected:hover.disabled:active,
.datepicker table tr td.selected.disabled.disabled:active,
.datepicker table tr td.selected.disabled:hover.disabled:active,
.datepicker table tr td.selected[disabled]:active,
.datepicker table tr td.selected:hover[disabled]:active,
.datepicker table tr td.selected.disabled[disabled]:active,
.datepicker table tr td.selected.disabled:hover[disabled]:active,
fieldset[disabled] .datepicker table tr td.selected:active,
fieldset[disabled] .datepicker table tr td.selected:hover:active,
fieldset[disabled] .datepicker table tr td.selected.disabled:active,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected:hover.disabled.active,
.datepicker table tr td.selected.disabled.disabled.active,
.datepicker table tr td.selected.disabled:hover.disabled.active,
.datepicker table tr td.selected[disabled].active,
.datepicker table tr td.selected:hover[disabled].active,
.datepicker table tr td.selected.disabled[disabled].active,
.datepicker table tr td.selected.disabled:hover[disabled].active,
fieldset[disabled] .datepicker table tr td.selected.active,
fieldset[disabled] .datepicker table tr td.selected:hover.active,
fieldset[disabled] .datepicker table tr td.selected.disabled.active,
fieldset[disabled] .datepicker table tr td.selected.disabled:hover.active {
    background-color: #999999;
    border-color: #555555;
}

.datepicker table tr td.active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover {
    color: #ffffff;
    background-color: #428bca;
    border-color: #357ebd;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.datepicker table tr td.active:hover,
.datepicker table tr td.active:hover:hover,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active:focus,
.datepicker table tr td.active:hover:focus,
.datepicker table tr td.active.disabled:focus,
.datepicker table tr td.active.disabled:hover:focus,
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.active,
.open .dropdown-toggle.datepicker table tr td.active:hover,
.open .dropdown-toggle.datepicker table tr td.active.disabled,
.open .dropdown-toggle.datepicker table tr td.active.disabled:hover {
    color: #ffffff;
    background-color: #3276b1;
    border-color: #285e8e;
}

.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.active,
.open .dropdown-toggle.datepicker table tr td.active:hover,
.open .dropdown-toggle.datepicker table tr td.active.disabled,
.open .dropdown-toggle.datepicker table tr td.active.disabled:hover {
    background-image: none;
}

.datepicker table tr td.active.disabled,
.datepicker table tr td.active:hover.disabled,
.datepicker table tr td.active.disabled.disabled,
.datepicker table tr td.active.disabled:hover.disabled,
.datepicker table tr td.active[disabled],
.datepicker table tr td.active:hover[disabled],
.datepicker table tr td.active.disabled[disabled],
.datepicker table tr td.active.disabled:hover[disabled],
fieldset[disabled] .datepicker table tr td.active,
fieldset[disabled] .datepicker table tr td.active:hover,
fieldset[disabled] .datepicker table tr td.active.disabled,
fieldset[disabled] .datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active:hover.disabled:hover,
.datepicker table tr td.active.disabled.disabled:hover,
.datepicker table tr td.active.disabled:hover.disabled:hover,
.datepicker table tr td.active[disabled]:hover,
.datepicker table tr td.active:hover[disabled]:hover,
.datepicker table tr td.active.disabled[disabled]:hover,
.datepicker table tr td.active.disabled:hover[disabled]:hover,
fieldset[disabled] .datepicker table tr td.active:hover,
fieldset[disabled] .datepicker table tr td.active:hover:hover,
fieldset[disabled] .datepicker table tr td.active.disabled:hover,
fieldset[disabled] .datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active.disabled:focus,
.datepicker table tr td.active:hover.disabled:focus,
.datepicker table tr td.active.disabled.disabled:focus,
.datepicker table tr td.active.disabled:hover.disabled:focus,
.datepicker table tr td.active[disabled]:focus,
.datepicker table tr td.active:hover[disabled]:focus,
.datepicker table tr td.active.disabled[disabled]:focus,
.datepicker table tr td.active.disabled:hover[disabled]:focus,
fieldset[disabled] .datepicker table tr td.active:focus,
fieldset[disabled] .datepicker table tr td.active:hover:focus,
fieldset[disabled] .datepicker table tr td.active.disabled:focus,
fieldset[disabled] .datepicker table tr td.active.disabled:hover:focus,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active:hover.disabled:active,
.datepicker table tr td.active.disabled.disabled:active,
.datepicker table tr td.active.disabled:hover.disabled:active,
.datepicker table tr td.active[disabled]:active,
.datepicker table tr td.active:hover[disabled]:active,
.datepicker table tr td.active.disabled[disabled]:active,
.datepicker table tr td.active.disabled:hover[disabled]:active,
fieldset[disabled] .datepicker table tr td.active:active,
fieldset[disabled] .datepicker table tr td.active:hover:active,
fieldset[disabled] .datepicker table tr td.active.disabled:active,
fieldset[disabled] .datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active:hover.disabled.active,
.datepicker table tr td.active.disabled.disabled.active,
.datepicker table tr td.active.disabled:hover.disabled.active,
.datepicker table tr td.active[disabled].active,
.datepicker table tr td.active:hover[disabled].active,
.datepicker table tr td.active.disabled[disabled].active,
.datepicker table tr td.active.disabled:hover[disabled].active,
fieldset[disabled] .datepicker table tr td.active.active,
fieldset[disabled] .datepicker table tr td.active:hover.active,
fieldset[disabled] .datepicker table tr td.active.disabled.active,
fieldset[disabled] .datepicker table tr td.active.disabled:hover.active {
    background-color: #428bca;
    border-color: #357ebd;
}

.datepicker table tr td span {
    display: block;
    width: 23%;
    height: 54px;
    line-height: 54px;
    float: left;
    margin: 1%;
    cursor: pointer;
    border-radius: 4px;
}

.datepicker table tr td span:hover {
    background: #eeeeee;
}

.datepicker table tr td span.disabled,
.datepicker table tr td span.disabled:hover {
    background: none;
    color: #999999;
    cursor: default;
}

.datepicker table tr td span.active,
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active.disabled:hover {
    color: #ffffff;
    background-color: #428bca;
    border-color: #357ebd;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.datepicker table tr td span.active:hover,
.datepicker table tr td span.active:hover:hover,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active.disabled:hover:hover,
.datepicker table tr td span.active:focus,
.datepicker table tr td span.active:hover:focus,
.datepicker table tr td span.active.disabled:focus,
.datepicker table tr td span.active.disabled:hover:focus,
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td span.active,
.open .dropdown-toggle.datepicker table tr td span.active:hover,
.open .dropdown-toggle.datepicker table tr td span.active.disabled,
.open .dropdown-toggle.datepicker table tr td span.active.disabled:hover {
    color: #ffffff;
    background-color: #3276b1;
    border-color: #285e8e;
}

.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td span.active,
.open .dropdown-toggle.datepicker table tr td span.active:hover,
.open .dropdown-toggle.datepicker table tr td span.active.disabled,
.open .dropdown-toggle.datepicker table tr td span.active.disabled:hover {
    background-image: none;
}

.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active:hover.disabled,
.datepicker table tr td span.active.disabled.disabled,
.datepicker table tr td span.active.disabled:hover.disabled,
.datepicker table tr td span.active[disabled],
.datepicker table tr td span.active:hover[disabled],
.datepicker table tr td span.active.disabled[disabled],
.datepicker table tr td span.active.disabled:hover[disabled],
fieldset[disabled] .datepicker table tr td span.active,
fieldset[disabled] .datepicker table tr td span.active:hover,
fieldset[disabled] .datepicker table tr td span.active.disabled,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active:hover.disabled:hover,
.datepicker table tr td span.active.disabled.disabled:hover,
.datepicker table tr td span.active.disabled:hover.disabled:hover,
.datepicker table tr td span.active[disabled]:hover,
.datepicker table tr td span.active:hover[disabled]:hover,
.datepicker table tr td span.active.disabled[disabled]:hover,
.datepicker table tr td span.active.disabled:hover[disabled]:hover,
fieldset[disabled] .datepicker table tr td span.active:hover,
fieldset[disabled] .datepicker table tr td span.active:hover:hover,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover:hover,
.datepicker table tr td span.active.disabled:focus,
.datepicker table tr td span.active:hover.disabled:focus,
.datepicker table tr td span.active.disabled.disabled:focus,
.datepicker table tr td span.active.disabled:hover.disabled:focus,
.datepicker table tr td span.active[disabled]:focus,
.datepicker table tr td span.active:hover[disabled]:focus,
.datepicker table tr td span.active.disabled[disabled]:focus,
.datepicker table tr td span.active.disabled:hover[disabled]:focus,
fieldset[disabled] .datepicker table tr td span.active:focus,
fieldset[disabled] .datepicker table tr td span.active:hover:focus,
fieldset[disabled] .datepicker table tr td span.active.disabled:focus,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover:focus,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active:hover.disabled:active,
.datepicker table tr td span.active.disabled.disabled:active,
.datepicker table tr td span.active.disabled:hover.disabled:active,
.datepicker table tr td span.active[disabled]:active,
.datepicker table tr td span.active:hover[disabled]:active,
.datepicker table tr td span.active.disabled[disabled]:active,
.datepicker table tr td span.active.disabled:hover[disabled]:active,
fieldset[disabled] .datepicker table tr td span.active:active,
fieldset[disabled] .datepicker table tr td span.active:hover:active,
fieldset[disabled] .datepicker table tr td span.active.disabled:active,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active:hover.disabled.active,
.datepicker table tr td span.active.disabled.disabled.active,
.datepicker table tr td span.active.disabled:hover.disabled.active,
.datepicker table tr td span.active[disabled].active,
.datepicker table tr td span.active:hover[disabled].active,
.datepicker table tr td span.active.disabled[disabled].active,
.datepicker table tr td span.active.disabled:hover[disabled].active,
fieldset[disabled] .datepicker table tr td span.active.active,
fieldset[disabled] .datepicker table tr td span.active:hover.active,
fieldset[disabled] .datepicker table tr td span.active.disabled.active,
fieldset[disabled] .datepicker table tr td span.active.disabled:hover.active {
    background-color: #428bca;
    border-color: #357ebd;
}

.datepicker table tr td span.old,
.datepicker table tr td span.new {
    color: #999999;
}

.datepicker th.datepicker-switch {
    width: 145px;
}

.datepicker thead tr:first-child th,
.datepicker tfoot tr th {
    cursor: pointer;
}

.datepicker thead tr:first-child th:hover,
.datepicker tfoot tr th:hover {
    background: #eeeeee;
}

.datepicker .cw {
    font-size: 10px;
    width: 12px;
    padding: 0 2px 0 5px;
    vertical-align: middle;
}

.datepicker thead tr:first-child th.cw {
    cursor: default;
    background-color: transparent;
}

.input-group.date .input-group-addon i {
    cursor: pointer;
    width: 16px;
    height: 16px;
}

.input-daterange input {
    text-align: center;
}

.input-daterange input:first-child {
    border-radius: 3px 0 0 3px;
}

.input-daterange input:last-child {
    border-radius: 0 3px 3px 0;
}

.input-daterange .input-group-addon {
    width: auto;
    min-width: 16px;
    padding: 4px 5px;
    font-weight: normal;
    line-height: 1.428571429;
    text-align: center;
    text-shadow: 0 1px 0 #fff;
    vertical-align: middle;
    background-color: #eeeeee;
    border: solid #cccccc;
    border-width: 1px 0;
    margin-left: -5px;
    margin-right: -5px;
}

.datepicker.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    float: left;
    display: none;
    min-width: 160px;
    list-style: none;
    background-color: #ffffff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    *border-right-width: 2px;
    *border-bottom-width: 2px;
    color: #333333;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 13px;
    line-height: 1.428571429;
}

.datepicker.dropdown-menu th,
.datepicker.dropdown-menu td {
    padding: 4px 5px;
}
.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.pace-inactive {
  display: none;
}

.pace .pace-progress {
  background: #2ddc23;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  height: 2px;

  -webkit-transition: width 1s;
  -moz-transition: width 1s;
  -o-transition: width 1s;
  transition: width 1s;
}

.pace .pace-progress-inner {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #2ddc23, 0 0 5px #2ddc23;
  opacity: 1.0;
  -webkit-transform: rotate(3deg) translate(0px, -4px);
  -moz-transform: rotate(3deg) translate(0px, -4px);
  -ms-transform: rotate(3deg) translate(0px, -4px);
  -o-transform: rotate(3deg) translate(0px, -4px);
  transform: rotate(3deg) translate(0px, -4px);
}

.pace .pace-activity {
  display: block;
  position: fixed;
  z-index: 2000;
  top: 15px;
  right: 15px;
  width: 14px;
  height: 14px;
  border: solid 2px transparent;
  border-top-color: #2ddc23;
  border-left-color: #2ddc23;
  border-radius: 10px;
  -webkit-animation: pace-spinner 400ms linear infinite;
  -moz-animation: pace-spinner 400ms linear infinite;
  -ms-animation: pace-spinner 400ms linear infinite;
  -o-animation: pace-spinner 400ms linear infinite;
  animation: pace-spinner 400ms linear infinite;
}

@-webkit-keyframes pace-spinner {
  0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}
@-moz-keyframes pace-spinner {
  0% { -moz-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -moz-transform: rotate(360deg); transform: rotate(360deg); }
}
@-o-keyframes pace-spinner {
  0% { -o-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -o-transform: rotate(360deg); transform: rotate(360deg); }
}
@-ms-keyframes pace-spinner {
  0% { -ms-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -ms-transform: rotate(360deg); transform: rotate(360deg); }
}
@keyframes pace-spinner {
  0% { transform: rotate(0deg); transform: rotate(0deg); }
  100% { transform: rotate(360deg); transform: rotate(360deg); }
}
/*
Version: 3.5.0 Timestamp: Mon Jun 16 19:29:44 EDT 2014
Customize by MAdmin Template
*/
.select2-container.form-control {
  height: auto !important;
  padding: 0 !important;
  border: 0 !important; }

.select2-container {
  margin: 0;
  position: relative;
  display: inline-block;
  /* inline-block for ie7 */
  zoom: 1;
  *display: inline;
  vertical-align: middle; }

.select2-container,
.select2-drop,
.select2-search,
.select2-search input {
  /*
      Force border-box so that % widths fit the parent
      container without overlap because of margin/padding.
      More Info : http://www.quirksmode.org/css/box.html
    */
  -webkit-box-sizing: border-box;
  /* webkit */
  -moz-box-sizing: border-box;
  /* firefox */
  box-sizing: border-box;
  /* css3 */ }

.select2-container .select2-choice {
  display: block;
  height: 34px;
  padding: 0 0 0 8px;
  overflow: hidden;
  position: relative;
  color: #666666;
  border: 1px solid #e5e5e5;
  white-space: nowrap;
  line-height: 34px;
  text-decoration: none;
  border-radius: 5px;
  background-clip: padding-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #fff;
  background-image: none; }

html[dir="rtl"] .select2-container .select2-choice {
  padding: 0 8px 0 0; }

.select2-container.select2-drop-above .select2-choice {
  border-bottom-color: #e5e5e5;
  border-radius: 5px;
  background-image: none; }

.select2-container.select2-allowclear .select2-choice .select2-chosen {
  margin-right: 42px; }

.select2-container .select2-choice > .select2-chosen {
  margin-right: 26px;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  float: none;
  width: auto; }

html[dir="rtl"] .select2-container .select2-choice > .select2-chosen {
  margin-left: 26px;
  margin-right: 0; }

.select2-container .select2-choice abbr {
  display: none;
  width: 12px;
  height: 12px;
  position: absolute;
  right: 24px;
  top: 8px;
  font-size: 1px;
  text-decoration: none;
  border: 0;
  background: url(/assets/select2-6efcb80455de752ca66378ff45927b371a3bcc468d6cf45bebb7b64957c45ed9.png) right top no-repeat;
  cursor: pointer;
  outline: 0; }

.select2-container.select2-allowclear .select2-choice abbr {
  display: inline-block; }

.select2-container .select2-choice abbr:hover {
  background-position: right -11px;
  cursor: pointer; }

.select2-drop-mask {
  border: 0;
  margin: 0;
  padding: 0;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 9998;
  /* styles required for IE to work */
  background-color: #fff;
  filter: alpha(opacity=0); }

.select2-drop {
  width: 100%;
  margin-top: -1px;
  position: absolute;
  z-index: 9999;
  top: 100%;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-top: 0;
  border-radius: 0px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  -webkit-box-shadow: none;
  box-shadow: none; }

.select2-drop.select2-drop-above {
  margin-top: 1px;
  border-top: 1px solid #e5e5e5;
  border-bottom: 0;
  border-radius: 0;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  -webkit-box-shadow: none;
  box-shadow: none; }

.select2-drop-active {
  border: 1px solid #dedede;
  border-top: none; }

.select2-drop.select2-drop-above.select2-drop-active {
  border-top: 1px solid #dedede; }

.select2-drop-auto-width {
  border-top: 1px solid #e5e5e5;
  width: auto; }

.select2-drop-auto-width .select2-search {
  padding-top: 4px; }

.select2-container .select2-choice .select2-arrow {
  display: inline-block;
  width: 18px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  border-left: 1px solid #e5e5e5;
  border-radius: 0;
  background-clip: padding-box;
  background: #ffffff;
  background-image: none; }

html[dir="rtl"] .select2-container .select2-choice .select2-arrow {
  left: 0;
  right: auto;
  border-left: none;
  border-right: 1px solid #e5e5e5;
  border-radius: 0px; }

.select2-container .select2-choice .select2-arrow b {
  display: block;
  width: 100%;
  height: 100%;
  background: url(/assets/select2-6efcb80455de752ca66378ff45927b371a3bcc468d6cf45bebb7b64957c45ed9.png) no-repeat 0 1px; }

html[dir="rtl"] .select2-container .select2-choice .select2-arrow b {
  background-position: 2px 1px; }

.select2-search {
  display: inline-block;
  width: 100%;
  min-height: 34px;
  margin: 0;
  padding-left: 4px;
  padding-right: 4px;
  position: relative;
  z-index: 10000;
  white-space: nowrap; }

.select2-search input {
  width: 100%;
  height: auto !important;
  min-height: 34px;
  padding: 4px 20px 4px 5px;
  margin: 0;
  outline: 0;
  font-family: sans-serif;
  font-size: 1em;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: #fff url(/assets/select2-6efcb80455de752ca66378ff45927b371a3bcc468d6cf45bebb7b64957c45ed9.png) no-repeat 100% -22px; }

html[dir="rtl"] .select2-search input {
  padding: 4px 5px 4px 20px;
  background: #fff url(/assets/select2-6efcb80455de752ca66378ff45927b371a3bcc468d6cf45bebb7b64957c45ed9.png) no-repeat -37px -22px; }

.select2-drop.select2-drop-above .select2-search input {
  margin-top: 4px; }

.select2-search input.select2-active {
  background: #fff url(/assets/select2-spinner-e611bd10da5752d2c77c75664d6ec0cc16491d9d1d85012a753624374ccfeeae.gif) no-repeat 100%; }

.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
  border: 1px solid #dedede;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none; }

.select2-dropdown-open .select2-choice {
  border-bottom-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-color: #ffffff;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
  background-image: none; }

.select2-dropdown-open.select2-drop-above .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choices {
  border: 1px solid #dedede;
  border-top-color: transparent;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
  background-image: none; }

.select2-dropdown-open .select2-choice .select2-arrow {
  background: transparent;
  border-left: none;
  filter: none; }

html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow {
  border-right: none; }

.select2-dropdown-open .select2-choice .select2-arrow b {
  background-position: -18px 1px; }

html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow b {
  background-position: -16px 1px; }

.select2-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

/* results */
.select2-results {
  max-height: 200px;
  padding: 0 0 0 4px;
  margin: 4px 4px 4px 0;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

html[dir="rtl"] .select2-results {
  padding: 0 4px 0 0;
  margin: 4px 0 4px 4px; }

.select2-results ul.select2-result-sub {
  margin: 0;
  padding-left: 0; }

.select2-results li {
  list-style: none;
  display: list-item;
  background-image: none; }

.select2-results li.select2-result-with-children > .select2-result-label {
  font-weight: bold; }

.select2-results .select2-result-label {
  padding: 3px 7px 4px;
  margin: 0;
  cursor: pointer;
  min-height: 1em;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.select2-results-dept-1 .select2-result-label {
  padding-left: 20px; }

.select2-results-dept-2 .select2-result-label {
  padding-left: 40px; }

.select2-results-dept-3 .select2-result-label {
  padding-left: 60px; }

.select2-results-dept-4 .select2-result-label {
  padding-left: 80px; }

.select2-results-dept-5 .select2-result-label {
  padding-left: 100px; }

.select2-results-dept-6 .select2-result-label {
  padding-left: 110px; }

.select2-results-dept-7 .select2-result-label {
  padding-left: 120px; }

.select2-results .select2-highlighted {
  background: #BF4346;
  color: #fff; }

.select2-results li em {
  background: #feffde;
  font-style: normal; }

.select2-results .select2-highlighted em {
  background: transparent; }

.select2-results .select2-highlighted ul {
  background: #fff;
  color: #000; }

.select2-results .select2-no-results,
.select2-results .select2-searching,
.select2-results .select2-selection-limit {
  background: #f4f4f4;
  display: list-item;
  padding-left: 5px; }

/*
disabled look for disabled choices in the results dropdown
*/
.select2-results .select2-disabled.select2-highlighted {
  color: #666;
  background: #f4f4f4;
  display: list-item;
  cursor: default; }

.select2-results .select2-disabled {
  background: #f4f4f4;
  display: list-item;
  cursor: default; }

.select2-results .select2-selected {
  display: none; }

.select2-more-results.select2-active {
  background: #f4f4f4 url(/assets/select2-spinner-e611bd10da5752d2c77c75664d6ec0cc16491d9d1d85012a753624374ccfeeae.gif) no-repeat 100%; }

.select2-more-results {
  background: #f4f4f4;
  display: list-item; }

/* disabled styles */
.select2-container.select2-container-disabled .select2-choice {
  background-color: #f4f4f4;
  background-image: none;
  border: 1px solid #e5e5e5;
  cursor: default; }

.select2-container.select2-container-disabled .select2-choice .select2-arrow {
  background-color: #f4f4f4;
  background-image: none;
  border-left: 0; }

.select2-container.select2-container-disabled .select2-choice abbr {
  display: none; }

/* multiselect */
.select2-container-multi .select2-choices {
  height: auto !important;
  height: 1%;
  margin: 0;
  padding: 0 5px 0 0;
  position: relative;
  border: 1px solid #e5e5e5;
  cursor: text;
  overflow: hidden;
  background-color: #fff;
  background-image: none; }

html[dir="rtl"] .select2-container-multi .select2-choices {
  padding: 0 0 0 5px; }

.select2-locked {
  padding: 3px 5px 3px 5px !important; }

.select2-container-multi .select2-choices {
  min-height: 26px; }

.select2-container-multi.select2-container-active .select2-choices {
  border: 1px solid #dedede;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none; }

.select2-container-multi .select2-choices li {
  float: left;
  list-style: none; }

html[dir="rtl"] .select2-container-multi .select2-choices li {
  float: right; }

.select2-container-multi .select2-choices .select2-search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap; }

.select2-container-multi .select2-choices .select2-search-field input {
  padding: 5px;
  margin: 1px 0;
  font-family: sans-serif;
  font-size: 100%;
  color: #666;
  outline: 0;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: transparent !important; }

.select2-container-multi .select2-choices .select2-search-field input.select2-active {
  background: #fff url(/assets/select2-spinner-e611bd10da5752d2c77c75664d6ec0cc16491d9d1d85012a753624374ccfeeae.gif) no-repeat 100% !important; }

.select2-default {
  color: #999 !important; }

.select2-container-multi .select2-choices .select2-search-choice {
  padding: 3px 5px 3px 18px;
  margin: 3px 0 3px 5px;
  position: relative;
  line-height: 13px;
  cursor: default;
  border: 1px solid #e5e5e5;
  border-radius: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-clip: padding-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #ffffff;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0);
  background-image: none; }

html[dir="rtl"] .select2-container-multi .select2-choices .select2-search-choice {
  margin: 3px 5px 3px 0;
  padding: 3px 18px 3px 5px; }

.select2-container-multi .select2-choices .select2-search-choice .select2-chosen {
  cursor: default; }

.select2-container-multi .select2-choices .select2-search-choice-focus {
  background: #d4d4d4; }

.select2-search-choice-close {
  display: block;
  width: 12px;
  height: 13px;
  position: absolute;
  right: 3px;
  top: 4px;
  font-size: 1px;
  outline: none;
  background: url(/assets/select2-6efcb80455de752ca66378ff45927b371a3bcc468d6cf45bebb7b64957c45ed9.png) right top no-repeat; }

html[dir="rtl"] .select2-search-choice-close {
  right: auto;
  left: 3px; }

.select2-container-multi .select2-search-choice-close {
  left: 3px; }

html[dir="rtl"] .select2-container-multi .select2-search-choice-close {
  left: auto;
  right: 2px; }

.select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover {
  background-position: right -11px; }

.select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close {
  background-position: right -11px; }

/* disabled styles */
.select2-container-multi.select2-container-disabled .select2-choices {
  background-color: #f4f4f4;
  background-image: none;
  border: 1px solid #e5e5e5;
  cursor: default; }

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
  padding: 3px 5px 3px 5px;
  border: 1px solid #e5e5e5;
  background-image: none;
  background-color: #f4f4f4; }

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close {
  display: none;
  background: none; }

/* end multiselect */
.select2-result-selectable .select2-match,
.select2-result-unselectable .select2-match {
  text-decoration: underline; }

.select2-offscreen, .select2-offscreen:focus {
  clip: rect(0 0 0 0) !important;
  width: 1px !important;
  height: 1px !important;
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  outline: 0 !important;
  left: 0px !important;
  top: 0px !important; }

.select2-display-none {
  display: none; }

.select2-measure-scrollbar {
  position: absolute;
  top: -10000px;
  left: -10000px;
  width: 100px;
  height: 100px;
  overflow: scroll; }

/* Retina-ize icons */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 2dppx) {
  .select2-search input,
  .select2-search-choice-close,
  .select2-container .select2-choice abbr,
  .select2-container .select2-choice .select2-arrow b {
    background-image: url(/assets/select2x2-e682f64b4fa50a0bd189766a50cd778db4e8529b30302af6305c7df1e40bf442.png) !important;
    background-repeat: no-repeat !important;
    background-size: 60px 40px !important; }
  .select2-search input {
    background-position: 100% -21px !important; } }
/*!
 * bootstrap-select v1.5.4
 * http://silviomoreto.github.io/bootstrap-select/
 *
 * Copyright 2013 bootstrap-select
 * Licensed under the MIT license
 */
.bootstrap-select.btn-group:not(.input-group-btn), .bootstrap-select.btn-group[class*=span] {
    float: none;
    display: inline-block;
    margin-bottom: 10px;
    margin-left: 0
}

.form-horizontal .bootstrap-select.btn-group, .form-inline .bootstrap-select.btn-group, .form-search .bootstrap-select.btn-group {
    margin-bottom: 0
}

.bootstrap-select.form-control {
    margin-bottom: 0;
    padding: 0;
    border: none
}

.bootstrap-select.btn-group.pull-right, .bootstrap-select.btn-group[class*=span].pull-right, .row-fluid .bootstrap-select.btn-group[class*=span].pull-right {
    float: right
}

.input-append .bootstrap-select.btn-group {
    margin-left: -1px
}

.input-prepend .bootstrap-select.btn-group {
    margin-right: -1px
}

.bootstrap-select:not([class*=span]):not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 220px
}

.bootstrap-select {
    width: 220 px\0
}

.bootstrap-select.form-control:not([class*=span]) {
    width: 100%
}

.bootstrap-select > .btn {
    width: 100%;
    padding-right: 25px
}

.error .bootstrap-select .btn {
    border: 1px solid #b94a48
}

.bootstrap-select.show-menu-arrow.open > .btn {
    z-index: 2051
}

.bootstrap-select .btn:focus {
    outline: thin dotted #333 !important;
    outline: 5px auto -webkit-focus-ring-color !important;
    outline-offset: -2px
}

.bootstrap-select.btn-group .btn .filter-option {
    display: inline-block;
    overflow: hidden;
    width: 100%;
    float: left;
    text-align: left
}

.bootstrap-select.btn-group .btn .caret {
    position: absolute;
    top: 50%;
    right: 12px;
    margin-top: -2px;
    vertical-align: middle
}

.bootstrap-select.btn-group .dropdown-menu li.disabled > a, .bootstrap-select.btn-group > .disabled {
    cursor: not-allowed
}

.bootstrap-select.btn-group > .disabled:focus {
    outline: 0 !important
}

.bootstrap-select.btn-group[class*=span] .btn {
    width: 100%
}

.bootstrap-select.btn-group .dropdown-menu {
    min-width: 100%;
    z-index: 2000;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.bootstrap-select.btn-group .dropdown-menu.inner {
    position: static;
    border: 0;
    padding: 0;
    margin: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none
}

.bootstrap-select.btn-group .dropdown-menu dt {
    display: block;
    padding: 3px 20px;
    cursor: default
}

.bootstrap-select.btn-group .div-contain {
    overflow: hidden
}

.bootstrap-select.btn-group .dropdown-menu li {
    position: relative
}

.bootstrap-select.btn-group .dropdown-menu li > a.opt {
    position: relative;
    padding-left: 35px
}

.bootstrap-select.btn-group .dropdown-menu li > a {
    cursor: pointer
}

.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a i.check-mark {
    position: absolute;
    display: inline-block;
    right: 15px;
    margin-top: 2.5px
}

.bootstrap-select.btn-group .dropdown-menu li a i.check-mark {
    display: none
}

.bootstrap-select.btn-group .dropdown-menu li a span.text {
    display: inline-block
}

.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text {
    margin-right: 34px
}

.bootstrap-select.btn-group .dropdown-menu li small {
    padding-left: .5em
}

.bootstrap-select.btn-group .dropdown-menu li.active:not(.disabled) > a small, .bootstrap-select.btn-group .dropdown-menu li:not(.disabled) > a:focus small, .bootstrap-select.btn-group .dropdown-menu li:not(.disabled) > a:hover small {
    color: #64b1d8;
    color: rgba(255, 255, 255, .4)
}

.bootstrap-select.btn-group .dropdown-menu li > dt small {
    font-weight: 400
}

.bootstrap-select.show-menu-arrow .dropdown-toggle:before {
    content: '';
    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;
    bottom: -4px;
    left: 9px;
    display: none
}

.bootstrap-select.show-menu-arrow .dropdown-toggle:after {
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
    position: absolute;
    bottom: -4px;
    left: 10px;
    display: none
}

.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before {
    bottom: auto;
    top: -3px;
    border-top: 7px solid #ccc;
    border-bottom: 0;
    border-top-color: rgba(0, 0, 0, .2)
}

.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after {
    bottom: auto;
    top: -3px;
    border-top: 6px solid #fff;
    border-bottom: 0
}

.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before {
    right: 12px;
    left: auto
}

.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after {
    right: 13px;
    left: auto
}

.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:after, .bootstrap-select.show-menu-arrow.open > .dropdown-toggle:before {
    display: block
}

.bootstrap-select.btn-group .no-results {
    padding: 3px;
    background: #f5f5f5;
    margin: 0 5px
}

.bootstrap-select.btn-group .dropdown-menu .notify {
    position: absolute;
    bottom: 5px;
    width: 96%;
    margin: 0 2%;
    min-height: 26px;
    padding: 3px 5px;
    background: #f5f5f5;
    border: 1px solid #e3e3e3;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
    pointer-events: none;
    opacity: .9;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.mobile-device {
    position: absolute;
    top: 0;
    left: 0;
    display: block !important;
    width: 100%;
    height: 100% !important;
    opacity: 0
}

.bootstrap-select.fit-width {
    width: auto !important
}

.bootstrap-select.btn-group.fit-width .btn .filter-option {
    position: static
}

.bootstrap-select.btn-group.fit-width .btn .caret {
    position: static;
    top: auto;
    margin-top: -1px
}

.control-group.error .bootstrap-select .dropdown-toggle {
    border-color: #b94a48
}

.bootstrap-select .bs-actionsbox, .bootstrap-select-searchbox {
    padding: 4px 8px
}

.bootstrap-select .bs-actionsbox {
    float: left;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.bootstrap-select-searchbox + .bs-actionsbox {
    padding: 0 8px 4px
}

.bootstrap-select-searchbox input {
    margin-bottom: 0
}

.bootstrap-select .bs-actionsbox .btn-group button {
    width: 50%
}
.ms-container {
    background: transparent url(/../img/switch.png) no-repeat 50% 50%;
    width: 370px;
}

.ms-container:after {
    content: ".";
    display: block;
    height: 0;
    line-height: 0;
    font-size: 0;
    clear: both;
    min-height: 0;
    visibility: hidden;
}

.ms-container .ms-selectable, .ms-container .ms-selection {
    background: #fff;
    color: #555555;
    float: left;
    width: 45%;
}

.ms-container .ms-selection {
    float: right;
}

.ms-container .ms-list {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
    -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
    -ms-transition: border linear 0.2s, box-shadow linear 0.2s;
    -o-transition: border linear 0.2s, box-shadow linear 0.2s;
    transition: border linear 0.2s, box-shadow linear 0.2s;
    border: 1px solid #e5e5e5;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    position: relative;
    height: 200px;
    padding: 0;
    overflow-y: auto;
}

.ms-container .ms-list.ms-focus {
    border-color: #DDDDDD;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    outline: 0;
    outline: thin dotted \9;
}

.ms-container ul {
    margin: 0;
    list-style-type: none;
    padding: 0;
}

.ms-container .ms-optgroup-container {
    width: 100%;
}

.ms-container .ms-optgroup-label {
    margin: 0;
    padding: 5px 0px 0px 5px;
    cursor: pointer;
    color: #999;
}

.ms-container .ms-selectable li.ms-elem-selectable,
.ms-container .ms-selection li.ms-elem-selection {
    border-bottom: 1px #eee solid;
    padding: 2px 10px;
    color: #555;
    font-size: 14px;
}

.ms-container .ms-selectable li.ms-hover,
.ms-container .ms-selection li.ms-hover {
    cursor: pointer;
    color: #fff;
    text-decoration: none;
    background-color: #999999;
}

.ms-container .ms-selectable li.disabled,
.ms-container .ms-selection li.disabled {
    background-color: #eee;
    color: #aaa;
    cursor: text;
}
/* .pace .pace-progress {
    background: #29d;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    height: 2px;

    -webkit-transition: width 1s;
    -moz-transition: width 1s;
    -o-transition: width 1s;
    transition: width 1s;
}

.pace-inactive {
    display: none;
} */
.pace {
    width: 140px;
    height: 300px;
    position: fixed;
    top: -90px;
    right: -20px;
    z-index: 2000;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 0;
    -webkit-transition: all 2s linear 0s;
    -moz-transition: all 2s linear 0s;
    transition: all 2s linear 0s;
}

.pace.pace-active {
    -webkit-transform: scale(.25);
    -moz-transform: scale(.25);
    -ms-transform: scale(.25);
    -o-transform: scale(.25);
    transform: scale(.25);
    opacity: 1;
}

.pace .pace-activity {
    width: 140px;
    height: 140px;
    border-radius: 70px;
    background: #29d;
    position: absolute;
    top: 0;
    z-index: 1911;
    -webkit-animation: pace-bounce 1s infinite;
    -moz-animation: pace-bounce 1s infinite;
    -o-animation: pace-bounce 1s infinite;
    -ms-animation: pace-bounce 1s infinite;
    animation: pace-bounce 1s infinite;
}

.pace .pace-progress {
    position: absolute;
    display: block;
    left: 50%;
    bottom: 0;
    z-index: 1910;
    margin-left: -30px;
    width: 60px;
    height: 75px;
    background: rgba(20, 20, 20, .1);
    box-shadow: 0 0 20px 35px rgba(20, 20, 20, .1);
    border-radius: 30px / 40px;
    -webkit-transform: scaleY(.3);
    -moz-transform: scaleY(.3);
    -ms-transform: scaleY(.3);
    -o-transform: scaleY(.3);
    transform: scaleY(.3);
    -webkit-animation: pace-compress .5s infinite alternate;
    -moz-animation: pace-compress .5s infinite alternate;
    -o-animation: pace-compress .5s infinite alternate;
    -ms-animation: pace-compress .5s infinite alternate;
    animation: pace-compress .5s infinite alternate;
}

@-webkit-keyframes pace-bounce {
    0% {
        top: 0;
        -webkit-animation-timing-function: ease-in;
    }
    40% {
    }
    50% {
        top: 140px;
        height: 140px;
        -webkit-animation-timing-function: ease-out;
    }
    55% {
        top: 160px;
        height: 120px;
        border-radius: 70px / 60px;
        -webkit-animation-timing-function: ease-in;
    }
    65% {
        top: 120px;
        height: 140px;
        border-radius: 70px;
        -webkit-animation-timing-function: ease-out;
    }
    95% {
        top: 0;
        -webkit-animation-timing-function: ease-in;
    }
    100% {
        top: 0;
        -webkit-animation-timing-function: ease-in;
    }
}

@-moz-keyframes pace-bounce {
    0% {
        top: 0;
        -moz-animation-timing-function: ease-in;
    }
    40% {
    }
    50% {
        top: 140px;
        height: 140px;
        -moz-animation-timing-function: ease-out;
    }
    55% {
        top: 160px;
        height: 120px;
        border-radius: 70px / 60px;
        -moz-animation-timing-function: ease-in;
    }
    65% {
        top: 120px;
        height: 140px;
        border-radius: 70px;
        -moz-animation-timing-function: ease-out;
    }
    95% {
        top: 0;
        -moz-animation-timing-function: ease-in;
    }
    100% {
        top: 0;
        -moz-animation-timing-function: ease-in;
    }
}

@keyframes pace-bounce {
    0% {
        top: 0;
        animation-timing-function: ease-in;
    }
    50% {
        top: 140px;
        height: 140px;
        animation-timing-function: ease-out;
    }
    55% {
        top: 160px;
        height: 120px;
        border-radius: 70px / 60px;
        animation-timing-function: ease-in;
    }
    65% {
        top: 120px;
        height: 140px;
        border-radius: 70px;
        animation-timing-function: ease-out;
    }
    95% {
        top: 0;
        animation-timing-function: ease-in;
    }
    100% {
        top: 0;
        animation-timing-function: ease-in;
    }
}

@-webkit-keyframes pace-compress {
    0% {
        bottom: 0;
        margin-left: -30px;
        width: 60px;
        height: 75px;
        background: rgba(20, 20, 20, .1);
        box-shadow: 0 0 20px 35px rgba(20, 20, 20, .1);
        border-radius: 30px / 40px;
        -webkit-animation-timing-function: ease-in;
    }
    100% {
        bottom: 30px;
        margin-left: -10px;
        width: 20px;
        height: 5px;
        background: rgba(20, 20, 20, .3);
        box-shadow: 0 0 20px 35px rgba(20, 20, 20, .3);
        border-radius: 20px / 20px;
        -webkit-animation-timing-function: ease-out;
    }
}

@-moz-keyframes pace-compress {
    0% {
        bottom: 0;
        margin-left: -30px;
        width: 60px;
        height: 75px;
        background: rgba(20, 20, 20, .1);
        box-shadow: 0 0 20px 35px rgba(20, 20, 20, .1);
        border-radius: 30px / 40px;
        -moz-animation-timing-function: ease-in;
    }
    100% {
        bottom: 30px;
        margin-left: -10px;
        width: 20px;
        height: 5px;
        background: rgba(20, 20, 20, .3);
        box-shadow: 0 0 20px 35px rgba(20, 20, 20, .3);
        border-radius: 20px / 20px;
        -moz-animation-timing-function: ease-out;
    }
}

@keyframes pace-compress {
    0% {
        bottom: 0;
        margin-left: -30px;
        width: 60px;
        height: 75px;
        background: rgba(20, 20, 20, .1);
        box-shadow: 0 0 20px 35px rgba(20, 20, 20, .1);
        border-radius: 30px / 40px;
        animation-timing-function: ease-in;
    }
    100% {
        bottom: 30px;
        margin-left: -10px;
        width: 20px;
        height: 5px;
        background: rgba(20, 20, 20, .3);
        box-shadow: 0 0 20px 35px rgba(20, 20, 20, .3);
        border-radius: 20px / 20px;
        animation-timing-function: ease-out;
    }
}
.pace .pace-progress {
  background: #2ddc23;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  height: 2px;

  -webkit-transition: width 1s;
  -moz-transition: width 1s;
  -o-transition: width 1s;
  transition: width 1s;
}

.pace-inactive {
  display: none;
}
/*
 * Table styles
 */
table.dataTable {
  width: 100%;
  margin: 0 auto;
  clear: both;
  border-collapse: separate;
  border-spacing: 0;
  /*
     * Header and footer styles
     */
  /*
     * Body styles
     */ }

table.dataTable thead th,
table.dataTable tfoot th {
  font-weight: bold; }

table.dataTable thead th,
table.dataTable thead td {
  padding: 10px 18px;
  border-bottom: 1px solid #111111; }

table.dataTable thead th:active,
table.dataTable thead td:active {
  outline: none; }

table.dataTable tfoot th,
table.dataTable tfoot td {
  padding: 10px 18px 6px 18px;
  border-top: 1px solid #111111; }

table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting {
  cursor: pointer;
  *cursor: hand; }

table.dataTable thead .sorting {
  background: url(/assets/sort_both-04c63d38111bbc1de87f63f01469c19c5c4b10a0d7e9756b5c82a801fa766039.png) no-repeat center right; }

table.dataTable thead .sorting_asc {
  background: url(/assets/sort_asc-d21b43975b389ef74eacf35b3d7d84e61a3c82fdfce2e071934d3f652e40a2aa.png) no-repeat center right; }

table.dataTable thead .sorting_desc {
  background: url(/assets/sort_desc-474f1070bed1ba04a1668a7b8da406ca80d88b5ae56fdd2a24f015659b47a090.png) no-repeat center right; }

table.dataTable thead .sorting_asc_disabled {
  background: url(/assets/sort_asc_disabled-4da5a763ffa47efbb877735bc4e378d04c2ab6a2b413aa40206fe72990cf34a9.png) no-repeat center right; }

table.dataTable thead .sorting_desc_disabled {
  background: url(/assets/sort_desc_disabled-fd6656cc661f8edc87428b35bd41a469ad0e18f6d52c4ca70b1ebcd303fe1c9a.png) no-repeat center right; }

table.dataTable tbody tr {
  background-color: white; }

table.dataTable tbody tr.selected {
  background-color: #b0bed9; }

table.dataTable tbody th,
table.dataTable tbody td {
  padding: 8px 10px; }

table.dataTable.row-border tbody th, table.dataTable.row-border tbody td, table.dataTable.display tbody th, table.dataTable.display tbody td {
  border-top: 1px solid #dddddd; }

table.dataTable.row-border tbody tr:first-child th,
table.dataTable.row-border tbody tr:first-child td, table.dataTable.display tbody tr:first-child th,
table.dataTable.display tbody tr:first-child td {
  border-top: none; }

table.dataTable.cell-border tbody th, table.dataTable.cell-border tbody td {
  border-top: 1px solid #dddddd;
  border-right: 1px solid #dddddd; }

table.dataTable.cell-border tbody tr th:first-child,
table.dataTable.cell-border tbody tr td:first-child {
  border-left: 1px solid #dddddd; }

table.dataTable.cell-border tbody tr:first-child th,
table.dataTable.cell-border tbody tr:first-child td {
  border-top: none; }

table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd {
  background-color: #f9f9f9; }

table.dataTable.stripe tbody tr.odd.selected, table.dataTable.display tbody tr.odd.selected {
  background-color: #abb9d3; }

table.dataTable.hover tbody tr:hover,
table.dataTable.hover tbody tr.odd:hover,
table.dataTable.hover tbody tr.even:hover, table.dataTable.display tbody tr:hover,
table.dataTable.display tbody tr.odd:hover,
table.dataTable.display tbody tr.even:hover {
  background-color: whitesmoke; }

table.dataTable.hover tbody tr.selected:hover,
table.dataTable.hover tbody tr.odd.selected:hover,
table.dataTable.hover tbody tr.even.selected:hover, table.dataTable.display tbody tr.selected:hover,
table.dataTable.display tbody tr.odd.selected:hover,
table.dataTable.display tbody tr.even.selected:hover {
  background-color: #a9b7d1; }

table.dataTable.order-column tbody tr > .sorting_1,
table.dataTable.order-column tbody tr > .sorting_2,
table.dataTable.order-column tbody tr > .sorting_3, table.dataTable.display tbody tr > .sorting_1,
table.dataTable.display tbody tr > .sorting_2,
table.dataTable.display tbody tr > .sorting_3 {
  background-color: #f9f9f9; }

table.dataTable.order-column tbody tr.selected > .sorting_1,
table.dataTable.order-column tbody tr.selected > .sorting_2,
table.dataTable.order-column tbody tr.selected > .sorting_3, table.dataTable.display tbody tr.selected > .sorting_1,
table.dataTable.display tbody tr.selected > .sorting_2,
table.dataTable.display tbody tr.selected > .sorting_3 {
  background-color: #acbad4; }

table.dataTable.display tbody tr.odd > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd > .sorting_1 {
  background-color: #f1f1f1; }

table.dataTable.display tbody tr.odd > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd > .sorting_2 {
  background-color: #f3f3f3; }

table.dataTable.display tbody tr.odd > .sorting_3, table.dataTable.order-column.stripe tbody tr.odd > .sorting_3 {
  background-color: whitesmoke; }

table.dataTable.display tbody tr.odd.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_1 {
  background-color: #a6b3cd; }

table.dataTable.display tbody tr.odd.selected > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_2 {
  background-color: #a7b5ce; }

table.dataTable.display tbody tr.odd.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_3 {
  background-color: #a9b6d0; }

table.dataTable.display tbody tr.even > .sorting_1, table.dataTable.order-column.stripe tbody tr.even > .sorting_1 {
  background-color: #f9f9f9; }

table.dataTable.display tbody tr.even > .sorting_2, table.dataTable.order-column.stripe tbody tr.even > .sorting_2 {
  background-color: #fbfbfb; }

table.dataTable.display tbody tr.even > .sorting_3, table.dataTable.order-column.stripe tbody tr.even > .sorting_3 {
  background-color: #fdfdfd; }

table.dataTable.display tbody tr.even.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_1 {
  background-color: #acbad4; }

table.dataTable.display tbody tr.even.selected > .sorting_2, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_2 {
  background-color: #adbbd6; }

table.dataTable.display tbody tr.even.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_3 {
  background-color: #afbdd8; }

table.dataTable.display tbody tr:hover > .sorting_1,
table.dataTable.display tbody tr.odd:hover > .sorting_1,
table.dataTable.display tbody tr.even:hover > .sorting_1, table.dataTable.order-column.hover tbody tr:hover > .sorting_1,
table.dataTable.order-column.hover tbody tr.odd:hover > .sorting_1,
table.dataTable.order-column.hover tbody tr.even:hover > .sorting_1 {
  background-color: #eaeaea; }

table.dataTable.display tbody tr:hover > .sorting_2,
table.dataTable.display tbody tr.odd:hover > .sorting_2,
table.dataTable.display tbody tr.even:hover > .sorting_2, table.dataTable.order-column.hover tbody tr:hover > .sorting_2,
table.dataTable.order-column.hover tbody tr.odd:hover > .sorting_2,
table.dataTable.order-column.hover tbody tr.even:hover > .sorting_2 {
  background-color: #ebebeb; }

table.dataTable.display tbody tr:hover > .sorting_3,
table.dataTable.display tbody tr.odd:hover > .sorting_3,
table.dataTable.display tbody tr.even:hover > .sorting_3, table.dataTable.order-column.hover tbody tr:hover > .sorting_3,
table.dataTable.order-column.hover tbody tr.odd:hover > .sorting_3,
table.dataTable.order-column.hover tbody tr.even:hover > .sorting_3 {
  background-color: #eeeeee; }

table.dataTable.display tbody tr.selected:hover > .sorting_1,
table.dataTable.display tbody tr.odd.selected:hover > .sorting_1,
table.dataTable.display tbody tr.even.selected:hover > .sorting_1, table.dataTable.order-column.hover tbody tr.selected:hover > .sorting_1,
table.dataTable.order-column.hover tbody tr.odd.selected:hover > .sorting_1,
table.dataTable.order-column.hover tbody tr.even.selected:hover > .sorting_1 {
  background-color: #a1aec7; }

table.dataTable.display tbody tr.selected:hover > .sorting_2,
table.dataTable.display tbody tr.odd.selected:hover > .sorting_2,
table.dataTable.display tbody tr.even.selected:hover > .sorting_2, table.dataTable.order-column.hover tbody tr.selected:hover > .sorting_2,
table.dataTable.order-column.hover tbody tr.odd.selected:hover > .sorting_2,
table.dataTable.order-column.hover tbody tr.even.selected:hover > .sorting_2 {
  background-color: #a2afc8; }

table.dataTable.display tbody tr.selected:hover > .sorting_3,
table.dataTable.display tbody tr.odd.selected:hover > .sorting_3,
table.dataTable.display tbody tr.even.selected:hover > .sorting_3, table.dataTable.order-column.hover tbody tr.selected:hover > .sorting_3,
table.dataTable.order-column.hover tbody tr.odd.selected:hover > .sorting_3,
table.dataTable.order-column.hover tbody tr.even.selected:hover > .sorting_3 {
  background-color: #a4b2cb; }

table.dataTable.no-footer {
  border-bottom: 1px solid #111111; }

table.dataTable.nowrap th, table.dataTable.nowrap td {
  white-space: nowrap; }

table.dataTable.compact thead th,
table.dataTable.compact thead td {
  padding: 5px 9px; }

table.dataTable.compact tfoot th,
table.dataTable.compact tfoot td {
  padding: 5px 9px 3px 9px; }

table.dataTable.compact tbody th,
table.dataTable.compact tbody td {
  padding: 4px 5px; }

table.dataTable th.dt-left,
table.dataTable td.dt-left {
  text-align: left; }

table.dataTable th.dt-center,
table.dataTable td.dt-center,
table.dataTable td.dataTables_empty {
  text-align: center; }

table.dataTable th.dt-right,
table.dataTable td.dt-right {
  text-align: right; }

table.dataTable th.dt-justify,
table.dataTable td.dt-justify {
  text-align: justify; }

table.dataTable th.dt-nowrap,
table.dataTable td.dt-nowrap {
  white-space: nowrap; }

table.dataTable thead th.dt-head-left,
table.dataTable thead td.dt-head-left,
table.dataTable tfoot th.dt-head-left,
table.dataTable tfoot td.dt-head-left {
  text-align: left; }

table.dataTable thead th.dt-head-center,
table.dataTable thead td.dt-head-center,
table.dataTable tfoot th.dt-head-center,
table.dataTable tfoot td.dt-head-center {
  text-align: center; }

table.dataTable thead th.dt-head-right,
table.dataTable thead td.dt-head-right,
table.dataTable tfoot th.dt-head-right,
table.dataTable tfoot td.dt-head-right {
  text-align: right; }

table.dataTable thead th.dt-head-justify,
table.dataTable thead td.dt-head-justify,
table.dataTable tfoot th.dt-head-justify,
table.dataTable tfoot td.dt-head-justify {
  text-align: justify; }

table.dataTable thead th.dt-head-nowrap,
table.dataTable thead td.dt-head-nowrap,
table.dataTable tfoot th.dt-head-nowrap,
table.dataTable tfoot td.dt-head-nowrap {
  white-space: nowrap; }

table.dataTable tbody th.dt-body-left,
table.dataTable tbody td.dt-body-left {
  text-align: left; }

table.dataTable tbody th.dt-body-center,
table.dataTable tbody td.dt-body-center {
  text-align: center; }

table.dataTable tbody th.dt-body-right,
table.dataTable tbody td.dt-body-right {
  text-align: right; }

table.dataTable tbody th.dt-body-justify,
table.dataTable tbody td.dt-body-justify {
  text-align: justify; }

table.dataTable tbody th.dt-body-nowrap,
table.dataTable tbody td.dt-body-nowrap {
  white-space: nowrap; }

table.dataTable,
table.dataTable th,
table.dataTable td {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box; }

/*
 * Control feature layout
 */
.dataTables_wrapper {
  position: relative;
  clear: both;
  *zoom: 1;
  zoom: 1; }

.dataTables_wrapper .dataTables_length {
  float: left; }

.dataTables_wrapper .dataTables_filter {
  float: right;
  text-align: right; }

.dataTables_wrapper .dataTables_filter input {
  margin-left: 0.5em; }

.dataTables_wrapper .dataTables_info {
  clear: both;
  float: left;
  padding-top: 0.755em; }

.dataTables_wrapper .dataTables_paginate {
  float: right;
  text-align: right;
  padding-top: 0.25em; }

.dataTables_wrapper .dataTables_paginate .paginate_button {
  box-sizing: border-box;
  display: inline-block;
  min-width: 1.5em;
  padding: 0.5em 1em;
  margin-left: 2px;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  *cursor: hand;
  color: #333333 !important;
  border: 1px solid transparent; }

.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  color: #333333 !important;
  border: 1px solid #cacaca;
  background-color: white;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(100%, gainsboro));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, white 0%, gainsboro 100%);
  /* Chrome10+,Safari5.1+ */
  background: -moz-linear-gradient(top, white 0%, gainsboro 100%);
  /* FF3.6+ */
  background: -ms-linear-gradient(top, white 0%, gainsboro 100%);
  /* IE10+ */
  background: -o-linear-gradient(top, white 0%, gainsboro 100%);
  /* Opera 11.10+ */
  background: linear-gradient(to bottom, white 0%, gainsboro 100%);
  /* W3C */ }

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
  cursor: default;
  color: #666 !important;
  border: 1px solid transparent;
  background: transparent;
  box-shadow: none; }

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  color: white !important;
  border: 1px solid #111111;
  background-color: #585858;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111111));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #585858 0%, #111111 100%);
  /* Chrome10+,Safari5.1+ */
  background: -moz-linear-gradient(top, #585858 0%, #111111 100%);
  /* FF3.6+ */
  background: -ms-linear-gradient(top, #585858 0%, #111111 100%);
  /* IE10+ */
  background: -o-linear-gradient(top, #585858 0%, #111111 100%);
  /* Opera 11.10+ */
  background: linear-gradient(to bottom, #585858 0%, #111111 100%);
  /* W3C */ }

.dataTables_wrapper .dataTables_paginate .paginate_button:active {
  outline: none;
  background-color: #2b2b2b;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2b2b2b), color-stop(100%, #0c0c0c));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
  /* Chrome10+,Safari5.1+ */
  background: -moz-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
  /* FF3.6+ */
  background: -ms-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
  /* IE10+ */
  background: -o-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
  /* Opera 11.10+ */
  background: linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%);
  /* W3C */
  box-shadow: inset 0 0 3px #111; }

.dataTables_wrapper .dataTables_processing {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 40px;
  margin-left: -50%;
  margin-top: -25px;
  padding-top: 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)));
  /* Chrome,Safari4+ */
  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%);
  /* Chrome10+,Safari5.1+ */
  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%);
  /* FF3.6+ */
  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%);
  /* IE10+ */
  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%);
  /* Opera 11.10+ */
  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%);
  /* W3C */ }

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate {
  color: #333333; }

.dataTables_wrapper .dataTables_scroll {
  clear: both; }

.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody {
  *margin-top: -1px;
  -webkit-overflow-scrolling: touch; }

.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody th > div.dataTables_sizing,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody td > div.dataTables_sizing {
  height: 0;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important; }

.dataTables_wrapper.no-footer .dataTables_scrollBody {
  border-bottom: 1px solid #111111; }

.dataTables_wrapper.no-footer div.dataTables_scrollHead table,
.dataTables_wrapper.no-footer div.dataTables_scrollBody table {
  border-bottom: none; }

.dataTables_wrapper:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0; }

@media screen and (max-width: 767px) {
  .dataTables_wrapper .dataTables_info,
  .dataTables_wrapper .dataTables_paginate {
    float: none;
    text-align: center; }
  .dataTables_wrapper .dataTables_paginate {
    margin-top: 0.5em; } }

@media screen and (max-width: 640px) {
  .dataTables_wrapper .dataTables_length,
  .dataTables_wrapper .dataTables_filter {
    float: none;
    text-align: center; }
  .dataTables_wrapper .dataTables_filter {
    margin-top: 0.5em; } }
div.dataTables_length label {
  font-weight: normal;
  float: left;
  text-align: left; }

div.dataTables_length select {
  width: 75px; }

div.dataTables_filter label {
  font-weight: normal;
  float: right; }

div.dataTables_filter input {
  width: 16em; }

div.dataTables_info {
  padding-top: 8px; }

div.dataTables_paginate {
  float: right;
  margin: 0; }

div.dataTables_paginate ul.pagination {
  margin: 2px 0;
  white-space: nowrap; }

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(/assets/sort_both-04c63d38111bbc1de87f63f01469c19c5c4b10a0d7e9756b5c82a801fa766039.png) no-repeat center right; }

table.dataTable thead .sorting_asc {
  background: url(/assets/sort_asc-d21b43975b389ef74eacf35b3d7d84e61a3c82fdfce2e071934d3f652e40a2aa.png) no-repeat center right; }

table.dataTable thead .sorting_desc {
  background: url(/assets/sort_desc-474f1070bed1ba04a1668a7b8da406ca80d88b5ae56fdd2a24f015659b47a090.png) no-repeat center right; }

table.dataTable thead .sorting_asc_disabled {
  background: url(/assets/sort_asc_disabled-4da5a763ffa47efbb877735bc4e378d04c2ab6a2b413aa40206fe72990cf34a9.png) no-repeat center right; }

table.dataTable thead .sorting_desc_disabled {
  background: url(/assets/sort_desc_disabled-fd6656cc661f8edc87428b35bd41a469ad0e18f6d52c4ca70b1ebcd303fe1c9a.png) no-repeat center right; }

table.dataTable thead > tr > th {
  padding-left: 18px;
  padding-right: 18px; }

table.dataTable th:active {
  outline: none; }

/* Scrolling */
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; }

/* Frustratingly the border-collapse:collapse used by Bootstrap makes the column
   width calculations when using scrolling impossible to align columns. We have
   to use separate
 */
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; }

/*
 * TableTools styles
 */
.table tbody tr.active td,
.table tbody tr.active th {
  background-color: #08C;
  color: white; }

.table tbody tr.active:hover td,
.table tbody tr.active:hover th {
  background-color: #0075b0 !important; }

.table tbody tr.active a {
  color: white; }

.table-striped tbody tr.active:nth-child(odd) td,
.table-striped tbody tr.active:nth-child(odd) th {
  background-color: #017ebc; }

table.DTTT_selectable tbody tr {
  cursor: pointer; }

div.DTTT .btn {
  color: #333 !important;
  font-size: 12px; }

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;
  /* needed only when demo_page.css is included */ }

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; }

/* TableTools information display */
div.DTTT_print_info.modal {
  height: 150px;
  margin-top: -75px;
  text-align: center; }

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: 40px;
  margin-left: -50%;
  margin-top: -25px;
  padding-top: 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%); }

/*
 * FixedColumns styles
 */
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 {
  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; }

/*
 * FixedHeader styles
 */
div.FixedHeader_Cloned table {
  margin: 0 !important; }

.dataTables_wrapper .dataTables_paginate .paginate_button {
  padding: 0px; }

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  padding: 0px;
  border: 1px solid #fff; }

.pagination li.active a:hover, .pagination li.active a:focus {
  cursor: pointer !important;
  border-color: transparent; }

.dataTables_wrapper .dataTables_filter input {
  margin-left: 0px; }

.dataTables_filter .dropdown-menu {
  text-align: left; }

table.dataTable.no-footer {
  border-bottom: 1px solid #dbdbdb; }
table.DTFC_Cloned thead,table.DTFC_Cloned tfoot{background-color:white}div.DTFC_Blocker{background-color:white}div.DTFC_LeftWrapper table.dataTable,div.DTFC_RightWrapper table.dataTable{margin-bottom:0;z-index:2}div.DTFC_LeftWrapper table.dataTable.no-footer,div.DTFC_RightWrapper table.dataTable.no-footer{border-bottom:none}
div.dt-button-info{position:fixed;top:50%;left:50%;width:400px;margin-top:-100px;margin-left:-200px;background-color:white;border:2px solid #111;box-shadow:3px 3px 8px rgba(0,0,0,0.3);border-radius:3px;text-align:center;z-index:21}div.dt-button-info h2{padding:.5em;margin:0;font-weight:normal;border-bottom:1px solid #ddd;background-color:#f3f3f3}div.dt-button-info>div{padding:1em}button.dt-button,div.dt-button,a.dt-button{position:relative;display:inline-block;box-sizing:border-box;margin-right:.333em;padding:.5em 1em;border:1px solid #999;border-radius:2px;cursor:pointer;font-size:.88em;color:black;white-space:nowrap;overflow:hidden;background-color:#e9e9e9;background-image:-webkit-linear-gradient(top,#fff 0,#e9e9e9 100%);background-image:-moz-linear-gradient(top,#fff 0,#e9e9e9 100%);background-image:-ms-linear-gradient(top,#fff 0,#e9e9e9 100%);background-image:-o-linear-gradient(top,#fff 0,#e9e9e9 100%);background-image:linear-gradient(to bottom,#fff 0,#e9e9e9 100%);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='white',EndColorStr='#e9e9e9');-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-decoration:none;outline:0}button.dt-button.disabled,div.dt-button.disabled,a.dt-button.disabled{color:#999;border:1px solid #d0d0d0;cursor:default;background-color:#f9f9f9;background-image:-webkit-linear-gradient(top,#fff 0,#f9f9f9 100%);background-image:-moz-linear-gradient(top,#fff 0,#f9f9f9 100%);background-image:-ms-linear-gradient(top,#fff 0,#f9f9f9 100%);background-image:-o-linear-gradient(top,#fff 0,#f9f9f9 100%);background-image:linear-gradient(to bottom,#fff 0,#f9f9f9 100%);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#ffffff',EndColorStr='#f9f9f9')}button.dt-button:active:not(.disabled),button.dt-button.active:not(.disabled),div.dt-button:active:not(.disabled),div.dt-button.active:not(.disabled),a.dt-button:active:not(.disabled),a.dt-button.active:not(.disabled){background-color:#e2e2e2;background-image:-webkit-linear-gradient(top,#f3f3f3 0,#e2e2e2 100%);background-image:-moz-linear-gradient(top,#f3f3f3 0,#e2e2e2 100%);background-image:-ms-linear-gradient(top,#f3f3f3 0,#e2e2e2 100%);background-image:-o-linear-gradient(top,#f3f3f3 0,#e2e2e2 100%);background-image:linear-gradient(to bottom,#f3f3f3 0,#e2e2e2 100%);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#f3f3f3',EndColorStr='#e2e2e2');box-shadow:inset 1px 1px 3px #999}button.dt-button:active:not(.disabled):hover:not(.disabled),button.dt-button.active:not(.disabled):hover:not(.disabled),div.dt-button:active:not(.disabled):hover:not(.disabled),div.dt-button.active:not(.disabled):hover:not(.disabled),a.dt-button:active:not(.disabled):hover:not(.disabled),a.dt-button.active:not(.disabled):hover:not(.disabled){box-shadow:inset 1px 1px 3px #999;background-color:#ccc;background-image:-webkit-linear-gradient(top,#eaeaea 0,#ccc 100%);background-image:-moz-linear-gradient(top,#eaeaea 0,#ccc 100%);background-image:-ms-linear-gradient(top,#eaeaea 0,#ccc 100%);background-image:-o-linear-gradient(top,#eaeaea 0,#ccc 100%);background-image:linear-gradient(to bottom,#eaeaea 0,#ccc 100%);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#eaeaea',EndColorStr='#cccccc')}button.dt-button:hover,div.dt-button:hover,a.dt-button:hover{text-decoration:none}button.dt-button:hover:not(.disabled),div.dt-button:hover:not(.disabled),a.dt-button:hover:not(.disabled){border:1px solid #666;background-color:#e0e0e0;background-image:-webkit-linear-gradient(top,#f9f9f9 0,#e0e0e0 100%);background-image:-moz-linear-gradient(top,#f9f9f9 0,#e0e0e0 100%);background-image:-ms-linear-gradient(top,#f9f9f9 0,#e0e0e0 100%);background-image:-o-linear-gradient(top,#f9f9f9 0,#e0e0e0 100%);background-image:linear-gradient(to bottom,#f9f9f9 0,#e0e0e0 100%);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#f9f9f9',EndColorStr='#e0e0e0')}button.dt-button:focus:not(.disabled),div.dt-button:focus:not(.disabled),a.dt-button:focus:not(.disabled){border:1px solid #426c9e;text-shadow:0 1px 0 #c4def1;outline:0;background-color:#79ace9;background-image:-webkit-linear-gradient(top,#bddef4 0,#79ace9 100%);background-image:-moz-linear-gradient(top,#bddef4 0,#79ace9 100%);background-image:-ms-linear-gradient(top,#bddef4 0,#79ace9 100%);background-image:-o-linear-gradient(top,#bddef4 0,#79ace9 100%);background-image:linear-gradient(to bottom,#bddef4 0,#79ace9 100%);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#bddef4',EndColorStr='#79ace9')}.dt-button embed{outline:0}div.dt-buttons{position:relative;float:left}div.dt-buttons.buttons-right{float:right}div.dt-button-collection button.dt-button,div.dt-button-collection div.dt-button,div.dt-button-collection a.dt-button{position:relative;left:0;right:0;margin:5px 5px 5px 5px;padding:5px 14px 5px 14px;text-align:center;display:inline-block;float:none}div.dt-button-collection button.dt-button:active:not(.disabled),div.dt-button-collection button.dt-button.active:not(.disabled),div.dt-button-collection div.dt-button:active:not(.disabled),div.dt-button-collection div.dt-button.active:not(.disabled),div.dt-button-collection a.dt-button:active:not(.disabled),div.dt-button-collection a.dt-button.active:not(.disabled){background-color:#dadada;background-image:-webkit-linear-gradient(top,#f0f0f0 0,#dadada 100%);background-image:-moz-linear-gradient(top,#f0f0f0 0,#dadada 100%);background-image:-ms-linear-gradient(top,#f0f0f0 0,#dadada 100%);background-image:-o-linear-gradient(top,#f0f0f0 0,#dadada 100%);background-image:linear-gradient(to bottom,#f0f0f0 0,#dadada 100%);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#f0f0f0',EndColorStr='#dadada');box-shadow:inset 1px 1px 3px #666}div.dt-button-collection.fixed{position:fixed;top:50%;left:50%;margin-left:-75px;border-radius:0}div.dt-button-collection.fixed.two-column{margin-left:-150px}div.dt-button-collection.fixed.three-column{margin-left:-225px}div.dt-button-collection.fixed.four-column{margin-left:-300px}div.dt-button-collection>*{-webkit-column-break-inside:avoid;break-inside:avoid}div.dt-button-collection.two-column{width:300px;padding-bottom:1px;-webkit-column-count:2;-moz-column-count:2;-ms-column-count:2;-o-column-count:2;column-count:2}div.dt-button-collection.three-column{width:450px;padding-bottom:1px;-webkit-column-count:3;-moz-column-count:3;-ms-column-count:3;-o-column-count:3;column-count:3}div.dt-button-collection.four-column{width:600px;padding-bottom:1px;-webkit-column-count:4;-moz-column-count:4;-ms-column-count:4;-o-column-count:4;column-count:4}div.dt-button-background{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,0.7);background:-ms-radial-gradient(center,ellipse farthest-corner,rgba(0,0,0,0.3) 0,rgba(0,0,0,0.7) 100%);background:-moz-radial-gradient(center,ellipse farthest-corner,rgba(0,0,0,0.3) 0,rgba(0,0,0,0.7) 100%);background:-o-radial-gradient(center,ellipse farthest-corner,rgba(0,0,0,0.3) 0,rgba(0,0,0,0.7) 100%);background:-webkit-gradient(radial,center center,0,center center,497,color-stop(0,rgba(0,0,0,0.3)),color-stop(1,rgba(0,0,0,0.7)));background:-webkit-radial-gradient(center,ellipse farthest-corner,rgba(0,0,0,0.3) 0,rgba(0,0,0,0.7) 100%);background:radial-gradient(ellipse farthest-corner at center,rgba(0,0,0,0.3) 0,rgba(0,0,0,0.7) 100%);z-index:2001}@media screen and (max-width:640px){div.dt-buttons{float:none!important;text-align:center}}
/**
 * @author Will Steinmetz
 * jQuery notification plug-in inspired by the notification style of Windows 8
 * Copyright (c)2014, Will Steinmetz
 * Licensed under the BSD license.
 * http://opensource.org/licenses/BSD-3-Clause
 */
.jquery-notific8-container {
    display: block;
    padding: 0;
    margin: 0;
    position: fixed
}

.jquery-notific8-container.top {
    top: 0
}

.jquery-notific8-container.top.right {
    right: 0
}

.jquery-notific8-container.top.left {
    left: 0
}

.jquery-notific8-container.bottom {
    bottom: 0
}

.jquery-notific8-container.bottom.right {
    right: 0
}

.jquery-notific8-container.bottom.left {
    left: 0
}

.jquery-notific8-notification {
    position: relative;
    display: none;
    padding: .625em;
    color: #fff;
    height: 4.125em;
    max-height: 4.125em;
    overflow: hidden;
    border-style: solid;
    border-width: 2px;
    width: 21.4375em
}

.jquery-notific8-notification:hover .jquery-notific8-close {
    display: block
}

.jquery-notific8-heading {
    font-weight: 700;
    margin-bottom: .3125em
}

.jquery-notific8-message {
    font-size: .875em
}

.jquery-notific8-close {
    position: absolute;
    padding: 0 .25em;
    cursor: pointer;
    top: 0;
    display: none
}

.jquery-notific8-close-sticky {
    text-align: center;
    position: absolute;
    width: 5.5625em;
    padding: .125em 0;
    cursor: pointer;
    text-transform: uppercase
}

.jquery-notific8-close-sticky span {
    font-size: .625em
}

.right .jquery-notific8-notification {
    float: right;
    clear: right;
    padding-right: 2.0625em
}

.right .jquery-notific8-close {
    right: -2px
}

.right .jquery-notific8-close-sticky {
    top: 1.9375em;
    right: -2.375em;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg)
}

.left .jquery-notific8-notification {
    float: left;
    clear: left;
    padding-left: 2.0625em
}

.left .jquery-notific8-close {
    left: -2px
}

.left .jquery-notific8-close-sticky {
    top: 1.9375em;
    left: -2.375em;
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    transform: rotate(270deg)
}

.top .jquery-notific8-notification {
    margin-top: .625em
}

.bottom .jquery-notific8-notification {
    margin-bottom: .625em
}

.jquery-notific8-notification.teal {
    border-color: #09c;
    background-color: #069;
    color: #fff
}

.jquery-notific8-notification.teal .jquery-notific8-close, .jquery-notific8-notification.teal .jquery-notific8-close-sticky {
    background-color: #09c;
    color: #fff
}

.jquery-notific8-notification.amethyst {
    border-color: #915faa;
    background-color: #5d2d77;
    color: #fff
}

.jquery-notific8-notification.amethyst .jquery-notific8-close, .jquery-notific8-notification.amethyst .jquery-notific8-close-sticky {
    background-color: #915faa;
    color: #fff
}

.jquery-notific8-notification.ruby {
    border-color: #d10;
    background-color: #a10;
    color: #fff
}

.jquery-notific8-notification.ruby .jquery-notific8-close, .jquery-notific8-notification.ruby .jquery-notific8-close-sticky {
    background-color: #d10;
    color: #fff
}

.jquery-notific8-notification.tangerine {
    border-color: #ffb23f;
    background-color: #e88f00;
    color: #fff
}

.jquery-notific8-notification.tangerine .jquery-notific8-close, .jquery-notific8-notification.tangerine .jquery-notific8-close-sticky {
    background-color: #ffb23f;
    color: #fff
}

.jquery-notific8-notification.lemon {
    border-color: #ffde00;
    background-color: #fc0;
    color: #333
}

.jquery-notific8-notification.lemon .jquery-notific8-close, .jquery-notific8-notification.lemon .jquery-notific8-close-sticky {
    background-color: #ffde00;
    color: #333
}

.jquery-notific8-notification.lime {
    border-color: #38d315;
    background-color: #32b512;
    color: #fff
}

.jquery-notific8-notification.lime .jquery-notific8-close, .jquery-notific8-notification.lime .jquery-notific8-close-sticky {
    background-color: #38d315;
    color: #fff
}

.jquery-notific8-notification.ebony {
    border-color: #666;
    background-color: #121212;
    color: #fff
}

.jquery-notific8-notification.ebony .jquery-notific8-close, .jquery-notific8-notification.ebony .jquery-notific8-close-sticky {
    background-color: #666;
    color: #fff
}

.jquery-notific8-notification.smoke {
    border-color: #ababab;
    background-color: #efefef;
    color: #333
}

.jquery-notific8-notification.smoke .jquery-notific8-close, .jquery-notific8-notification.smoke .jquery-notific8-close-sticky {
    background-color: #ababab;
    color: #fff
}
/* iCheck plugin Minimal skin, grey
----------------------------------- */
.icheckbox_minimal-grey,
.iradio_minimal-grey {
    display: inline-block;
    *display: inline;
    vertical-align: middle;
    margin: 0;
    padding: 0;
    width: 18px;
    height: 18px;
    background: url(/assets/grey-3421d7967262db70121bbaf18b7c938e9cd75f7cb0511ae447a1aac5dad1aa36.png) no-repeat;
    border: none;
    cursor: pointer;
}

.icheckbox_minimal-grey {
    background-position: -20px 0;
}
    .icheckbox_minimal-grey.hover {
        background-position: -20px 0;
    }
    .icheckbox_minimal-grey.checked {
        background-position: -40px 0;
    }
    .icheckbox_minimal-grey.disabled {
        background-position: -60px 0;
        cursor: default;
    }
    .icheckbox_minimal-grey.checked.disabled {
        background-position: -80px 0;
    }

.iradio_minimal-grey {
    background-position: -100px 0;
}
    .iradio_minimal-grey.hover {
        background-position: -120px 0;
    }
    .iradio_minimal-grey.checked {
        background-position: -140px 0;
    }
    .iradio_minimal-grey.disabled {
        background-position: -160px 0;
        cursor: default;
    }
    .iradio_minimal-grey.checked.disabled {
        background-position: -180px 0;
    }

/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
    .icheckbox_minimal-grey,
    .iradio_minimal-grey {
        background-image: url(/grey@2x.png);
        -webkit-background-size: 200px 20px;
        background-size: 200px 20px;
    }
}
/* iCheck plugin Line skin
----------------------------------- */

.icheckbox_line,
.iradio_line {
    position: relative;
    display: block;
    margin: 0;
    padding: 5px 15px 5px 38px;
    font-size: 13px;
    line-height: 17px;
    color: #fff;
    background: #000;
    border: none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    cursor: pointer;
}
    .icheckbox_line .icheck_line-icon,
    .iradio_line .icheck_line-icon {
        position: absolute;
        top: 50%;
        left: 13px;
        width: 13px;
        height: 11px;
        margin: -5px 0 0 0;
        padding: 0;
        overflow: hidden;
        background: url(/assets/line-d7ccde7af74f615b65593b58fc8226283d979d9a7ba0878a6eaac892bb3aff2c.png) no-repeat;
        border: none;
    }
    .icheckbox_line.hover,
    .icheckbox_line.checked.hover,
    .iradio_line.hover {
        background: #444;
    }
    .icheckbox_line.checked,
    .iradio_line.checked {
        background: #000;
    }
        .icheckbox_line.checked .icheck_line-icon,
        .iradio_line.checked .icheck_line-icon {
            background-position: -15px 0;
        }
    .icheckbox_line.disabled,
    .iradio_line.disabled {
        background: #ccc;
        cursor: default;
    }
        .icheckbox_line.disabled .icheck_line-icon,
        .iradio_line.disabled .icheck_line-icon {
            background-position: -30px 0;
        }
    .icheckbox_line.checked.disabled,
    .iradio_line.checked.disabled {
        background: #ccc;
    }
        .icheckbox_line.checked.disabled .icheck_line-icon,
        .iradio_line.checked.disabled .icheck_line-icon {
            background-position: -45px 0;
        }

/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
    .icheckbox_line .icheck_line-icon,
    .iradio_line .icheck_line-icon {
        background-image: url(/line@2x.png);
        -webkit-background-size: 60px 13px;
        background-size: 60px 13px;
    }
}

/* red */
.icheckbox_line-red,
.iradio_line-red {
    position: relative;
    display: block;
    margin: 0;
    padding: 5px 15px 5px 38px;
    font-size: 13px;
    line-height: 17px;
    color: #fff;
    background: #e56c69;
    border: none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    cursor: pointer;
}
    .icheckbox_line-red .icheck_line-icon,
    .iradio_line-red .icheck_line-icon {
        position: absolute;
        top: 50%;
        left: 13px;
        width: 13px;
        height: 11px;
        margin: -5px 0 0 0;
        padding: 0;
        overflow: hidden;
        background: url(/assets/line-d7ccde7af74f615b65593b58fc8226283d979d9a7ba0878a6eaac892bb3aff2c.png) no-repeat;
        border: none;
    }
    .icheckbox_line-red.hover,
    .icheckbox_line-red.checked.hover,
    .iradio_line-red.hover {
        background: #E98582;
    }
    .icheckbox_line-red.checked,
    .iradio_line-red.checked {
        background: #e56c69;
    }
        .icheckbox_line-red.checked .icheck_line-icon,
        .iradio_line-red.checked .icheck_line-icon {
            background-position: -15px 0;
        }
    .icheckbox_line-red.disabled,
    .iradio_line-red.disabled {
        background: #F7D3D2;
        cursor: default;
    }
        .icheckbox_line-red.disabled .icheck_line-icon,
        .iradio_line-red.disabled .icheck_line-icon {
            background-position: -30px 0;
        }
    .icheckbox_line-red.checked.disabled,
    .iradio_line-red.checked.disabled {
        background: #F7D3D2;
    }
        .icheckbox_line-red.checked.disabled .icheck_line-icon,
        .iradio_line-red.checked.disabled .icheck_line-icon {
            background-position: -45px 0;
        }

/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
    .icheckbox_line-red .icheck_line-icon,
    .iradio_line-red .icheck_line-icon {
        background-image: url(/line@2x.png);
        -webkit-background-size: 60px 13px;
        background-size: 60px 13px;
    }
}

/* green */
.icheckbox_line-green,
.iradio_line-green {
    position: relative;
    display: block;
    margin: 0;
    padding: 5px 15px 5px 38px;
    font-size: 13px;
    line-height: 17px;
    color: #fff;
    background: #1b7e5a;
    border: none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    cursor: pointer;
}
    .icheckbox_line-green .icheck_line-icon,
    .iradio_line-green .icheck_line-icon {
        position: absolute;
        top: 50%;
        left: 13px;
        width: 13px;
        height: 11px;
        margin: -5px 0 0 0;
        padding: 0;
        overflow: hidden;
        background: url(/assets/line-d7ccde7af74f615b65593b58fc8226283d979d9a7ba0878a6eaac892bb3aff2c.png) no-repeat;
        border: none;
    }
    .icheckbox_line-green.hover,
    .icheckbox_line-green.checked.hover,
    .iradio_line-green.hover {
        background: #24AA7A;
    }
    .icheckbox_line-green.checked,
    .iradio_line-green.checked {
        background: #1b7e5a;
    }
        .icheckbox_line-green.checked .icheck_line-icon,
        .iradio_line-green.checked .icheck_line-icon {
            background-position: -15px 0;
        }
    .icheckbox_line-green.disabled,
    .iradio_line-green.disabled {
        background: #89E6C4;
        cursor: default;
    }
        .icheckbox_line-green.disabled .icheck_line-icon,
        .iradio_line-green.disabled .icheck_line-icon {
            background-position: -30px 0;
        }
    .icheckbox_line-green.checked.disabled,
    .iradio_line-green.checked.disabled {
        background: #89E6C4;
    }
        .icheckbox_line-green.checked.disabled .icheck_line-icon,
        .iradio_line-green.checked.disabled .icheck_line-icon {
            background-position: -45px 0;
        }

/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
    .icheckbox_line-green .icheck_line-icon,
    .iradio_line-green .icheck_line-icon {
        background-image: url(/line@2x.png);
        -webkit-background-size: 60px 13px;
        background-size: 60px 13px;
    }
}

/* blue */
.icheckbox_line-blue,
.iradio_line-blue {
    position: relative;
    display: block;
    margin: 0;
    padding: 6px 15px 6px 38px;
    font-size: 14px;
    line-height: 17px;
    color: #fff;
    background: #ccc;
    border: none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    cursor: pointer;
}
    .icheckbox_line-blue .icheck_line-icon,
    .iradio_line-blue .icheck_line-icon {
        position: absolute;
        top: 50%;
        left: 13px;
        width: 13px;
        height: 11px;
        margin: -5px 0 0 0;
        padding: 0;
        overflow: hidden;
        background: url(/assets/line-d7ccde7af74f615b65593b58fc8226283d979d9a7ba0878a6eaac892bb3aff2c.png) no-repeat;
        border: none;
    }
    .icheckbox_line-blue.hover,
    .icheckbox_line-blue.checked.hover,
    .iradio_line-blue.hover {
        background: #4684bd;
    }
    .icheckbox_line-blue.checked,
    .iradio_line-blue.checked {
        background: #3a6f9f;
    }
        .icheckbox_line-blue.checked .icheck_line-icon,
        .iradio_line-blue.checked .icheck_line-icon {
            background-position: -15px 0;
        }
    .icheckbox_line-blue.disabled,
    .iradio_line-blue.disabled {
        background: #ADD7F0;
        cursor: default;
    }
        .icheckbox_line-blue.disabled .icheck_line-icon,
        .iradio_line-blue.disabled .icheck_line-icon {
            background-position: -30px 0;
        }
    .icheckbox_line-blue.checked.disabled,
    .iradio_line-blue.checked.disabled {
        background: #ADD7F0;
    }
        .icheckbox_line-blue.checked.disabled .icheck_line-icon,
        .iradio_line-blue.checked.disabled .icheck_line-icon {
            background-position: -45px 0;
        }

/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
    .icheckbox_line-blue .icheck_line-icon,
    .iradio_line-blue .icheck_line-icon {
        background-image: url(/line@2x.png);
        -webkit-background-size: 60px 13px;
        background-size: 60px 13px;
    }
}

/* aero */
.icheckbox_line-aero,
.iradio_line-aero {
    position: relative;
    display: block;
    margin: 0;
    padding: 5px 15px 5px 38px;
    font-size: 13px;
    line-height: 17px;
    color: #fff;
    background: #9cc2cb;
    border: none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    cursor: pointer;
}
    .icheckbox_line-aero .icheck_line-icon,
    .iradio_line-aero .icheck_line-icon {
        position: absolute;
        top: 50%;
        left: 13px;
        width: 13px;
        height: 11px;
        margin: -5px 0 0 0;
        padding: 0;
        overflow: hidden;
        background: url(/assets/line-d7ccde7af74f615b65593b58fc8226283d979d9a7ba0878a6eaac892bb3aff2c.png) no-repeat;
        border: none;
    }
    .icheckbox_line-aero.hover,
    .icheckbox_line-aero.checked.hover,
    .iradio_line-aero.hover {
        background: #B5D1D8;
    }
    .icheckbox_line-aero.checked,
    .iradio_line-aero.checked {
        background: #9cc2cb;
    }
        .icheckbox_line-aero.checked .icheck_line-icon,
        .iradio_line-aero.checked .icheck_line-icon {
            background-position: -15px 0;
        }
    .icheckbox_line-aero.disabled,
    .iradio_line-aero.disabled {
        background: #D2E4E8;
        cursor: default;
    }
        .icheckbox_line-aero.disabled .icheck_line-icon,
        .iradio_line-aero.disabled .icheck_line-icon {
            background-position: -30px 0;
        }
    .icheckbox_line-aero.checked.disabled,
    .iradio_line-aero.checked.disabled {
        background: #D2E4E8;
    }
        .icheckbox_line-aero.checked.disabled .icheck_line-icon,
        .iradio_line-aero.checked.disabled .icheck_line-icon {
            background-position: -45px 0;
        }

/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
    .icheckbox_line-aero .icheck_line-icon,
    .iradio_line-aero .icheck_line-icon {
        background-image: url(/line@2x.png);
        -webkit-background-size: 60px 13px;
        background-size: 60px 13px;
    }
}

/* grey */
.icheckbox_line-grey,
.iradio_line-grey {
    position: relative;
    display: block;
    margin: 0;
    padding: 5px 15px 5px 38px;
    font-size: 13px;
    line-height: 17px;
    color: #fff;
    background: #73716e;
    border: none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    cursor: pointer;
}
    .icheckbox_line-grey .icheck_line-icon,
    .iradio_line-grey .icheck_line-icon {
        position: absolute;
        top: 50%;
        left: 13px;
        width: 13px;
        height: 11px;
        margin: -5px 0 0 0;
        padding: 0;
        overflow: hidden;
        background: url(/assets/line-d7ccde7af74f615b65593b58fc8226283d979d9a7ba0878a6eaac892bb3aff2c.png) no-repeat;
        border: none;
    }
    .icheckbox_line-grey.hover,
    .icheckbox_line-grey.checked.hover,
    .iradio_line-grey.hover {
        background: #8B8986;
    }
    .icheckbox_line-grey.checked,
    .iradio_line-grey.checked {
        background: #73716e;
    }
        .icheckbox_line-grey.checked .icheck_line-icon,
        .iradio_line-grey.checked .icheck_line-icon {
            background-position: -15px 0;
        }
    .icheckbox_line-grey.disabled,
    .iradio_line-grey.disabled {
        background: #D5D4D3;
        cursor: default;
    }
        .icheckbox_line-grey.disabled .icheck_line-icon,
        .iradio_line-grey.disabled .icheck_line-icon {
            background-position: -30px 0;
        }
    .icheckbox_line-grey.checked.disabled,
    .iradio_line-grey.checked.disabled {
        background: #D5D4D3;
    }
        .icheckbox_line-grey.checked.disabled .icheck_line-icon,
        .iradio_line-grey.checked.disabled .icheck_line-icon {
            background-position: -45px 0;
        }

/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
    .icheckbox_line-grey .icheck_line-icon,
    .iradio_line-grey .icheck_line-icon {
        background-image: url(/line@2x.png);
        -webkit-background-size: 60px 13px;
        background-size: 60px 13px;
    }
}

/* orange */
.icheckbox_line-orange,
.iradio_line-orange {
    position: relative;
    display: block;
    margin: 0;
    padding: 5px 15px 5px 38px;
    font-size: 13px;
    line-height: 17px;
    color: #fff;
    background: #f70;
    border: none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    cursor: pointer;
}
    .icheckbox_line-orange .icheck_line-icon,
    .iradio_line-orange .icheck_line-icon {
        position: absolute;
        top: 50%;
        left: 13px;
        width: 13px;
        height: 11px;
        margin: -5px 0 0 0;
        padding: 0;
        overflow: hidden;
        background: url(/assets/line-d7ccde7af74f615b65593b58fc8226283d979d9a7ba0878a6eaac892bb3aff2c.png) no-repeat;
        border: none;
    }
    .icheckbox_line-orange.hover,
    .icheckbox_line-orange.checked.hover,
    .iradio_line-orange.hover {
        background: #FF9233;
    }
    .icheckbox_line-orange.checked,
    .iradio_line-orange.checked {
        background: #f70;
    }
        .icheckbox_line-orange.checked .icheck_line-icon,
        .iradio_line-orange.checked .icheck_line-icon {
            background-position: -15px 0;
        }
    .icheckbox_line-orange.disabled,
    .iradio_line-orange.disabled {
        background: #FFD6B3;
        cursor: default;
    }
        .icheckbox_line-orange.disabled .icheck_line-icon,
        .iradio_line-orange.disabled .icheck_line-icon {
            background-position: -30px 0;
        }
    .icheckbox_line-orange.checked.disabled,
    .iradio_line-orange.checked.disabled {
        background: #FFD6B3;
    }
        .icheckbox_line-orange.checked.disabled .icheck_line-icon,
        .iradio_line-orange.checked.disabled .icheck_line-icon {
            background-position: -45px 0;
        }

/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
    .icheckbox_line-orange .icheck_line-icon,
    .iradio_line-orange .icheck_line-icon {
        background-image: url(/line@2x.png);
        -webkit-background-size: 60px 13px;
        background-size: 60px 13px;
    }
}

/* yellow */
.icheckbox_line-yellow,
.iradio_line-yellow {
    position: relative;
    display: block;
    margin: 0;
    padding: 5px 15px 5px 38px;
    font-size: 13px;
    line-height: 17px;
    color: #fff;
    background: #FFC414;
    border: none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    cursor: pointer;
}
    .icheckbox_line-yellow .icheck_line-icon,
    .iradio_line-yellow .icheck_line-icon {
        position: absolute;
        top: 50%;
        left: 13px;
        width: 13px;
        height: 11px;
        margin: -5px 0 0 0;
        padding: 0;
        overflow: hidden;
        background: url(/assets/line-d7ccde7af74f615b65593b58fc8226283d979d9a7ba0878a6eaac892bb3aff2c.png) no-repeat;
        border: none;
    }
    .icheckbox_line-yellow.hover,
    .icheckbox_line-yellow.checked.hover,
    .iradio_line-yellow.hover {
        background: #FFD34F;
    }
    .icheckbox_line-yellow.checked,
    .iradio_line-yellow.checked {
        background: #FFC414;
    }
        .icheckbox_line-yellow.checked .icheck_line-icon,
        .iradio_line-yellow.checked .icheck_line-icon {
            background-position: -15px 0;
        }
    .icheckbox_line-yellow.disabled,
    .iradio_line-yellow.disabled {
        background: #FFE495;
        cursor: default;
    }
        .icheckbox_line-yellow.disabled .icheck_line-icon,
        .iradio_line-yellow.disabled .icheck_line-icon {
            background-position: -30px 0;
        }
    .icheckbox_line-yellow.checked.disabled,
    .iradio_line-yellow.checked.disabled {
        background: #FFE495;
    }
        .icheckbox_line-yellow.checked.disabled .icheck_line-icon,
        .iradio_line-yellow.checked.disabled .icheck_line-icon {
            background-position: -45px 0;
        }

/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
    .icheckbox_line-yellow .icheck_line-icon,
    .iradio_line-yellow .icheck_line-icon {
        background-image: url(/line@2x.png);
        -webkit-background-size: 60px 13px;
        background-size: 60px 13px;
    }
}

/* pink */
.icheckbox_line-pink,
.iradio_line-pink {
    position: relative;
    display: block;
    margin: 0;
    padding: 5px 15px 5px 38px;
    font-size: 13px;
    line-height: 17px;
    color: #fff;
    background: #a77a94;
    border: none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    cursor: pointer;
}
    .icheckbox_line-pink .icheck_line-icon,
    .iradio_line-pink .icheck_line-icon {
        position: absolute;
        top: 50%;
        left: 13px;
        width: 13px;
        height: 11px;
        margin: -5px 0 0 0;
        padding: 0;
        overflow: hidden;
        background: url(/assets/line-d7ccde7af74f615b65593b58fc8226283d979d9a7ba0878a6eaac892bb3aff2c.png) no-repeat;
        border: none;
    }
    .icheckbox_line-pink.hover,
    .icheckbox_line-pink.checked.hover,
    .iradio_line-pink.hover {
        background: #B995A9;
    }
    .icheckbox_line-pink.checked,
    .iradio_line-pink.checked {
        background: #a77a94;
    }
        .icheckbox_line-pink.checked .icheck_line-icon,
        .iradio_line-pink.checked .icheck_line-icon {
            background-position: -15px 0;
        }
    .icheckbox_line-pink.disabled,
    .iradio_line-pink.disabled {
        background: #E0D0DA;
        cursor: default;
    }
        .icheckbox_line-pink.disabled .icheck_line-icon,
        .iradio_line-pink.disabled .icheck_line-icon {
            background-position: -30px 0;
        }
    .icheckbox_line-pink.checked.disabled,
    .iradio_line-pink.checked.disabled {
        background: #E0D0DA;
    }
        .icheckbox_line-pink.checked.disabled .icheck_line-icon,
        .iradio_line-pink.checked.disabled .icheck_line-icon {
            background-position: -45px 0;
        }

/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
    .icheckbox_line-pink .icheck_line-icon,
    .iradio_line-pink .icheck_line-icon {
        background-image: url(/line@2x.png);
        -webkit-background-size: 60px 13px;
        background-size: 60px 13px;
    }
}

/* purple */
.icheckbox_line-purple,
.iradio_line-purple {
    position: relative;
    display: block;
    margin: 0;
    padding: 5px 15px 5px 38px;
    font-size: 13px;
    line-height: 17px;
    color: #fff;
    background: #6a5a8c;
    border: none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    cursor: pointer;
}
    .icheckbox_line-purple .icheck_line-icon,
    .iradio_line-purple .icheck_line-icon {
        position: absolute;
        top: 50%;
        left: 13px;
        width: 13px;
        height: 11px;
        margin: -5px 0 0 0;
        padding: 0;
        overflow: hidden;
        background: url(/assets/line-d7ccde7af74f615b65593b58fc8226283d979d9a7ba0878a6eaac892bb3aff2c.png) no-repeat;
        border: none;
    }
    .icheckbox_line-purple.hover,
    .icheckbox_line-purple.checked.hover,
    .iradio_line-purple.hover {
        background: #8677A7;
    }
    .icheckbox_line-purple.checked,
    .iradio_line-purple.checked {
        background: #6a5a8c;
    }
        .icheckbox_line-purple.checked .icheck_line-icon,
        .iradio_line-purple.checked .icheck_line-icon {
            background-position: -15px 0;
        }
    .icheckbox_line-purple.disabled,
    .iradio_line-purple.disabled {
        background: #D2CCDE;
        cursor: default;
    }
        .icheckbox_line-purple.disabled .icheck_line-icon,
        .iradio_line-purple.disabled .icheck_line-icon {
            background-position: -30px 0;
        }
    .icheckbox_line-purple.checked.disabled,
    .iradio_line-purple.checked.disabled {
        background: #D2CCDE;
    }
        .icheckbox_line-purple.checked.disabled .icheck_line-icon,
        .iradio_line-purple.checked.disabled .icheck_line-icon {
            background-position: -45px 0;
        }

/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
    .icheckbox_line-purple .icheck_line-icon,
    .iradio_line-purple .icheck_line-icon {
        background-image: url(/line@2x.png);
        -webkit-background-size: 60px 13px;
        background-size: 60px 13px;
    }
}
/* iCheck plugin Polaris skin
----------------------------------- */
.icheckbox_polaris,
.iradio_polaris {
  display: inline-block;
  *display: inline;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  width: 29px;
  height: 29px;
  background: url(/assets/polaris-2a81852d285838c9ad56a37b8f48a3d5f69a381607a6784f22b617e397631c93.png) no-repeat;
  border: none;
  cursor: pointer; }

.icheckbox_polaris {
  background-position: 0 0; }

.icheckbox_polaris.hover {
  background-position: -31px 0; }

.icheckbox_polaris.checked {
  background-position: -62px 0; }

.icheckbox_polaris.disabled {
  background-position: -93px 0;
  cursor: default; }

.icheckbox_polaris.checked.disabled {
  background-position: -124px 0; }

.iradio_polaris {
  background-position: -155px 0; }

.iradio_polaris.hover {
  background-position: -186px 0; }

.iradio_polaris.checked {
  background-position: -217px 0; }

.iradio_polaris.disabled {
  background-position: -248px 0;
  cursor: default; }

.iradio_polaris.checked.disabled {
  background-position: -279px 0; }

/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
  .icheckbox_polaris,
  .iradio_polaris {
    background-image: url(/assets/polaris@2x-cec5883b35a5e66c46eae1517b1cd92e618664c20b5d217a2839ac9236200eaa.png);
    -webkit-background-size: 310px 31px;
    background-size: 310px 31px; } }
.toast-title {
    font-weight: bold
}

.toast-message {
    -ms-word-wrap: break-word;
    word-wrap: break-word
}

.toast-message a, .toast-message label {
    color: #fff
}

.toast-message a:hover {
    color: #ccc;
    text-decoration: none
}

.toast-close-button {
    position: relative;
    right: -0.3em;
    top: -0.3em;
    float: right;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    -webkit-text-shadow: 0 1px 0 #fff;
    text-shadow: 0 1px 0 #fff;
    opacity: .8;
    -ms-filter: alpha(opacity=80);
    filter: alpha(opacity=80)
}

.toast-close-button:hover, .toast-close-button:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: .4;
    -ms-filter: alpha(opacity=40);
    filter: alpha(opacity=40)
}

button.toast-close-button {
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none
}

.toast-top-full-width {
    top: 0;
    right: 0;
    width: 100%
}

.toast-bottom-full-width {
    bottom: 0;
    right: 0;
    width: 100%
}

.toast-top-left {
    top: 12px;
    left: 12px
}

.toast-top-right {
    top: 12px;
    right: 12px
}

.toast-bottom-right {
    right: 12px;
    bottom: 12px
}

.toast-bottom-left {
    bottom: 12px;
    left: 12px
}

#toast-container {
    position: fixed;
    z-index: 999999
}

#toast-container * {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

#toast-container > div {
    margin: 0 0 6px;
    padding: 15px 15px 15px 50px;
    width: 300px;
    -moz-border-radius: 3px 3px 3px 3px;
    -webkit-border-radius: 3px 3px 3px 3px;
    border-radius: 3px 3px 3px 3px;
    background-position: 15px center;
    background-repeat: no-repeat;
    -moz-box-shadow: 0 0 12px #999;
    -webkit-box-shadow: 0 0 12px #999;
    box-shadow: 0 0 12px #999;
    color: #fff;
    opacity: .8;
    -ms-filter: alpha(opacity=80);
    filter: alpha(opacity=80)
}

#toast-container > :hover {
    -moz-box-shadow: 0 0 12px #000;
    -webkit-box-shadow: 0 0 12px #000;
    box-shadow: 0 0 12px #000;
    opacity: 1;
    -ms-filter: alpha(opacity=100);
    filter: alpha(opacity=100);
    cursor: pointer
}

#toast-container > .toast-info {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=") !important
}

#toast-container > .toast-error {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=") !important
}

#toast-container > .toast-success {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==") !important
}

#toast-container > .toast-warning {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=") !important
}

#toast-container.toast-top-full-width > div, #toast-container.toast-bottom-full-width > div {
    width: 96%;
    margin: auto
}

.toast {
    background-color: #030303
}

.toast-success {
    background-color: #51a351
}

.toast-error {
    background-color: #bd362f
}

.toast-info {
    background-color: #2f96b4
}

.toast-warning {
    background-color: #f89406
}

@media all and (max-width: 240px) {
    #toast-container > div {
        padding: 8px 8px 8px 50px;
        width: 11em
    }

    #toast-container .toast-close-button {
        right: -0.2em;
        top: -0.2em
    }
}

@media all and (min-width: 241px) and (max-width: 480px) {
    #toast-container > div {
        padding: 8px 8px 8px 50px;
        width: 18em
    }

    #toast-container .toast-close-button {
        right: -0.2em;
        top: -0.2em
    }
}

@media all and (min-width: 481px) and (max-width: 768px) {
    #toast-container > div {
        padding: 15px 15px 15px 50px;
        width: 25em
    }
}
div.pp_default .pp_top,
div.pp_default .pp_top .pp_middle,
div.pp_default .pp_top .pp_left,
div.pp_default .pp_top .pp_right,
div.pp_default .pp_bottom,
div.pp_default .pp_bottom .pp_left,
div.pp_default .pp_bottom .pp_middle,
div.pp_default .pp_bottom .pp_right {
  height: 13px; }

div.pp_default .pp_top .pp_left {
  background: url(/assets/prettyPhoto/default/sprite-4f9ed7924bd31d0567a45b5207ca1d79aa6274411f4a170e03fc5ed84b5f78a9.png) -78px -93px no-repeat; }

div.pp_default .pp_top .pp_middle {
  background: url(/assets/prettyPhoto/default/sprite_x-ce88e82e43f011e7f9499b0bee7a68b77002b19143101571fc60b74b62bd95a3.png) top left repeat-x; }

div.pp_default .pp_top .pp_right {
  background: url(/assets/prettyPhoto/default/sprite-4f9ed7924bd31d0567a45b5207ca1d79aa6274411f4a170e03fc5ed84b5f78a9.png) -112px -93px no-repeat; }

div.pp_default .pp_content .ppt {
  color: #f8f8f8; }

div.pp_default .pp_content_container .pp_left {
  background: url(/assets/prettyPhoto/default/sprite_y-eab6cc43b7e92d7bdef4d1b5651341bdfe1328a911edf507919846dc5166b143.png) -7px 0 repeat-y;
  padding-left: 13px; }

div.pp_default .pp_content_container .pp_right {
  background: url(/assets/prettyPhoto/default/sprite_y-eab6cc43b7e92d7bdef4d1b5651341bdfe1328a911edf507919846dc5166b143.png) top right repeat-y;
  padding-right: 13px; }

div.pp_default .pp_next:hover {
  background: url(/assets/prettyPhoto/default/sprite_next-4c272ca790756ede0945d0693e72748e83d013543e782b003c7bd94dffe5da73.png) center right no-repeat;
  cursor: pointer; }

div.pp_default .pp_previous:hover {
  background: url(/assets/prettyPhoto/default/sprite_prev-9fa7b1de83fe355a309eafec344a8d4e8693acf252cbc4f2a5e35e641e7c0b2f.png) center left no-repeat;
  cursor: pointer; }

div.pp_default .pp_expand {
  background: url(/assets/prettyPhoto/default/sprite-4f9ed7924bd31d0567a45b5207ca1d79aa6274411f4a170e03fc5ed84b5f78a9.png) 0 -29px no-repeat;
  cursor: pointer;
  width: 28px;
  height: 28px; }

div.pp_default .pp_expand:hover {
  background: url(/assets/prettyPhoto/default/sprite-4f9ed7924bd31d0567a45b5207ca1d79aa6274411f4a170e03fc5ed84b5f78a9.png) 0 -56px no-repeat;
  cursor: pointer; }

div.pp_default .pp_contract {
  background: url(/assets/prettyPhoto/default/sprite-4f9ed7924bd31d0567a45b5207ca1d79aa6274411f4a170e03fc5ed84b5f78a9.png) 0 -84px no-repeat;
  cursor: pointer;
  width: 28px;
  height: 28px; }

div.pp_default .pp_contract:hover {
  background: url(/assets/prettyPhoto/default/sprite-4f9ed7924bd31d0567a45b5207ca1d79aa6274411f4a170e03fc5ed84b5f78a9.png) 0 -113px no-repeat;
  cursor: pointer; }

div.pp_default .pp_close {
  width: 30px;
  height: 30px;
  background: url(/assets/prettyPhoto/default/sprite-4f9ed7924bd31d0567a45b5207ca1d79aa6274411f4a170e03fc5ed84b5f78a9.png) 2px 1px no-repeat;
  cursor: pointer; }

div.pp_default .pp_gallery ul li a {
  background: url(/assets/prettyPhoto/default/default_thumb-362ec351208cab4291bdc0a9f87b7ef04e23b6cac9ee86b7d62a9f1e0a622e81.png) center center #f8f8f8;
  border: 1px solid #aaa; }

div.pp_default .pp_social {
  margin-top: 7px; }

div.pp_default .pp_gallery a.pp_arrow_previous,
div.pp_default .pp_gallery a.pp_arrow_next {
  position: static;
  left: auto; }

div.pp_default .pp_nav .pp_play,
div.pp_default .pp_nav .pp_pause {
  background: url(/assets/prettyPhoto/default/sprite-4f9ed7924bd31d0567a45b5207ca1d79aa6274411f4a170e03fc5ed84b5f78a9.png) -51px 1px no-repeat;
  height: 30px;
  width: 30px; }

div.pp_default .pp_nav .pp_pause {
  background-position: -51px -29px; }

div.pp_default a.pp_arrow_previous,
div.pp_default a.pp_arrow_next {
  background: url(/assets/prettyPhoto/default/sprite-4f9ed7924bd31d0567a45b5207ca1d79aa6274411f4a170e03fc5ed84b5f78a9.png) -31px -3px no-repeat;
  height: 20px;
  width: 20px;
  margin: 4px 0 0; }

div.pp_default a.pp_arrow_next {
  left: 52px;
  background-position: -82px -3px; }

div.pp_default .pp_content_container .pp_details {
  margin-top: 5px; }

div.pp_default .pp_nav {
  clear: none;
  height: 30px;
  width: 110px;
  position: relative; }

div.pp_default .pp_nav .currentTextHolder {
  font-family: Georgia;
  font-style: italic;
  color: #999;
  font-size: 11px;
  left: 75px;
  line-height: 25px;
  position: absolute;
  top: 2px;
  margin: 0;
  padding: 0 0 0 10px; }

div.pp_default .pp_close:hover,
div.pp_default .pp_nav .pp_play:hover,
div.pp_default .pp_nav .pp_pause:hover,
div.pp_default .pp_arrow_next:hover,
div.pp_default .pp_arrow_previous:hover {
  opacity: 0.7; }

div.pp_default .pp_description {
  font-size: 11px;
  font-weight: 700;
  line-height: 14px;
  margin: 5px 50px 5px 0; }

div.pp_default .pp_bottom .pp_left {
  background: url(/assets/prettyPhoto/default/sprite-4f9ed7924bd31d0567a45b5207ca1d79aa6274411f4a170e03fc5ed84b5f78a9.png) -78px -127px no-repeat; }

div.pp_default .pp_bottom .pp_middle {
  background: url(/assets/prettyPhoto/default/sprite_x-ce88e82e43f011e7f9499b0bee7a68b77002b19143101571fc60b74b62bd95a3.png) bottom left repeat-x; }

div.pp_default .pp_bottom .pp_right {
  background: url(/assets/prettyPhoto/default/sprite-4f9ed7924bd31d0567a45b5207ca1d79aa6274411f4a170e03fc5ed84b5f78a9.png) -112px -127px no-repeat; }

div.pp_default .pp_loaderIcon {
  background: url(/assets/prettyPhoto/default/loader-bb6b78e945387e5460961c0555744fc075cfbece8b023d5e09d202123ba9ede7.gif) center center no-repeat; }

div.light_rounded .pp_top .pp_left {
  background: url(/assets/prettyPhoto/light_rounded/sprite-c92e3b376a0c6dfc862d438f784a22c6efd0e93c14e712e80e81ad68bf273d16.png) -88px -53px no-repeat; }

div.light_rounded .pp_top .pp_right {
  background: url(/assets/prettyPhoto/light_rounded/sprite-c92e3b376a0c6dfc862d438f784a22c6efd0e93c14e712e80e81ad68bf273d16.png) -110px -53px no-repeat; }

div.light_rounded .pp_next:hover {
  background: url(/assets/prettyPhoto/light_rounded/btnNext-901f4bff5405d640807fc71f880e7f9766e2778141d171b20f969c27c3549037.png) center right no-repeat;
  cursor: pointer; }

div.light_rounded .pp_previous:hover {
  background: url(/assets/prettyPhoto/light_rounded/btnPrevious-575b0204fa9aed6d6df2134b56f5704f54c52075c0a6b5fbd4d4e1bc98fdab37.png) center left no-repeat;
  cursor: pointer; }

div.light_rounded .pp_expand {
  background: url(/assets/prettyPhoto/light_rounded/sprite-c92e3b376a0c6dfc862d438f784a22c6efd0e93c14e712e80e81ad68bf273d16.png) -31px -26px no-repeat;
  cursor: pointer; }

div.light_rounded .pp_expand:hover {
  background: url(/assets/prettyPhoto/light_rounded/sprite-c92e3b376a0c6dfc862d438f784a22c6efd0e93c14e712e80e81ad68bf273d16.png) -31px -47px no-repeat;
  cursor: pointer; }

div.light_rounded .pp_contract {
  background: url(/assets/prettyPhoto/light_rounded/sprite-c92e3b376a0c6dfc862d438f784a22c6efd0e93c14e712e80e81ad68bf273d16.png) 0 -26px no-repeat;
  cursor: pointer; }

div.light_rounded .pp_contract:hover {
  background: url(/assets/prettyPhoto/light_rounded/sprite-c92e3b376a0c6dfc862d438f784a22c6efd0e93c14e712e80e81ad68bf273d16.png) 0 -47px no-repeat;
  cursor: pointer; }

div.light_rounded .pp_close {
  width: 75px;
  height: 22px;
  background: url(/assets/prettyPhoto/light_rounded/sprite-c92e3b376a0c6dfc862d438f784a22c6efd0e93c14e712e80e81ad68bf273d16.png) -1px -1px no-repeat;
  cursor: pointer; }

div.light_rounded .pp_nav .pp_play {
  background: url(/assets/prettyPhoto/light_rounded/sprite-c92e3b376a0c6dfc862d438f784a22c6efd0e93c14e712e80e81ad68bf273d16.png) -1px -100px no-repeat;
  height: 15px;
  width: 14px; }

div.light_rounded .pp_nav .pp_pause {
  background: url(/assets/prettyPhoto/light_rounded/sprite-c92e3b376a0c6dfc862d438f784a22c6efd0e93c14e712e80e81ad68bf273d16.png) -24px -100px no-repeat;
  height: 15px;
  width: 14px; }

div.light_rounded .pp_arrow_previous {
  background: url(/assets/prettyPhoto/light_rounded/sprite-c92e3b376a0c6dfc862d438f784a22c6efd0e93c14e712e80e81ad68bf273d16.png) 0 -71px no-repeat; }

div.light_rounded .pp_arrow_next {
  background: url(/assets/prettyPhoto/light_rounded/sprite-c92e3b376a0c6dfc862d438f784a22c6efd0e93c14e712e80e81ad68bf273d16.png) -22px -71px no-repeat; }

div.light_rounded .pp_bottom .pp_left {
  background: url(/assets/prettyPhoto/light_rounded/sprite-c92e3b376a0c6dfc862d438f784a22c6efd0e93c14e712e80e81ad68bf273d16.png) -88px -80px no-repeat; }

div.light_rounded .pp_bottom .pp_right {
  background: url(/assets/prettyPhoto/light_rounded/sprite-c92e3b376a0c6dfc862d438f784a22c6efd0e93c14e712e80e81ad68bf273d16.png) -110px -80px no-repeat; }

div.dark_rounded .pp_top .pp_left {
  background: url(/assets/prettyPhoto/dark_rounded/sprite-a2ff500861e4e5d2adc3f68b659c7f8a9988c2a225e0c8daedd874419cc17042.png) -88px -53px no-repeat; }

div.dark_rounded .pp_top .pp_right {
  background: url(/assets/prettyPhoto/dark_rounded/sprite-a2ff500861e4e5d2adc3f68b659c7f8a9988c2a225e0c8daedd874419cc17042.png) -110px -53px no-repeat; }

div.dark_rounded .pp_content_container .pp_left {
  background: url(/assets/prettyPhoto/dark_rounded/contentPattern-226131321b301d65e0428175d5abb6d636b450aba1643868385fdf2f45112750.png) top left repeat-y; }

div.dark_rounded .pp_content_container .pp_right {
  background: url(/assets/prettyPhoto/dark_rounded/contentPattern-226131321b301d65e0428175d5abb6d636b450aba1643868385fdf2f45112750.png) top right repeat-y; }

div.dark_rounded .pp_next:hover {
  background: url(/assets/prettyPhoto/dark_rounded/btnNext-901f4bff5405d640807fc71f880e7f9766e2778141d171b20f969c27c3549037.png) center right no-repeat;
  cursor: pointer; }

div.dark_rounded .pp_previous:hover {
  background: url(/assets/prettyPhoto/dark_rounded/btnPrevious-575b0204fa9aed6d6df2134b56f5704f54c52075c0a6b5fbd4d4e1bc98fdab37.png) center left no-repeat;
  cursor: pointer; }

div.dark_rounded .pp_expand {
  background: url(/assets/prettyPhoto/dark_rounded/sprite-a2ff500861e4e5d2adc3f68b659c7f8a9988c2a225e0c8daedd874419cc17042.png) -31px -26px no-repeat;
  cursor: pointer; }

div.dark_rounded .pp_expand:hover {
  background: url(/assets/prettyPhoto/dark_rounded/sprite-a2ff500861e4e5d2adc3f68b659c7f8a9988c2a225e0c8daedd874419cc17042.png) -31px -47px no-repeat;
  cursor: pointer; }

div.dark_rounded .pp_contract {
  background: url(/assets/prettyPhoto/dark_rounded/sprite-a2ff500861e4e5d2adc3f68b659c7f8a9988c2a225e0c8daedd874419cc17042.png) 0 -26px no-repeat;
  cursor: pointer; }

div.dark_rounded .pp_contract:hover {
  background: url(/assets/prettyPhoto/dark_rounded/sprite-a2ff500861e4e5d2adc3f68b659c7f8a9988c2a225e0c8daedd874419cc17042.png) 0 -47px no-repeat;
  cursor: pointer; }

div.dark_rounded .pp_close {
  width: 75px;
  height: 22px;
  background: url(/assets/prettyPhoto/dark_rounded/sprite-a2ff500861e4e5d2adc3f68b659c7f8a9988c2a225e0c8daedd874419cc17042.png) -1px -1px no-repeat;
  cursor: pointer; }

div.dark_rounded .pp_description {
  margin-right: 85px;
  color: #fff; }

div.dark_rounded .pp_nav .pp_play {
  background: url(/assets/prettyPhoto/dark_rounded/sprite-a2ff500861e4e5d2adc3f68b659c7f8a9988c2a225e0c8daedd874419cc17042.png) -1px -100px no-repeat;
  height: 15px;
  width: 14px; }

div.dark_rounded .pp_nav .pp_pause {
  background: url(/assets/prettyPhoto/dark_rounded/sprite-a2ff500861e4e5d2adc3f68b659c7f8a9988c2a225e0c8daedd874419cc17042.png) -24px -100px no-repeat;
  height: 15px;
  width: 14px; }

div.dark_rounded .pp_arrow_previous {
  background: url(/assets/prettyPhoto/dark_rounded/sprite-a2ff500861e4e5d2adc3f68b659c7f8a9988c2a225e0c8daedd874419cc17042.png) 0 -71px no-repeat; }

div.dark_rounded .pp_arrow_next {
  background: url(/assets/prettyPhoto/dark_rounded/sprite-a2ff500861e4e5d2adc3f68b659c7f8a9988c2a225e0c8daedd874419cc17042.png) -22px -71px no-repeat; }

div.dark_rounded .pp_bottom .pp_left {
  background: url(/assets/prettyPhoto/dark_rounded/sprite-a2ff500861e4e5d2adc3f68b659c7f8a9988c2a225e0c8daedd874419cc17042.png) -88px -80px no-repeat; }

div.dark_rounded .pp_bottom .pp_right {
  background: url(/assets/prettyPhoto/dark_rounded/sprite-a2ff500861e4e5d2adc3f68b659c7f8a9988c2a225e0c8daedd874419cc17042.png) -110px -80px no-repeat; }

div.dark_rounded .pp_loaderIcon {
  background: url(/assets/prettyPhoto/dark_rounded/loader-1f797fcdd9ebe80ca4fd50748e9435d583977c3dd9269a7cca97a15047cd3033.gif) center center no-repeat; }

div.dark_square .pp_left,
div.dark_square .pp_middle,
div.dark_square .pp_right,
div.dark_square .pp_content {
  background: #000; }

div.dark_square .pp_description {
  color: #fff;
  margin: 0 85px 0 0; }

div.dark_square .pp_loaderIcon {
  background: url(/assets/prettyPhoto/dark_square/loader-1f797fcdd9ebe80ca4fd50748e9435d583977c3dd9269a7cca97a15047cd3033.gif) center center no-repeat; }

div.dark_square .pp_expand {
  background: url(/assets/prettyPhoto/dark_square/sprite-ef8a13582492d52e0b1908ccfe60b6bfedf397e3492f414b382269f08d466558.png) -31px -26px no-repeat;
  cursor: pointer; }

div.dark_square .pp_expand:hover {
  background: url(/assets/prettyPhoto/dark_square/sprite-ef8a13582492d52e0b1908ccfe60b6bfedf397e3492f414b382269f08d466558.png) -31px -47px no-repeat;
  cursor: pointer; }

div.dark_square .pp_contract {
  background: url(/assets/prettyPhoto/dark_square/sprite-ef8a13582492d52e0b1908ccfe60b6bfedf397e3492f414b382269f08d466558.png) 0 -26px no-repeat;
  cursor: pointer; }

div.dark_square .pp_contract:hover {
  background: url(/assets/prettyPhoto/dark_square/sprite-ef8a13582492d52e0b1908ccfe60b6bfedf397e3492f414b382269f08d466558.png) 0 -47px no-repeat;
  cursor: pointer; }

div.dark_square .pp_close {
  width: 75px;
  height: 22px;
  background: url(/assets/prettyPhoto/dark_square/sprite-ef8a13582492d52e0b1908ccfe60b6bfedf397e3492f414b382269f08d466558.png) -1px -1px no-repeat;
  cursor: pointer; }

div.dark_square .pp_nav {
  clear: none; }

div.dark_square .pp_nav .pp_play {
  background: url(/assets/prettyPhoto/dark_square/sprite-ef8a13582492d52e0b1908ccfe60b6bfedf397e3492f414b382269f08d466558.png) -1px -100px no-repeat;
  height: 15px;
  width: 14px; }

div.dark_square .pp_nav .pp_pause {
  background: url(/assets/prettyPhoto/dark_square/sprite-ef8a13582492d52e0b1908ccfe60b6bfedf397e3492f414b382269f08d466558.png) -24px -100px no-repeat;
  height: 15px;
  width: 14px; }

div.dark_square .pp_arrow_previous {
  background: url(/assets/prettyPhoto/dark_square/sprite-ef8a13582492d52e0b1908ccfe60b6bfedf397e3492f414b382269f08d466558.png) 0 -71px no-repeat; }

div.dark_square .pp_arrow_next {
  background: url(/assets/prettyPhoto/dark_square/sprite-ef8a13582492d52e0b1908ccfe60b6bfedf397e3492f414b382269f08d466558.png) -22px -71px no-repeat; }

div.dark_square .pp_next:hover {
  background: url(/assets/prettyPhoto/dark_square/btnNext-901f4bff5405d640807fc71f880e7f9766e2778141d171b20f969c27c3549037.png) center right no-repeat;
  cursor: pointer; }

div.dark_square .pp_previous:hover {
  background: url(/assets/prettyPhoto/dark_square/btnPrevious-575b0204fa9aed6d6df2134b56f5704f54c52075c0a6b5fbd4d4e1bc98fdab37.png) center left no-repeat;
  cursor: pointer; }

div.light_square .pp_expand {
  background: url(/assets/prettyPhoto/light_square/sprite-ef8a13582492d52e0b1908ccfe60b6bfedf397e3492f414b382269f08d466558.png) -31px -26px no-repeat;
  cursor: pointer; }

div.light_square .pp_expand:hover {
  background: url(/assets/prettyPhoto/light_square/sprite-ef8a13582492d52e0b1908ccfe60b6bfedf397e3492f414b382269f08d466558.png) -31px -47px no-repeat;
  cursor: pointer; }

div.light_square .pp_contract {
  background: url(/assets/prettyPhoto/light_square/sprite-ef8a13582492d52e0b1908ccfe60b6bfedf397e3492f414b382269f08d466558.png) 0 -26px no-repeat;
  cursor: pointer; }

div.light_square .pp_contract:hover {
  background: url(/assets/prettyPhoto/light_square/sprite-ef8a13582492d52e0b1908ccfe60b6bfedf397e3492f414b382269f08d466558.png) 0 -47px no-repeat;
  cursor: pointer; }

div.light_square .pp_close {
  width: 75px;
  height: 22px;
  background: url(/assets/prettyPhoto/light_square/sprite-ef8a13582492d52e0b1908ccfe60b6bfedf397e3492f414b382269f08d466558.png) -1px -1px no-repeat;
  cursor: pointer; }

div.light_square .pp_nav .pp_play {
  background: url(/assets/prettyPhoto/light_square/sprite-ef8a13582492d52e0b1908ccfe60b6bfedf397e3492f414b382269f08d466558.png) -1px -100px no-repeat;
  height: 15px;
  width: 14px; }

div.light_square .pp_nav .pp_pause {
  background: url(/assets/prettyPhoto/light_square/sprite-ef8a13582492d52e0b1908ccfe60b6bfedf397e3492f414b382269f08d466558.png) -24px -100px no-repeat;
  height: 15px;
  width: 14px; }

div.light_square .pp_arrow_previous {
  background: url(/assets/prettyPhoto/light_square/sprite-ef8a13582492d52e0b1908ccfe60b6bfedf397e3492f414b382269f08d466558.png) 0 -71px no-repeat; }

div.light_square .pp_arrow_next {
  background: url(/assets/prettyPhoto/light_square/sprite-ef8a13582492d52e0b1908ccfe60b6bfedf397e3492f414b382269f08d466558.png) -22px -71px no-repeat; }

div.light_square .pp_next:hover {
  background: url(/assets/prettyPhoto/light_square/btnNext-901f4bff5405d640807fc71f880e7f9766e2778141d171b20f969c27c3549037.png) center right no-repeat;
  cursor: pointer; }

div.light_square .pp_previous:hover {
  background: url(/assets/prettyPhoto/light_square/btnPrevious-575b0204fa9aed6d6df2134b56f5704f54c52075c0a6b5fbd4d4e1bc98fdab37.png) center left no-repeat;
  cursor: pointer; }

div.facebook .pp_top .pp_left {
  background: url(/assets/prettyPhoto/facebook/sprite-961b25e5459ac0fb77193a1c5face8e8a72cbd3ca4506cad0e7ef3007b54b4b9.png) -88px -53px no-repeat; }

div.facebook .pp_top .pp_middle {
  background: url(/assets/prettyPhoto/facebook/contentPatternTop-d98b547757c6f9a8a880a28d7c9cbd7f9989e996b8b2b02b4ce5550d9bccacc0.png) top left repeat-x; }

div.facebook .pp_top .pp_right {
  background: url(/assets/prettyPhoto/facebook/sprite-961b25e5459ac0fb77193a1c5face8e8a72cbd3ca4506cad0e7ef3007b54b4b9.png) -110px -53px no-repeat; }

div.facebook .pp_content_container .pp_left {
  background: url(/assets/prettyPhoto/facebook/contentPatternLeft-b4ca0e63b1d6530eb241566331fcb9f557d4204979e114f0851b575f4fc43b5f.png) top left repeat-y; }

div.facebook .pp_content_container .pp_right {
  background: url(/assets/prettyPhoto/facebook/contentPatternRight-da6bd26578338ed0b3f2c53bba3ead4b4c0b3390a9ae622b256a09f1043fa379.png) top right repeat-y; }

div.facebook .pp_expand {
  background: url(/assets/prettyPhoto/facebook/sprite-961b25e5459ac0fb77193a1c5face8e8a72cbd3ca4506cad0e7ef3007b54b4b9.png) -31px -26px no-repeat;
  cursor: pointer; }

div.facebook .pp_expand:hover {
  background: url(/assets/prettyPhoto/facebook/sprite-961b25e5459ac0fb77193a1c5face8e8a72cbd3ca4506cad0e7ef3007b54b4b9.png) -31px -47px no-repeat;
  cursor: pointer; }

div.facebook .pp_contract {
  background: url(/assets/prettyPhoto/facebook/sprite-961b25e5459ac0fb77193a1c5face8e8a72cbd3ca4506cad0e7ef3007b54b4b9.png) 0 -26px no-repeat;
  cursor: pointer; }

div.facebook .pp_contract:hover {
  background: url(/assets/prettyPhoto/facebook/sprite-961b25e5459ac0fb77193a1c5face8e8a72cbd3ca4506cad0e7ef3007b54b4b9.png) 0 -47px no-repeat;
  cursor: pointer; }

div.facebook .pp_close {
  width: 22px;
  height: 22px;
  background: url(/assets/prettyPhoto/facebook/sprite-961b25e5459ac0fb77193a1c5face8e8a72cbd3ca4506cad0e7ef3007b54b4b9.png) -1px -1px no-repeat;
  cursor: pointer; }

div.facebook .pp_description {
  margin: 0 37px 0 0; }

div.facebook .pp_loaderIcon {
  background: url(/assets/prettyPhoto/facebook/loader-b6a996f79f3771b5c72db192c32f1713bad7b6a5aa2b3fb10cb40a8028c30424.gif) center center no-repeat; }

div.facebook .pp_arrow_previous {
  background: url(/assets/prettyPhoto/facebook/sprite-961b25e5459ac0fb77193a1c5face8e8a72cbd3ca4506cad0e7ef3007b54b4b9.png) 0 -71px no-repeat;
  height: 22px;
  margin-top: 0;
  width: 22px; }

div.facebook .pp_arrow_previous.disabled {
  background-position: 0 -96px;
  cursor: default; }

div.facebook .pp_arrow_next {
  background: url(/assets/prettyPhoto/facebook/sprite-961b25e5459ac0fb77193a1c5face8e8a72cbd3ca4506cad0e7ef3007b54b4b9.png) -32px -71px no-repeat;
  height: 22px;
  margin-top: 0;
  width: 22px; }

div.facebook .pp_arrow_next.disabled {
  background-position: -32px -96px;
  cursor: default; }

div.facebook .pp_nav {
  margin-top: 0; }

div.facebook .pp_nav p {
  font-size: 15px;
  padding: 0 3px 0 4px; }

div.facebook .pp_nav .pp_play {
  background: url(/assets/prettyPhoto/facebook/sprite-961b25e5459ac0fb77193a1c5face8e8a72cbd3ca4506cad0e7ef3007b54b4b9.png) -1px -123px no-repeat;
  height: 22px;
  width: 22px; }

div.facebook .pp_nav .pp_pause {
  background: url(/assets/prettyPhoto/facebook/sprite-961b25e5459ac0fb77193a1c5face8e8a72cbd3ca4506cad0e7ef3007b54b4b9.png) -32px -123px no-repeat;
  height: 22px;
  width: 22px; }

div.facebook .pp_next:hover {
  background: url(/assets/prettyPhoto/facebook/btnNext-be60040a7c6539c5db055a24e9c64bbea0ff40fbdb0234ff9cb25ebb455ba68b.png) center right no-repeat;
  cursor: pointer; }

div.facebook .pp_previous:hover {
  background: url(/assets/prettyPhoto/facebook/btnPrevious-dfc0b707d5ebe90bea382d991e7cb093d9a4c07e0c08497be3666398774562e2.png) center left no-repeat;
  cursor: pointer; }

div.facebook .pp_bottom .pp_left {
  background: url(/assets/prettyPhoto/facebook/sprite-961b25e5459ac0fb77193a1c5face8e8a72cbd3ca4506cad0e7ef3007b54b4b9.png) -88px -80px no-repeat; }

div.facebook .pp_bottom .pp_middle {
  background: url(/assets/prettyPhoto/facebook/contentPatternBottom-16c0b43a4ab93ad6d5f564c6320ad5d6ce9265bfecdf50003fe59c5211cf4d24.png) top left repeat-x; }

div.facebook .pp_bottom .pp_right {
  background: url(/assets/prettyPhoto/facebook/sprite-961b25e5459ac0fb77193a1c5face8e8a72cbd3ca4506cad0e7ef3007b54b4b9.png) -110px -80px no-repeat; }

div.pp_pic_holder a:focus {
  outline: none; }

div.pp_overlay {
  background: #000;
  display: none;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 9500; }

div.pp_pic_holder {
  display: none;
  position: absolute;
  width: 100px;
  z-index: 10000; }

.pp_content {
  height: 40px;
  min-width: 40px; }

* html .pp_content {
  width: 40px; }

.pp_content_container {
  position: relative;
  text-align: left;
  width: 100%; }

.pp_content_container .pp_left {
  padding-left: 20px; }

.pp_content_container .pp_right {
  padding-right: 20px; }

.pp_content_container .pp_details {
  float: left;
  margin: 10px 0 2px; }

.pp_description {
  display: none;
  margin: 0; }

.pp_social {
  float: left;
  margin: 0; }

.pp_social .facebook {
  float: left;
  margin-left: 5px;
  width: 55px;
  overflow: hidden; }

.pp_social .twitter {
  float: left; }

.pp_details > span {
  position: absolute;
  left: 70%;
  margin-top: 7px; }

.pp_details > span > a#download-btn:hover,
.pp_details > span > a#download-btn:focus {
  color: #2a6496; }

.pp_nav {
  clear: right;
  float: left;
  margin: 3px 10px 0 0; }

.pp_nav p {
  float: left;
  white-space: nowrap;
  margin: 2px 4px; }

.pp_nav .pp_play,
.pp_nav .pp_pause {
  float: left;
  margin-right: 4px;
  text-indent: -10000px; }

a.pp_arrow_previous,
a.pp_arrow_next {
  display: block;
  float: left;
  height: 15px;
  margin-top: 3px;
  overflow: hidden;
  text-indent: -10000px;
  width: 14px; }

.pp_hoverContainer {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2000; }

.pp_gallery {
  display: none;
  left: 50%;
  margin-top: -50px;
  position: absolute;
  z-index: 10000; }

.pp_gallery div {
  float: left;
  overflow: hidden;
  position: relative; }

.pp_gallery ul {
  float: left;
  height: 35px;
  position: relative;
  white-space: nowrap;
  margin: 0 0 0 5px;
  padding: 0; }

.pp_gallery ul a {
  border: 1px rgba(0, 0, 0, 0.5) solid;
  display: block;
  float: left;
  height: 33px;
  overflow: hidden; }

.pp_gallery ul a img {
  border: 0; }

.pp_gallery li {
  display: block;
  float: left;
  margin: 0 5px 0 0;
  padding: 0; }

.pp_gallery li.default a {
  background: url(/assets/prettyPhoto/facebook/default_thumbnail-bfacc62b649b08df3634d6621c2951c896c691d063e29ef2d9c3d4ea69e55232.gif) 0 0 no-repeat;
  display: block;
  height: 33px;
  width: 50px; }

.pp_gallery .pp_arrow_previous,
.pp_gallery .pp_arrow_next {
  margin-top: 7px !important; }

a.pp_next {
  background: url(/assets/prettyPhoto/light_rounded/btnNext-901f4bff5405d640807fc71f880e7f9766e2778141d171b20f969c27c3549037.png) 10000px 10000px no-repeat;
  display: block;
  float: right;
  height: 100%;
  text-indent: -10000px;
  width: 49%; }

a.pp_previous {
  background: url(/assets/prettyPhoto/light_rounded/btnNext-901f4bff5405d640807fc71f880e7f9766e2778141d171b20f969c27c3549037.png) 10000px 10000px no-repeat;
  display: block;
  float: left;
  height: 100%;
  text-indent: -10000px;
  width: 49%; }

a.pp_expand,
a.pp_contract {
  cursor: pointer;
  display: none;
  height: 20px;
  position: absolute;
  right: 30px;
  text-indent: -10000px;
  top: 10px;
  width: 20px;
  z-index: 20000; }

a.pp_close {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  line-height: 22px;
  text-indent: -10000px; }

.pp_loaderIcon {
  display: block;
  height: 24px;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 24px;
  margin: -12px 0 0 -12px; }

#pp_full_res {
  line-height: 1 !important; }

#pp_full_res .pp_inline {
  text-align: left; }

#pp_full_res .pp_inline p {
  margin: 0 0 15px; }

div.ppt {
  color: #fff;
  display: none;
  font-size: 17px;
  z-index: 9999;
  margin: 0 0 5px 15px; }

div.pp_default .pp_content,
div.light_rounded .pp_content {
  background-color: #fff; }

div.pp_default #pp_full_res .pp_inline,
div.light_rounded .pp_content .ppt,
div.light_rounded #pp_full_res .pp_inline,
div.light_square .pp_content .ppt,
div.light_square #pp_full_res .pp_inline,
div.facebook .pp_content .ppt,
div.facebook #pp_full_res .pp_inline {
  color: #000; }

div.pp_default .pp_gallery ul li a:hover,
div.pp_default .pp_gallery ul li.selected a,
.pp_gallery ul a:hover,
.pp_gallery li.selected a {
  border-color: #fff; }

div.pp_default .pp_details,
div.light_rounded .pp_details,
div.dark_rounded .pp_details,
div.dark_square .pp_details,
div.light_square .pp_details,
div.facebook .pp_details {
  position: relative; }

div.light_rounded .pp_top .pp_middle,
div.light_rounded .pp_content_container .pp_left,
div.light_rounded .pp_content_container .pp_right,
div.light_rounded .pp_bottom .pp_middle,
div.light_square .pp_left,
div.light_square .pp_middle,
div.light_square .pp_right,
div.light_square .pp_content,
div.facebook .pp_content {
  background: #fff; }

div.light_rounded .pp_description,
div.light_square .pp_description {
  margin-right: 85px; }

div.light_rounded .pp_gallery a.pp_arrow_previous,
div.light_rounded .pp_gallery a.pp_arrow_next,
div.dark_rounded .pp_gallery a.pp_arrow_previous,
div.dark_rounded .pp_gallery a.pp_arrow_next,
div.dark_square .pp_gallery a.pp_arrow_previous,
div.dark_square .pp_gallery a.pp_arrow_next,
div.light_square .pp_gallery a.pp_arrow_previous,
div.light_square .pp_gallery a.pp_arrow_next {
  margin-top: 12px !important; }

div.light_rounded .pp_arrow_previous.disabled,
div.dark_rounded .pp_arrow_previous.disabled,
div.dark_square .pp_arrow_previous.disabled,
div.light_square .pp_arrow_previous.disabled {
  background-position: 0 -87px;
  cursor: default; }

div.light_rounded .pp_arrow_next.disabled,
div.dark_rounded .pp_arrow_next.disabled,
div.dark_square .pp_arrow_next.disabled,
div.light_square .pp_arrow_next.disabled {
  background-position: -22px -87px;
  cursor: default; }

div.light_rounded .pp_loaderIcon,
div.light_square .pp_loaderIcon {
  background: url(/assets/prettyPhoto/light_rounded/loader-b6a996f79f3771b5c72db192c32f1713bad7b6a5aa2b3fb10cb40a8028c30424.gif) center center no-repeat; }

div.dark_rounded .pp_top .pp_middle,
div.dark_rounded .pp_content,
div.dark_rounded .pp_bottom .pp_middle {
  background: url(/assets/prettyPhoto/dark_rounded/contentPattern-226131321b301d65e0428175d5abb6d636b450aba1643868385fdf2f45112750.png) top left repeat; }

div.dark_rounded .currentTextHolder,
div.dark_square .currentTextHolder {
  color: #c4c4c4; }

div.dark_rounded #pp_full_res .pp_inline,
div.dark_square #pp_full_res .pp_inline {
  color: #fff; }

.pp_top,
.pp_bottom {
  height: 20px;
  position: relative; }

* html .pp_top,
* html .pp_bottom {
  padding: 0 20px; }

.pp_top .pp_left,
.pp_bottom .pp_left {
  height: 20px;
  left: 0;
  position: absolute;
  width: 20px; }

.pp_top .pp_middle,
.pp_bottom .pp_middle {
  height: 20px;
  left: 20px;
  position: absolute;
  right: 20px; }

* html .pp_top .pp_middle,
* html .pp_bottom .pp_middle {
  left: 0;
  position: static; }

.pp_top .pp_right,
.pp_bottom .pp_right {
  height: 20px;
  left: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px; }

.pp_fade,
.pp_gallery li.default a img {
  display: none; }
.br-theme-bars-movie .br-widget {
  height: 10px;
  white-space: nowrap;
}
.br-theme-bars-movie .br-widget a {
  display: block;
  width: 60px;
  height: 8px;
  float: left;
  background-color: #bbcefb;
  margin: 1px;
}
.br-theme-bars-movie .br-widget a.br-active,
.br-theme-bars-movie .br-widget a.br-selected {
  background-color: #BF4346;
}
.br-theme-bars-movie .br-widget .br-current-rating {
  clear: both;
  width: 240px;
  text-align: center;
  font-weight: 600;
  display: block;
  padding: .5em 0;
  color: #BF4346;
  font-weight: 400;
}
.br-theme-bars-movie .br-readonly a.br-active,
.br-theme-bars-movie .br-readonly a.br-selected {
  background-color: #BF4346;
}
.br-theme-bars-movie .br-readonly .br-current-rating {
  color: #BF4346;
}
@media print {
  .br-theme-bars-movie .br-widget a {
    border: 1px solid #b3b3b3;
    background: white;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .br-theme-bars-movie .br-widget a.br-active,
  .br-theme-bars-movie .br-widget a.br-selected {
    border: 1px solid black;
    background: white;
  }
  .br-theme-bars-movie .br-widget .br-current-rating {
    color: black;
  }
}
body.stop-scrolling {
  height: 100%;
  overflow: hidden; }

.sweet-overlay {
  background-color: black;
  /* IE8 */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  /* IE8 */
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
  z-index: 10000; }

.sweet-alert {
  background-color: white;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  width: 478px;
  padding: 17px;
  border-radius: 5px;
  text-align: center;
  position: fixed;
  left: 50%;
  top: 50%;
  margin-left: -256px;
  margin-top: -200px;
  overflow: hidden;
  display: none;
  z-index: 99999; }
  @media all and (max-width: 540px) {
    .sweet-alert {
      width: auto;
      margin-left: 0;
      margin-right: 0;
      left: 15px;
      right: 15px; } }
  .sweet-alert h2 {
    color: #575757;
    font-size: 30px;
    text-align: center;
    font-weight: 600;
    text-transform: none;
    position: relative;
    margin: 25px 0;
    padding: 0;
    line-height: 40px;
    display: block; }
  .sweet-alert p {
    color: #797979;
    font-size: 16px;
    text-align: center;
    font-weight: 300;
    position: relative;
    text-align: inherit;
    float: none;
    margin: 0;
    padding: 0;
    line-height: normal; }
  .sweet-alert fieldset {
    border: none;
    position: relative; }
  .sweet-alert .sa-error-container {
    background-color: #f1f1f1;
    margin-left: -17px;
    margin-right: -17px;
    overflow: hidden;
    padding: 0 10px;
    max-height: 0;
    webkit-transition: padding 0.15s, max-height 0.15s;
    transition: padding 0.15s, max-height 0.15s; }
    .sweet-alert .sa-error-container.show {
      padding: 10px 0;
      max-height: 100px;
      webkit-transition: padding 0.2s, max-height 0.2s;
      transition: padding 0.25s, max-height 0.25s; }
    .sweet-alert .sa-error-container .icon {
      display: inline-block;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background-color: #ea7d7d;
      color: white;
      line-height: 24px;
      text-align: center;
      margin-right: 3px; }
    .sweet-alert .sa-error-container p {
      display: inline-block; }
  .sweet-alert .sa-input-error {
    position: absolute;
    top: 29px;
    right: 26px;
    width: 20px;
    height: 20px;
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: all 0.1s;
    transition: all 0.1s; }
    .sweet-alert .sa-input-error::before, .sweet-alert .sa-input-error::after {
      content: "";
      width: 20px;
      height: 6px;
      background-color: #f06e57;
      border-radius: 3px;
      position: absolute;
      top: 50%;
      margin-top: -4px;
      left: 50%;
      margin-left: -9px; }
    .sweet-alert .sa-input-error::before {
      -webkit-transform: rotate(-45deg);
      transform: rotate(-45deg); }
    .sweet-alert .sa-input-error::after {
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg); }
    .sweet-alert .sa-input-error.show {
      opacity: 1;
      -webkit-transform: scale(1);
      transform: scale(1); }
  .sweet-alert input {
    width: 100%;
    box-sizing: border-box;
    border-radius: 3px;
    border: 1px solid #d7d7d7;
    height: 43px;
    margin-top: 10px;
    margin-bottom: 17px;
    font-size: 18px;
    box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.06);
    padding: 0 12px;
    display: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s; }
    .sweet-alert input:focus {
      outline: none;
      box-shadow: 0px 0px 3px #c4e6f5;
      border: 1px solid #b4dbed; }
      .sweet-alert input:focus::-moz-placeholder {
        transition: opacity 0.3s 0.03s ease;
        opacity: 0.5; }
      .sweet-alert input:focus:-ms-input-placeholder {
        transition: opacity 0.3s 0.03s ease;
        opacity: 0.5; }
      .sweet-alert input:focus::-webkit-input-placeholder {
        transition: opacity 0.3s 0.03s ease;
        opacity: 0.5; }
    .sweet-alert input::-moz-placeholder {
      color: #bdbdbd; }
    .sweet-alert input:-ms-input-placeholder {
      color: #bdbdbd; }
    .sweet-alert input::-webkit-input-placeholder {
      color: #bdbdbd; }
  .sweet-alert.show-input input {
    display: block; }
  .sweet-alert .sa-confirm-button-container {
    display: inline-block;
    position: relative; }
  .sweet-alert .la-ball-fall {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -27px;
    margin-top: 4px;
    opacity: 0;
    visibility: hidden; }
  .sweet-alert button {
    background-color: #8CD4F5;
    color: white;
    border: none;
    box-shadow: none;
    font-size: 17px;
    font-weight: 500;
    -webkit-border-radius: 4px;
    border-radius: 5px;
    padding: 10px 32px;
    margin: 26px 5px 0 5px;
    cursor: pointer; }
    .sweet-alert button:focus {
      outline: none;
      box-shadow: 0 0 2px rgba(128, 179, 235, 0.5), inset 0 0 0 1px rgba(0, 0, 0, 0.05); }
    .sweet-alert button:hover {
      background-color: #7ecff4; }
    .sweet-alert button:active {
      background-color: #5dc2f1; }
    .sweet-alert button.cancel {
      background-color: #C1C1C1; }
      .sweet-alert button.cancel:hover {
        background-color: #696969; }
      .sweet-alert button.cancel:active {
        background-color: #a8a8a8; }
      .sweet-alert button.cancel:focus {
        box-shadow: rgba(197, 205, 211, 0.8) 0px 0px 2px, rgba(0, 0, 0, 0.0470588) 0px 0px 0px 1px inset !important; }
    .sweet-alert button[disabled] {
      opacity: .6;
      cursor: default; }
    .sweet-alert button.confirm[disabled] {
      color: transparent; }
      .sweet-alert button.confirm[disabled] ~ .la-ball-fall {
        opacity: 1;
        visibility: visible;
        transition-delay: 0s; }
    .sweet-alert button::-moz-focus-inner {
      border: 0; }
  .sweet-alert[data-has-cancel-button=false] button {
    box-shadow: none !important; }
  .sweet-alert[data-has-confirm-button=false][data-has-cancel-button=false] {
    padding-bottom: 40px; }
  .sweet-alert .sa-icon {
    width: 80px;
    height: 80px;
    border: 4px solid gray;
    -webkit-border-radius: 40px;
    border-radius: 40px;
    border-radius: 50%;
    margin: 20px auto;
    padding: 0;
    position: relative;
    box-sizing: content-box; }
    .sweet-alert .sa-icon.sa-error {
      border-color: #F27474; }
      .sweet-alert .sa-icon.sa-error .sa-x-mark {
        position: relative;
        display: block; }
      .sweet-alert .sa-icon.sa-error .sa-line {
        position: absolute;
        height: 5px;
        width: 47px;
        background-color: #F27474;
        display: block;
        top: 37px;
        border-radius: 2px; }
        .sweet-alert .sa-icon.sa-error .sa-line.sa-left {
          -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
          left: 17px; }
        .sweet-alert .sa-icon.sa-error .sa-line.sa-right {
          -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
          right: 16px; }
    .sweet-alert .sa-icon.sa-warning {
      border-color: #F8BB86; }
      .sweet-alert .sa-icon.sa-warning .sa-body {
        position: absolute;
        width: 5px;
        height: 47px;
        left: 50%;
        top: 10px;
        -webkit-border-radius: 2px;
        border-radius: 2px;
        margin-left: -2px;
        background-color: #F8BB86; }
      .sweet-alert .sa-icon.sa-warning .sa-dot {
        position: absolute;
        width: 7px;
        height: 7px;
        -webkit-border-radius: 50%;
        border-radius: 50%;
        margin-left: -3px;
        left: 50%;
        bottom: 10px;
        background-color: #F8BB86; }
    .sweet-alert .sa-icon.sa-info {
      border-color: #C9DAE1; }
      .sweet-alert .sa-icon.sa-info::before {
        content: "";
        position: absolute;
        width: 5px;
        height: 29px;
        left: 50%;
        bottom: 17px;
        border-radius: 2px;
        margin-left: -2px;
        background-color: #C9DAE1; }
      .sweet-alert .sa-icon.sa-info::after {
        content: "";
        position: absolute;
        width: 7px;
        height: 7px;
        border-radius: 50%;
        margin-left: -3px;
        top: 19px;
        background-color: #C9DAE1; }
    .sweet-alert .sa-icon.sa-success {
      border-color: #A5DC86; }
      .sweet-alert .sa-icon.sa-success::before, .sweet-alert .sa-icon.sa-success::after {
        content: '';
        -webkit-border-radius: 40px;
        border-radius: 40px;
        border-radius: 50%;
        position: absolute;
        width: 60px;
        height: 120px;
        background: white;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg); }
      .sweet-alert .sa-icon.sa-success::before {
        -webkit-border-radius: 120px 0 0 120px;
        border-radius: 120px 0 0 120px;
        top: -7px;
        left: -33px;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        -webkit-transform-origin: 60px 60px;
        transform-origin: 60px 60px; }
      .sweet-alert .sa-icon.sa-success::after {
        -webkit-border-radius: 0 120px 120px 0;
        border-radius: 0 120px 120px 0;
        top: -11px;
        left: 30px;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        -webkit-transform-origin: 0px 60px;
        transform-origin: 0px 60px; }
      .sweet-alert .sa-icon.sa-success .sa-placeholder {
        width: 80px;
        height: 80px;
        border: 4px solid rgba(165, 220, 134, 0.2);
        -webkit-border-radius: 40px;
        border-radius: 40px;
        border-radius: 50%;
        box-sizing: content-box;
        position: absolute;
        left: -4px;
        top: -4px;
        z-index: 2; }
      .sweet-alert .sa-icon.sa-success .sa-fix {
        width: 5px;
        height: 90px;
        background-color: white;
        position: absolute;
        left: 28px;
        top: 8px;
        z-index: 1;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg); }
      .sweet-alert .sa-icon.sa-success .sa-line {
        height: 5px;
        background-color: #A5DC86;
        display: block;
        border-radius: 2px;
        position: absolute;
        z-index: 2; }
        .sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
          width: 25px;
          left: 14px;
          top: 46px;
          -webkit-transform: rotate(45deg);
          transform: rotate(45deg); }
        .sweet-alert .sa-icon.sa-success .sa-line.sa-long {
          width: 47px;
          right: 8px;
          top: 38px;
          -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg); }
    .sweet-alert .sa-icon.sa-custom {
      background-size: contain;
      border-radius: 0;
      border: none;
      background-position: center center;
      background-repeat: no-repeat; }

/*
 * Animations
 */
@-webkit-keyframes showSweetAlert {
  0% {
    transform: scale(0.7);
    -webkit-transform: scale(0.7); }
  45% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05); }
  80% {
    transform: scale(0.95);
    -webkit-transform: scale(0.95); }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1); } }

@keyframes showSweetAlert {
  0% {
    transform: scale(0.7);
    -webkit-transform: scale(0.7); }
  45% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05); }
  80% {
    transform: scale(0.95);
    -webkit-transform: scale(0.95); }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1); } }

@-webkit-keyframes hideSweetAlert {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1); }
  100% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5); } }

@keyframes hideSweetAlert {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1); }
  100% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5); } }

@-webkit-keyframes slideFromTop {
  0% {
    top: 0%; }
  100% {
    top: 50%; } }

@keyframes slideFromTop {
  0% {
    top: 0%; }
  100% {
    top: 50%; } }

@-webkit-keyframes slideToTop {
  0% {
    top: 50%; }
  100% {
    top: 0%; } }

@keyframes slideToTop {
  0% {
    top: 50%; }
  100% {
    top: 0%; } }

@-webkit-keyframes slideFromBottom {
  0% {
    top: 70%; }
  100% {
    top: 50%; } }

@keyframes slideFromBottom {
  0% {
    top: 70%; }
  100% {
    top: 50%; } }

@-webkit-keyframes slideToBottom {
  0% {
    top: 50%; }
  100% {
    top: 70%; } }

@keyframes slideToBottom {
  0% {
    top: 50%; }
  100% {
    top: 70%; } }

.showSweetAlert[data-animation=pop] {
  -webkit-animation: showSweetAlert 0.3s;
  animation: showSweetAlert 0.3s; }

.showSweetAlert[data-animation=none] {
  -webkit-animation: none;
  animation: none; }

.showSweetAlert[data-animation=slide-from-top] {
  -webkit-animation: slideFromTop 0.3s;
  animation: slideFromTop 0.3s; }

.showSweetAlert[data-animation=slide-from-bottom] {
  -webkit-animation: slideFromBottom 0.3s;
  animation: slideFromBottom 0.3s; }

.hideSweetAlert[data-animation=pop] {
  -webkit-animation: hideSweetAlert 0.2s;
  animation: hideSweetAlert 0.2s; }

.hideSweetAlert[data-animation=none] {
  -webkit-animation: none;
  animation: none; }

.hideSweetAlert[data-animation=slide-from-top] {
  -webkit-animation: slideToTop 0.4s;
  animation: slideToTop 0.4s; }

.hideSweetAlert[data-animation=slide-from-bottom] {
  -webkit-animation: slideToBottom 0.3s;
  animation: slideToBottom 0.3s; }

@-webkit-keyframes animateSuccessTip {
  0% {
    width: 0;
    left: 1px;
    top: 19px; }
  54% {
    width: 0;
    left: 1px;
    top: 19px; }
  70% {
    width: 50px;
    left: -8px;
    top: 37px; }
  84% {
    width: 17px;
    left: 21px;
    top: 48px; }
  100% {
    width: 25px;
    left: 14px;
    top: 45px; } }

@keyframes animateSuccessTip {
  0% {
    width: 0;
    left: 1px;
    top: 19px; }
  54% {
    width: 0;
    left: 1px;
    top: 19px; }
  70% {
    width: 50px;
    left: -8px;
    top: 37px; }
  84% {
    width: 17px;
    left: 21px;
    top: 48px; }
  100% {
    width: 25px;
    left: 14px;
    top: 45px; } }

@-webkit-keyframes animateSuccessLong {
  0% {
    width: 0;
    right: 46px;
    top: 54px; }
  65% {
    width: 0;
    right: 46px;
    top: 54px; }
  84% {
    width: 55px;
    right: 0px;
    top: 35px; }
  100% {
    width: 47px;
    right: 8px;
    top: 38px; } }

@keyframes animateSuccessLong {
  0% {
    width: 0;
    right: 46px;
    top: 54px; }
  65% {
    width: 0;
    right: 46px;
    top: 54px; }
  84% {
    width: 55px;
    right: 0px;
    top: 35px; }
  100% {
    width: 47px;
    right: 8px;
    top: 38px; } }

@-webkit-keyframes rotatePlaceholder {
  0% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg); }
  5% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg); }
  12% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg); }
  100% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg); } }

@keyframes rotatePlaceholder {
  0% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg); }
  5% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg); }
  12% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg); }
  100% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg); } }

.animateSuccessTip {
  -webkit-animation: animateSuccessTip 0.75s;
  animation: animateSuccessTip 0.75s; }

.animateSuccessLong {
  -webkit-animation: animateSuccessLong 0.75s;
  animation: animateSuccessLong 0.75s; }

.sa-icon.sa-success.animate::after {
  -webkit-animation: rotatePlaceholder 4.25s ease-in;
  animation: rotatePlaceholder 4.25s ease-in; }

@-webkit-keyframes animateErrorIcon {
  0% {
    transform: rotateX(100deg);
    -webkit-transform: rotateX(100deg);
    opacity: 0; }
  100% {
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    opacity: 1; } }

@keyframes animateErrorIcon {
  0% {
    transform: rotateX(100deg);
    -webkit-transform: rotateX(100deg);
    opacity: 0; }
  100% {
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    opacity: 1; } }

.animateErrorIcon {
  -webkit-animation: animateErrorIcon 0.5s;
  animation: animateErrorIcon 0.5s; }

@-webkit-keyframes animateXMark {
  0% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0; }
  50% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0; }
  80% {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    margin-top: -6px; }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    margin-top: 0;
    opacity: 1; } }

@keyframes animateXMark {
  0% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0; }
  50% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0; }
  80% {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    margin-top: -6px; }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    margin-top: 0;
    opacity: 1; } }

.animateXMark {
  -webkit-animation: animateXMark 0.5s;
  animation: animateXMark 0.5s; }

@-webkit-keyframes pulseWarning {
  0% {
    border-color: #F8D486; }
  100% {
    border-color: #F8BB86; } }

@keyframes pulseWarning {
  0% {
    border-color: #F8D486; }
  100% {
    border-color: #F8BB86; } }

.pulseWarning {
  -webkit-animation: pulseWarning 0.75s infinite alternate;
  animation: pulseWarning 0.75s infinite alternate; }

@-webkit-keyframes pulseWarningIns {
  0% {
    background-color: #F8D486; }
  100% {
    background-color: #F8BB86; } }

@keyframes pulseWarningIns {
  0% {
    background-color: #F8D486; }
  100% {
    background-color: #F8BB86; } }

.pulseWarningIns {
  -webkit-animation: pulseWarningIns 0.75s infinite alternate;
  animation: pulseWarningIns 0.75s infinite alternate; }

@-webkit-keyframes rotate-loading {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

@keyframes rotate-loading {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

/* Internet Explorer 9 has some special quirks that are fixed here */
/* The icons are not animated. */
/* This file is automatically merged into sweet-alert.min.js through Gulp */
/* Error icon */
.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
  -ms-transform: rotate(45deg) \9; }

.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
  -ms-transform: rotate(-45deg) \9; }

/* Success icon */
.sweet-alert .sa-icon.sa-success {
  border-color: transparent\9; }

.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
  -ms-transform: rotate(45deg) \9; }

.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
  -ms-transform: rotate(-45deg) \9; }

/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
.la-ball-fall,
.la-ball-fall > div {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.la-ball-fall {
  display: block;
  font-size: 0;
  color: #fff; }

.la-ball-fall.la-dark {
  color: #333; }

.la-ball-fall > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor; }

.la-ball-fall {
  width: 54px;
  height: 18px; }

.la-ball-fall > div {
  width: 10px;
  height: 10px;
  margin: 4px;
  border-radius: 100%;
  opacity: 0;
  -webkit-animation: ball-fall 1s ease-in-out infinite;
  -moz-animation: ball-fall 1s ease-in-out infinite;
  -o-animation: ball-fall 1s ease-in-out infinite;
  animation: ball-fall 1s ease-in-out infinite; }

.la-ball-fall > div:nth-child(1) {
  -webkit-animation-delay: -200ms;
  -moz-animation-delay: -200ms;
  -o-animation-delay: -200ms;
  animation-delay: -200ms; }

.la-ball-fall > div:nth-child(2) {
  -webkit-animation-delay: -100ms;
  -moz-animation-delay: -100ms;
  -o-animation-delay: -100ms;
  animation-delay: -100ms; }

.la-ball-fall > div:nth-child(3) {
  -webkit-animation-delay: 0ms;
  -moz-animation-delay: 0ms;
  -o-animation-delay: 0ms;
  animation-delay: 0ms; }

.la-ball-fall.la-sm {
  width: 26px;
  height: 8px; }

.la-ball-fall.la-sm > div {
  width: 4px;
  height: 4px;
  margin: 2px; }

.la-ball-fall.la-2x {
  width: 108px;
  height: 36px; }

.la-ball-fall.la-2x > div {
  width: 20px;
  height: 20px;
  margin: 8px; }

.la-ball-fall.la-3x {
  width: 162px;
  height: 54px; }

.la-ball-fall.la-3x > div {
  width: 30px;
  height: 30px;
  margin: 12px; }

/*
 * Animation
 */
@-webkit-keyframes ball-fall {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-145%);
    transform: translateY(-145%); }
  10% {
    opacity: .5; }
  20% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  80% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  90% {
    opacity: .5; }
  100% {
    opacity: 0;
    -webkit-transform: translateY(145%);
    transform: translateY(145%); } }

@-moz-keyframes ball-fall {
  0% {
    opacity: 0;
    -moz-transform: translateY(-145%);
    transform: translateY(-145%); }
  10% {
    opacity: .5; }
  20% {
    opacity: 1;
    -moz-transform: translateY(0);
    transform: translateY(0); }
  80% {
    opacity: 1;
    -moz-transform: translateY(0);
    transform: translateY(0); }
  90% {
    opacity: .5; }
  100% {
    opacity: 0;
    -moz-transform: translateY(145%);
    transform: translateY(145%); } }

@-o-keyframes ball-fall {
  0% {
    opacity: 0;
    -o-transform: translateY(-145%);
    transform: translateY(-145%); }
  10% {
    opacity: .5; }
  20% {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0); }
  80% {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0); }
  90% {
    opacity: .5; }
  100% {
    opacity: 0;
    -o-transform: translateY(145%);
    transform: translateY(145%); } }

@keyframes ball-fall {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-145%);
    -moz-transform: translateY(-145%);
    -o-transform: translateY(-145%);
    transform: translateY(-145%); }
  10% {
    opacity: .5; }
  20% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); }
  80% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); }
  90% {
    opacity: .5; }
  100% {
    opacity: 0;
    -webkit-transform: translateY(145%);
    -moz-transform: translateY(145%);
    -o-transform: translateY(145%);
    transform: translateY(145%); } }
/* This stylesheet generated by Transfonter (https://transfonter.org) on March 6, 2018 11:45 AM */
@font-face {
  font-family: 'Ubuntu';
  src: url(/assets/Ubuntu-LightItalic-ee3d028f98a7c6319dfcde655897809161a69794cc745a661796ce73a94c2138.eot);
  src: url(/assets/Ubuntu-LightItalic-ee3d028f98a7c6319dfcde655897809161a69794cc745a661796ce73a94c2138.eot?#iefix) format("embedded-opentype"), url(/assets/Ubuntu-LightItalic-90d5bf24188698a26b0d2b30205b52b3635bae23c32e5ac6d55257df9565c001.woff2) format("woff2"), url(/assets/Ubuntu-LightItalic-fc327f9261587e7755a15526912973ae0d98c753f97ef8468046e1b4e36a2298.woff) format("woff"), url(/assets/Ubuntu-LightItalic-962c6887d7c03cfd9afe18fee8c18e721f1aeef1581c4ed48d114de8446711ff.svg#Ubuntu-LightItalic) format("svg");
  font-weight: 300;
  font-style: italic; }

@font-face {
  font-family: 'Ubuntu';
  src: url(/assets/Ubuntu-Regular-f5cc92a1eec8da21989373032475fc45eaceb161ce20650850cdd44dfe579310.eot);
  src: url(/assets/Ubuntu-Regular-f5cc92a1eec8da21989373032475fc45eaceb161ce20650850cdd44dfe579310.eot?#iefix) format("embedded-opentype"), url(/assets/Ubuntu-Regular-43ae52daea56decafb45a6f6608028051ad8c94ccac6f5dbd445552e6d2af831.woff2) format("woff2"), url(/assets/Ubuntu-Regular-56920c58e104962926ab944038ae73efc4a328c40935b474aa22be92ef25a529.woff) format("woff"), url(/assets/Ubuntu-Regular-3a6d1321c8bfcb70cc43b1e92c9fabef1971da2c3fdd429c966c67abc67e3e54.svg#Ubuntu-Regular) format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Ubuntu';
  src: url(/assets/Ubuntu-Italic-c4fe0a322d3b3d512bb9af77175b94dbd9ce06bd015aff0d3aaaf5aad5cd4ff8.eot);
  src: url(/assets/Ubuntu-Italic-c4fe0a322d3b3d512bb9af77175b94dbd9ce06bd015aff0d3aaaf5aad5cd4ff8.eot?#iefix) format("embedded-opentype"), url(/assets/Ubuntu-Italic-3a4945c3cbed9f258466ab84950c027ba506be1452c1313eb7233f45d2bc00f2.woff2) format("woff2"), url(/assets/Ubuntu-Italic-43a133df01b8379422b6780699654f474e8b50beef9e3ec662fd323a9c0b0408.woff) format("woff"), url(/assets/Ubuntu-Italic-c0fe0e49ba78fff6ef2e9aae2cd031e658d4e0407eaa8fc8652dd513dba8a0b1.svg#Ubuntu-Italic) format("svg");
  font-weight: normal;
  font-style: italic; }

@font-face {
  font-family: 'Ubuntu';
  src: url(/assets/Ubuntu-MediumItalic-76e3a4588d0d14048c71ddae5bc35b1b8c4fadb97a71e3db1da3ae796698e345.eot);
  src: url(/assets/Ubuntu-MediumItalic-76e3a4588d0d14048c71ddae5bc35b1b8c4fadb97a71e3db1da3ae796698e345.eot?#iefix) format("embedded-opentype"), url(/assets/Ubuntu-MediumItalic-c6a6d238da3ea9a1a2a3e49ee82c9dcf91c78d5a07895692a1f734645d21c85e.woff2) format("woff2"), url(/assets/Ubuntu-MediumItalic-8c7c18d77639fdf13ac04230ccedd594ddebd57f5fd4baa80b8a5977e54c907a.woff) format("woff"), url(/assets/Ubuntu-MediumItalic-70638f0d548c33968bf43218192eb555aeaee0f15ff7c3c43082ad92e888e9b4.svg#Ubuntu-MediumItalic) format("svg");
  font-weight: 500;
  font-style: italic; }

@font-face {
  font-family: 'Ubuntu';
  src: url(/assets/Ubuntu-Medium-51e947955d84a97985a47ed7e8583b76d17c045ab21ec2445971ef212b8a0a16.eot);
  src: url(/assets/Ubuntu-Medium-51e947955d84a97985a47ed7e8583b76d17c045ab21ec2445971ef212b8a0a16.eot?#iefix) format("embedded-opentype"), url(/assets/Ubuntu-Medium-b836a1ef4c2fce89ef1a938abd1aff82837e45bbbe23a0609ad65302334aef72.woff2) format("woff2"), url(/assets/Ubuntu-Medium-a50a1ed90c763eca5455310b2afe0b71dd61d2d4e4f09fa357b17a7704f06987.woff) format("woff"), url(/assets/Ubuntu-Medium-5a1a13ce517ff667652ea825a38698e52cc65ec9974a514ef3fdb2b424063072.svg#Ubuntu-Medium) format("svg");
  font-weight: 500;
  font-style: normal; }

@font-face {
  font-family: 'Ubuntu';
  src: url(/assets/Ubuntu-Light-92eb87dec1b4d3ee19c6df5f3865a40900c4d46035b8cdaa6308a4cd51dc45ec.eot);
  src: url(/assets/Ubuntu-Light-92eb87dec1b4d3ee19c6df5f3865a40900c4d46035b8cdaa6308a4cd51dc45ec.eot?#iefix) format("embedded-opentype"), url(/assets/Ubuntu-Light-34b8d684da406f3067752082f18518ad445ef646e9a053d7929f6cdbc605538b.woff2) format("woff2"), url(/assets/Ubuntu-Light-259c1f45494f5967c9962feaea3a9a976f925fb67443ea404a38dca21b423561.woff) format("woff"), url(/assets/Ubuntu-Light-7cc7efdc70b879e50aa543911ed6818a33569a3f5cb06f1615527ccd48a46c94.svg#Ubuntu-Light) format("svg");
  font-weight: 300;
  font-style: normal; }

@font-face {
  font-family: 'Ubuntu';
  src: url(/assets/Ubuntu-BoldItalic-d1a214b006a0d8d15ac411236b3debd9c61d3f141c1b2fdd7b44e979cbb08f33.eot);
  src: url(/assets/Ubuntu-BoldItalic-d1a214b006a0d8d15ac411236b3debd9c61d3f141c1b2fdd7b44e979cbb08f33.eot?#iefix) format("embedded-opentype"), url(/assets/Ubuntu-BoldItalic-9aa0dcdd969c326825151a8a6ebd55d51dd7686f94bf829688aadfbbf71ba10c.woff2) format("woff2"), url(/assets/Ubuntu-BoldItalic-1365f0bf63418e9f3e5d43b12f42f34dd9fc3b864aeac8438d7c723b74c24675.woff) format("woff"), url(/assets/Ubuntu-BoldItalic-894d29b8963cad63cdf128f29ddfb7008edb8940e0b4166f9903539a54aa1cb2.svg#Ubuntu-BoldItalic) format("svg");
  font-weight: bold;
  font-style: italic; }

@font-face {
  font-family: 'Ubuntu';
  src: url(/assets/Ubuntu-Bold-13688e658230537ceba8c4da96dbb72c90c498ff6169ae1aad4aef2bd87954db.eot);
  src: url(/assets/Ubuntu-Bold-13688e658230537ceba8c4da96dbb72c90c498ff6169ae1aad4aef2bd87954db.eot?#iefix) format("embedded-opentype"), url(/assets/Ubuntu-Bold-95b2a01ce32326d733964a81d1a212f75905141b907458265d8ce6809707877f.woff2) format("woff2"), url(/assets/Ubuntu-Bold-8a162e5c9289a46ce64b59be477675d36dae27a5f1e32f13cf41d5364961b9d0.woff) format("woff"), url(/assets/Ubuntu-Bold-ce752af1cf0a62f1f85ac5436d40b56b3e8bc72571073ea3b0436689e0ab18a3.svg#Ubuntu-Bold) format("svg");
  font-weight: bold;
  font-style: normal; }
.m-r-3{
  margin-right: 3px;
}

a#logo.navbar-brand {
  background-color: #405058;
}
.bwizard-steps {
  display: inline-block;
  margin: 0;
  padding: 0;
  background: #fff;
}

.bwizard-steps .active {
  color: #fff;
  background: #007acc;
}

.bwizard-steps .active:after {
  border-left-color: #007acc;
}

div.dt-button-collection {
  position: absolute;
  top: 0;
  left: 0;
  width: 92%;
  margin-left: 0px;
  margin-top: 3px;
  padding: 8px 8px 4px 8px;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.4);
  background-color: white;
  overflow: hidden;
  z-index: 2002;
  border-radius: 5px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
  z-index: 2002;
  -webkit-column-gap: 8px;
  -moz-column-gap: 8px;
  -ms-column-gap: 8px;
  -o-column-gap: 8px;
  column-gap: 8px;
}

.bwizard-steps .active a {
  color: #fff;
  cursor: default;
}

.bwizard-steps .label {
  position: relative;
  top: -1px;
  margin: 0 5px 0 0;
  padding: 1px 5px 2px;
}

.bwizard-steps .active .label {
  background-color: #333;
}

.bwizard-steps li {
  display: inline-block;
  position: relative;
  margin-right: 5px;
  padding: 12px 17px 10px 30px;
  *display: inline;
  *padding-left: 17px;
  background: #efefef;
  line-height: 18px;
  list-style: none;
  zoom: 1;
}

.bwizard-steps li:first-child {
  padding-left: 12px;
  -moz-border-radius: 4px 0 0 4px;
  -webkit-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
}

.bwizard-steps li:first-child:before {
  border: none;
}

.bwizard-steps li:last-child {
  margin-right: 0;
  -moz-border-radius: 0 4px 4px 0;
  -webkit-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
}

.bwizard-steps li:last-child:after {
  border: none;
}

.bwizard-steps li:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  width: 0;
  border-bottom: 20px inset transparent;
  border-left: 20px solid #fff;
  border-top: 20px inset transparent;
  content: '';
}

.bwizard-steps li:after {
  position: absolute;
  right: -20px;
  top: 0;
  height: 0;
  width: 0;
  border-bottom: 20px inset transparent;
  border-left: 20px solid #efefef;
  border-top: 20px inset transparent;
  content: '';
  z-index: 2;
}

.bwizard-steps a {
  color: #333;
}

.bwizard-steps a:hover {
  text-decoration: none;
}

.bwizard-steps.clickable li:not(.active) {
  cursor: pointer;
}

.bwizard-steps.clickable li:hover:not(.active) {
  background: #ccc;
}

.bwizard-steps.clickable li:hover:not(.active):after {
  border-left-color: #ccc;
}

.bwizard-steps.clickable li:hover:not(.active) a {
  color: #08c;
}

@media (max-width: 480px) {
  a#logo.navbar-brand {
    background-color: #475861;
  }

  /* badges only on small screens */
  .bwizard-steps li:after,
  .bwizard-steps li:before {
    border: none;
  }

  .bwizard-steps li,
  .bwizard-steps li.active,
  .bwizard-steps li:first-child,
  .bwizard-steps li:last-child {
    margin-right: 0;
    padding: 0;
    background-color: transparent;
  }
}

.right-align-field {
  width: 200px;
  vertical-align: text-top;
  text-align: right;
  font-weight: bold;
  padding-right: 15px;
  line-height: 35px;
}

.event-form .control-label {
  font-size: 15px !important;
}
.panel-bottom-padding {
  margin-bottom: 5px !important;
}

.photo-container {
  display: inline-block;
}
.photo-gallery {
  margin-top: 10px;
  margin-right: 10px;
  padding: 10px;
  background-color: #f5f5f5;
  border-top: solid 1px #aaa;
  border-left: solid 1px #aaa;
  border-bottom: solid 1px #ccc;
  border-right: solid 1px #ccc;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  outline: 0;
  width: 429px;
}
.photo-gallery a.photo {
  display: inline-block;
  border: solid 3px #222;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  padding: 3px;
  margin: 3px;
}
.photo-gallery a.photo:hover {
  border: solid 3px #888;
}
.photo-gallery img {
  border: solid 1px #fafafa;
}

.beacon {
  position: absolute;
  background-color: #bf4346;
  height: 1em;
  width: 1em;
  border-radius: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
}
.beacon:before {
  position: absolute;
  content: '';
  height: 1em;
  width: 1em;
  left: 0;
  top: 0;
  background-color: transparent;
  border-radius: 50%;
  box-shadow: 0px 0px 2px 2px red;
  -webkit-animation: active 2s infinite linear;
  animation: active 2s infinite linear;
}

@-webkit-keyframes active {
  0% {
    -webkit-transform: scale(0.1);
    opacity: 1;
  }
  70% {
    -webkit-transform: scale(2.5);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes active {
  0% {
    transform: scale(0.1);
    opacity: 1;
  }
  70% {
    transform: scale(2.5);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.beacon_div {
  position: relative;
  top: 10px;
  left: -25px;
}

@-moz-document url-prefix() {
  .beacon_div {
    top: 10px;
    left: -25px;
  }
}

.fa_submitted:before {
  content: '\f045';
}

.fa_in_process:before {
  content: '\f021';
}

.fa_rejected:before {
  content: '\f05c';
}

.fa_completed:before {
  content: '\f05d';
}

.fa_open:before {
  content: '\f11d';
}

.dispatch_beacon_div {
  position: relative;
  text-align: center;
  top: -15px;
  left: 35px;
}

.form-control {
  border-color: #cbcbcb !important;
}

body {
  color: #000000 !important;
}

table.dataTable thead th,
table.dataTable thead td {
  border-bottom: 0px solid transparent !important;
}

.comments_chat, .alerts_standalone {
  position: fixed;
  top: 102px;
  right: -14px;
  display: none;
  z-index: 2254856676 !important;
}

.breadcrumb-style,
.event-code-style,
.status-style {
  color: #2a6496;
  font-weight: 400;
}

span.glyphicon.glyphicon-time {
  font-size: x-large;
}
span.glyphicon.glyphicon-calendar {
  font-size: x-large;
}
.eta-form-width {
  width: 80%;
  float: left;
}
.form-eta-field {
  width: 40%;
  float: left;
}
.form-crosswalk-field {
  width: 40%;
  float: left;
  padding-left: 5px;
  text-align: left;
}
.form-crosswalk-field .select2-container.form-control {
  border: 1px solid #cbcbcb !important;
}
.form-crosswalk-field .select2-container .select2-choice abbr {
  right: 10px;
}
.form-crosswalk-field .select2-container .select2-choice .select2-arrow {
  display: none;
}

.hot_event_buttons .btn-success:hover,
.hot_event_buttons .btn-success:focus {
  color: #47a447;
  background-color: #ffffff;
  text-decoration: underline;
  font-weight: bold;
}
.hot_event_buttons .btn-success:active,
.hot_event_buttons .btn-success.active {
  color: #ffffff;
  background-color: #47a447;
  border-color: #3e8f3e;
}
.hot_event_buttons .btn-info:hover,
.hot_event_buttons .btn-info:focus {
  color: #39b3d7;
  background-color: #ffffff;
  text-decoration: underline;
  font-weight: bold;
}
.hot_event_buttons .btn-info:active,
.hot_event_buttons .btn-info.active {
  color: #ffffff;
  background-color: #39b3d7;
  border-color: #28a4c9;
}
.hot_event_buttons .btn-yellow:hover,
.hot_event_buttons .btn-yellow:focus {
  color: #ef8325;
  background-color: #ffffff;
  text-decoration: underline;
  font-weight: bold;
}
.hot_event_buttons .btn-yellow:active,
.hot_event_buttons .btn-yellow.active {
  color: #ffffff;
  background-color: #ef8325;
  border-color: #e57411;
}

.event-badges {
  padding-left: 5px !important;
  padding-right: 0px !important;
  text-align: left !important;
}

@media screen and (min-width: 1900px) {
  .eta-form-width {
    width: 88%;
  }
  .event-badges {
    padding-left: 10px !important;
    padding-right: 10px !important;
    text-align: left !important;
  }
}

@media screen and (max-width: 1200px) {
  .eta-form-width {
    width: 70%;
  }
}

@media screen and (max-width: 840px) {
  .eta-form-width {
    width: 84%;
  }
}

#toast-container {
  top: 50px;
}

.pointer {
  cursor: pointer;
}

.browser-back {
  height: 35px;
  width: 36px;
  text-align: center;
  margin-bottom: 5px;
}
.browser-back i {
  font-size: 20px;
}
.head-tenant-name {
  color: white;
  padding-top: 7px;
  font-weight: 300;
  font-size: 24px;
  display: inline-block;
}
.head-tenant-name:hover {
  color: #ffffff;
  font-weight: 400;
}
.tenant-name {
  text-align: center;
}

/*For ellipsis in Events datatable*/
.shrink_text {
  text-overflow: ellipsis;
  overflow: hidden;
}
.wide {
  width: 18px;
}
.add_opacity {
  opacity: 0.65;
}
.arrival_badge {
  font-weight: bold;
  font-size: 12px;
  vertical-align: middle;
  border-radius: 5px !important;
  padding: 2.5px 6px;
}
/*For event rating pencil icon*/
.edit_rating_bar {
  color: #bf4346;
  text-align: right;
  top: -8px;
}
.slimScrollDiv {
  width: 100% !important;
}

/*Comments notes tab*/
.comments_notes_tab .active {
  /*border: 0.1em solid #bf4346 !important;*/
  border-bottom-color: #fff !important;
}

.comments_notes_tab li {
  /*border: 0.1em solid #aaa;*/
  /*border-bottom-color: #bf4346;*/
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.comments_notes_tab > li > a {
  border: none !important;
}

.comments_notes_tab_content {
  /*border-color: #bf4346 !important;*/
  border: none;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.event_history_tab li {
  background-color: #ececec;
}

.event_history_tab_content {
  padding: 10px 0px 0px 0px;
}
/*For out of network service button*/
.out_of_nw_service_btn {
  width: 40px;
  height: 37px;
}

.name_in_upcase {
  text-transform: uppercase;
}

@media screen and (max-width: 767px) {
  li.paginate_button.previous {
    display: none !important;
  }

  li.paginate_button.next {
    display: none !important;
  }

  li.paginate_button {
    display: inline !important;
  }
}

@media (min-width: 768px) {
  .modal-dialog:not(.auto-width) {
    width: 85%;
    margin: 30px auto;
  }
}

@media (max-width: 1366px) {
  .dynamic_datatable_width {
    width: 101% !important;
  }
}

/* custom-tabs */
.nav-tabs.custom-tabs {
  border-bottom: 1px solid #fff !important;
}
.custom-tabs > li.active > a {
  border: 1px solid #fff !important;
  border-bottom-color: transparent !important;
}
.custom-tabs > li:hover:not(.active) > a,
.custom-tabs > li:not(.active) > a:focus {
  border-bottom: none;
}
.custom-tabs-content {
  border: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.custom-tabs > li > a > h5 {
  margin-top: 0px;
  margin-bottom: 0px;
  font-weight: 400;
}
.custom-tabs > li:not(.active) > a > h5 > span.badge,
.custom-tabs > li.active > a > h5 > span.badge {
  background-color: rgba(27, 31, 35, 0.08) !important;
  color: #545454;
}
.custom-tabs > li.active > a > h5,
.custom-tabs > li > a > h5 > span.badge {
  font-weight: 600;
}
.custom-tabs > li:not(.active) > a[href='#hot'] > h5 {
  font-weight: bolder;
  color: #bf4346;
}
.custom-tabs > li:not(.active) > a > h5.info-badge,
.custom-tabs > li:not(.active) > a > h5.info-badge > span.badge,
.custom-tabs > li:not(.active) > a[href='#hot'] > h5 > span.badge {
  font-weight: 600;
  color: #bf4346;
}
.custom-tabs > li:not(.active) > a[href='#hot'] > h5.info-badge:before {
  position: absolute;
  content: '';
  height: 1em;
  width: 1em;
  left: 12px;
  top: 10px;
  background-color: transparent;
  border-radius: 50%;
  box-shadow: 0px 0px 2px 2px #bf4346;
  -webkit-animation: active 2s infinite linear;
  animation: active 2s infinite linear;
}

/* custom datatable processing loader */
div.dataTables_processing {
  position: absolute !important;
  opacity: 0.8;
  top: 35% !important;
  left: 50% !important;
  width: 100% !important;
  height: 140px !important;
  margin-left: -50% !important;
  margin-top: 0px !important;
  padding-top: 20px !important;
  text-align: center !important;
  font-size: 1.2em !important;
  background-color: white !important;
  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))
  ) !important;
  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%
  ) !important;
  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%
  ) !important;
  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%
  ) !important;
  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%
  ) !important;
  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%
  ) !important;
}

/*For Modal*/
.header-fixed.modal-open .modal {
  top: 75px;
}

.nav .open > a.create-event-dropdown,
.nav .open > a.create-event-dropdown:hover,
.nav .open > a.create-event-dropdown:focus {
  background-color: #0a819c;
  border-color: #097992;
  color: #fff;
}

.event_datatable > thead > tr > th,
.event_datatable > tbody > tr > td {
  text-align: center;
}

@-webkit-keyframes rotating {
  from {
    -ms-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  to {
    -ms-transform: rotateY(360deg);
    -moz-transform: rotateY(360deg);
    -webkit-transform: rotateY(360deg);
    -o-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  to {
    -ms-transform: rotateY(360deg);
    -moz-transform: rotateY(360deg);
    -webkit-transform: rotateY(360deg);
    -o-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}
.rotating {
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
}

@media screen and (max-width: 1024px) {
  form#equipment_activity_form button[type='submit'] {
    float: right;
  }
}

@media screen and (max-width: 1366px) {
  form#equipment_activity_form button[type='submit'] {
    float: right;
  }
  .nav.custom-tabs > li > a {
    padding: 10px 10px;
  }
}

@media screen and (max-width: 1440px) {
  form#equipment_activity_form button[type='submit'] {
    float: right;
  }
}

.driver_type_field {
  display: none;
}

.notes_region {
  display: inline-block !important;
  position: relative;
  background: #e5e5e5;
  width: 39%;
}

a.dt-button.buttons-columnVisibility:not(.active) {
  text-decoration: line-through;
  color: #bf4346;
}
/** Text transform for equipment number **/
input[name='equipment_number'] {
  text-transform: uppercase;
}
#event_associated_equipment_number {
  text-transform: uppercase;
}
::-webkit-input-placeholder {
  text-transform: none;
}
:-moz-placeholder {
  text-transform: none;
}
::-moz-placeholder {
  text-transform: none;
}
:-ms-input-placeholder {
  text-transform: none;
}
.sp_availability_switch {
  margin: 0px -4px;
  padding: 0 0 9px;
  top: 4px;
}
.toggle_icon {
  padding: 0 8px;
  color: grey;
}
.dropdown-menu .divider {
  height: 1px;
  margin: 0px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.fixed_width_control {
  position: relative;
  float: left;
  width: 100%;
  margin-bottom: 0;
  display: table;
  table-layout: fixed;
}
.completion-time-field {
  float: left;
  width: 55%;
}
.align_add_btn {
  margin-right: 14px;
}
/* For tenant registration wizard customization */
#rootwizard-custom-circle li:first-child {
  margin-left: 15%;
}
#rootwizard-custom-circle li {
  margin-left: 57%;
}
.checkbox-list {
  padding: 12px;
}
li#company-users-tab.active ~ div#add-buttons > a#add-company-user,
li#company-location-tab.active ~ div#add-buttons > a#location-button,
li#aar-service-tab.active ~ div#add-buttons > a,
li#company-agreement-tab.active ~ div#add-buttons > .btn-group#agreement-button,
li#event-forward-tab.active ~ div#add-buttons > a#add-cf-rule,
li#company-inspection-categories-tab.active
  ~ div#add-buttons
  > a#category-button,
li#sc-company-hours-of-service-tab.active
  ~ div#add-buttons
  > button#all_day_working_hours,
li#sc-company-hours-of-service-tab.active
  ~ div#add-buttons
  > a.tenant-holidays-btn,
li#td-company-hours-of-service-tab.active
  ~ div#add-buttons
  > a.tenant-holidays-btn,
li#td-company-hours-of-service-tab.active
  ~ div#add-buttons
  > button#all_day_working_hours,
li#repairs-tab.active ~ div#add-buttons > a#add_repair,
li#components-tab.active ~ div#add-buttons > a#add_component,
li#defects-tab.active ~ div#add-buttons > a#add_defect,
li#component_loc-tab.active ~ div#add-buttons > a#add_comp_loc,
li#jobs-tab.active ~ div#add-buttons > a#add_job,
li#job_defects-tab.active ~ div#add-buttons > a#add_job_defect,
li#tenant-crosswalk-tab.active ~ div#add-buttons > a#add-crosswalk,
li#job_component_locations-tab.active ~ div#add-buttons > a#add_job_comp_loc {
  display: inline-block !important;
}
.modal h4.modal-title {
  font-weight: 400;
}
#tenant-signup-page {
  background: url(/assets/sign_up_background.jpg) center center fixed;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  padding: 5px;
  height: 1000px;
}

div.pac-container {
  z-index: 1050 !important;
}

div[id^='event-category-attachment-container'] {
  display: inline-block;
  padding: 0 5px;
}

label.btn-outlined:hover i.fa-window-close-o,
label.btn-outlined:hover i.fa-check-square,
label.btn-outlined.active i.fa-window-close-o,
label.btn-outlined.active i.fa-check-square {
  color: white !important;
}
.btn-outlined i.fa-check-square {
  color: #0a819c !important;
}
.btn-outlined i.fa-window-close-o {
  color: #0a819c !important;
}

.radio + .radio,
.checkbox + .checkbox {
  margin-top: 0px;
}

button[id^='button-refresh'] {
  vertical-align: top;
  display: none;
}

.highlight {
  color: #bf4346;
}

#s2id_event_equipment_type > a {
  font-weight: bold;
}

#s2id_equipment_inspection_inspection_type > a {
  font-weight: bold;
}

.sc_fields {
  display: none;
}

div#s2id_sc_filter {
  width: 100%;
}

div#s2id_state_filter {
  width: 100%;
}

.align_comment_section {
  top: 54px;
}

.slant {
  color: #bf4346;
  font-style: italic;
  font-weight: bolder;
}

.panel:not(.panel-red),
.tab-content:not(.event_history_tab_content):not(.equipment-tab-content):not(.authorization_rules_content):not(.comments_notes_tab_content):not(.edit-agreement-and-plt-tab-content) {
  -webkit-box-shadow: 3px 4px 12px -3px rgb(168, 165, 168) !important;
  -moz-box-shadow: 3px 4px 12px -3px rgb(168, 165, 168) !important;
  box-shadow: 3px 4px 12px -3px rgb(168, 165, 168) !important;
}

.table.table-hover-color tbody td:first-child {
  border-left: 4px solid white;
}
.service_center_list > table > tbody > tr > td {
  border-top: 1px solid #00000020;
}

.flash {
  animation-name: flash;
  animation-duration: 0.5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-play-state: running;
}

@keyframes flash {
  from {
    color: red;
  }
  to {
    color: black;
  }
}

/*Customized Comments based on Tenant Type*/
ul.chats li {
  display: flex;
}
ul.chats li.out {
  justify-content: flex-end;
  align-items: flex-end;
}
ul.chats li.out .message {
  order: 1;
}
ul.chats li.out img.avatar {
  order: 2;
}
ul.chats > li > .message {
  background: none;
}
ul.chats li.in.truck_dispatch .message {
  background: linear-gradient(to right, #c3defe 0%, #80a8db 100%),
    linear-gradient(to right, #c3defe 0%, #80a8db 100%);
}
ul.chats li.out.truck_dispatch .message {
  background: linear-gradient(to left, #c3defe 0%, #80a8db 100%),
    linear-gradient(to left, #c3defe 0%, #80a8db 100%);
}
ul.chats li.in.service_center .message {
  background: linear-gradient(to right, #c8f5f2 0%, #82d2ac 100%),
    linear-gradient(to right, #c8f5f2 0%, #82d2ac 100%);
}
ul.chats li.out.service_center .message {
  background: linear-gradient(to left, #c8f5f2 0%, #82d2ac 100%),
    linear-gradient(to left, #c8f5f2 0%, #82d2ac 100%);
}
ul.chats li.in.call_center .message {
  background: linear-gradient(to right, #f2d9c7 0%, #f59b5f 100%),
    linear-gradient(to right, #f2d9c7 0%, #f59b5f 100%);
}
ul.chats li.out.call_center .message {
  background: linear-gradient(to left, #f2d9c7 0%, #f59b5f 100%),
    linear-gradient(to left, #f2d9c7 0%, #f59b5f 100%);
}
ul.chats li.in.iep .message {
  background: linear-gradient(to right, #f8d6d7 0%, #ea8cbd 100%),
    linear-gradient(to right, #f8d6d7 0%, #ea8cbd 100%);
}
ul.chats li.out.iep .message {
  background: linear-gradient(to left, #f8d6d7 0%, #ea8cbd 100%),
    linear-gradient(to left, #f8d6d7 0%, #ea8cbd 100%);
}
ul.chats li.in.shipper .message {
  background: linear-gradient(to right, #f1cbf1 0%, #babcf5 100%),
    linear-gradient(to right, #f1cbf1 0%, #babcf5 100%);
}
ul.chats li.out.shipper .message {
  background: linear-gradient(to left, #f1cbf1 0%, #babcf5 100%),
    linear-gradient(to left, #f1cbf1 0%, #babcf5 100%);
}
ul.event_comments_list li.out.temp_msg .message,
ul.invoice_comment_list li.out.temp_msg .message {
  background: linear-gradient(to left, lightgrey 0%, darkgrey 100%),
    linear-gradient(to left, lightgrey 0%, darkgrey 100%);
}
ul.chats li.in .message .chat-arrow {
  border-top: none;
  border-bottom: 15px solid #00000000;
  border-right: 15px solid #00000000;
  border-left: none !important;
  top: 0px;
  left: -10px;
}
ul.chats li.out .message .chat-arrow {
  border-top: 15px solid #00000000;
  border-bottom: none;
  border-right: none !important;
  border-left: 15px solid #00000000;
  bottom: 0px;
  right: -10px;
  top: unset;
}
.chats li.truck_dispatch .message .chat-arrow {
  border-right-color: #c3defe !important;
  border-left-color: #c3defe !important;
}
.chats li.service_center .message .chat-arrow {
  border-right-color: #c8f5f2 !important;
  border-left-color: #c8f5f2 !important;
}
.chats li.shipper .message .chat-arrow {
  border-right-color: #f1cbf1 !important;
  border-left-color: #f1cbf1 !important;
}
.chats li.iep .message .chat-arrow {
  border-right-color: #f8d6d7 !important;
  border-left-color: #f8d6d7 !important;
}
.chats li.call_center .message .chat-arrow {
  border-right-color: #f2d9c7 !important;
  border-left-color: #f2d9c7 !important;
}
.event_comments_list li.out.temp_msg .message .chat-arrow,
.invoice_comment_list li.out.temp_msg .message .chat-arrow {
  border-left-color: lightgrey !important;
}
ul.event_comments_list li.out.temp_msg i.fa-spinner,
ul.invoice_comment_list li.out.temp_msg i.fa-spinner {
  order: 2;
  float: right;
  color: lightgrey;
  font-size: 50px;
}
ul.chats li.out .message {
  margin-right: 10px;
  border-right: none;
}
ul.chats li.in .message {
  margin-left: 10px;
  border-left: none;
}
ul.chats li .message .chat-body {
  font-size: 15px;
}
ul.chats li .message .chat-datetime {
  color: #5d5d5d;
}
ul.chats li .message span.chat-name {
  text-align: right;
  color: #bf4346;
}
ul.chats li.in .message {
  -webkit-box-shadow: 3px 4px 12px -3px rgb(168, 165, 168);
  -moz-box-shadow: 3px 4px 12px -3px rgb(168, 165, 168);
  box-shadow: 3px 4px 12px -3px rgb(168, 165, 168);
}
ul.chats li.out .message {
  -webkit-box-shadow: -4px -3px 12px -3px rgb(168, 165, 168);
  -moz-box-shadow: -4px -3px 12px -3px rgb(168, 165, 168);
  box-shadow: -4px -3px 12px -3px rgb(168, 165, 168);
}
ul.comments_notes_tab > li:not(.active) > a.new_msg {
  color: #bf4346;
  font-weight: bold;
}
.idle_timer1_color_code {
  border-left: 2px solid #f0ad4e;
}
.idle_timer2_color_code {
  border-left: 2px solid #bf4346;
}
.idle_timer1_color_code,
.idle_timer2_color_code {
  width: 2px;
  left: 2px;
  top: 2px;
  bottom: 2px;
  position: absolute;
  padding-left: 2px;
}
#incidents-datatable tbody td {
  position: relative !important;
}

.flexi-row {
  padding-top: 20px;
  margin-left: 15px;
}
.flexi-row > hr {
  width: 95%;
  margin-top: 0px;
}

#transactional_report .flexi-row {
  margin-left: 0px;
  width: 100%;
}

#transactional_report .flexi-row > hr {
  width: 100%;
}

.inline-editable {
  color: #2a6496;
  border-bottom: dashed 1px #0088cc;
}

.inline-editable:hover {
  color: #bf4346;
  border-bottom: dashed 1px #bf4346;
}

.tire-icon-overlay {
  position: absolute;
  top: 13px;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 0.3s ease;
}
.national_account_icon:hover .tire-icon-overlay {
  opacity: 1;
}
/*Incident Info tab*/
.incident_info_tab .active {
  border-bottom-color: #fff !important;
}

.incident_info_tab {
  border-bottom: 0px;
}

.incident_info_tab li {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.incident_info_tab > li > a {
  border: none !important;
}

.fpstatus-row:nth-child(2n + 0) {
  background-color: #f5f5f5;
}
.fpstatus-row p.info-value {
  margin: 0;
}
.fpstatus-row {
  padding: 10px 0;
}

.btn-group.hot_event_buttons > .btn.active {
  z-index: 0;
}

.custom_field_select_box .col-md-4 {
  padding-left: 0;
  padding-right: 10px;
  padding-top: 10px;
}
.npsp-agreement {
  margin: 10px 20px;
}
a.dt-button[title='Refresh'], a.refresh_tbl_btn {
  color: #ffffff;
  background-color: #488c6c;
  border-color: #458567;
  background-image: none;
}

a.dt-button[title='Refresh']:hover:not(.disabled), a.refresh_tbl_btn:hover:not(.disabled) {
  color: #ffffff;
  background-color: #3a7157;
  border-color: #305d48;
  background-image: none;
}

table#estimation-datatable tbody td {
  position: relative;
}

#estimation-tab-content.tab-content {
  padding: 0px;
  box-shadow: none !important;
}

ul#estimation-tab {
  margin-bottom: 12px;
  border-bottom: 2px solid #e5e5e5 !important;
}

ul#estimation-tab li {
  border: none;
  border-bottom: 1px solid #e5e5e5;
}

ul#estimation-tab li.active {
  border: 1px solid #e5e5e5;
  border-bottom: none;
}

ul#estimation-tab li.active::after {
  content: '';
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -2px;
  background-color: #fff;
  height: 2px;
  border: none;
}
.nav-tabs.custom-tabs li a {
  padding: 10px;
}

#incidents-datatable .btn {
  visibility: hidden;
}

#incidents-datatable .DTFC_RightBodyWrapper .btn {
  visibility: visible;
}

.admin_user_list #active_inactive ul {
  margin-top: 7px;
}

#active_inactive ul li a {
  padding: 7px 16px;
  margin-right: 20px;
  background-color: #ddd;
  color: #3a3b39;
}

#active_inactive ul li a.active {
  background-color: #3a3b39;
  color: #fff;
}

#active_inactive ul {
  padding: 0;
  padding-bottom: 20px;
  border-bottom: 1px solid #dbdbdb;
}

#active_inactive ul li {
  display: inline;
  border-radius: 3px;
}

#oem_agreement_type ul {
  margin-top: 7px;
}

#oem_agreement_type ul li a {
  padding: 7px 16px;
  margin-right: 20px;
  background-color: #ddd;
  color: #3a3b39;
}

#oem_agreement_type ul li a.active {
  background-color: #3a3b39;
  color: #fff;
}

#oem_agreement_type ul {
  padding: 0;
  padding-bottom: 20px;
}

#oem_agreement_type ul li {
  display: inline;
  border-radius: 3px;
}

#role_list ul {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  margin-top: 15px;
}

#role_list ul li {
  display: inline;
  border-radius: 3px;
}

#role_list ul li a {
  padding: 7px 16px;
  margin-right: 20px;
  background-color: #ddd;
  color: #3a3b39;
}

#role_list ul li a.active {
  background-color: #3a3b39;
  color: #fff;
}

.custom-menu {
  margin-top: 25px;
}

.custom-panel {
  height: 86px;
  width: 138px;
  background-color: #fff;
  /*border-top: 3px solid #18333f;*/
  box-shadow: 0px 6px 10px 1px rgba(0, 0, 0, 0.2);
  float: left;
  bottom: 0;
  text-align: center;
  padding-top: 10px;
  margin-bottom: 10px;
  left: 0px;
  right: 0px;
}
.margin {
  margin-right: 5px;
}

.custom-panel h5 {
  font-size: 13px;
  font-family: Ubuntu, san-serif;
  font-size: 15px;
  margin-bottom: 0px;
  text-align: center;
  bottom: 0;
}

.custom-panel i.fa.fa-fw {
  font-size: 26px;
  color: #777777;
  display: inline;
}

.custom-menu > a:hover .custom-panel {
  background-color: #18333f;
}

.custom-menu > a:hover i,
.custom-menu > a:hover h5 {
  color: #fff !important;
}

.activemenu {
  background-color: #18333f;
}

.custom-panel.margin.activemenu > i,
.custom-panel.margin.activemenu > h5 {
  color: #fff !important;
}

.new_admin_user .input-icon input {
  color: #000;
}

.admin-page-title {
  color: #777777;
  font-size: 22px;
  text-align: center;
  margin-bottom: 0px;
}

.admin-page-title h4 {
  margin-bottom: 0px;
}

/* Vendor Lookup - BEGIN */
a#vendor_lookup.hover {
  background: #18333f;
  color: #fff;
}
#vendor_lookup_view .panel {
  -webkit-box-shadow: -10px 4px 12px -3px rgb(168, 165, 168, 0.6) !important;
  -moz-box-shadow: -10px 4px 12px -3px rgb(168, 165, 168, 0.6) !important;
  box-shadow: -10px 4px 12px -3px rgb(168, 165, 168, 0.6) !important;
}
#vendor_lookup_view .panel-body .slimScrollDiv {
  margin: 15px 0px 15px 0px;
}
ul#vendor_list {
  padding-inline-start: 0px;
}
ul#vendor_list > li {
  display: block;
  padding: 5px;
  padding-left: 10px;
}
ul#vendor_list > hr {
  margin-top: 0px;
  margin-bottom: 0px;
}
ul#vendor_list > hr:last {
  display: none !important;
}
#vendor_info.container-fluid hr,
#ancillary_info.container-fluid hr {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}
#vendor_lookup_view .gm-style {
  font-family: 'Ubuntu', sans-serif;
}
#vendor_lookup_view .gm-style-iw-d {
  height: 350px;
}
#vendor_lookup_view .select2-container-multi.form-control {
  height: 35px !important;
  overflow-y: auto;
}
/* Vendor Lookup - END */

#footer {
  position: absolute;
  bottom: 0;
  height: 2.5rem;
  float: center;
}

.copyright {
  float: left !important;
}

#gototop {
  float: right !important;
  color: #18333f;
}

#wrapper {
  position: relative;
}

#page-wrapper {
  padding-bottom: 2.5rem;
}

table#dispatches-datatable tbody td {
  position: relative;
}

#dispatches-tab-content.tab-content {
  padding: 0px;
  box-shadow: none !important;
}

ul#dispatches-tab {
  margin-bottom: 12px;
  border-bottom: 2px solid #e5e5e5 !important;
}

ul#dispatches-tab li {
  border: none;
  border-bottom: 1px solid #e5e5e5;
}

ul#dispatches-tab li.active {
  border: 1px solid #e5e5e5;
  border-bottom: none;
}

ul#dispatches-tab li.active::after {
  content: '';
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -2px;
  background-color: #fff;
  height: 2px;
  border: none;
}

ul#dispatches-tab li a {
  margin-right: 0;
}

table#estimation-datatable tbody td {
  position: relative;
}

#estimation-tab-content.tab-content {
  padding: 0px;
  box-shadow: none !important;
}

ul#estimation-tab {
  margin-bottom: 12px;
  border-bottom: 2px solid #e5e5e5 !important;
}

ul#estimation-tab li {
  border: none;
  border-bottom: 1px solid #e5e5e5;
}

ul#estimation-tab li a {
  margin-right: 0;
}

ul#estimation-tab li.active {
  border: 1px solid #e5e5e5;
  border-bottom: none;
}

ul#estimation-tab li.active::after {
  content: '';
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -2px;
  background-color: #fff;
  height: 2px;
  border: none;
}

#incidents-datatable_wrapper .DTFC_LeftBodyLiner,
#incidents-datatable_wrapper .DTFC_RightBodyLine {
  overflow-y: unset !important;
}

/* Dashboard search filter - START */
#incidents-datatable_wrapper .dt-buttons,
#equipment-inspections-datatable_wrapper .dt-buttons,
#estimation-datatable_wrapper .dt-buttons,
#dispatches-datatable_wrapper .dt-buttons,
#dvirs-datatable_wrapper .dt-buttons,
#event-snapshot-datatable_wrapper .dt-buttons {
  float: right;
}
#incidents-datatable_filter,
#equipment-inspections-datatable_filter,
#estimation-datatable_filter,
#dispatches-datatable_filter,
#dvirs-datatable_filter,
#event-snapshot-datatable_filter {
  width: 100%;
}
#incidents-datatable_filter .input-group > input[type='search'],
#equipment-inspections-datatable_filter .input-group > input[type='search'],
#estimation-datatable_filter .input-group > input[type='search'],
#dispatches-datatable_filter .input-group > input[type='search'],
#dvirs-datatable_filter .input-group > input[type='search'],
#event-snapshot-datatable_filter .input-group > input[type='search'] {
  border-right-style: hidden;
  float: right;
  width: 75%;
  padding: 5px 10px 5px 15px;
}
#incidents-datatable_filter .input-group-btn > button,
#equipment-inspections-datatable_filter .input-group-btn > button,
#estimation-datatable_filter .input-group-btn > button,
#dispatches-datatable_filter .input-group-btn > button,
#dvirs-datatable_filter .input-group-btn > button,
#event-snapshot-datatable_filter .input-group-btn > button {
  border-left-style: hidden !important;
}
#incidents-datatable_filter #s2id_dash_col_filter > a,
#equipment-inspections-datatable_filter #s2id_inspection_col_filter > a,
#estimation-datatable_filter #s2id_est_col_filter > a,
#dispatches-datatable_filter #s2id_disp_col_filter > a,
#dvirs-datatable_filter #s2id_dvir_col_filter > a,
#event-snapshot-datatable_filter #s2id_snap_col_filter > a {
  height: 30px;
  border-bottom-right-radius: 0px;
  border-top-right-radius: 0px;
  border: 1px solid #cbcbcb;
  padding: 0 0 0 5px;
}
#incidents-datatable_filter #s2id_dash_col_filter > a > span.select2-chosen,
#equipment-inspections-datatable_filter #s2id_inspection_col_filter > a > span.select2-chosen,
#estimation-datatable_filter #s2id_est_col_filter > a > span.select2-chosen,
#dispatches-datatable_filter #s2id_disp_col_filter > a > span.select2-chosen,
#dvirs-datatable_filter #s2id_dvir_col_filter > a > span.select2-chosen,
#event-snapshot-datatable_filter
  #s2id_snap_col_filter
  > a
  > span.select2-chosen {
  margin-top: -2px;
  margin-right: 23px;
}
#incidents-datatable_filter #s2id_dash_col_filter > a > span.select2-arrow,
#equipment-inspections-datatable_filter #s2id_inspection_col_filter > a > span.select2-arrow,
#estimation-datatable_filter #s2id_est_col_filter > a > span.select2-arrow,
#dispatches-datatable_filter #s2id_disp_col_filter > a > span.select2-arrow,
#dvirs-datatable_filter #s2id_dvir_col_filter > a > span.select2-arrow,
#event-snapshot-datatable_filter
  #s2id_snap_col_filter
  > a
  > span.select2-arrow {
  border-left: none;
}
#incidents-datatable_filter #s2id_dash_col_filter > a > span.select2-arrow b,
#equipment-inspections-datatable_filter #s2id_inspection_col_filter > a > span.select2-arrow b,
#estimation-datatable_filter #s2id_est_col_filter > a > span.select2-arrow b,
#dispatches-datatable_filter #s2id_disp_col_filter > a > span.select2-arrow b,
#dvirs-datatable_filter #s2id_dvir_col_filter > a > span.select2-arrow b,
#event-snapshot-datatable_filter
  #s2id_snap_col_filter
  > a
  > span.select2-arrow
  b {
  background-position: left top 2px;
}
#incidents-datatable_filter
  #s2id_dash_col_filter
  > a
  > span.select2-chosen
  > i.fa-filter,
#equipment-inspections-datatable_filter
  #s2id_inspection_col_filter
  > a
  > span.select2-chosen
  > i.fa-filter,
#estimation-datatable_filter
  #s2id_est_col_filter
  > a
  > span.select2-chosen
  > i.fa-filter,
#dispatches-datatable_filter
  #s2id_disp_col_filter
  > a
  > span.select2-chosen
  > i.fa-filter,
#dvirs-datatable_filter
  #s2id_dvir_col_filter
  > a
  > span.select2-chosen
  > i.fa-filter,
#event-snapshot-datatable_filter
  #s2id_disp_col_filter
  > a
  > span.select2-chosen
  > i.fa-filter {
  margin-right: 5px;
}
.fixedWidthDrop {
  width: 186px !important;
}
/* Dashboard search filter - END */

table.dataTable {
  width: 100% !important;
}

#equipment-inspection-form legend,
#service-event-form legend,
#event-info-panel legend {
  border-bottom: 0px;
  background: #f0f2f5;
}

#equipment-inspection-form legend span,
#service-event-form legend span,
#event-info-panel legend span {
  font-size: 18px;
  font-weight: bold;
  margin-left: 10px;
  color: #18333f;
}

#equipment-inspection-form .row.flexi-row,
#service-event-form .row.flexi-row,
#event-info-panel .row.flexi-row {
  padding-top: 0px;
  margin-bottom: 10px;
}

#service_line_items .tire_specifics label,
#service_line_items .tire_fields label {
  min-height: 40px;
}

.DTFC_LeftBodyLiner tbody td {
  position: relative;
}

.nav-tabs.custom-tabs li a {
  padding: 9px;
}

#additional_info_tab .icheckbox_polaris .custom_fields {
  position: relative !important;
}

#additional_info_tab .icheckbox_polaris .invalid {
  min-width: 150px;
}

.autogrow {
  min-height: 80px;
  max-height: 200px;
  border-radius: 5px !important;
  border: 1px solid #eee;
  width: 92%;
  padding: 5px 10px;
  float: left;
  color: #3d3d3d;
  font-size: 14px;
  line-height: 16px;
}

.autogrow.popup {
  width: 85%;
}

.chat_btn {
  width: 8%;
  display: inline-block;
  text-align: right;
}

.chat_btn.popup {
  width: 15%;
}

.chat_btn .btn {
  width: 90%;
}

.chat-form.comment {
  padding: 10px 0;
  margin: 0;
}

.chat-form.comment .input-group {
  width: 100%;
}

#comment_legend {
  text-align: right;
  width: 92%;
  color: #999;
  font-size: 11px;
}

.navbar-static-side {
  z-index: 10;
}

.DTFC_LeftWrapper {
  z-index: 1;
}

.validation-message-text {
  text-align: justify;
  font-style: italic;
  font-size: 15px;
  margin-bottom: 15px;
}

.error-messages-list {
  font-style: italic;
  list-style: none;
  color: #4d4d4d;
  font-size: 14px;
}

.simple-accordion-header {
  background-color: #3a484f;
}

.simple-accordion-content {
  max-height: 100px;
}

.simple-accordion-header:after {
  content: '\FF0B'; /* Unicode character for "plus" sign (+) */
  font-size: 15px;
  color: #fff;
  float: right;
  margin-left: 5px;
}

.simple-accordion-header.ui-state-active:after {
  content: '\FF0D'; /* Unicode character for "minus" sign (-) */
}

.toolbar,
#equipment_type_toolbar {
  margin-top: 5px;
  margin-bottom: 5px;
}
.toolbar b,
#equipment_type_toolbar b {
  color: #333;
}
.toolbar span,
#equipment_type_toolbar span {
  display: inline-block;
  margin-left: 3px;
  border-radius: 3px;
  padding: 1px 5px;
}

.toolbar,
#status_toolbar {
  margin-top: 5px;
  margin-bottom: 5px;
}
.toolbar b,
#status_toolbar b {
  color: #333;
}
.toolbar span,
#status_toolbar span {
  display: inline-block;
  margin-left: 3px;
  border-radius: 3px;
  padding: 1px 5px;
}

.toolbar,
#driver_with_toolbar {
  margin-top: 5px;
  margin-bottom: 5px;
}
.toolbar b,
#driver_with_toolbar b {
  color: #333;
}
.toolbar span,
#driver_with_toolbar span {
  display: inline-block;
  margin-left: 3px;
  border-radius: 3px;
  padding: 1px 5px;
}

.toolbar,
#state_toolbar {
  margin-top: 5px;
  margin-bottom: 5px;
}
.toolbar b,
#state_toolbar b {
  color: #333;
}
.toolbar span,
#state_toolbar span {
  display: inline-block;
  margin-left: 3px;
  border-radius: 3px;
  padding: 1px 5px;
}

#reporting_tenants_toolbar {
  margin-top: 5px;
  margin-bottom: 5px;
}

#reporting_tenants_toolbar b {
  color: #333;
}

#reporting_tenants_toolbar span {
  display: inline-block;
  margin-left: 3px;
  border-radius: 3px;
  padding: 1px 5px;
}

/*.r24-mul:before {
  content: '\00d7';
  font-style: normal;
  display: inline-block;
  padding-left: 2px;
  font-size: 14px;
}*/
.toolbar span,
.sc-filter-highlight {
  background: #c7e7c6 !important;
  color: #376336 !important;
}

#equipment_type_toolbar span,
.et-filter-highlight {
  background: #ffe6c9 !important;
  color: #4a3419 !important;
}

#status_toolbar span,
.status-filter-highlight {
  background: #d8f5fb !important;
  color: #4a3419 !important;
}

#driver_with_toolbar span,
.driver-with-filter-highlight {
  background: #fffdc9 !important;
  color: #4a3419 !important;
}

#state_toolbar span,
.state-filter-highlight {
  background: #f7ebf6 !important;
  color: #4a3419 !important;
}

#reporting_tenants_toolbar span,
.reporting-tenants-filter-highlight {
  background: #c9cbff !important;
  color: #4a3419 !important;
}

a.text-link-right {
  color: #007acc;
  float: right;
}

a.text-link-left {
  color: #007acc;
  float: left;
}

a.text-link-right:hover,
a.text-link-left:hover {
  text-decoration: underline;
}

.disabled {
  pointer-events: none;
  color: #e5e5e5 !important;
}

.disabled_btn {
  pointer-events: none;
  background-color: #e5e5e5 !important;
  border: 1px solid #d0d0d0 !important;
  color: #999 !important;
  box-shadow: inset 1px 1px 3px #eee
}

.text-in-between-lines {
  overflow: hidden;
  text-align: center;
  font-size: 18px;
}

.text-in-between-lines:before,
.text-in-between-lines:after {
  background-color: #e5e5e5;
  content: '';
  display: inline-block;
  height: 1px;
  position: relative;
  vertical-align: middle;
  width: 50%;
}

.text-in-between-lines:before {
  right: 0.5em;
  margin-left: -50%;
}

.text-in-between-lines:after {
  left: 0.5em;
  margin-right: -50%;
}

.w-35 {
  width: 35%;
}

.mb-10-px {
  margin-bottom: 10px;
}

#additional_sc_details table tr td {
  border: none;
}

span.sc_name {
  font-size: 14px;
}

span.sc_name i {
  font-size: 12px;
}

.equipment_icon {
  height: auto;
  width: 32px;
}

.loc_indent {
  padding-left: 8px;
}

#update_tenant_payments_form ul.nav.nav-tabs li a,
#customer-crosswalk-panel ul.nav.nav-tabs li a {
  background: #f0f0f0;
}
#update_tenant_payments_form ul.nav.nav-tabs li.active a,
#customer-crosswalk-panel ul.nav.nav-tabs li.active a {
  background: #fff;
}
#update_tenant_payments_form .account_no,
#customer-crosswalk-panel .account_no {
  text-transform: uppercase;
}

.payment-highlight {
  background-color: #90ee90;
  margin-bottom: 1px;
}

.modal-sub-title {
  text-align: left;
  margin-bottom: 10px;
  font-weight: 400;
  color: #4d4d4d;
  font-size: 15px;
}

#technician_shifts_verified_info {
  font-style: italic;
  margin-top: 5px;
}

.technician-on-shift-indicator-sign {
  height: 9px;
  width: 9px;
  background-color: #00a800;
  border-radius: 50%;
  display: inline-block;
  margin-left: 6px;
}

.dsp-tech-details .tech-details {
  margin-top: 5px;
  margin-bottom: 5px;
}
.dsp-tech-details .tech-details span {
  font-size: 10px;
  background: #f8f8f8;
  color: #00a800;
  font-weight: bold;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 3px 6px;
  margin-right: 5px;
}

.dsp-tech-details .tech-phone {
  font-size: 12px;
  margin-left: 5px;
}

.dsp-tech-details .tech-unavailable span {
  color: grey;
}

#update_tenant_payments_form .account_no {
  text-transform: uppercase;
}
#update_payment_method .account_verification div {
  width: 100%;
  padding: 0;
  margin-bottom: 15px;
}
#update_payment_method .payment_account_number label, #update_payment_method .payment_account_number div, #update_payment_method .fleet_notes_section label, #update_payment_method .fleet_notes_section div, #update_payment_method .account_verification label {
  width: 100%;
  padding: 0;
  margin-bottom: 5px;
}

.payment-highlight {
  background-color: #90ee90;
  margin-bottom: 1px;
}

.repaired-at-status-label {
  float: left;
  font-size: 15px;
  font-weight: 500;
  line-height: 30px;
  padding-right: 10px;
}
.account_no_active, .sold_to_number_active {
  color: #000;
  background-color: #a2efa2;
  border-color: #a2efa2;
  font-size: 10px;
  padding: revert;
  border-radius: 25px;
}
.account_no_inactive, .sold_to_number_inactive {
  color: #000;
  background-color: #e4736b;
  border-color: #e4736b;
  font-size: 10px;
  padding: revert;
  border-radius: 25px;
}

.account_no_deleted, .sold_to_number_deleted {
  color: #fff;
  background-color: #a9a9a9;
  border-color: #a9a9a9;
  font-size: 10px;
  padding: revert;
  border-radius: 25px;
}

.select2-header {
  height: 30px;
  background: #18333f;
  color: #fff;
  line-height: 30px;
  padding-left: 10px;
  font-weight: bolder;
}
#service-cc-merge-form .select2-choices,
#crosswalk-access-form .select2-choices {
  padding: 0;
}
#service-cc-merge-form .select2-choices .select2-search-choice,
#crosswalk-access-form .select2-choices .select2-search-choice {
  float: none;
  margin: 0;
  line-height: 30px;
}
#service-cc-merge-form .select2-search-choice-close,
#crosswalk-access-form .select2-search-choice-close {
  top: auto;
  bottom: 11px;
}

.fsc-info {
  font-size: 1.33333em;
  vertical-align: middle;
}

/* E360 Dropdown - START */
#s2id_equipment-history-search > a.select2-choice {
  height: 30px;
  line-height: 30px;
  padding: 0;
  font-weight: bolder;
  border-color: #cccccc;
}
#s2id_equipment-history-search > a > span.select2-chosen {
  margin-right: 35px;
  text-align: center;
}
/* E360 dropdown - END */
.add-oem-button {
  float: right;
  margin-bottom: 10px;
  margin-top: -10px;
  font-size: 12px;
}

#vendor_lookup_view {
  width: calc(100% - 55px) !important;
  height: 100% !important;
  display: flex;
  align-items: stretch;
  background-color: #f0f2f2;
}
/* #vendor_lookup_map,
#vendor_lookup_view .col-md-3.panel {
  height: 100% !important;
} */

.daterangepicker_input {
  position: relative;
}

.acc_verifed {
  color: #00a800;
  font-size: 14px;
}

.not_verifed_acc {
  color: #f0ad4e;
  font-size: 14px;
}
.daterangepicker_input input.input-small {
  color: #ffffff;
  font-size: 14px;
  border-radius: 5px;
  padding: 6px 12px 6px 40px;
  width: 100% !important;
  background-color: #0a819c;
  border: 1px solid #097992;
}
.daterangepicker_input input.input-small ~ .glyphicon-calendar {
  position: absolute;
  top: 10px;
  left: 20px;
  color: #ffffff;
}

.plt_spinner
{
  position:absolute;
  width: 100%;
  height: 100%;
  display: flex;
}

.plt-holder
{
  padding-top: 10px;
  padding-bottom: 10px;
  min-height: 1px;
  display: flex;
  position: relative;
}

.plt-loader
{
  text-align:center;
  width: 100%;
  width: 50px;
  height: 50px;
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
}

.dot-menu
{
  display: inline-block;
  position: relative;
}

.dot-icon
{
  font-size: 25px;
  color: #707070;
  line-height: 30px;
  padding-left: 8px;
  vertical-align: middle;
  cursor: pointer;
  width: 12px;
  overflow: hidden;
}

.dot-menu li {
  padding: 10px 12px;
  font-size: 12px;
  cursor: pointer;
  color: #3d3d3d;
}

.dot-menu li:hover {
  background-color: #eeeeee;
}

.show_service_part_labors table tr:nth-child(odd) {
  background: #f8f8f8;
  border-radius: 3px;
}

.show_service_part_labors th {
  font-weight: 400;
  color: #666666;
  font-size: 11px;
}

.show_service_part_labors td {
  font-weight: 400;
  color: #7a7777;
  font-size: 11px;
}

.show_service_part_labors label.btn-outlined {
  font-size: 11px;
}

.show_service_part_labors .estimate_part_details_label,
.show_service_part_labors .estimate_part_details_label_on_edit {
  font-weight: 700;
  color: #333333;
  font-size: 11px;
}

.part-line-table {
  margin-top: 10px;
}

.estimate_part_details_label_on_edit {
  margin-top: 7px;
}

.show_service_part_labors .btn-blue {
  font-size: 11px;
}

.part-line-table {
  position: relative;
}

.part-line-table > .plt-holder {
  position: absolute;
  z-index: 100;
  background: none;
}

.part-line-table .form-control{
  font-size: 11px !important;
}

.part-line-table #loading-spinner{
  margin-top: -30px;
}

.part-line-table .fa-spinner{
  font-size: 3em;
}

.part-line-table p{
  font-size: 11px;
}

.hide_field {
  visibility: hidden !important;
}
hr.grey {
  border-top: 2px solid #cdcdcd;
}
.d-inline-flex {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}

#agreement_modal .modal-header{
  padding: 15px 15px 0px 15px;
  border-bottom: none;
}

#agreement_modal .modal-body-div{
  padding: 0px 15px;
}


#agreement_modal .modal-header{
  background: #fff;
}

#agreement_modal .modal-title{
  color: #333;
}

@media only screen and (max-height: 736px) {
  body.header-fixed > #fc_frame {
    z-index: 8 !important
  }
}
@media screen and (min-width: 993px) {
  .wid-80.mx-auto{
    width: 80%;
    margin: 0 auto;
  }
}

.new_call_forward_rule #org_option .select2-container a {
  position: relative;
  animation-name: shadow-animation !important;
  animation-duration: 2s;
  animation-iteration-count: 1;
}
.new_call_forward_rule #preferred_sc .select2-container ul {
  position: relative;
  animation-name: shadow-animation !important;
  animation-duration: 2s;
  animation-iteration-count: 1;
}
@keyframes shadow-animation {
  0% {
    box-shadow: 0px 0px 10px rgb(0 0 0 / 20%);
    border: 2px solid #34809e;
  }
  50% {
    box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
    border: 2px solid #25576d;
  }
  100% {
    box-shadow: 0px 0px 10px rgb(0 0 0 / 0%);
    border: 2px solid #59707a;
  }
}

.has-switch label.switch-mini {
  z-index: 1 !important;
}

.tech_badge_wrapper {
  display: inline-block;
  line-height:39px;
  vertical-align:middle;
}

.tech_wrench_icon {
  color:#999;
  border-radius:50px;
  box-shadow: 0 0 2px #777;
  padding:5px;
  font-size:15px;
}

.tech_name_wrapper {
  display: inline-block;
  padding-left:7px;
  vertical-align:top;
}

.tech_track_link {
  margin-left: -5px;
  cursor: pointer;
}

.tech_track_text {
  color: #1E8504;
  border-bottom: 1px dashed #1e8504;
  font-size: 12px;
  margin-left: -2px;
  font-weight: bold;
}

.tech_track_beta {
  color: #777;
  font-size: 12px;
  border: 1px solid #999;
  border-radius: 3px;
  padding: 0 2px;
  margin-left:2px;
}

.tech_place_holder {
  color: #999999;
  font-size: 12px;
}

.tech_status_wrapper {
  display: inline-block;
  padding-left:10px;
  vertical-align:top;
}

.tech_status_link {
  font-size: 14px;
  font-weight: bold;
}

.tech-scheduler-alert-info, .jpb-reporting-tenant-selected-alert-info {
  display: flex;
  align-items: center;
  height: 40px;
  padding-left: 10px;
  padding-right: 10px;
}

.tech-scheduler-alert-info-text, .jpb-reporting-tenant-selected-alert-info-text {
  flex: 1;
}

.tech-scheduler-tenant-select, .jpb-tenant-select {
  width: 13%;
  text-align: center;
}

#inventory_modal .modal-dialog {
  width: 50%;
}

#inventory_modal .row {
  margin-bottom: 10px;
}

.product_filter {
  line-height: 38px;
  float: left;
  padding-left: 15px;
  padding-right: 0;
}

.button-filter {
  margin-top: 2px;
}

#payer_filter_toolbar span, .payer_filter_btn.payer-filter-highlight {
  background: #ffe6c9 !important;
  color: #4a3419 !important;
}

#payee_filter_toolbar span, .payee_filter_btn.payee-filter-highlight {
  background: #c7e7c6 !important;
  color: #376336 !important;
}

#status_filter_toolbar span, .status_filter_btn.status-filter-highlight, #sp_org_filter_toolbar span {
  background: #d8f5fb !important;
  color: #4a3419 !important;
  text-transform:capitalize;
}
#payee_filter_toolbar span, #status_filter_toolbar span, #payer_filter_toolbar span, #sp_org_filter_toolbar span
{
  display: inline-block;
  margin-left: 3px;
  border-radius: 3px;
  padding: 1px 5px;
  margin-bottom: 5px;
}
.align-center {
  text-align: center;
}

legend.scheduler-border.sub_head {
  clear:both;
  width: 95%;
}
legend.scheduler-border.sub_head.sub_head span{
  font-size: 13px !important;
}

#pre_assign_form .account_verification label, #pre_assign_form  .fleet_notes_section label {
  margin-bottom: 20px;
  margin-left: 0px;
  padding-left: 0px;
}

#event-info-panel legend ~ div.flexi-div {
  padding-bottom: 5px;
}

#event-info-panel legend.acc_title {
  background-color: inherit;
  margin-bottom: 0px;
  border-top: 1px solid #eeeeee;
}

#event-info-panel legend.acc_title span {
  text-transform: uppercase;
  color: #898A8D;
  letter-spacing: 1px;
  margin-left: 0px;
}

#event-info-panel legend.acc_title span i {
  color: #19333F;
}

#event-info-panel legend.acc_title ~ hr {
  display: none !important;
}

#event-info-panel legend.acc_title ~ hr:last-child {
  display: inline-block !important;
}

#recipients_tagsinput {
  border: none;
  padding: 0px;
}

.chk-grp {
  min-height: 72px;
}

@media only screen and (min-width:320px) {
  .flexi-row > hr.visible-xs.border-none {
    display: none !important;
  }

}

.popover-title{
  background-color: #037bff;
  color: #fff;
}
.popover-title > .close {
  color: #fff;
}

.none {
  display: none;
}
  #pre_assign_form .account_verification > label, #pre_assign_form  .fleet_notes_section > label {
    width: 100%;
  }
  #pre_assign_form .account_verification > label ~ div, #pre_assign_form  .fleet_notes_section > label ~ div {
    width: 100%;
  }
}
@media only screen and (min-width: 993px) {
  #pre_assign_form .account_verification > label, #pre_assign_form  .fleet_notes_section > label {
    width: 50%;
  }
  #pre_assign_form .account_verification > label ~ div, #pre_assign_form  .fleet_notes_section > label ~ div {
    width: 50%;
  }
}

.crosswalk-custom-field-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0 30px;
}

p#addrs-info.view-more > span:nth-child(n+6) {
  display: none;
}

#nested_address.view-more > .fields:nth-child(n+6) {
  display: none;
}

a#view-more-addrs, a#view-less-addrs {
  float: right;
  text-decoration: underline;
  cursor: pointer;
}

#s2id_sc_hq_tenants.select2-container {
  width: 100%;
}

.sp-org-filter-highlight {
  background: #c7e7c6 !important;
  color: #376336 !important;
}

#sp_org_filter_toolbar span {
  background: #c7e7c6 !important;
  color: #376336 !important;
  text-transform:capitalize;
}
/*-----------------ATD Logs styles--------------------*/

.nameinfo h4,
.table.status__info .status {
  font-size: 13px;
  color: #333333;
  font-weight: 500;
}

.r24atd__modal .panel-title .panel-des,
.r24atd__modal .panel-title .panel-subtitle,
.table.status__info .attempt,
.table.status__info .daytime,
.nameinfo span {
  font-size: 13px;
  color: #999999;
  font-weight: 500;
}

.nameinfo .statuscircle,
.table.status__info .attempt i {
  width: 8px;
  height: 8px;
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
}

.r24atd__modal .modal-dialog {
  max-width: 1024px;
}

.r24atd__modal .modal-header {
  position: relative;
}

.r24atd__modal .modal-header h3 {
  font-size: 21px;
  text-align: center;
  color: #333333;
  font-weight: 500;
}

.r24atd__modal .atdclose {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  opacity: 1;
}

.r24atd__modal .atdclose span {
  font-size: 45px;
  font-weight: 100;
  color: #18333e !important;
}

.r24atd__modal .panel {
  border: none;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
}

.r24atd__modal .panel-group .panel + .panel {
  margin-top: 15px;
}

.r24atd__modal .panel,
.r24atd__modal .panel > .panel-heading {
  border-radius: inherit !important;
}
.r24atd__modal .panel > .panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
}

.panel-group .panel .panel-title {
  font-size: 16px;
}

.r24atd__modal .panel-title a {
  position: relative;
  width: 100%;
  display: inline-block;
  font-size: 16px;
  color: #333333;
  font-weight: 500;
  padding-right: 15px;
}

.r24atd__modal .panel-title a::after {
  content: '\f0d7';
  position: absolute;
  color: #333333;
  right: 0px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  font-family: 'FontAwesome';
}

.r24atd__modal .panel-heading.active .panel-title a::after {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}

.r24atd__modal .panel-title span {
  padding: 0px 8px;
}

.r24atd__modal .panel-title .panel-des {
  float: right;
}

.r24atd__modal .panel-title .status {
  position: relative;
  font-size: 13px;
  color: #f35656;
}

.r24atd__modal .panel-title .status::before {
  content: '';
  position: absolute;
  left: -4px;
  width: 4px;
  height: 4px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  border-radius: 50%;
  background-color: #999999;
}

.table.status__info td {
  width: 50%;
}

.table.status__info .attempt,
.table.status__info .daytime {
  padding: 0px 20px;
  font-weight: 500;
}

.table.status__info .attempt i {
  background-color: #fbe0c8;
  margin-right: 8px;
}

.nameinfo {
  padding: 0px 12px;
}

.nameinfo h4 {
  margin: 0px;
}

.atdtable tbody tr td {
  vertical-align: middle;
}

.table.status__info {
  margin: 0px;
}

.atd-panel-group .panel-body {
  padding: 0px;
  border: none !important;
}

.atdtable tr td:nth-child(2) {
  padding: 0px;
}

.nameinfo {
  position: relative;
}

.nameinfo .statuscircle {
  position: absolute;
  top: 2px;
  left: -13px;
  background-color: #fbe0c8;
}

.nameinfo .statuscircle.accepted {
  background-color: #365bdb;
}

.nameinfo .statuscircle.rejected {
  background-color: #f35656;
}

.table.status__info .attempt i.accepted {
  background-color: #59b727;
}

.table.status__info .attempt i.rejected {
  background-color: #f35656;
}

.table.status__info .status.btn {
  font-size: 12px;
  line-height: normal;
  padding: 0px;
}

.table.status__info .status.btn.accepted {
  padding: 3px 7px;
  color: #ffffff;
  background-color: #59b727;
}

.table.status__info .status.btn.rejected {
  padding: 3px 7px;
  color: #ffffff;
  background-color: #f35656;
}

.table.status__info .accepted--row td {
  background-color: #f3fdf9;
}

.table.status__info .rejected--row td {
  background-color: #fdefef;
}

.atd-panel-group {
  padding: 5px 15px;
}

.atd_call_action i,
.atd_call_action span {
  vertical-align: middle;
}

.atd_call_action span {
  padding-left: 3px;
  display: inline-block;
  text-align: left;
}

.atd_call_action i.fa-phone {
  width: 24px;
  height: 24px;
  line-height: 22px;
  font-size: 12px;
  text-align: center;
  border: 1px solid #b23017;
  color: #b23017;
  border-radius: 50%;
}

.atd_call_action h4,
.atd_call_action p {
  font-weight: 500;
  margin: 0px !important;
}
.atd_call_action h4 {
  font-size: 12px;
  color: #2a6496;
}

.atd_call_action p {
  font-size: 11px;
  color: #76777c;
}

.atd_call_action a {
  width: 100%;
  display: inline-block;
  cursor: pointer;
}

.atd_call_action h4.fa-caret-right {
  font-size: 14px;
  padding-left: 2px;
}

#event-status-action-section .col-lg-4 {
  padding: 0px;
}

.atd_call_action i {
  font-size: 14px;
  padding-left: 2px;
}

.atd_call_action a svg {
  vertical-align: middle;
  display: none;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
}

.atd_call_action a.calling svg.calling,
.atd_call_action a.completed svg.completed,
.atd_call_action a.rejected svg.rejected {
  display: inline-block;
}

/*--------------ATD Config Tab Design------------------------*/

#automated_caller {
  margin: -20px -15px;
}

#automated_caller .row {
  margin: 0px;
}

#automated_caller .form-field {
  padding: 20px 15px;
  border-top: 1px solid #f0f2f5;
  border-bottom: 1px solid #f0f2f5;
}
#automated_caller .form-field:nth-child(1) {
  border-top: none;
}

#automated_caller .form-field .field-row {
  padding: 10px 0px 0px;
}
#automated_caller .form-field .field-row [class*='col-'] {
  padding-left: 7px;
  padding-right: 7px;
}
#automated_caller .form-field.after_hours_shift {
  background-color: #f9fbff;
}

#automated_caller .form-field.store_closed_shift {
  background-color: #f9fbff;
}

#automated_caller .checkbox label {
  font-size: 14px;
  color: #000000;
  font-weight: bold;
}

#automated_caller .form-group label {
  font-size: 12px;
  color: #797979;
}

#automated_caller .form-group input::placeholder {
  font-size: 12px;
  color: #999;
}

#automated_caller .form-group .form-control {
  font-size: 12px;
}

#automated_caller .form-group .px-0 {
  padding-left: 0px;
  padding-right: 0px;
}

#automated_caller .status--callbtn .btn.active {
  background-color: #1d333e;
  color: #ffffff;
  box-shadow: none;
  border: 1px solid transparent;
}

#automated_caller .status--callbtn .btn-group {
  width: 100%;
}

#automated_caller .status--callbtn .btn {
  width: 50%;
  font-weight: 500;
  padding: 7px 10px 8px;
  background-color: #ffffff;
  border: 1px solid #cbcbcb;
}

#automated_caller .form-footer {
  padding: 60px 20px;
}

#automated_caller .visibility-hidden {
  visibility: hidden;
}

/*--------------ATD Technician Shifts ------------------------*/

.tech-shifts-table th span {
  display: block;
  margin-left: -10px;
  padding-left: 10px;
  border-left: 1px solid #ddd;
}

.tech-shifts-table th:first-child span {
  border-left: 0;
}

.tech-shifts-table td:not(:nth-child(0)),
.tech-shifts-table th:not(:nth-child(0)){
  border-left-color: transparent;
}

.tech-shifts-table td:not(:last-child),
.tech-shifts-table th:not(:last-child){
  border-right-color: transparent;
}

.tech-shifts-table th span {
  color: #666666;
}

.tech-shifts-table td span {
  color: #19333F;
}

.shifts-toggle {
  font-size:10px; 
  color:blue; 
  font-weight: bold; 
  cursor: pointer;
}

.tech-shifts-scrollbar {
position: relative;
height: 163px;
overflow: auto;
}

.tech-shifts-scroll-y {
display: block;
}
  .sweet-overlay {
      background: rgba(41, 47, 51, 0.9);
  }
  .sweet-alert {
      font-family: "Ubuntu", sans-serif;
      padding: 15px;
      padding-top: 55px;
      text-align: right;
      border-radius: 6px;
      box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.11), 0px 6px 30px rgba(0, 0, 0, 0.14);
  }
  .sweet-alert h2 {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 48px;
      line-height: 51px;
      font-size: 16px;
      font-weight: 400;
      color: #8899a6;
      margin: 0;
      color: #fff;
      border-bottom: 1px solid #e1e8ed;
      background: #BF4346;
  }
  .sweet-alert p {
      display: block;
      text-align: center;
      color: #000000;
      font-weight: 400;
      font-size: 17px;
      margin-top: 7px;
  }
  .sweet-alert .sa-button-container {
      background-color: #fff;
      border-top: 1px solid #e1e8ed;
      box-shadow: 0px -1px 0px white;
      margin: -15px;
      height: 54px !important;
      margin-top: 34px;
  }
  .sweet-alert[data-has-confirm-button=false][data-has-cancel-button=false] {
      padding-bottom: 10px;
  }
  .sweet-alert[data-has-confirm-button=false][data-has-cancel-button=false] .sa-button-container {
      display: none;
  }
  .sweet-alert button {
      border-radius: 2px;
      box-shadow: none !important;
      text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.3);
      margin: 7px 0px;
      border-radius: 4px;
      font-size: 14px;
      padding: 8px 16px;
      position: relative;
  }
  .sweet-alert button:focus,
  .sweet-alert button.cancel:focus {
      box-shadow: none !important;
  }
  .sweet-alert button:focus::before,
  .sweet-alert button.cancel:focus::before {
      content: "";
      position: absolute;
      left: -5px;
      top: -5px;
      right: -5px;
      bottom: -5px;
      /*border: 2px solid #a5b0b4;
      border-radius: 5px;*/
  }
  .sweet-alert button.confirm {
      border-radius: 5px;
      color: #fff;
      background-color: #3A7157 !important;
      -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#00000000, endColorstr=#0C000000)";
      margin-right: 15px;
  }
  .sweet-alert button.confirm:hover {
      background-color: #305d48 !important;
      -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#00000000, endColorstr=#26000000)";
  }
  .sweet-alert button.cancel {
      border-radius: 5px;
      color: #fff;
      background-color: #3A484F;
      margin-right: 9px;
  }
  .sweet-alert button.cancel:hover {
      background-color: #405061;
  }
  .sweet-alert .sa-icon:not(.sa-custom) {
      transform: scale(0.72);
      margin-bottom: -2px;
      margin-top: -10px;
  }
  .sweet-alert input {
      border: 1px solid #e1e8ed;
      border-radius: 3px;
      padding: 10px 7px;
      height: auto;
      box-shadow: none;
      font-size: 13px;
      margin: 10px 0;
  }
  .sweet-alert input:focus {
      border-color: #94A1A6;
      box-shadow: inset 0 0 0 1px rgba(77, 99, 107, 0.7);
  }
  .sweet-alert fieldset .sa-input-error {
      display: none;
  }
  .sweet-alert .sa-error-container {
      text-align: center;
      border: none;
      background-color: #fbedc0;
      margin-bottom: 6px;
  }
  .sweet-alert .sa-error-container.show {
      border: 1px solid #f0e1b9;
  }
  .sweet-alert .sa-error-container .icon {
      display: none;
  }
  .sweet-alert .sa-error-container p {
      color: #292f33;
      font-weight: 600;
      margin-top: 0;
  }
  @-webkit-keyframes animateErrorIcon {
      0% {
          transform: rotateX(100deg), scale(0.5);
          -webkit-transform: rotateX(100deg), scale(0.5);
          opacity: 0;
      }
      100% {
          transform: rotateX(0deg), scale(0.5);
          -webkit-transform: rotateX(0deg), scale(0.5);
          opacity: 1;
      }
  }
  @keyframes animateErrorIcon {
      0% {
          transform: rotateX(100deg), scale(0.5);
          -webkit-transform: rotateX(100deg), scale(0.5);
          opacity: 0;
      }
      100% {
          transform: rotateX(0deg), scale(0.5);
          -webkit-transform: rotateX(0deg), scale(0.5);
          opacity: 1;
      }
  }
@-webkit-keyframes blink {
	0% {
		opacity: 1;
	}
	49% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}
@-moz-keyframes blink {
	0% {
		opacity: 1;
	}
	49% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}
@-o-keyframes blink {
	0% {
		opacity: 1;
	}
	49% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}
.blink {
	-webkit-animation: blink 1s;
	-webkit-animation-iteration-count: infinite;
	-moz-animation: blink 1s;
	-moz-animation-iteration-count: infinite;
	-o-animation: blink 1s;
	-o-animation-iteration-count: infinite;
}

.service_center_color_iep{
	background-color: rgba(173, 216, 230, 0.5) !important;
}

.service_center_color_truck_dispatch{
	background-color: rgba(144, 238, 144, 0.5) !important;
}

.service_center_color_service_center{
	background-color: rgba(144, 238, 144, 0.5) !important;
}

.service_center_color_oem_authorized_sp{
	background-color: rgba(172, 185, 191, 0.5) !important;
}

.service_center_color_default, .service_center_color_my_network{
	background-color: rgba(204, 0, 0, 0.4) !important;
}

.service_center_color_sp_authority, .service_center_color_default_sp_authority{
	background-color: rgba(124, 153, 206, 0.82) !important;
	font-weight: 500;
	color: white;
}

.service_center_color_sp_authority .event-code-style,
.service_center_color_default_sp_authority .event-code-style{
  color: #fff;
  font-weight: 400;
}

.service_center_color_sp_authority .event-code-style:hover,
.service_center_color_default_sp_authority .event-code-style:hover{
  color: #bf4346;
  font-weight: 400;
}

.color_details {
	width: 10px; height: 10px;
	border: 0px;
	display:inline-block;
	border:solid black 1px;
}

.horizontal_list{
	margin-right: 40px;
	float: left;
}

.hot_scroll {
	max-height: calc(17vh - 21px);
	overflow-y: auto;
}

.button_order{
	margin: 2px -4px;
}

.margin_height{
	margin-top: 0px;
}

.header-search-box {
	display:none;
	width: 0px;
}

.magnifying-glass {
}

input { font-size: 17px; }

.button_space button{
	margin: 5px;
}

.hot-event-code-style {
	color: #bf4346;
	font-weight: 500;
	font-size: 14px;
}

.hot-event-code-style:hover {
 color: #4b5d67;
}

.align_grade_label{
	text-align:left;
}

.align_grade_label .rt_label {
	visibility:hidden;
	background-color: black;
	color: #ffffff;
}

.align_grade_label .de_label{
	visibility:hidden;
	background-color: black;
	color: #ffffff;
}

.align_grade_label .th_label{
	visibility:hidden;
	background-color: black;
	color: #ffffff;
}

.align_grade_label .ar_label{
	visibility:hidden;
	background-color: black;
	color: #ffffff;
}

.align_grade_label .tr_label{
	visibility:hidden;
	background-color: black;
	color: #ffffff;
}

.align_grade_label:hover .rt_label {
	visibility:visible;
}

.align_grade_label:hover .de_label {
	visibility:visible;
}

.align_grade_label:hover .th_label {
	visibility:visible;
}

.align_grade_label:hover .ar_label {
	visibility:visible;
}

.align_grade_label:hover .tr_label {
	visibility:visible;
}

#total_rating{
	font-size: 24px;
	color: #4B77BA;
}
#total_rating:hover{
	color: #BF4346;
}

.br-current-rating{
	text-align: right !important;
	display: inline !important;
	padding-left: 30px !important;
}

/*For Tenant Grading*/
span.rating_star_color{
  color: black;
}
span.help_info,
p.help_info {
	cursor: default;
	font-style: italic;
	font-size: 11px;
}
#dot_inspected_at a {
	font-style: italic;
	font-size: 11px;
}
#dot_inspected_at {
	margin-bottom : -10px;
}
a.help_info {
  color: #041a25;
}
.fa_web {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
  color: #405058;
}
.fa_web:before {
  content: "\f0ac";
}
.fa_service_event_batch {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
  color: #405058;
}
.fa_service_event_batch:before {
  content: "\f0ee";
}
.fa_telematics {
  font-size: 1em;
  line-height: 0.75em;
  vertical-align: -15%;
  color: #405058;
}
.fa_telematics:before {
  content: "\f1eb";
}
.fa_online_form {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
  color: #131617;
}
.fa_online_form:before {
  content: "\f298";
}
.fa_api {
  font-size: 1em;
  line-height: 0.75em;
  vertical-align: -15%;
  color: #405058;
  margin-left: 0px;
}
.fa_api:before {
  content: "\f0c2";
}
.fa_mobile, .fa_iframe {
  font-size: 2em;
  color: #405058;
  line-height: 0.75em;
  vertical-align: -15%;
  margin-left: 3px;
}
.fa_mobile:before, .fa_iframe:before {
  content: "\f10b";
}

#service_line_items > .panel.deleted,
#bucket_list_items > .bucket_list.deleted,
#invoice_lines > .panel.deleted {
	display: none;
}
#service_line_items .icheckbox_polaris {
	height: 25px;
}
#service_line_items > .panel > .panel-heading,
#invoice_lines > .panel > .panel-heading {
	font-size: 13px;
	border-color: #4c5d6780 !important;
}
#service_line_items > .panel > .panel-heading > span,
#invoice_lines > .panel > .panel-heading > span {
	font-weight: 500;
  color: #1d1d1d;
  font-size: 18px;
}
.attachment_btns .btn-white {
	border: none;
	padding: 0 10px;
	background-color: transparent;
}
.attachment_btns .btn-white:hover,
.attachment_btns .btn-white:focus,
.attachment_btns .btn-white:active {
	background-color: transparent;
	color: #2f829e;
	box-shadow: none;
	-webkit-box-shadow: none;
}
.attachment_btns .btn > i {
	font-size: 1.5em;
}
[id^="service_line_"] .remove:hover,
[id^="service_line_"] .remove:focus,
[id^="service_line_"] .remove:active,
#invoice_lines .remove:hover,
#invoice_lines .remove:focus,
#invoice_lines .remove:active {
	color: #bf4346 !important;
}
#service_line_items > .panel > .panel-heading .btn > i,
#invoice_lines > .panel > .panel-heading .btn > i {
	font-size: 1.5em;
}
#service_line_items > .panel > .panel-body hr {
	margin-bottom: 10px;
}
#invoice_lines > .panel > .panel-body hr {
  margin-bottom: 10px;
  width: 100%;
  display: inline-block;
}
.show_service_jobs {
	padding: 0 20px 0px 20px !important;
}
.show_service_line_items .icheckbox_polaris {
	top: -2px;
}
.show_service_line_items label,
label.info-label {
	font-weight: 500;
	font-size: 15px;
	color: #3d3d3d;
}
.show_service_jobs hr {
	margin-top: 0;
}
.tire_details label {
  font-size: 12px;
}
.info,
p.info-value {
	color: #4d4d4d;
	font-size: 14px;
	font-weight: 400;
	word-break: break-all;
}
.comment_info {
	color: #3d3d3d;
	font-size: 13px;
	font-style: italic;
}
#event-info-panel table tbody td, #dvir-info-panel table tbody td, #driver-log-modal table tbody td {
	border-top: none;
}
.chat-form {
	background-color: #fff;
}
#service_line_items div[id^='attachment_container'] {
  display: inline-block;
  padding: 0 5px;
}
.attachment_btns .btn .badge {
	position: relative;
	top: -15px;
	left: 7px;
	font-size: 12px !important;
	font-weight: 500;
	background-color: #777;
}
.attachment_btns .btn:hover .badge,
.attachment_btns .btn:focus .badge,
.attachment_btns .btn:active .badge {
	background-color: #2f829e;
}
tbody#matching_scs_container td.outside_service_radius {
	color: #bf4346;
  font-weight: 500;
}
#incidents-performed-section .list-group {
	font-size: 14px;
	margin-bottom: 0px;
}
#incidents-performed-section .list-group-item a {
	color: #428bca;
}
#incidents-performed-section .list-group{
	border: 1px solid #e5e5e5;
	border-radius: 4px;
}
#incidents-performed-section .list-group-item{
	border: none;
}

@media (min-width: 768px) {
	#event-info-panel .flexi-div,
  #dvir-info-panel .flexi-div,
  #driver-log-modal .flexi-div,
  #invoice_details .flexi-div {
		width: 50%;
		float: left;
	}
	.flexi-row > hr:nth-child(4n) {
		display: inline-block !important;
	}
}

@media (min-width: 1024px) {
	.flexi-row > hr.max-4-col:nth-child(4n) {
		display: none !important;
	}
	.flexi-row > hr.max-4-col:nth-child(6n) {
		display: inline-block !important;
	}
}

@media (min-width: 1200px) {
	.flexi-row > hr.max-4-col:nth-child(4n) {
		display: none !important;
	}
	.flexi-row > hr.max-4-col:nth-child(6n) {
		display: none !important;
	}
	.flexi-row > hr.max-4-col:nth-child(8n) {
		display: inline-block !important;
	}
}

@media (min-width: 1440px) {
	#event-info-panel .flexi-div,
  #dvir-info-panel .flexi-div,
  #driver-log-modal .flexi-div,
  #invoice_details .flexi-div {
		width: 33.33333333%;
		float: left;
	}
	.flexi-row > hr:nth-child(4n) {
		display: none !important;
	}
	.flexi-row > hr:nth-child(3n) {
		display: inline-block !important;
	}
	.flexi-row > hr.max-4-col:nth-child(6n) {
		display: none !important;
	}
	.flexi-row > hr.max-4-col:nth-child(8n) {
		display: inline-block !important;
	}
}

.flexi-row > hr:last-child,
.flexi-row > hr.max-4-col:last-child {
  display: none !important;
}

#event-info-panel .flexi-div,
#dvir-info-panel .flexi-div,
#driver-log-modal .flexi-div,
#invoice_details .flexi-div {
	position: relative;
  min-height: 1px;
  padding-right: 15px;
  /*padding-left: 15px;*/
}

.event-form #inspection-categories-section label.control-label {
	margin-bottom: 25px;
}

#incidents-datatable a.sc_out_nw {
  font-weight: bolder;
  font-style: italic;
  font-family: monospace;
  color: #404f57;
}
#incidents-datatable a.sc_out_nw:hover {
    color: #021421 !important;
}

#inspection-categories-section > hr:first-child {
	display: none;
}
#inspection-categories-section > hr {
	width: 100%;
	margin-top: 0px;
}
@media (max-width: 768px) {
	#inspection-categories-section > hr {
		margin-top: 18px;
	}
}

#towing-buttons.col-sm-2 {
	width: 20.666667%;
}

#inspection-categories-section legend {
	width: auto;
	font-size: 11px;
	padding: 0 10px;
	border-bottom: none;
}

#inspection-categories-section fieldset {
	margin: 5px 0 10px 0px;
  border-top: 1px solid #eee;
}

#bucket_list_count, #service-count{
	position: relative;
	top: -20px;
	left: -13px;
	font-size: 12px !important;
	font-weight: 500;
	background-color: #0a819c;
}

#equipment-inspections-datatable a#show_page_equipment_history.defect {
	color: #bf4346;
}
#equipment-inspections-datatable a#show_page_equipment_history:not(.defect):hover,
#equipment-inspections-datatable a#show_page_equipment_history:not(.defect):focus{
	color: #2a6496;
}
#equipment-inspections-datatable a#show_page_equipment_history:hover,
#equipment-inspections-datatable a#show_page_equipment_history:focus {
	font-weight: bold;
}

/* Custom Marker - BEGIN */
.sc_marker img,
.loc_marker img {
  width: 22px;
  height: 22px;
  margin-top: 3px;
  border-radius:5px;
}
.sc_marker, .loc_marker {
  position: absolute;
  background: #fff;
  width: 30px;
  height: 30px;
  text-align: center;
  cursor: pointer;
  border-radius: 3px;
}
.sc_marker {
  border: 2px solid #769300;
}
.loc_marker {
  border: 2px solid #2e8ab5;
}
.sc_marker:after, .sc_marker:before,
.loc_marker:after, .loc_marker:before {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  width: 0;
  position: absolute;
  pointer-events: none;
}
.sc_marker:after, .loc_marker::after {
  border-color: rgba(136, 183, 213, 0);
  border-top-color: #fff;
  border-width: 7px;
  margin-left: -7px;
}
.sc_marker:before, .loc_marker::before {
  border-color: rgba(194, 225, 245, 0);
  border-width: 10px;
  margin-left: -10px;
}
.sc_marker:before {
  border-top-color: #769300;
}
.loc_marker:before {
  border-top-color: #2e8ab5;
}
/* Custom marker - END */

.attachment_count_bubble{
  background-color:#405058;
  font-size:0.7em;
  position:absolute;
  z-index:10;
  display:inline-block;
  right:-8px;
  top:-5px;
  color:#fff;
  border-radius:50%;
  width:15px;
  height:15px;
  text-align:center;
  line-height:15px;
}
.add_td_iep{
	padding:2px 5px;
	cursor:pointer;
	font-size:12px;
	text-decoration:underline;
	color:#ff0000;
}
.view_fleet_instruction{
  font-size: 12px;
  margin-left: 20px;
  cursor: pointer;
}

/* event edit presence list */
#user_presence_list span {
  float: right;
  margin-left: -12px;
  font-family: sans-serif;
  text-align: center;
  height: 40px;
  width: 40px;
  line-height: 36px;
  border-radius: 50%;
  border: 3px solid white;
  color: white;
  cursor: default;
}
#user_presence_list span:hover {
  position: relative;
}
#user_presence_list .tooltip-arrow {
  top: unset !important;
}
.duplicate-events .equipment-info {
  margin-left: 12px;
}
.duplicate-events-container {
  max-height: 300px;
  overflow: auto;
  margin-top: 15px;
  margin-bottom: 12px;
}
.duplicate-events-thead {
  background-color: #f0f2f5;
}
.toggle-event-location-pingback {
  margin-top: 8px;
  margin-bottom: 8px;
  display: block;
  font-size: 15px;
  color: #32819c;
  border: 1px solid;
  border-radius: 4px;
  padding: 3px 8px;
}
.send-event-location-pingback {
  margin-top: 11px;
  margin-left: 8px;
  display: block;
  font-size: 12px;
  color: #32819c;
}
.send-event-location-pingback.send-button {
  margin-top: 3px;
  border: 1px solid;
  padding: 4px 8px;
  border-radius: 4px;
}
.event-location-pingback-status {
  margin-top: 8px;
}
.event-location-pingback-status {
	display:  none;
}
.event-location-pingback-status-message {
	padding: 8px;
  margin-top: 8px;
  border-radius: 3px;
  background-color: #eeeeee;
}
.event-location-pingback-status-message i {
	margin: 4px;
	font-size: 17px;
}
.event-location-pingback-status-message p {
  margin: 4px 4px;
  width: 85%;

}
#event_phone_number {
	width: 146px;
	margin-top: 2px;
}
#event_phone_number {
	width: 200px;
	padding-left: 60px;
}
.iti.iti--allow-dropdown {
	float: left;
}
.accuracy-alert {
  color: #686b6b;
  padding-left: 24px;
  margin-top: -3px !important;
  font-size: 12px;
}
.crosswalk-selection .select2-results .select2-highlighted {
  background: #f5f5f5;
  color: black;
}
.event-agent-assignment {
	text-align: left;
	padding-right: 8px;
	padding-left: 8px;
}
.agent-assignment {
	display: flex;
}
.agent-assignment .agent-assignment-history {
	margin-left: auto;
}
.agent-assignment.unassigned {
	color: #3457DB;
}
.agent-assignment.assigned {
	color: #0B3954;
}
.agent-assignment.self_assigned {
	color: #ACADAF;
}
.agent-assignment > button {
	border: none; background: transparent;
}
.agent-assignment .agent-name {
	margin-left: 5px;
}
.static-map-container img {
	width: 100%;
}
.static-map-container img:hover {
	cursor: pointer;
}
#eventPageIFrame {
	border-top: 1px solid #d9edf7 !important;
}
.seperate-column {
  margin-right: 12px;
}
.appointment-slot-finder {
  padding: 5px;
  margin-bottom: 8px;
  display: inline-block;
}
.appointment-slot-finder .timepicker {
  display: none;
}
.appointment-slot-finder .datepicker {
  width: 95%;
}
.appointment-slot-selector {
  border: 1px solid #00f;
  border-radius: 6px;
  text-align: center;
  width: 80%;
  padding: 8px;
  margin: auto;
  margin-bottom: 4px;
  cursor: pointer;
  margin-top: 6px;
}
.selected-appointment-slot {
  background-color: #00f !important;
  color: white;
}
.slot-selectors-container .current-date {
  padding-top: 10px;
}
.remind-before-schedule-time-slot {
  width: 70px;
  margin-right: 12px;
}
.scheduled-status {
  background: #f0f2f5;
  padding: 8px;
  border-radius: 4px;
}
.schedule-event-unselected {
  margin-right: 12px;
  border-radius: 50%;
  background: #488C6C;
  height: 18px;
  width: 18px;
  cursor: pointer;
}
.schedule-event-selected {
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
  margin-top: 2px;
  margin-left: 3px;
}
.turn-custom-notification {
  display: block;
  margin-bottom: 8px;
}
.slot-duration {
  margin-bottom: 16px;
}
.slot-duration, .slot-capacity {
  width: 226px;
}
.sc-appointment-capacities {
  width: 235px;
}
.sc-appointment-capacities .capacity {
  border: 1px solid #cbcbcb;
  padding: 9px;
  margin: 5px 9px 5px 0px;
  border-radius: 4px;
  cursor: pointer;
  width: 38px;
  text-align: center;
}
.sc-appointment-capacities .capacity:last-child {
  margin-left: 0px;
}
.slot-info-fields{
  padding: 20px 15px 0px 0px;
}
.selected-capacity {
  background-color: #3276b1;
  color: white;
}
.override-time {
  border-radius: 6px !important;
}
#new_appointment_slot_overrides_btn {
  margin: 6px;
}
.override-slots-header {
  border-bottom: 1px solid lightgrey;
}
.appointment-config-form-body {
  padding: 20px 10px 0px 20px;
  margin-right: 10px;
}
.slot-selectors {
  height: 232px;
  overflow: auto;
  text-align: center;
}
.waiting-for-slots {
  margin-top: 50px;
}
.ignore-schedule-form, .show-schedule-form {
  transition: transform 0.1s linear 0s;
}
.ignore-schedule-form:hover, .show-schedule-form:hover {
  transform: scale(1.01);
}
.appointment-slot-selector {
  transition: background 0.3s linear 0s;
}
.appointment-slot-selector:hover {
  background: #babaea;
}
.slot-selectors-overlay {
  position: absolute;
  bottom: 0px;
  height: 35px;
  width: 100%;
  background-image: linear-gradient(
  0deg, white, transparent);
  pointer-events: none;
}
.appointment-slot-selector:last-child {
  margin-bottom: 30px;
}
.event-appointment-selector-container {
  padding-left: 30px;
}
.reminder-instruction {
  margin: 20px 0px 20px 0px;
  word-break: break-word;
}
.reminder-input {
  padding-left: 30px;
}
.event-schedule-section {
  text-align: left;
  padding: 10px;
  background: #f0f2f5;
  margin: 12px 0px;
}
.event-schedule-section .info {
  margin-bottom: 6px;
}
.schedule-status-actions {
  padding: 10px 10px 10px 10px;
  background: #f0f2f5;
  margin: 12px 0px;
}
.schedule-validation {
  margin-bottom: 12px;
  color: #db4c4a;
  font-style: italic;
}
.schedule_status_filter {
  width: 250px;
}
.scroll {
    overflow: auto;
}

.line_space{
    margin-bottom:10px;
}
.bottom_align{
    float: left;
    width: 100%;
    margin-bottom: 20px;
}
.placement{
    text-align: right;
}

label.info-label.total {
  font-size: 18px;
}
p.info.total {
  font-size: 20px;
}

#invoice_lines .input-icon i {
  font-size: 14px;
  width: 10px;
  color: #4d4d4d;
}

#invoice_lines .input-icon input {
  padding-left: 20px !important;
  color: #4d4d4d;
}

#invoice_lines .panel-body .col-md-8 {
  border-right: 1px solid #ededed;
}

#invoice_lines #s2id_invoice_line_services {
  font-size: 16px;
  border: 1px solid #ededed !important;
  -webkit-box-shadow: 3px 4px 12px -3px rgb(168, 165, 168) !important;
  -moz-box-shadow: 3px 4px 12px -3px rgb(168, 165, 168) !important;
  box-shadow: 3px 4px 12px -3px rgb(168, 165, 168) !important;
}

#invoice_lines #s2id_invoice_line_services .select2-default {
  font-weight: 400;
  color: #18333f !important;
}

.approved-estimate-total {
  border-radius: 5px;
  width: 200px !important;
  padding-left: 5px;
}

.large_text {
  font-size: 14px;
}
.tagsinput {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	box-sizing: border-box;
	background: #fff;
	font-family: sans-serif;
	font-size: 14px;
	line-height: 20px;
	color: #556270;
	padding: 5px 5px 0 5px;
	border: 1px solid #CBCBCB;
	border-radius: 2px;
}

.tagsinput.focus {
	border-color: #ccc;
}

.tagsinput * {
	box-sizing: border-box;
}

.tagsinput .tag {
	position: relative;
	background: #556270;
	display: block;
	max-width: 100%;
	word-wrap: break-word;
	color: #fff;
	padding: 5px 30px 5px 5px;
	border-radius: 2px;
	margin: 0 5px 5px 0;
}

.tagsinput .tag a {
	position: absolute;
	display: block;
	width: 30px;
	height: 30px;
	top: 0;
	right: 0;
	text-decoration: none;
	text-align: center;
	color: #ff6b6b;
	line-height: 30px;
}

.tagsinput .tag a:before,
.tagsinput .tag a:after {
	background: #ff6b6b;
	position: absolute;
	display: block;
	width: 10px;
	height: 2px;
	top: 14px;
	left: 10px;
	content: '';
}

.tagsinput .tag a:before {
	-webkit-transform: rotateZ(45deg);
	transform: rotateZ(45deg);
}

.tagsinput .tag a:after {
	-webkit-transform: rotateZ(-45deg);
	transform: rotateZ(-45deg);
}

.tagsinput div {
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.tagsinput div input {
	background: transparent;
	display: block;
	width: 100%;
	font-size: 14px;
	line-height: 20px;
	padding: 5px;
	border: 0 none;
	margin: 0 5px 5px 0;
}

.tagsinput div input.error {
	color: #ff6b6b;
}

.tagsinput div input::-ms-clear {
	display: none;
}
.equipment-tab-content{
  background: none;
  padding: 0px;
  margin-bottom: 0px;
  border: none;
}
.equipment-tabs.nav-justified > li > a, .equipment-tabs > li.active > a:hover, .equipment-tabs > li.active > a:focus{
  border: none;
  background: none;
  color: #fff;
  border-bottom:none;
  padding: 16px 15px;
}
ul.nav.equipment-tabs > li.active > a{
  border:none !important;
  background: #fff;
  color:#000;
}
.equipment-history-header{
  display: none;
}
.equipment-tabs{
  margin: -16px -15px -17px;
}
#equipment-history-li a {
  margin-right: -31px;
}

.hwy_error .state-error{
  position: relative;
}

.hwy_error .state-error em{
  position: absolute;
  bottom: -15px;
  font-size: 12px;
}
table#attachment_upload_table {
  margin-top: 10px;
}

.attachment_modal_message {
  color: red;
}

thead#thead {
  font-size: 15px;
}

#pre-repair-pic-checkbox,
#post-repair-pic-checkbox,
#other-pic-checkbox {
  margin-right: 5px;
}

#exampleModalLabel {
  margin-right: 30px;
  text-align: center;
}

.upload_modal_image_para {
  margin-left: 10px;
  display: inline;
}

#button_close_modal {
  float: left;
  font-size: 35px;
  opacity: 0.6;
  margin-left: 10px;
  font-weight: normal;
}

img#other-document-thumbnail {
  color: grey;
}

#file_icon_upload_modal {
  content: "\f15b";
  color: #19333F;
  font-size: 50px;
}

#upload_attachment_modal_footer {
  padding: 15px;
  text-align: right;
  border-top: 0px;
  display: none;
}

#delete_all {
  font-weight: 500;
  color: #ED2727;
  background: linear-gradient(180deg, #FFFFFF 0%, #F3F3F3 100%);
  float: left;
  border: 1px solid #ED2727;
}

#modal_attachment_body {
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  font-family: 'Lato', sans-serif;
}

#file_drop_area {
  background-color: #EEEFF1;
  position: relative;
  align-items: center;
  max-width: 100%;
  border: 1px dashed rgba(166, 166, 166, 0.4);
  border-radius: 3px;
  transition: 0.2s;
}

input.btn.btn-primary {
  background: #3457DB;
  border-color: #3457DB;
}

button#upload_button {
  background: linear-gradient(180deg, #45A5FF 0%, #4285F4 100%);
  border: 1px solid #3D86FF;
  padding: 7px 32px;
}

.upload_modal_fa_icon_div,
.upload_modal_select_file_button_div {
  text-align: center;
  vertical-align: middle;
  margin-top: 20px;
}

.upload_modal_select_file_message_div {
  text-align: center;
  vertical-align: middle;
  margin-top: 10px;
  margin-bottom: 20px;
}

#choose_file_button_attachment_modal {
  border: 1px solid rgba(0, 0, 0);
  border-radius: 10px;
  padding: 8px 20px;
  color: black;
  font-weight: bold;
}

#file_message_attachment_modal {
  font-size: small;
  font-weight: 300;
  line-height: 1.4;
  color: black;
}

#file {
  position: absolute;
  left: 0;
  opacity: 0;
  top: 0;
  bottom: 0;
  width: 100%;
}

.mt-100 {
  margin-top: 100px;
}
#equipment_modal .badge{
  position: relative;
  top: -20px;
  left: -13px;
  font-size: 12px !important;
  font-weight: 500;
  background-color: #777;
}
#equipment_modal .view-photo, #equipment_modal .add-photo{
  border: none;
  padding-left: 0px;
}
#equipment_modal .btn:hover .badge,
#equipment_modal .btn:focus .badge,
#equipment_modal .btn:active .badge {
  background-color: #2f829e;
}
#equipment_modal .btn-white:hover,
#equipment_modal .btn-white:focus,
#equipment_modal .btn-white:active {
  background-color: #fff;
  color: #2f829e;
  box-shadow: none;
  -webkit-box-shadow: none;
}

#equipment_modal .modal_scroll, #equipment_history_modal .modal_scroll{
  height: 400px;
  overflow-y: auto;
}

.event_history_modal_active{
  max-height:350px;
  overflow:hidden;
  overflow-y:auto;
}
.bdp-input input{display:inline-block;margin-bottom:3px;width:60px}.bdp-block{display:inline-block;line-height:1;text-align:center;padding:5px 3px}
.map_expand{
	float: right;
	background: none;
	box-shadow: 0px 0px 7px -4px rgba(0,0,0,0.5);
	margin-bottom: 10px;
	color:rgb(86,86,86);
	border-radius:0 !important;
	font-size:17px;
	line-height:18px;
	height:34px;
	width:40px;
}

#full_map{
	position:fixed;
	z-index:0;
	display:none;
}

#full_map_area{
	width:100%;
	height:100%;
	background:#e6e6e6;
}

.full-map-sidebar{
	background:#fff;
	border-left:1px solid #e6e6e6;
	padding:0
}

.full-map-close{
	margin: 5px 5px 0 0;
	color:#18333f;
	background-color:transparent;
	height:25px;
	width:25px;
	font-size:25px;
	opacity:1;
}

.btn.close-btn{
	position: absolute;
	bottom: 20px;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 30;
}

.full-map-tag-section{
	margin-top: 40px;
	padding: 5px 0 10px 20px;
	border-bottom: 1px solid #e6e6e6;
}

.full-map-tag-clear{
	float: right;
	margin-right: 10px;
	line-height: 23px;
	color: #909090;
	cursor:pointer;
}

.full-map-tags{
	padding-left: 20px;
	margin-top: 15px;
	font-size: 13px;
}

.full-map-tags span{
	margin-left: 13px !important;
  display: inline-block;
  margin-bottom: 11px !important;
  font-size: 13px !important;
  height: 20px;
  line-height: 13px;
}

.full-map-tags span.active{
	background-color:#18333f;
	color:#fff;
}

#checkTags.frame{
	height: 200px;
	overflow: auto;
}
.edit-equipment-fuel-type {
  margin-right: 5px;
}
.technician_checklist_section .badge, 
.fleet_checklist_section .badge {
  position: relative;
  top: -12px;
  left: 12px;
  font-size: 12px !important;
  font-weight: 500;
  background-color: #777;
}

.technician_checklist_section button.view-custom-photo, 
.fleet_checklist_section button.view-custom-photo {
  border: none;
  padding-left: 0px;
  font-size: 24px;
  font-weight: 500;
}

.technician_checklist_section .btn:hover .badge,
.technician_checklist_section .btn:focus .badge,
.technician_checklist_section .btn:active .badge, 
.fleet_checklist_section .btn:hover .badge,
.fleet_checklist_section .btn:focus .badge,
.fleet_checklist_section .btn:active .badge {
  background-color: #2f829e;
}

.technician_checklist_section .btn-white:hover,
.technician_checklist_section .btn-white:focus,
.technician_checklist_section .btn-white:active,
.fleet_checklist_section .btn-white:hover,
.fleet_checklist_section .btn-white:focus,
.fleet_checklist_section .btn-white:active {
  background-color: #fff;
  color: #2f829e;
  box-shadow: none;
  -webkit-box-shadow: none;
}
.iti{position:relative;display:inline-block}.iti *{box-sizing:border-box;-moz-box-sizing:border-box}.iti__hide{display:none}.iti__v-hide{visibility:hidden}.iti input,.iti input[type=tel],.iti input[type=text]{position:relative;z-index:0;margin-top:0!important;margin-bottom:0!important;padding-right:36px;margin-right:0}.iti__flag-container{position:absolute;top:0;bottom:0;right:0;padding:1px}.iti__selected-flag{z-index:1;position:relative;display:flex;align-items:center;height:100%;padding:0 6px 0 8px}.iti__arrow{margin-left:6px;width:0;height:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:4px solid #555}.iti__arrow--up{border-top:none;border-bottom:4px solid #555}.iti__country-list{position:absolute;z-index:2;list-style:none;text-align:left;padding:0;margin:0 0 0 -1px;box-shadow:1px 1px 4px rgba(0,0,0,.2);background-color:#fff;border:1px solid #ccc;white-space:nowrap;max-height:200px;overflow-y:scroll;-webkit-overflow-scrolling:touch}.iti__country-list--dropup{bottom:100%;margin-bottom:-1px}@media (max-width:500px){.iti__country-list{white-space:normal}}.iti__flag-box{display:inline-block;width:20px}.iti__divider{padding-bottom:5px;margin-bottom:5px;border-bottom:1px solid #ccc}.iti__country{padding:5px 10px;outline:0}.iti__dial-code{color:#999}.iti__country.iti__highlight{background-color:rgba(0,0,0,.05)}.iti__country-name,.iti__dial-code,.iti__flag-box{vertical-align:middle}.iti__country-name,.iti__flag-box{margin-right:6px}.iti--allow-dropdown input,.iti--allow-dropdown input[type=tel],.iti--allow-dropdown input[type=text],.iti--separate-dial-code input,.iti--separate-dial-code input[type=tel],.iti--separate-dial-code input[type=text]{padding-right:6px;padding-left:52px;margin-left:0}.iti--allow-dropdown .iti__flag-container,.iti--separate-dial-code .iti__flag-container{right:auto;left:0}.iti--allow-dropdown .iti__flag-container:hover{cursor:pointer}.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag{background-color:rgba(0,0,0,.05)}.iti--allow-dropdown input[disabled]+.iti__flag-container:hover,.iti--allow-dropdown input[readonly]+.iti__flag-container:hover{cursor:default}.iti--allow-dropdown input[disabled]+.iti__flag-container:hover .iti__selected-flag,.iti--allow-dropdown input[readonly]+.iti__flag-container:hover .iti__selected-flag{background-color:transparent}.iti--separate-dial-code .iti__selected-flag{background-color:rgba(0,0,0,.05)}.iti--separate-dial-code .iti__selected-dial-code{margin-left:6px}.iti--container{position:absolute;top:-1000px;left:-1000px;z-index:1060;padding:1px}.iti--container:hover{cursor:pointer}.iti-mobile .iti--container{top:30px;bottom:30px;left:30px;right:30px;position:fixed}.iti-mobile .iti__country-list{max-height:100%;width:100%}.iti-mobile .iti__country{padding:10px 10px;line-height:1.5em}.iti__flag{width:20px}.iti__flag.iti__be{width:18px}.iti__flag.iti__ch{width:15px}.iti__flag.iti__mc{width:19px}.iti__flag.iti__ne{width:18px}.iti__flag.iti__np{width:13px}.iti__flag.iti__va{width:15px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){.iti__flag{background-size:5652px 15px}}.iti__flag.iti__ac{height:10px;background-position:0 0}.iti__flag.iti__ad{height:14px;background-position:-22px 0}.iti__flag.iti__ae{height:10px;background-position:-44px 0}.iti__flag.iti__af{height:14px;background-position:-66px 0}.iti__flag.iti__ag{height:14px;background-position:-88px 0}.iti__flag.iti__ai{height:10px;background-position:-110px 0}.iti__flag.iti__al{height:15px;background-position:-132px 0}.iti__flag.iti__am{height:10px;background-position:-154px 0}.iti__flag.iti__ao{height:14px;background-position:-176px 0}.iti__flag.iti__aq{height:14px;background-position:-198px 0}.iti__flag.iti__ar{height:13px;background-position:-220px 0}.iti__flag.iti__as{height:10px;background-position:-242px 0}.iti__flag.iti__at{height:14px;background-position:-264px 0}.iti__flag.iti__au{height:10px;background-position:-286px 0}.iti__flag.iti__aw{height:14px;background-position:-308px 0}.iti__flag.iti__ax{height:13px;background-position:-330px 0}.iti__flag.iti__az{height:10px;background-position:-352px 0}.iti__flag.iti__ba{height:10px;background-position:-374px 0}.iti__flag.iti__bb{height:14px;background-position:-396px 0}.iti__flag.iti__bd{height:12px;background-position:-418px 0}.iti__flag.iti__be{height:15px;background-position:-440px 0}.iti__flag.iti__bf{height:14px;background-position:-460px 0}.iti__flag.iti__bg{height:12px;background-position:-482px 0}.iti__flag.iti__bh{height:12px;background-position:-504px 0}.iti__flag.iti__bi{height:12px;background-position:-526px 0}.iti__flag.iti__bj{height:14px;background-position:-548px 0}.iti__flag.iti__bl{height:14px;background-position:-570px 0}.iti__flag.iti__bm{height:10px;background-position:-592px 0}.iti__flag.iti__bn{height:10px;background-position:-614px 0}.iti__flag.iti__bo{height:14px;background-position:-636px 0}.iti__flag.iti__bq{height:14px;background-position:-658px 0}.iti__flag.iti__br{height:14px;background-position:-680px 0}.iti__flag.iti__bs{height:10px;background-position:-702px 0}.iti__flag.iti__bt{height:14px;background-position:-724px 0}.iti__flag.iti__bv{height:15px;background-position:-746px 0}.iti__flag.iti__bw{height:14px;background-position:-768px 0}.iti__flag.iti__by{height:10px;background-position:-790px 0}.iti__flag.iti__bz{height:14px;background-position:-812px 0}.iti__flag.iti__ca{height:10px;background-position:-834px 0}.iti__flag.iti__cc{height:10px;background-position:-856px 0}.iti__flag.iti__cd{height:15px;background-position:-878px 0}.iti__flag.iti__cf{height:14px;background-position:-900px 0}.iti__flag.iti__cg{height:14px;background-position:-922px 0}.iti__flag.iti__ch{height:15px;background-position:-944px 0}.iti__flag.iti__ci{height:14px;background-position:-961px 0}.iti__flag.iti__ck{height:10px;background-position:-983px 0}.iti__flag.iti__cl{height:14px;background-position:-1005px 0}.iti__flag.iti__cm{height:14px;background-position:-1027px 0}.iti__flag.iti__cn{height:14px;background-position:-1049px 0}.iti__flag.iti__co{height:14px;background-position:-1071px 0}.iti__flag.iti__cp{height:14px;background-position:-1093px 0}.iti__flag.iti__cr{height:12px;background-position:-1115px 0}.iti__flag.iti__cu{height:10px;background-position:-1137px 0}.iti__flag.iti__cv{height:12px;background-position:-1159px 0}.iti__flag.iti__cw{height:14px;background-position:-1181px 0}.iti__flag.iti__cx{height:10px;background-position:-1203px 0}.iti__flag.iti__cy{height:14px;background-position:-1225px 0}.iti__flag.iti__cz{height:14px;background-position:-1247px 0}.iti__flag.iti__de{height:12px;background-position:-1269px 0}.iti__flag.iti__dg{height:10px;background-position:-1291px 0}.iti__flag.iti__dj{height:14px;background-position:-1313px 0}.iti__flag.iti__dk{height:15px;background-position:-1335px 0}.iti__flag.iti__dm{height:10px;background-position:-1357px 0}.iti__flag.iti__do{height:14px;background-position:-1379px 0}.iti__flag.iti__dz{height:14px;background-position:-1401px 0}.iti__flag.iti__ea{height:14px;background-position:-1423px 0}.iti__flag.iti__ec{height:14px;background-position:-1445px 0}.iti__flag.iti__ee{height:13px;background-position:-1467px 0}.iti__flag.iti__eg{height:14px;background-position:-1489px 0}.iti__flag.iti__eh{height:10px;background-position:-1511px 0}.iti__flag.iti__er{height:10px;background-position:-1533px 0}.iti__flag.iti__es{height:14px;background-position:-1555px 0}.iti__flag.iti__et{height:10px;background-position:-1577px 0}.iti__flag.iti__eu{height:14px;background-position:-1599px 0}.iti__flag.iti__fi{height:12px;background-position:-1621px 0}.iti__flag.iti__fj{height:10px;background-position:-1643px 0}.iti__flag.iti__fk{height:10px;background-position:-1665px 0}.iti__flag.iti__fm{height:11px;background-position:-1687px 0}.iti__flag.iti__fo{height:15px;background-position:-1709px 0}.iti__flag.iti__fr{height:14px;background-position:-1731px 0}.iti__flag.iti__ga{height:15px;background-position:-1753px 0}.iti__flag.iti__gb{height:10px;background-position:-1775px 0}.iti__flag.iti__gd{height:12px;background-position:-1797px 0}.iti__flag.iti__ge{height:14px;background-position:-1819px 0}.iti__flag.iti__gf{height:14px;background-position:-1841px 0}.iti__flag.iti__gg{height:14px;background-position:-1863px 0}.iti__flag.iti__gh{height:14px;background-position:-1885px 0}.iti__flag.iti__gi{height:10px;background-position:-1907px 0}.iti__flag.iti__gl{height:14px;background-position:-1929px 0}.iti__flag.iti__gm{height:14px;background-position:-1951px 0}.iti__flag.iti__gn{height:14px;background-position:-1973px 0}.iti__flag.iti__gp{height:14px;background-position:-1995px 0}.iti__flag.iti__gq{height:14px;background-position:-2017px 0}.iti__flag.iti__gr{height:14px;background-position:-2039px 0}.iti__flag.iti__gs{height:10px;background-position:-2061px 0}.iti__flag.iti__gt{height:13px;background-position:-2083px 0}.iti__flag.iti__gu{height:11px;background-position:-2105px 0}.iti__flag.iti__gw{height:10px;background-position:-2127px 0}.iti__flag.iti__gy{height:12px;background-position:-2149px 0}.iti__flag.iti__hk{height:14px;background-position:-2171px 0}.iti__flag.iti__hm{height:10px;background-position:-2193px 0}.iti__flag.iti__hn{height:10px;background-position:-2215px 0}.iti__flag.iti__hr{height:10px;background-position:-2237px 0}.iti__flag.iti__ht{height:12px;background-position:-2259px 0}.iti__flag.iti__hu{height:10px;background-position:-2281px 0}.iti__flag.iti__ic{height:14px;background-position:-2303px 0}.iti__flag.iti__id{height:14px;background-position:-2325px 0}.iti__flag.iti__ie{height:10px;background-position:-2347px 0}.iti__flag.iti__il{height:15px;background-position:-2369px 0}.iti__flag.iti__im{height:10px;background-position:-2391px 0}.iti__flag.iti__in{height:14px;background-position:-2413px 0}.iti__flag.iti__io{height:10px;background-position:-2435px 0}.iti__flag.iti__iq{height:14px;background-position:-2457px 0}.iti__flag.iti__ir{height:12px;background-position:-2479px 0}.iti__flag.iti__is{height:15px;background-position:-2501px 0}.iti__flag.iti__it{height:14px;background-position:-2523px 0}.iti__flag.iti__je{height:12px;background-position:-2545px 0}.iti__flag.iti__jm{height:10px;background-position:-2567px 0}.iti__flag.iti__jo{height:10px;background-position:-2589px 0}.iti__flag.iti__jp{height:14px;background-position:-2611px 0}.iti__flag.iti__ke{height:14px;background-position:-2633px 0}.iti__flag.iti__kg{height:12px;background-position:-2655px 0}.iti__flag.iti__kh{height:13px;background-position:-2677px 0}.iti__flag.iti__ki{height:10px;background-position:-2699px 0}.iti__flag.iti__km{height:12px;background-position:-2721px 0}.iti__flag.iti__kn{height:14px;background-position:-2743px 0}.iti__flag.iti__kp{height:10px;background-position:-2765px 0}.iti__flag.iti__kr{height:14px;background-position:-2787px 0}.iti__flag.iti__kw{height:10px;background-position:-2809px 0}.iti__flag.iti__ky{height:10px;background-position:-2831px 0}.iti__flag.iti__kz{height:10px;background-position:-2853px 0}.iti__flag.iti__la{height:14px;background-position:-2875px 0}.iti__flag.iti__lb{height:14px;background-position:-2897px 0}.iti__flag.iti__lc{height:10px;background-position:-2919px 0}.iti__flag.iti__li{height:12px;background-position:-2941px 0}.iti__flag.iti__lk{height:10px;background-position:-2963px 0}.iti__flag.iti__lr{height:11px;background-position:-2985px 0}.iti__flag.iti__ls{height:14px;background-position:-3007px 0}.iti__flag.iti__lt{height:12px;background-position:-3029px 0}.iti__flag.iti__lu{height:12px;background-position:-3051px 0}.iti__flag.iti__lv{height:10px;background-position:-3073px 0}.iti__flag.iti__ly{height:10px;background-position:-3095px 0}.iti__flag.iti__ma{height:14px;background-position:-3117px 0}.iti__flag.iti__mc{height:15px;background-position:-3139px 0}.iti__flag.iti__md{height:10px;background-position:-3160px 0}.iti__flag.iti__me{height:10px;background-position:-3182px 0}.iti__flag.iti__mf{height:14px;background-position:-3204px 0}.iti__flag.iti__mg{height:14px;background-position:-3226px 0}.iti__flag.iti__mh{height:11px;background-position:-3248px 0}.iti__flag.iti__mk{height:10px;background-position:-3270px 0}.iti__flag.iti__ml{height:14px;background-position:-3292px 0}.iti__flag.iti__mm{height:14px;background-position:-3314px 0}.iti__flag.iti__mn{height:10px;background-position:-3336px 0}.iti__flag.iti__mo{height:14px;background-position:-3358px 0}.iti__flag.iti__mp{height:10px;background-position:-3380px 0}.iti__flag.iti__mq{height:14px;background-position:-3402px 0}.iti__flag.iti__mr{height:14px;background-position:-3424px 0}.iti__flag.iti__ms{height:10px;background-position:-3446px 0}.iti__flag.iti__mt{height:14px;background-position:-3468px 0}.iti__flag.iti__mu{height:14px;background-position:-3490px 0}.iti__flag.iti__mv{height:14px;background-position:-3512px 0}.iti__flag.iti__mw{height:14px;background-position:-3534px 0}.iti__flag.iti__mx{height:12px;background-position:-3556px 0}.iti__flag.iti__my{height:10px;background-position:-3578px 0}.iti__flag.iti__mz{height:14px;background-position:-3600px 0}.iti__flag.iti__na{height:14px;background-position:-3622px 0}.iti__flag.iti__nc{height:10px;background-position:-3644px 0}.iti__flag.iti__ne{height:15px;background-position:-3666px 0}.iti__flag.iti__nf{height:10px;background-position:-3686px 0}.iti__flag.iti__ng{height:10px;background-position:-3708px 0}.iti__flag.iti__ni{height:12px;background-position:-3730px 0}.iti__flag.iti__nl{height:14px;background-position:-3752px 0}.iti__flag.iti__no{height:15px;background-position:-3774px 0}.iti__flag.iti__np{height:15px;background-position:-3796px 0}.iti__flag.iti__nr{height:10px;background-position:-3811px 0}.iti__flag.iti__nu{height:10px;background-position:-3833px 0}.iti__flag.iti__nz{height:10px;background-position:-3855px 0}.iti__flag.iti__om{height:10px;background-position:-3877px 0}.iti__flag.iti__pa{height:14px;background-position:-3899px 0}.iti__flag.iti__pe{height:14px;background-position:-3921px 0}.iti__flag.iti__pf{height:14px;background-position:-3943px 0}.iti__flag.iti__pg{height:15px;background-position:-3965px 0}.iti__flag.iti__ph{height:10px;background-position:-3987px 0}.iti__flag.iti__pk{height:14px;background-position:-4009px 0}.iti__flag.iti__pl{height:13px;background-position:-4031px 0}.iti__flag.iti__pm{height:14px;background-position:-4053px 0}.iti__flag.iti__pn{height:10px;background-position:-4075px 0}.iti__flag.iti__pr{height:14px;background-position:-4097px 0}.iti__flag.iti__ps{height:10px;background-position:-4119px 0}.iti__flag.iti__pt{height:14px;background-position:-4141px 0}.iti__flag.iti__pw{height:13px;background-position:-4163px 0}.iti__flag.iti__py{height:11px;background-position:-4185px 0}.iti__flag.iti__qa{height:8px;background-position:-4207px 0}.iti__flag.iti__re{height:14px;background-position:-4229px 0}.iti__flag.iti__ro{height:14px;background-position:-4251px 0}.iti__flag.iti__rs{height:14px;background-position:-4273px 0}.iti__flag.iti__ru{height:14px;background-position:-4295px 0}.iti__flag.iti__rw{height:14px;background-position:-4317px 0}.iti__flag.iti__sa{height:14px;background-position:-4339px 0}.iti__flag.iti__sb{height:10px;background-position:-4361px 0}.iti__flag.iti__sc{height:10px;background-position:-4383px 0}.iti__flag.iti__sd{height:10px;background-position:-4405px 0}.iti__flag.iti__se{height:13px;background-position:-4427px 0}.iti__flag.iti__sg{height:14px;background-position:-4449px 0}.iti__flag.iti__sh{height:10px;background-position:-4471px 0}.iti__flag.iti__si{height:10px;background-position:-4493px 0}.iti__flag.iti__sj{height:15px;background-position:-4515px 0}.iti__flag.iti__sk{height:14px;background-position:-4537px 0}.iti__flag.iti__sl{height:14px;background-position:-4559px 0}.iti__flag.iti__sm{height:15px;background-position:-4581px 0}.iti__flag.iti__sn{height:14px;background-position:-4603px 0}.iti__flag.iti__so{height:14px;background-position:-4625px 0}.iti__flag.iti__sr{height:14px;background-position:-4647px 0}.iti__flag.iti__ss{height:10px;background-position:-4669px 0}.iti__flag.iti__st{height:10px;background-position:-4691px 0}.iti__flag.iti__sv{height:12px;background-position:-4713px 0}.iti__flag.iti__sx{height:14px;background-position:-4735px 0}.iti__flag.iti__sy{height:14px;background-position:-4757px 0}.iti__flag.iti__sz{height:14px;background-position:-4779px 0}.iti__flag.iti__ta{height:10px;background-position:-4801px 0}.iti__flag.iti__tc{height:10px;background-position:-4823px 0}.iti__flag.iti__td{height:14px;background-position:-4845px 0}.iti__flag.iti__tf{height:14px;background-position:-4867px 0}.iti__flag.iti__tg{height:13px;background-position:-4889px 0}.iti__flag.iti__th{height:14px;background-position:-4911px 0}.iti__flag.iti__tj{height:10px;background-position:-4933px 0}.iti__flag.iti__tk{height:10px;background-position:-4955px 0}.iti__flag.iti__tl{height:10px;background-position:-4977px 0}.iti__flag.iti__tm{height:14px;background-position:-4999px 0}.iti__flag.iti__tn{height:14px;background-position:-5021px 0}.iti__flag.iti__to{height:10px;background-position:-5043px 0}.iti__flag.iti__tr{height:14px;background-position:-5065px 0}.iti__flag.iti__tt{height:12px;background-position:-5087px 0}.iti__flag.iti__tv{height:10px;background-position:-5109px 0}.iti__flag.iti__tw{height:14px;background-position:-5131px 0}.iti__flag.iti__tz{height:14px;background-position:-5153px 0}.iti__flag.iti__ua{height:14px;background-position:-5175px 0}.iti__flag.iti__ug{height:14px;background-position:-5197px 0}.iti__flag.iti__um{height:11px;background-position:-5219px 0}.iti__flag.iti__un{height:14px;background-position:-5241px 0}.iti__flag.iti__us{height:11px;background-position:-5263px 0}.iti__flag.iti__uy{height:14px;background-position:-5285px 0}.iti__flag.iti__uz{height:10px;background-position:-5307px 0}.iti__flag.iti__va{height:15px;background-position:-5329px 0}.iti__flag.iti__vc{height:14px;background-position:-5346px 0}.iti__flag.iti__ve{height:14px;background-position:-5368px 0}.iti__flag.iti__vg{height:10px;background-position:-5390px 0}.iti__flag.iti__vi{height:14px;background-position:-5412px 0}.iti__flag.iti__vn{height:14px;background-position:-5434px 0}.iti__flag.iti__vu{height:12px;background-position:-5456px 0}.iti__flag.iti__wf{height:14px;background-position:-5478px 0}.iti__flag.iti__ws{height:10px;background-position:-5500px 0}.iti__flag.iti__xk{height:15px;background-position:-5522px 0}.iti__flag.iti__ye{height:14px;background-position:-5544px 0}.iti__flag.iti__yt{height:14px;background-position:-5566px 0}.iti__flag.iti__za{height:14px;background-position:-5588px 0}.iti__flag.iti__zm{height:14px;background-position:-5610px 0}.iti__flag.iti__zw{height:10px;background-position:-5632px 0}.iti__flag{height:15px;box-shadow:0 0 1px 0 #888;background-image:url(/assets/flags-959070a9f002abd28383322dd455a851d1fd445974edb3f720d54ff79894e28b.png);background-repeat:no-repeat;background-color:#dbdbdb;background-position:20px 0}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){.iti__flag{background-image:url(/assets/flags_2x-d00ec77cf49d0c3fbd725dbcdcca661b5db35a02d12f8f4fcf8a3ce6065391bc.png)}}.iti__flag.iti__np{background-color:transparent}
.li-section-head {
  display: flex;
  justify-content: space-between;
    align-items: center;
    padding: 10px;
  padding-bottom: 0;
  width: max-content;
}
.li-section-title {
  line-height: 1.4;
    font-weight: 500;
    color: #19333F;
  margin-right: 10px;
}

.dropdown-menu .li-section-head .btn,
.dropdown-menu .li-no-event-temps .btn {
  background: linear-gradient(180deg, #45A5FF 0%, #4285F4 100%);
    border: 1px solid #4285F4;
    color: #fff;
    padding: 5px 8px;
}

.li-template-title {
  display: flex;
    align-items: center;
}
.dropdown-menu .li-temp-link {
  width: 72%;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dropdown-menu .event-list {
  overflow-y: scroll;
  max-height: 185px;
  min-height: 36px;
}

.dropdown-menu .event-list::-webkit-scrollbar {
  background-color: #fff;
  width: 16px;
}

/* background of the scrollbar except button or resizer */
.dropdown-menu .event-list::-webkit-scrollbar-track {
  background-color: #fff;
}

/* scrollbar itself */
.dropdown-menu .event-list::-webkit-scrollbar-thumb {
  background-color: #babac0;
  border-radius: 16px;
  border: 4px solid #fff;
}

/* set button(top and bottom of the scrollbar) */
.dropdown-menu .event-list::-webkit-scrollbar-button {
  display:none;
}

.li-temp-actions {
  white-space: nowrap;
}

.li-no-event-temps {
      text-align: center;
    padding: 15px;
      display: flex;
    flex-direction: column;
    align-items: center;
      min-width: 200px;
}
.li-no-event-text {
  font-size: 12px;
    line-height: 1.2;
    color: #777;
  margin-bottom: 15px;
}
.li-no-event-temps .li-section-title {
  margin-top: 0;
}

.service-event-template-name label {
  position: absolute;
  left: 331px;
  top: 8px;
}

.service-event-template-name input {
  padding: 2px 2px 2px 25px;
}

li.li-template-title:hover  .li-temp-actions {
  visibility: visible !important;
}

.ant-upload.ant-upload-drag {
  margin-top: 20px;
}
.crosswalk-active-checkbox {
  margin: 0px 21px 0px 12px !important;
  height: 20px;
  width: 20px;
  vertical-align: middle; }

#clone-tenant-modal .modal-title .title {
  font-size: 24px; }

#clone-tenant-modal .modal-title .subtitle {
  font-size: 12px;
  color: #898A8D; }

#clone-tenant-modal .modal-body .clone-form {
  margin: 10px; }
  #clone-tenant-modal .modal-body .clone-form .sections .section-title {
    line-height: 32px;
    padding-bottom: 5px;
    font-size: 15px;
    border-bottom: 1px solid #e5e5e5; }
  #clone-tenant-modal .modal-body .clone-form .sections .section-body {
    margin-top: 20px; }
  #clone-tenant-modal .modal-body .clone-form .sections .section.configurations {
    margin-top: 20px; }
  #clone-tenant-modal .modal-body .clone-form .sections .section.org {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #FCF8E3;
    border: 1px solid #FAEBCC; }
    #clone-tenant-modal .modal-body .clone-form .sections .section.org .org-info {
      font-size: 14px;
      color: #8A6D3B; }
    #clone-tenant-modal .modal-body .clone-form .sections .section.org .org-actions {
      padding-top: 10px; }
      #clone-tenant-modal .modal-body .clone-form .sections .section.org .org-actions .action {
        margin-right: 10px; }
  #clone-tenant-modal .modal-body .clone-form .clone-actions {
    margin-top: 10px;
    text-align: center;
    vertical-align: middle; }

.password-error {
  margin-bottom: 8px;
  color: red;
  display: block; }

.password-errors {
  margin-top: 12px;
  display: block; }

.password-instruction-on-create.expanded {
  height: 30px !important; }

.password-instruction-on-create {
  overflow: hidden;
  transition: height 0.4s normal; }
.upload {
  border-top: solid 1px #CCC;
  width: 100%;
  padding-top: 10px;
  margin-top: 10px; }
  .upload .progress {
    margin-top: 8px;
    border-radius: 3px;
    -moz-border-radius: 3px; }
    .upload .progress .bar {
      height: 20px;
      background: #3EC144; }
.priority_div {
  position: relative;
  top: 10px;
  left: -40px;
}
.priority-label{
  text-align: left;
  padding-left: 40px;
}
.emergency-priority {
  position: absolute;
  background: url(/assets/priority-top.svg);
  width: 16px;
  height: 16px;
  left: 60px;
  top: -8px;
}
.elevated-priority {
  position: absolute;
  background: url(/assets/priority-elevated.svg);
  width: 16px;
  height: 16px;
  left: 60px;
  top: -8px;
}
.standard-priority {
  position: absolute;
  background-color: #fdca34;
  height: 1em;
  width: 1em;
  left: 68px;
  border-radius: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
}
.reduced-priority {
  position: absolute;
  background: url(/assets/priority-reduced.svg);
  width: 16px;
  height: 16px;
  left: 60px;
  top: -8px;
}
.low-priority {
  position: absolute;
  background: url(/assets/priority-low.svg);
  width: 16px;
  height: 16px;
  left: 60px;
  top: -8px;
}
.will_paginate_pagination {
  padding: 0.3em;
  cursor: default; 
}
.will_paginate_pagination a, .will_paginate_pagination span, .will_paginate_pagination em {
  padding: 0.2em 0.5em;
}
.will_paginate_pagination .disabled {
  color: #666666 !important;
  border: 1px solid #e5e5e5 !important;
}
.will_paginate_pagination .current {
  border: 1px solid #18333f;
  color: #18333f;
  text-decoration: none;
  padding: 10px 14px;
}
.will_paginate_pagination a, .will_paginate_pagination .gap, .will_paginate_pagination .previous_page, .will_paginate_pagination .next_page {
  border: 1px solid #e5e5e5;
  color: #18333f;
  text-decoration: none;
  padding: 10px 14px;
}
.will_paginate_pagination a:hover, .will_paginate_pagination a:focus {
  border-color: #18333f;
  background: #18333f;
  color: white;
}
.will_paginate_pagination .page_info {
  color: #aaaaaa;
  padding-top: 0.8em;
}
.will_paginate_pagination .previous_page, .will_paginate_pagination .next_page {
  border-width: 2px;
}
.will_paginate_pagination .previous_page {
  margin-right: 1em;
}
.will_paginate_pagination .next_page {
  margin-left: 1em;
}
.audited-log-results-change {
  width: 100%;
  display: block;
  text-align: center;
}
.audited-log-results {
  width: 100%;
}
.audited-config-change {
  border: none !important;
  background-color: white !important;
}
.truncated-audited-changes {
  max-height: 75px;
  overflow: hidden;
  transition: background-color 0.3s linear 0s;
}
.audited-log-result:hover .truncated-audited-changes {
  max-height: none;
}
.not-inherited-to-tenant {
  float: left;
  line-height: 20px;
  padding: 5px 10px;
  border: 1px solid #f0f0f0;
  border-radius: 5px;
  margin-right: 6px;
  margin-bottom: 6px;
  min-width: 290px;
  background: #e5e5e5;
}
.override-inheritence-mode {
  width: 200px;
}
.override-inherited-to-tenants {
  margin-top: 15px;
  margin-bottom: 20px;
}
.override-inherited-to-tenant-select {
  width: 290px;
  margin-right: 6px;
  margin-bottom: 6px;
}
.clickable-ico:hover {
  cursor: pointer;
}
.config-hq-fields-trigger {
  margin: 0px 0px 0px 5px;
  display: inline-block;
}
.switchable-tenants {
  left: -180px !important;
  padding: 4px;
}
.scroll-switchable-tenant-list {
  max-height: 500px;
  overflow: scroll;
}
.scroll-switchable-tenant-list .tenant {
  min-height: 30px;
  display: block;
  vertical-align: middle;
  color: black;
  padding: 8px 0px 8px 12px;
}
.scroll-switchable-tenant-list .tenant:hover {
  background: #18333f;
  color: white;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
 * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any styles
 * defined in the other CSS/SCSS files in this directory. It is generally better to create a new
 * file per style scope.
 *





















































 */
