﻿@charset "UTF-8";
/*
    ██╗   ██╗     █████╗     ██████╗ 
    ╚██╗ ██╔╝    ██╔══██╗    ██╔══██╗
     ╚████╔╝     ███████║    ██████╔╝
      ╚██╔╝      ██╔══██║    ██╔═══╝ 
       ██║       ██║  ██║    ██║     
       ╚═╝       ╚═╝  ╚═╝    ╚═╝     
*/
/*!
 * Bootstrap-Markdown.less
 *
 */
.md-editor {
    display: block;
    border: 1px solid #dddddd;
}

    .md-editor > .md-header, .md-editor .md-footer {
        display: block;
        padding: 6px 4px;
        background: #f5f5f5;
        margin: 0;
    }

        .md-editor > .md-header > :first-child {
            margin-left: 0;
        }

    .md-editor > .md-preview {
        background: #ffffff;
        border-top: 1px dashed #dddddd;
        border-bottom: 1px dashed #dddddd;
        min-height: 10px;
        padding: 10px;
    }

    .md-editor > textarea {
        font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
        font-size: 13px;
        outline: 0;
        outline: thin dotted \9;
        /* IE6-9 */
        margin: 0;
        display: block;
        width: 100%;
        border: 0;
        padding: 10px;
        border-top: 1px dashed #dddddd;
        border-bottom: 1px dashed #dddddd;
        border-radius: 0;
        box-shadow: none;
        background: #eeeeee;
    }

        .md-editor > textarea:focus {
            box-shadow: none;
            background: #ffffff;
        }

    .md-editor.active {
        border-color: #66afe9;
        outline: 0;
        -webkit-box-shadow: inset 0 1px 1px gba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
        -moz-box-shadow: inset 0 1px 1px gba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
        box-shadow: inset 0 1px 1px gba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
    }

/*
    ██╗   ██╗     █████╗     ██████╗ 
    ╚██╗ ██╔╝    ██╔══██╗    ██╔══██╗
     ╚████╔╝     ███████║    ██████╔╝
      ╚██╔╝      ██╔══██║    ██╔═══╝ 
       ██║       ██║  ██║    ██║     
       ╚═╝       ╚═╝  ╚═╝    ╚═╝     
*/
/*!
* Slider for Bootstrap
*
* Copyright 2012 Stefan Petre
* Licensed under the Apache License v2.0
* http://www.apache.org/licenses/LICENSE-2.0
*
*/
.slider {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

    .slider.slider-horizontal {
        width: 100% !important;
        height: 20px;
    }

        .slider.slider-horizontal .slider-track {
            height: 10px;
            width: 100%;
            margin-top: -5px;
            top: 50%;
            left: 0;
        }

        .slider.slider-horizontal .slider-selection {
            height: 100%;
            top: 0;
            bottom: 0;
        }

            .slider.slider-horizontal .slider-selection + .slider-handle.triangle + .slider-handle.triangle:before {
                content: "\f0d9";
            }

        .slider.slider-horizontal .slider-handle {
            margin-left: -10px;
            margin-top: -5px;
        }

            .slider.slider-horizontal .slider-handle.triangle {
                width: 20px;
                height: 20px;
                filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
                -webkit-transform: rotate(0deg);
                -moz-transform: rotate(0deg);
                -ms-transform: rotate(0deg);
                -o-transform: rotate(0deg);
                transform: rotate(0deg);
                border: none;
                line-height: 21px;
                color: #797777;
                text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
            }

                .slider.slider-horizontal .slider-handle.triangle:before {
                    content: "\f0da";
                    font-size: 34px;
                }

    .slider.slider-vertical {
        height: 210px;
        width: 20px;
    }

        .slider.slider-vertical .slider-track {
            width: 10px;
            height: 100%;
            margin-left: -5px;
            left: 50%;
            top: 0;
        }

        .slider.slider-vertical .slider-selection {
            width: 100%;
            left: 0;
            top: 0;
            bottom: 0;
        }

            .slider.slider-vertical .slider-selection + .slider-handle.triangle + .slider-handle.triangle:before {
                content: "\f0d8";
                text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.8);
            }

        .slider.slider-vertical .slider-handle {
            margin-left: -5px;
            margin-top: -10px;
        }

            .slider.slider-vertical .slider-handle.triangle {
                width: 20px;
                height: 20px;
                filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
                -webkit-transform: rotate(0deg);
                -moz-transform: rotate(0deg);
                -ms-transform: rotate(0deg);
                -o-transform: rotate(0deg);
                transform: rotate(0deg);
                border: none;
                line-height: 21px;
                color: #797777;
                text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.8);
            }

                .slider.slider-vertical .slider-handle.triangle:before {
                    content: "\f0d7";
                    font-size: 32px;
                    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
                }

    .slider input {
        display: none;
    }

    .slider .tooltip-inner {
        white-space: nowrap;
    }

.slider-track {
    position: absolute;
    cursor: pointer;
    background: #E5E5E5;
}

.slider-selection {
    position: absolute;
    background: #3276b1;
}

.slider-handle {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1px solid #FFF;
    background: #858585;
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    /*-moz-osx-font-smoothing: grayscale;*/
    text-align: center;
    line-height: 18px;
    font-size: 10px;
    color: #BDBDBD;
    text-shadow: 0 1px 0 rgba(77, 77, 77, 0.5);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

    .slider-handle:before {
        content: "\f0c9";
    }

    .slider-handle.round {
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        -ms-border-radius: 20px;
        -o-border-radius: 20px;
        border-radius: 20px;
        width: 20px;
        height: 20px;
    }

    .slider-handle.triangle {
        background: transparent none;
    }

/*
* Slider colors
*/
.slider-danger + .slider-track > .slider-selection {
    background: #a90329;
}

.slider-warning + .slider-track > .slider-selection {
    background: #c79121;
}

.slider-info + .slider-track > .slider-selection {
    background: #57889c;
}

.slider-success + .slider-track > .slider-selection {
    background: #739e73;
}

.bootstrap-tagsinput {
    display: block;
    width: 100%;
    min-height: 32px;
    padding: 1px 3px;
    font-size: 13px;
    line-height: 1.428571429;
    color: #555;
    vertical-align: middle;
    background-color: #FFF;
    border: 1px solid #CCC;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    border-radius: 0px;
}

    .bootstrap-tagsinput > span {
        -webkit-border-radius: "0px !important";
        -moz-border-radius: "0px !important";
        -ms-border-radius: "0px !important";
        -o-border-radius: "0px !important";
        border-radius: "0px !important";
        font-weight: normal;
        padding: 3px 28px 4px 8px;
        font-size: 13px;
        border: 1px solid #285E8E;
        background: #3276B1;
    }

    .bootstrap-tagsinput input {
        border: none;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        outline: none;
        background-color: transparent;
        padding: 0;
        margin: 0;
        width: auto !important;
        max-width: inherit;
    }

        .bootstrap-tagsinput input:focus {
            border: none;
            -webkit-box-shadow: none;
            -moz-box-shadow: none;
            box-shadow: none;
        }

    .bootstrap-tagsinput .tag {
        color: #FFF;
        position: relative;
        margin: 3px 0 3px 2px;
        display: inline-block;
    }

        .bootstrap-tagsinput .tag [data-role="remove"] {
            display: block;
            top: -1px;
            right: 0px;
            padding: 3px 4px 3px 5px;
            width: 23px;
            height: 22px;
            position: absolute;
            cursor: pointer;
        }

            .bootstrap-tagsinput .tag [data-role="remove"]:hover {
                background: rgba(0, 0, 0, 0.3);
                -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
                -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
                box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
            }

                .bootstrap-tagsinput .tag [data-role="remove"]:hover:active {
                    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
                    -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
                    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
                }

            .bootstrap-tagsinput .tag [data-role="remove"]:after {
                content: "\f057";
                font-family: fontAwesome;
                padding: 2px 1px;
                line-height: 17px;
                font-size: 15px;
                text-align: center;
            }

/*
    ██╗   ██╗     █████╗     ██████╗ 
    ╚██╗ ██╔╝    ██╔══██╗    ██╔══██╗
     ╚████╔╝     ███████║    ██████╔╝
      ╚██╔╝      ██╔══██║    ██╔═══╝ 
       ██║       ██║  ██║    ██║     
       ╚═╝       ╚═╝  ╚═╝    ╚═╝     
*/
/*!
* Timepicker Component for Twitter Bootstrap
*
* Copyright 2013 Joris de Wit
*
* Contributors https://github.com/jdewit/bootstrap-timepicker/graphs/contributors
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
.bootstrap-timepicker {
    position: relative;
}

    .bootstrap-timepicker.pull-right .bootstrap-timepicker-widget.dropdown-menu {
        left: auto;
        right: 0;
    }

        .bootstrap-timepicker.pull-right .bootstrap-timepicker-widget.dropdown-menu:before {
            left: auto;
            right: 12px;
        }

        .bootstrap-timepicker.pull-right .bootstrap-timepicker-widget.dropdown-menu:after {
            left: auto;
            right: 13px;
        }

    .bootstrap-timepicker .add-on {
        cursor: pointer;
    }

        .bootstrap-timepicker .add-on i {
            display: inline-block;
            width: 16px;
            height: 16px;
        }

.bootstrap-timepicker-widget.dropdown-menu {
    padding: 4px;
}

    .bootstrap-timepicker-widget.dropdown-menu.open {
        display: inline-block;
    }

    .bootstrap-timepicker-widget.dropdown-menu:before, .bootstrap-timepicker-widget.dropdown-menu:after {
        content: "";
        display: inline-block;
        position: absolute;
    }

    .bootstrap-timepicker-widget.dropdown-menu:before {
        border-bottom: 7px solid rgba(0, 0, 0, 0.2);
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
    }

    .bootstrap-timepicker-widget.dropdown-menu:after {
        border-bottom: 6px solid #FFFFFF;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
    }

.bootstrap-timepicker-widget.timepicker-orient-left:before {
    left: 6px;
}

.bootstrap-timepicker-widget.timepicker-orient-left:after {
    left: 7px;
}

.bootstrap-timepicker-widget.timepicker-orient-right:before {
    right: 6px;
}

.bootstrap-timepicker-widget.timepicker-orient-right:after {
    right: 7px;
}

.bootstrap-timepicker-widget.timepicker-orient-top:before {
    top: -7px;
}

.bootstrap-timepicker-widget.timepicker-orient-top:after {
    top: -6px;
}

.bootstrap-timepicker-widget.timepicker-orient-bottom:before {
    bottom: -7px;
    border-bottom: 0;
    border-top: 7px solid #999;
}

.bootstrap-timepicker-widget.timepicker-orient-bottom:after {
    bottom: -6px;
    border-bottom: 0;
    border-top: 6px solid #ffffff;
}

.bootstrap-timepicker-widget a.btn, .bootstrap-timepicker-widget input {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
}

.bootstrap-timepicker-widget table {
    width: 100%;
    margin: 0;
}

    .bootstrap-timepicker-widget table td {
        text-align: center;
        height: 30px;
        margin: 0;
        padding: 2px;
    }

        .bootstrap-timepicker-widget table td:not(.seperator) {
            min-width: 30px;
        }

        .bootstrap-timepicker-widget table td span {
            width: 100%;
        }

        .bootstrap-timepicker-widget table td a {
            border: 1px transparent solid;
            width: 100%;
            display: inline-block;
            margin: 0;
            padding: 8px 0;
            outline: 0;
            color: #333;
        }

            .bootstrap-timepicker-widget table td a:hover {
                text-decoration: none;
                background-color: #eee;
                border-color: #ddd;
                -webkit-border-radius: 4px;
                -moz-border-radius: 4px;
                -ms-border-radius: 4px;
                -o-border-radius: 4px;
                border-radius: 4px;
            }

            .bootstrap-timepicker-widget table td a i {
                margin-top: 2px;
                font-size: 18px;
            }

        .bootstrap-timepicker-widget table td input {
            width: 25px;
            margin: 0;
            text-align: center;
        }

.bootstrap-timepicker-widget .modal-content {
    padding: 4px;
}

@media (min-width: 767px) {
    .bootstrap-timepicker-widget.modal {
        width: 200px;
        margin-left: -100px;
    }
}

@media (max-width: 767px) {
    .bootstrap-timepicker {
        width: 100%;
    }

        .bootstrap-timepicker .dropdown-menu {
            width: 100%;
        }
}
/*@import "components/bootstrap-clock-picker";
@import "components/bootstrap-color-picker";*/
/*@import "components/data-table";
@import "components/table-tools";
@import "components/dropzone";
@import "components/fd-slider";
@import "components/fullcalendar";*/
/*@import "components/ionslider";*/
/*
    ██╗   ██╗     █████╗     ██████╗ 
    ╚██╗ ██╔╝    ██╔══██╗    ██╔══██╗
     ╚████╔╝     ███████║    ██████╔╝
      ╚██╔╝      ██╔══██║    ██╔═══╝ 
       ██║       ██║  ██║    ██║     
       ╚═╝       ╚═╝  ╚═╝    ╚═╝     
*/
article.sortable-grid {
    min-height: 30px;
}

.widget-content-padding {
    padding: 20px;
}

    .widget-content-padding .well {
        margin-bottom: 0px;
    }

.jarviswidget {
    margin: 0 0 30px 0;
    position: relative;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    padding: 0;
}

    .jarviswidget > header {
        height: 34px;
        /* make sure ".jarviswidget-loader" is also the same height or it will flicker during collapse */
        padding: 0;
        line-height: 40px;
        color: #333;
        border: 1px solid #C2C2C2;
        background: #fafafa;
        -webkit-box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.05);
        -moz-box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.05);
        box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.05);
    }

        .jarviswidget > header > .widget-icon {
            display: block;
            width: 30px;
            height: 32px;
            position: relative;
            float: left;
            font-size: 111%;
            line-height: 32px;
            text-align: center;
            margin-right: -10px;
        }

        .jarviswidget > header > h2 {
            margin-left: 10px !important;
            float: left;
        }

        .jarviswidget > header > :first-child.widget-icon {
            margin-left: 0;
        }

        .jarviswidget > header h2 {
            height: 100%;
            width: auto;
            display: inline-block;
            font-size: 14px;
            position: relative;
            margin: 0;
            line-height: 34px;
            font-weight: normal;
            letter-spacing: 0px;
        }

        .jarviswidget > header .jarviswidget-icon {
            width: 16px;
            height: 16px;
            float: left;
            margin: 12px 10px 0 0;
            display: block;
            zoom: 1;
            z-index: 4000;
        }

.jarviswidget-ctrls {
    width: auto;
    float: right;
    padding: 0;
    margin: 0;
}

    .jarviswidget-ctrls .button-icon {
        min-width: 30px;
        height: 32px;
        float: left;
        position: relative;
        font-family: Arial, Helvetica, sans-serif;
        border-left: 1px solid rgba(0, 0, 0, 0.09);
    }

        .jarviswidget-ctrls .button-icon:hover {
            background-color: rgba(0, 0, 0, 0.05);
        }

.jarviswidget-loader {
    width: 32px;
    height: 32px;
    margin: 0;
    float: right;
    background-repeat: no-repeat;
    background-position: center center;
    display: none;
    text-align: center;
    line-height: 32px;
    font-size: 111%;
}

.jarviswidget > div {
    float: left;
    width: 100%;
    position: relative;
    font-size: 13px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    margin: 0;
    border-width: 1px 1px 2px 1px;
    border-style: solid;
    border-top: none;
    border-right-color: #CCC !important;
    border-bottom-color: #CCC !important;
    border-left-color: #CCC !important;
    padding: 0 15px;
    overflow: visible;
    background-color: #fff !important;
}

.jarviswidget .widget-body {
    /*min-height: 100px;*/
    position: relative;
    padding-top: 13px;
    padding-bottom: 13px;
}

    .jarviswidget .widget-body.widget-hide-overflow {
        overflow: hidden;
    }

.jarviswidget.well {
    margin: 0 0 30px 0;
}

    .jarviswidget.well.transparent .widget-body.no-padding {
        margin: 0 !important;
    }

    .jarviswidget.well > div {
        border: none !important;
        -webkit-box-shadow: "none !important";
        -moz-box-shadow: "none !important";
        box-shadow: "none !important";
    }

    .jarviswidget.well header {
        display: none;
    }

.jarviswidget-editbox {
    display: none;
    padding: 10px;
}

.jarviswidget-timestamp {
    font-size: 12px;
    color: #868686;
    font-style: italic;
    margin: 10px 0 0;
}

.jarviswidget-placeholder {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    margin-bottom: 28px;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #FFC;
    border: 1px dashed #A7A7A7;
}

.jarviswidget-editbox {
    border-bottom: 1px solid #B1B1B1;
    background-color: #fff;
    margin: -13px -13px 13px;
}

.jarviswidget-remove-colors {
    color: #333 !important;
    padding: 0 !important;
    background: none !important;
}

.jarviswidget-color-magenta > header {
    background: #6E3671;
    border-color: #6E3671 !important;
    color: #FFF;
}

.jarviswidget-color-pink > header {
    background: #AC5287;
    border-color: #AC5287 !important;
    color: #FFF;
}

.jarviswidget-color-pinkDark > header {
    background: #A8829F;
    border-color: #A8829F !important;
    color: #FFF;
}

.jarviswidget-color-yellow > header {
    background: #B09B5B;
    border-color: #B09B5B !important;
    color: #FFF;
}

.jarviswidget-color-orange > header {
    background: #C79121;
    border-color: #C79121 !important;
    color: #FFF;
}

.jarviswidget-color-orangeDark > header {
    background: #A57225;
    border-color: #A57225 !important;
    color: #FFF;
}

.jarviswidget-color-darken > header {
    background: #404040;
    border-color: #404040 !important;
    color: #FFF;
}

.jarviswidget-color-purple > header {
    background: #65596B;
    border-color: #65596B !important;
    color: #FFF;
}

.jarviswidget-color-teal > header {
    background: #568A89;
    border-color: #568A89 !important;
    color: #FFF;
}

.jarviswidget-color-blueDark > header {
    background: #4C4F53;
    border-color: #4C4F53 !important;
    color: #FFF;
}

.jarviswidget-color-blue > header {
    background: #60747C;
    border-color: #60747C !important;
    color: #FFF;
}

.jarviswidget-color-blueLight > header {
    background: #CCDADF;
    border-color: #92A2A8 !important;
    color: #2b363c;
}

.jarviswidget-color-red > header {
    background: #931313;
    border-color: #931313 !important;
    color: #fff;
}

.jarviswidget-color-redLight > header {
    background: #A65858;
    border-color: #A65858 !important;
    color: #fff;
}

.jarviswidget-color-white > header {
    background: #fff;
    border-color: #C8C8C8 !important;
    color: #838383;
}

.jarviswidget-color-greenDark > header {
    background: #496949;
    border-color: #638167 !important;
    color: #fff;
}

.jarviswidget-color-green > header {
    background: #356E35;
    border-color: #638167 !important;
    color: #fff;
}

.jarviswidget-color-greenLight > header {
    background: #71843F;
    border-color: #638167 !important;
    color: #fff;
}

    .jarviswidget-color-magenta > header > .jarviswidget-ctrls a, .jarviswidget-color-pink > header > .jarviswidget-ctrls a, .jarviswidget-color-pinkDark > header > .jarviswidget-ctrls a, .jarviswidget-color-yellow > header > .jarviswidget-ctrls a, .jarviswidget-color-orange > header > .jarviswidget-ctrls a, .jarviswidget-color-orangeDark > header > .jarviswidget-ctrls a, .jarviswidget-color-darken > header > .jarviswidget-ctrls a, .jarviswidget-color-purple > header > .jarviswidget-ctrls a, .jarviswidget-color-teal > header > .jarviswidget-ctrls a, .jarviswidget-color-blueDark > header > .jarviswidget-ctrls a, .jarviswidget-color-blue > header > .jarviswidget-ctrls a, .jarviswidget-color-blueLight > header > .jarviswidget-ctrls a, .jarviswidget-color-red > header > .jarviswidget-ctrls a, .jarviswidget-color-redLight > header > .jarviswidget-ctrls a, .jarviswidget-color-white > header > .jarviswidget-ctrls a, .jarviswidget-color-greenDark > header > .jarviswidget-ctrls a, .jarviswidget-color-green > header > .jarviswidget-ctrls a, .jarviswidget-color-greenLight > header > .jarviswidget-ctrls a {
        color: #fff !important;
    }

.jarviswidget-color-magenta .nav-tabs li:not(.active) a, .jarviswidget-color-pink .nav-tabs li:not(.active) a, .jarviswidget-color-pinkDark .nav-tabs li:not(.active) a, .jarviswidget-color-yellow .nav-tabs li:not(.active) a, .jarviswidget-color-orange .nav-tabs li:not(.active) a, .jarviswidget-color-orangeDark .nav-tabs li:not(.active) a, .jarviswidget-color-darken .nav-tabs li:not(.active) a, .jarviswidget-color-purple .nav-tabs li:not(.active) a, .jarviswidget-color-teal .nav-tabs li:not(.active) a, .jarviswidget-color-blueDark .nav-tabs li:not(.active) a, .jarviswidget-color-blue .nav-tabs li:not(.active) a, .jarviswidget-color-blueLight .nav-tabs li:not(.active) a, .jarviswidget-color-red .nav-tabs li:not(.active) a, .jarviswidget-color-redLight .nav-tabs li:not(.active) a, .jarviswidget-color-white .nav-tabs li:not(.active) a, .jarviswidget-color-greenDark .nav-tabs li:not(.active) a, .jarviswidget-color-green .nav-tabs li:not(.active) a, .jarviswidget-color-greenLight .nav-tabs li:not(.active) a {
    color: #fff !important;
}

.jarviswidget-color-magenta .nav-tabs li a:hover, .jarviswidget-color-pink .nav-tabs li a:hover, .jarviswidget-color-pinkDark .nav-tabs li a:hover, .jarviswidget-color-yellow .nav-tabs li a:hover, .jarviswidget-color-orange .nav-tabs li a:hover, .jarviswidget-color-orangeDark .nav-tabs li a:hover, .jarviswidget-color-darken .nav-tabs li a:hover, .jarviswidget-color-purple .nav-tabs li a:hover, .jarviswidget-color-teal .nav-tabs li a:hover, .jarviswidget-color-blueDark .nav-tabs li a:hover, .jarviswidget-color-blue .nav-tabs li a:hover, .jarviswidget-color-blueLight .nav-tabs li a:hover, .jarviswidget-color-red .nav-tabs li a:hover, .jarviswidget-color-redLight .nav-tabs li a:hover, .jarviswidget-color-white .nav-tabs li a:hover, .jarviswidget-color-greenDark .nav-tabs li a:hover, .jarviswidget-color-green .nav-tabs li a:hover, .jarviswidget-color-greenLight .nav-tabs li a:hover {
    color: #333 !important;
}

.jarviswidget-color-blueLight .nav-tabs li:not(.active) a {
    color: #2b363c !important;
}

.jarviswidget-color-blueLight .nav-tabs li a:hover {
    color: #2b363c !important;
}

.jarviswidget-color-white .nav-tabs li:not(.active) a {
    color: #838383 !important;
}

.jarviswidget-color-white .nav-tabs li a:hover {
    color: #838383 !important;
}

.jarviswidget header .nav-tabs {
    border-bottom-color: transparent;
}

    .jarviswidget header .nav-tabs > li > a {
        border-radius: 0px;
        border: none;
        padding: 7px 15px 6px;
    }

    .jarviswidget header .nav-tabs > li.active > a, .jarviswidget header .nav-tabs > li.active > a:hover, .jarviswidget header .nav-tabs > li.active > a:focus {
        color: #555;
        background-color: #FFF;
        border: 1px solid #C2C2C2;
        border-bottom-color: transparent;
        border-top: none;
        cursor: default;
    }

.jarviswidget header:first-child .nav-tabs {
    float: left;
}

    .jarviswidget header:first-child .nav-tabs li {
        padding-left: 0;
    }

        .jarviswidget header:first-child .nav-tabs li a {
            color: #333;
        }

    .jarviswidget header:first-child .nav-tabs.pull-right li:last-child a {
        margin-right: 0 !important;
        border-right: none !important;
    }

.jarviswidget header .nav-pills {
    margin: 3px;
}

    .jarviswidget header .nav-pills > li > a {
        padding: 3px 5px 4px;
    }

.ui-sortable .jarviswidget-sortable > header {
    cursor: move;
    line-height: normal;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.05);
    -moz-box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.05);
}

.ui-sortable .jarviswidget-sortable.jarviswidget-collapsed > header {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}

.widget-toolbar {
    display: inline-block;
    float: right;
    width: auto;
    height: 32px;
    line-height: 32px;
    position: relative;
    border-left: 1px solid rgba(0, 0, 0, 0.09);
    cursor: pointer;
    padding: 0 8px;
    text-align: center;
}

    .widget-toolbar.no-border {
        border-left: none;
    }

    .widget-toolbar > .smart-form {
        margin-top: 2px;
    }

        .widget-toolbar > .smart-form .radio input + i,
        .widget-toolbar > .smart-form .checkbox input + i,
        .widget-toolbar > .smart-form .toggle input + i {
            border-width: 1px;
            border-color: #C7C7C7 !important;
            margin-top: 1px;
            -webkit-box-shadow: 0 1px 1px #FFF, 0 1px 1px #858585 inset;
            -moz-box-shadow: 0 1px 1px #FFF, 0 1px 1px #858585 inset;
            box-shadow: 0 1px 1px #FFF, 0 1px 1px #858585 inset;
        }

        .widget-toolbar > .smart-form .toggle:last-child {
            font-size: 12px;
            line-height: 29px;
        }

    .widget-toolbar > :first-child {
        text-align: left;
    }

    .widget-toolbar .btn-group {
        margin-top: -3px;
    }

    .widget-toolbar > .btn {
        margin-top: -3px;
        font-size: 12px !important;
        padding: 1px 8px !important;
    }

    .widget-toolbar .smart-form label.checkbox,
    .widget-toolbar .smart-form label.radio {
        line-height: 29px;
    }

    .widget-toolbar > .label {
        vertical-align: middle;
        margin-top: -3px;
        display: inline-block;
        text-align: center;
        font-size: 12px;
        padding: 4px 7px;
    }

    .widget-toolbar > .badge {
        padding: 5px 5px;
        font-size: 14px;
        border-radius: 50%;
        font-weight: normal;
        min-width: 24px;
        text-align: center !important;
    }

    .widget-toolbar .progress {
        width: 130px;
        margin: 7px 0 0 0;
        height: 18px !important;
        font-size: 12px;
        box-shadow: 0 1px 0 transparent, 0 0 0 1px #d1d1d1 inset;
        -webkit-box-shadow: 0 1px 0 transparent, 0 0 0 1px #d1d1d1 inset;
        -moz-box-shadow: 0 1px 0 transparent, 0 0 0 1px #d1d1d1 inset;
    }

    .widget-toolbar .progress-bar {
        font-size: 12px;
    }

    .widget-toolbar .pagination {
        margin: 4px 0;
    }

        .widget-toolbar .pagination > li > a {
            padding: 2px 7px;
        }

    .widget-toolbar .widget-text-input {
        max-width: 220px;
    }

    .widget-toolbar input[type='text'] {
        height: 28px !important;
        margin-top: 2px;
    }

.widget-body.no-padding {
    margin: 0 -15px;
}

    .widget-body.no-padding .k-widget.k-grid {
        border: 0px;
    }

    .widget-body.no-padding .form-actions {
        padding-bottom: 13px;
        margin: 0px;
    }

    .widget-body.no-padding .alert {
        margin: 0 0 10px;
        padding: 10px;
        -webkit-box-shadow: "none !important";
        -moz-box-shadow: "none !important";
        box-shadow: "none !important";
        border-width: 0px 0px 1px !important;
        -webkit-border-radius: "0px !important";
        -moz-border-radius: "0px !important";
        -ms-border-radius: "0px !important";
        -o-border-radius: "0px !important";
        border-radius: "0px !important";
    }

    .widget-body.no-padding .cke_chrome {
        border: none;
    }

.widget-body > table {
    margin-bottom: 0;
}

.no-padding .md-editor {
    border: none;
}

.no-padding .widget-footer {
    margin: 0;
}

.no-padding .jarviswidget-editbox {
    margin: 0 0 10px;
}

.widget-footer {
    display: block;
    min-height: 32px;
    vertical-align: middle;
    position: relative;
    background-color: #F8F7F7;
    padding: 5px;
    border-top: 1px solid #E4E4E4;
    text-align: right;
    margin: 0px -13px -13px;
}

    .widget-footer.smart-form > label {
        margin-top: 4px;
        display: block;
    }

body.nooverflow {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

#jarviswidget-fullscreen-mode {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
}

    #jarviswidget-fullscreen-mode .jarviswidget {
        margin: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
    }

        #jarviswidget-fullscreen-mode .jarviswidget > div {
            overflow-y: scroll;
            -webkit-border-radius: 0;
            -moz-border-radius: 0;
            -ms-border-radius: 0;
            -o-border-radius: 0;
            border-radius: 0;
        }

            #jarviswidget-fullscreen-mode .jarviswidget > div > header {
                cursor: default;
            }

.widget-body-toolbar,
.smart-form.widget-body-toolbar {
    display: block;
    padding: 8px 10px;
    margin: -13px -13px 13px;
    min-height: 42px;
    border-bottom: 1px solid #ccc;
    background: #fafafa;
}

.no-padding.widget-body-toolbar,
.no-padding .widget-body-toolbar,
.no-padding .smart-form.widget-body-toolbar {
    display: block;
    margin: 0px;
}

.widget-body-toolbar.smart-form .inline-group,
.smart-form .widget-body-toolbar .inline-group {
    float: left;
    margin-top: 4px;
}

.widget-body-toolbar .btn {
    vertical-align: middle;
}

.widget-body-toolbar .btn-xs {
    margin-top: 5px;
}

.widget-body-ajax-loading::before {
    content: url("../../img/ajax-loader.gif");
    padding-top: 18%;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    color: #fff;
    display: block;
    background: rgba(255, 255, 255, 0.4);
    height: 100%;
    z-index: 1;
    width: 100%;
    position: absolute;
}

.widget-body-ajax-loading:hover {
    cursor: wait !important;
}

/* 
	 * WIDGET COLOR DROPDOWN
	 * 
	 */
.color-select li span,
.color-box {
    display: block;
    width: 22px;
    height: 22px;
    padding: 0;
    background: #333;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.color-select {
    list-style: none;
    margin: 0;
    padding: 4px;
    min-width: 166px;
    max-width: 156px;
    right: -3px;
}

    .color-select li {
        display: block;
        margin: 2px;
        float: left;
    }

        .color-select li span:hover {
            border: 3px solid rgba(0, 0, 0, 0.2);
        }

.color-box:hover,
.open .color-box {
    outline: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.color-box {
    position: relative;
    vertical-align: middle;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    outline: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.3) !important;
}

    .color-box:active {
        top: 1px;
        left: 1px;
    }

    .color-box:hover {
        -webkit-transform: scale(1.07);
        -moz-transform: scale(1.07);
    }

.widget-toolbar > .color-box {
    margin-top: 7px;
    width: 18px;
    height: 18px;
    outline: 1px solid rgba(0, 0, 0, 0.2);
}

    .widget-toolbar > .color-box:hover, .widget-toolbar > .color-box:active, .widget-toolbar > .color-box:focus {
        outline: 1px solid rgba(0, 0, 0, 0.25) !important;
    }

.widget-toolbar .dropdown-menu.color-select {
    right: -1px;
}

/*
	 * ICONS
	 */
.jarviswidget-ctrls a {
    text-decoration: none;
    font-size: 14px;
    text-align: center;
    display: inline-block;
    line-height: 32px;
    padding: 0;
    margin: 0;
    color: #333;
}

/*
	 * RTL - SUPPORT
	 */
.rtl .jarviswidget > header {
    padding: 0 7px 0 0;
}

    .rtl .jarviswidget > header h2 {
        float: right;
        text-align: right;
    }

    .rtl .jarviswidget > header .jarviswidget-icon {
        float: right;
        margin: 12px 0 0 7px;
    }

.rtl .jarviswidget-ctrls {
    float: left;
    padding: 10px 0 0 3px;
    margin: 0;
}

    .rtl .jarviswidget-ctrls .button-icon {
        margin: 0 0 5px 5px;
    }

.rtl .jarviswidget-loader {
    float: left;
}

/*
	 * CLEARFIX
	 */
.jarviswidget:before,
.jarviswidget:after,
.jarviswidget > div:before,
.jarviswidget > div:after,
.inner-spacer:before,
.inner-spacer:after,
.jarviswidget-editbox:before,
.jarviswidget-editbox:after,
.clearfix:before,
.clearfix:after {
    content: "\0020";
    display: block;
    height: 0;
    overflow: hidden;
    font-size: 0;
    line-height: 0;
    visibility: hidden;
}

.jarviswidget:after,
.jarviswidget > div:after,
.inner-spacer:after,
.jarviswidget-editbox:after,
.clearfix:after {
    clear: both;
}

.jarviswidget,
.jarviswidget > div,
.inner-spacer:after,
.jarviswidget-editbox,
.clearfix {
    zoom: 1;
    /*IE*/
}

.widget-toolbar.smart-form .icon-append,
.widget-toolbar.smart-form .icon-prepend,
.widget-toolbar .smart-form .icon-append,
.widget-toolbar .smart-form .icon-prepend {
    top: 3px !important;
}

/*@import "components/jcrop";*/
/*@import "components/jq-grid";*/
/*
    ██╗   ██╗     █████╗     ██████╗ 
    ╚██╗ ██╔╝    ██╔══██╗    ██╔══██╗
     ╚████╔╝     ███████║    ██████╔╝
      ╚██╔╝      ██╔══██║    ██╔═══╝ 
       ██║       ██║  ██║    ██║     
       ╚═╝       ╚═╝  ╚═╝    ╚═╝     
*/
.select2-container,
.select2-drop,
.select2-search,
.select2-search input {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.select2-container {
    margin: 0;
    position: relative;
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align: middle;
}

    .select2-container .select2-choice {
        display: block;
        height: 32px;
        padding: 0 0 0 8px;
        overflow: hidden;
        position: relative;
        border: 1px solid #ccc;
        white-space: nowrap;
        line-height: 32px;
        color: #444;
        text-decoration: none;
        -webkit-background-clip: padding;
        -moz-background-clip: padding;
        background-clip: padding-box;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
        background-color: #fff;
    }

        .select2-container .select2-choice > .select2-chosen {
            margin-right: 26px;
            display: block;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
        }

        .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('@{base-url}/select2.png') right top no-repeat;*/
            cursor: pointer;
            outline: 0;
        }

            .select2-container .select2-choice abbr:hover {
                cursor: pointer;
            }

        .select2-container .select2-choice .select2-arrow {
            display: inline-block;
            width: 34px;
            height: 100%;
            position: absolute;
            right: 0;
            top: 0;
            border-left: 1px solid #ccc;
            -webkit-background-clip: padding;
            -moz-background-clip: padding;
            background-clip: padding-box;
            background: #eee;
        }

            .select2-container .select2-choice .select2-arrow b {
                width: 100%;
                height: 100%;
                display: inline-block;
                font-family: FontAwesome;
                font-style: normal;
                font-weight: normal;
                line-height: 1;
                -webkit-font-smoothing: antialiased;
                -moz-osx-font-smoothing: grayscale;
                position: relative;
                font-size: 14px;
            }

                .select2-container .select2-choice .select2-arrow b:before {
                    content: "\f107";
                    width: 100%;
                    height: 100%;
                    text-align: center;
                    display: block;
                }

    .select2-container.select2-drop-above .select2-choice {
        border-bottom-color: #ccc;
    }

    .select2-container.select2-allowclear .select2-choice .select2-chosen {
        margin-right: 42px;
    }

    .select2-container.select2-allowclear .select2-choice abbr {
        display: inline-block;
    }

.select2-container-active .select-choice,
.select2-container-active .select2-choices {
    border: 1px solid #5D98CC;
    outline: none;
}

.select2-container.select2-container-disabled .select2-choice {
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    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;
    }

.select2-container-multi .select2-choices {
    height: auto !important;
    height: 1%;
    margin: 0;
    padding: 0;
    position: relative;
    border: 1px solid #ccc;
    cursor: text;
    overflow: hidden;
    background-color: #fff;
    min-height: 26px;
}

    .select2-container-multi .select2-choices li {
        float: left;
        list-style: none;
    }

    .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;
            -moz-box-shadow: none;
            box-shadow: none;
            background: transparent !important;
        }

            .select2-container-multi .select2-choices .select2-search-field input.select2-active {
                background: #ffffff url("../../img/select2-spinner.gif") no-repeat 100% !important;
            }

    .select2-container-multi .select2-choices .select2-search-choice {
        padding: 1px 28px 1px 8px;
        margin: 4px 0 3px 5px;
        position: relative;
        line-height: 18px;
        color: #fff;
        cursor: default;
        border: 1px solid #2a6395;
        -webkit-background-clip: padding;
        -moz-background-clip: padding;
        background-clip: padding-box;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
        background-color: #3276b1;
    }

        .select2-container-multi .select2-choices .select2-search-choice .select2-chosen {
            cursor: default;
        }

    .select2-container-multi .select2-choices .select2-search-choice-focus {
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
        opacity: 0.8;
    }

.select2-container-multi .select2-choices-close {
    display: block;
    top: 0;
    right: 0;
    padding: 3px 4px 3px 6px;
}

    .select2-container-multi .select2-choices-close:hover {
        background: rgba(0, 0, 0, 0.3);
    }

.select2-container-multi.select2-container-active .select2-choices {
    border: 1px solid #5D98CC;
    outline: none;
}

.select2-container-multi.select2-container-disabled .select2-choices {
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

    .select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
        padding: 3px 5px;
        border: 1px solid #4a90cc;
        background-image: none;
        background-color: #86b4dd;
        cursor: not-allowed;
    }

        .select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close {
            display: none;
            background: none;
        }

.select2-drop {
    margin-top: -1px;
    width: 100%;
    position: absolute;
    z-index: 9999;
    top: 100%;
    background: #fff;
    color: #000;
    border: 1px solid #ccc;
    border-top: 0;
    -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
}

.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;
    z-index: 9998;
    background: #fff;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    /* styles required for IE to work */
}

.select2-drop-auto-width {
    border-top: 1px solid #ccc;
    width: auto;
}

    .select2-drop-auto-width .select2-search {
        padding-top: 4px;
    }

.select2-drop.select2-drop-above {
    margin-bottom: 0;
    border-top: 1px solid #5D98CC;
    border-top-width: 3px;
    border-bottom: 0;
    -webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15);
    box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15);
}

    .select2-drop.select2-drop-above.select2-drop-active {
        border-top-width: 3px;
    }

    .select2-drop.select2-drop-above .select2-search input {
        margin-top: 4px;
    }

    .select2-drop.select2-drop-above .select2-search:before {
        top: 34%;
    }

.select2-drop-active {
    border: 1px solid #5D98CC;
    border-top: none;
    border-bottom-width: 3px;
}

.select2-search {
    display: inline-block;
    width: 100%;
    min-height: 26px;
    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: 29px;
        padding: 6px 20px 5px 10px;
        margin: 0;
        outline: 0;
        font-family: sans-serif;
        font-size: 1em;
        border: 1px solid #aaa;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        background: #fff;
        background-image: -webkit-gradient(linear, top, #ffffff 85%, #eeeeee 99%);
        background-image: -webkit-linear-gradient(top, #ffffff 85%, #eeeeee 99%);
        background-image: -moz-linear-gradient(top, #ffffff 85%, #eeeeee 99%);
        background-image: -ms-linear-gradient(top, #ffffff 85%, #eeeeee 99%);
        background-image: -o-linear-gradient(top, #ffffff 85%, #eeeeee 99%);
        background-image: linear-gradient(top, #ffffff 85%, #eeeeee 99%);
    }

        .select2-search input.select2-active {
            background: #ffffff url("../images/select2-spinner.gif") no-repeat 100%;
            background: url("../images/select2-spinner.gif") no-repeat 100%, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #ffffff), color-stop(0.99, #eeeeee));
            background: url("../images/select2-spinner.gif") no-repeat 100%, -webkit-linear-gradient(center bottom, #ffffff 85%, #eeeeee 99%);
            background: url("../images/select2-spinner.gif") no-repeat 100%, -moz-linear-gradient(center bottom, #ffffff 85%, #eeeeee 99%);
            background: url("../images/select2-spinner.gif") no-repeat 100%, linear-gradient(top, #ffffff 85%, #eeeeee 99%);
        }

    .select2-search:before {
        display: inline-block;
        font-family: FontAwesome;
        font-style: normal;
        font-weight: normal;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        position: absolute;
        content: "\f002";
        top: 25%;
        right: 10px;
        color: #686868 !important;
    }

.select2-dropdown-open .select2-choice {
    border-bottom-color: transparent;
    -webkit-box-shadow: 0 1px 0 #fff inset;
    -moz-box-shadow: 0 1px 0 #fff inset;
    box-shadow: 0 1px 0 #fff inset;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-color: #fff;
}

    .select2-dropdown-open .select2-choice .select2-arrow {
        background: transparent;
        border-left: none;
        filter: none;
    }

        .select2-dropdown-open .select2-choice .select2-arrow b {
            background-position: -18px 1px;
        }

.select2-dropdown-open.select2-drop-above .select2-choice, .select2-dropdown-open.select2-drop-above .select2-choices {
    border: 1px solid #5D98CC;
    border-top-color: transparent;
}

/* 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: transparent;
}

    .select2-results ul.select2-result-sub {
        margin: 0;
        padding-left: 0;
    }

        .select2-results ul.select2-result-sub > li .select2-result-label {
            padding-left: 20px;
        }

        .select2-results ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
            padding-left: 40px;
        }

        .select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
            padding-left: 60px;
        }

        .select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
            padding-left: 80px;
        }

        .select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
            padding-left: 100px;
        }

        .select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
            padding-left: 110px;
        }

        .select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
            padding-left: 120px;
        }

    .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 li em {
            background: #feffde;
            font-style: normal;
        }

    .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;
        user-select: none;
    }

    .select2-results .select2-highlighted {
        background: #3276b1;
        color: #fff;
    }

        .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: 3px 5px;
    }

    .select2-results .select2-disabled {
        background: #f4f4f4;
        display: list-item;
        cursor: default;
    }

        .select2-results .select2-disabled.select2-highlighted {
            color: #666;
            background: #f4f4f4;
            display: list-item;
            cursor: default;
        }

        .select2-results .select2-disabled .select2-selected {
            display: none;
        }

.select2-no-results {
    padding-left: 20px;
}

    .select2-no-results:before {
        display: inline-block;
        font-family: FontAwesome;
        font-style: normal;
        font-weight: normal;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: "\f05a";
        margin-right: 5px;
    }

.select2-more-results {
    background: #f4f4f4;
    display: list-item;
}

    .select2-more-results.select2-active {
        background: #f4f4f4 url("../../img/select2-spinner.gif") no-repeat 100%;
    }

.select2-locked {
    padding: 3px 5px 3px 5px !important;
}

.select2-default {
    color: #999 !important;
}

.select2-search-choice-close {
    display: block;
    min-width: 21px;
    min-height: 20px;
    position: absolute;
    right: 3px;
    top: 3px;
    margin: 0;
    padding: 0;
    font-size: 15px;
    text-decoration: none !important;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

    .select2-search-choice-close:before {
        color: #ffffff;
        content: "\f057";
    }

.select2-result-selectable .select2-match,
.select2-result-unselectable .select2-match {
    text-decoration: underline;
    vertical-align: inherit;
}

.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: 0 !important;
    top: 0 !important;
}

.select2-display-none {
    display: none;
}

.select2-measure-scrollbar {
    position: absolute;
    top: -10000px;
    left: -10000px;
    width: 100px;
    height: 100px;
    overflow: scroll;
}

/*@import "components/x-editable";*/
/*
    ██╗   ██╗     █████╗     ██████╗ 
    ╚██╗ ██╔╝    ██╔══██╗    ██╔══██╗
     ╚████╔╝     ███████║    ██████╔╝
      ╚██╔╝      ██╔══██║    ██╔═══╝ 
       ██║       ██║  ██║    ██║     
       ╚═╝       ╚═╝  ╚═╝    ╚═╝     
*/
/*Messagebox */
.divMessageBox {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 100000;
}

/*
.MessageIE{
    background-image: url("@{base-url}/bg.png");
    
}*/
.MessageBoxContainer {
    top: 35%;
    color: white;
    position: relative;
    width: 100%;
    background-color: #232323;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
}

    .MessageBoxContainer input {
        width: 50%;
        padding: 5px;
    }

    .MessageBoxContainer select {
        width: 50%;
        padding: 5px;
    }

.MessageBoxMiddle {
    position: relative;
    left: 20%;
    width: 60%;
}

    .MessageBoxMiddle .MsgTitle {
        letter-spacing: -1px;
        font-size: 24px;
        font-weight: 300;
    }

    .MessageBoxMiddle .pText {
        font-style: 30px;
    }

.MessageBoxButtonSection {
    width: 100%;
    height: 30px;
}

    .MessageBoxButtonSection button {
        float: right;
        margin-right: 7px;
        padding-left: 15px;
        padding-right: 15px;
        font-size: 14px;
        font-weight: bold;
    }

/* End of MessageBox */
.LoadingBoxContainer {
    top: 20%;
    color: white;
    position: relative;
    width: 100%;
    background-color: #232323;
}

    .LoadingBoxContainer .MsgTitle {
        font-size: 26px;
    }

    .LoadingBoxContainer .pText {
        font-style: 30px;
    }

.LoadingBoxMiddle {
    position: relative;
    left: 20%;
    width: 50%;
    padding: 10px;
}

#LoadingPoints {
    position: absolute;
}

/* bigBoxes */
.bigBox {
    position: fixed;
    right: 10px;
    bottom: 10px;
    background-color: #004d60;
    padding: 10px 10px 5px 10px;
    width: 390px;
    height: 150px;
    color: white;
    z-index: 99999;
    @box-sizing (content-box);
    border-left: 5px solid rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

    .bigBox span {
        font-size: 17px;
        font-weight: 300;
        letter-spacing: -1px;
        padding: 5px 0 !important;
        display: block;
    }

    .bigBox p {
        font-size: 13px;
        margin-top: 10px;
    }

    .bigBox .bigboxicon {
        font-size: 30px;
        text-align: left;
        position: absolute;
        top: 120px;
        left: 6px;
        z-index: 0;
    }

    .bigBox .bigboxnumber {
        width: 100%;
        text-align: right;
        font-size: 25px;
    }

#divMiniIcons {
    position: fixed;
    width: 415px;
    right: 10px;
    bottom: 180px;
    z-index: 9999;
    float: right;
}

    #divMiniIcons .cajita {
        text-align: center;
        vertical-align: middle;
        padding: 4px 6px;
        color: #FFF;
        float: right;
        cursor: pointer;
        display: block;
        background-color: #F00;
        font-size: 17px;
        margin-left: 4px;
        margin-top: 5px;
    }

        #divMiniIcons .cajita:active {
            top: 1px;
            left: 1px;
            position: relative;
        }

.botClose {
    position: absolute;
    right: 10px;
    height: 16px;
    width: 15px;
    cursor: pointer;
    font-size: 18px;
    opacity: .5;
    display: block;
    top: 15px;
}

    .botClose:hover {
        opacity: 1;
    }

.cajita img {
    width: 23px;
    height: 23px;
    padding-left: 3px;
    padding-top: 3px;
}

/* End of  bigBoxes */
/* SmallBox */
#divSmallBoxes {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999;
}

.SmallBox {
    position: absolute;
    right: 5px;
    top: 20px;
    width: 420px;
    color: white;
    z-index: 9999;
    overflow: hidden;
    border: 1px solid transparent;
}

    .SmallBox:hover {
        border: 1px solid #fff;
        cursor: pointer;
    }

    .SmallBox .foto {
        font-size: 50px;
        position: absolute;
        left: 17px;
    }

    .SmallBox .textoFull {
        width: 93%;
        float: left;
        padding-left: 20px;
    }

    .SmallBox .textoFoto {
        width: 78%;
        margin: 3px 20px 3px 80px;
        float: left;
    }

    .SmallBox span {
        font-size: 17px;
        font-weight: 300;
        letter-spacing: -1px;
        display: block;
        margin: 4px 0;
    }

    .SmallBox p {
        font-size: 13px;
        margin-top: 2px;
    }

.miniPic {
    position: absolute;
    bottom: 8px;
    right: 9px;
}

.miniIcono {
    height: 100%;
    font-size: 20px;
}

/* End of SmallBox */
#pageslide {
    /* These styles MUST be included. Do not change. */
    display: none;
    position: absolute;
    position: fixed;
    top: 0;
    height: 100%;
    z-index: 999999;
    /* Specify the width of your pageslide here */
    width: 305px;
    padding: 20px;
    /* These styles are optional, and describe how the pageslide will look */
    background-color: #004d60;
    color: #FFF;
    -webkit-box-shadow: inset 0 0 0px 0px #222;
    -moz-box-shadow: inset 0 0 0px 0px #222;
    box-shadow: inset 0 0 0px 0px #222;
}

.purehtml {
    color: white;
    font-size: 16px;
}

/* Mobile Phones */
@media screen and (max-width: 450px) and (max-width: 767px) {
    /* SmallBox Responsive */
    #divSmallBoxes {
        position: fixed;
        width: 90%;
        right: 0;
        top: 0;
    }

    .SmallBox {
        width: 95%;
    }

        .SmallBox:hover {
            box-shadow: 0px 0px 10px #888888;
            cursor: pointer;
        }

        .SmallBox span {
            font-size: 16px;
            /*font-weight:bold;*/
        }

        .SmallBox p {
            font-size: 12px;
            margin-top: 2px;
        }

        .SmallBox .textoFull {
            width: 93%;
            float: left;
            padding-left: 20px;
        }

        .SmallBox .textoFoto {
            width: 55%;
            margin: 3px 20px 3px 80px;
            float: left;
        }

    /* End of SmallBox Responsive*/
    /* bigBoxes Responsive */
    .bigBox {
        position: fixed;
        right: 10px;
        bottom: 10px;
        background-color: #004d60;
        padding-left: 10px;
        padding-top: 10px;
        padding-right: 10px;
        padding-bottom: 5px;
        width: 88%;
        height: 150px;
        color: white;
        z-index: 99999;
    }

    /* End of  bigBoxes  Responsive */
    /*Messagebox Responsive */
    .divMessageBox {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 100000;
    }

    .MessageBoxContainer {
        top: 25%;
        color: white;
        position: relative;
        width: 100%;
        background-color: #232323;
    }

        .MessageBoxContainer input, .MessageBoxContainer select {
            width: 50%;
            padding: 5px;
        }

    .MessageBoxMiddle {
        position: relative;
        left: 0;
        width: 100%;
        padding: 3px;
    }

        .MessageBoxMiddle .MsgTitle {
            font-size: 22px;
        }

        .MessageBoxMiddle .pText {
            font-style: 10px;
        }

    .MessageBoxButtonSection {
        width: 100%;
        height: 30px;
    }

        .MessageBoxButtonSection button {
            float: right;
            margin-right: 5px;
            padding-left: 15px;
            padding-right: 15px;
        }

    /* End of MessageBox Responsive */
}
/*
    ██╗   ██╗     █████╗     ██████╗ 
    ╚██╗ ██╔╝    ██╔══██╗    ██╔══██╗
     ╚████╔╝     ███████║    ██████╔╝
      ╚██╔╝      ██╔══██║    ██╔═══╝ 
       ██║       ██║  ██║    ██║     
       ╚═╝       ╚═╝  ╚═╝    ╚═╝     
*/
/* Animations */
.animated {
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

    .animated.fast {
        -webkit-animation-duration: 0.4s;
        -moz-animation-duration: 0.4s;
        -ms-animation-duration: 0.4s;
        -o-animation-duration: 0.4s;
        animation-duration: 0.4s;
    }

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    -moz-animation-name: fadeIn;
    -o-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@-moz-keyframes fadeInRight {
    0% {
        opacity: 0;
        -moz-transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateX(0);
    }
}

@-o-keyframes fadeInRight {
    0% {
        opacity: 0;
        -o-transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -o-transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    -moz-animation-name: fadeInRight;
    -o-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes fadeInUp {
    0% {
        opacity: 0;
        -moz-transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

@-o-keyframes fadeInUp {
    0% {
        opacity: 0;
        -o-transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -o-transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    -moz-animation-name: fadeInUp;
    -o-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-moz-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-o-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    -moz-animation-name: fadeOut;
    -o-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
    }
}

@-moz-keyframes fadeOutLeft {
    0% {
        opacity: 1;
        -moz-transform: translateX(0);
    }

    100% {
        opacity: 0;
        -moz-transform: translateX(-20px);
    }
}

@-o-keyframes fadeOutLeft {
    0% {
        opacity: 1;
        -o-transform: translateX(0);
    }

    100% {
        opacity: 0;
        -o-transform: translateX(-20px);
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-20px);
    }
}

.fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    -moz-animation-name: fadeOutLeft;
    -o-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft;
}

.animated {
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

    .animated.fast {
        -webkit-animation-duration: .5s;
        -moz-animation-duration: .5s;
        -o-animation-duration: .5s;
        animation-duration: .5s;
    }

    .animated.hinge {
        -webkit-animation-duration: 2s;
        -moz-animation-duration: 2s;
        -o-animation-duration: 2s;
        animation-duration: 2s;
    }

@-webkit-keyframes flash {
    0%, 50%, 100% {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}

@-moz-keyframes flash {
    0%, 50%, 100% {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}

@-o-keyframes flash {
    0%, 50%, 100% {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}

@keyframes flash {
    0%, 50%, 100% {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}

.animated.flash {
    -webkit-animation-name: flash;
    -moz-animation-name: flash;
    -o-animation-name: flash;
    animation-name: flash;
}

@-webkit-keyframes shake {
    0%, 100% {
        -webkit-transform: translateX(0);
    }

    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translateX(-10px);
    }

    20%, 40%, 60%, 80% {
        -webkit-transform: translateX(10px);
    }
}

@-moz-keyframes shake {
    0%, 100% {
        -moz-transform: translateX(0);
    }

    10%, 30%, 50%, 70%, 90% {
        -moz-transform: translateX(-10px);
    }

    20%, 40%, 60%, 80% {
        -moz-transform: translateX(10px);
    }
}

@-o-keyframes shake {
    0%, 100% {
        -o-transform: translateX(0);
    }

    10%, 30%, 50%, 70%, 90% {
        -o-transform: translateX(-10px);
    }

    20%, 40%, 60%, 80% {
        -o-transform: translateX(10px);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }

    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-10px);
    }

    20%, 40%, 60%, 80% {
        transform: translateX(10px);
    }
}

.animated.shake {
    -webkit-animation-name: shake;
    -moz-animation-name: shake;
    -o-animation-name: shake;
    animation-name: shake;
}

@-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-30px);
    }

    60% {
        -webkit-transform: translateY(-15px);
    }
}

@-moz-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -moz-transform: translateY(0);
    }

    40% {
        -moz-transform: translateY(-30px);
    }

    60% {
        -moz-transform: translateY(-15px);
    }
}

@-o-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -o-transform: translateY(0);
    }

    40% {
        -o-transform: translateY(-30px);
    }

    60% {
        -o-transform: translateY(-15px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

.animated.bounce {
    -webkit-animation-name: bounce;
    -moz-animation-name: bounce;
    -o-animation-name: bounce;
    animation-name: bounce;
}

@-webkit-keyframes tada {
    0% {
        -webkit-transform: scale(1);
    }

    10%, 20% {
        -webkit-transform: scale(0.9) rotate(-3deg);
    }

    30%, 50%, 70%, 90% {
        -webkit-transform: scale(1.1) rotate(3deg);
    }

    40%, 60%, 80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
    }

    100% {
        -webkit-transform: scale(1) rotate(0);
    }
}

@-moz-keyframes tada {
    0% {
        -moz-transform: scale(1);
    }

    10%, 20% {
        -moz-transform: scale(0.9) rotate(-3deg);
    }

    30%, 50%, 70%, 90% {
        -moz-transform: scale(1.1) rotate(3deg);
    }

    40%, 60%, 80% {
        -moz-transform: scale(1.1) rotate(-3deg);
    }

    100% {
        -moz-transform: scale(1) rotate(0);
    }
}

@-o-keyframes tada {
    0% {
        -o-transform: scale(1);
    }

    10%, 20% {
        -o-transform: scale(0.9) rotate(-3deg);
    }

    30%, 50%, 70%, 90% {
        -o-transform: scale(1.1) rotate(3deg);
    }

    40%, 60%, 80% {
        -o-transform: scale(1.1) rotate(-3deg);
    }

    100% {
        -o-transform: scale(1) rotate(0);
    }
}

@keyframes tada {
    0% {
        transform: scale(1);
    }

    10%, 20% {
        transform: scale(0.9) rotate(-3deg);
    }

    30%, 50%, 70%, 90% {
        transform: scale(1.1) rotate(3deg);
    }

    40%, 60%, 80% {
        transform: scale(1.1) rotate(-3deg);
    }

    100% {
        transform: scale(1) rotate(0);
    }
}

.animated.tada {
    -webkit-animation-name: tada;
    -moz-animation-name: tada;
    -o-animation-name: tada;
    animation-name: tada;
}

@-webkit-keyframes swing {
    20%, 40%, 60%, 80%, 100% {
        -webkit-transform-origin: top center;
    }

    20% {
        -webkit-transform: rotate(15deg);
    }

    40% {
        -webkit-transform: rotate(-10deg);
    }

    60% {
        -webkit-transform: rotate(5deg);
    }

    80% {
        -webkit-transform: rotate(-5deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
    }
}

@-moz-keyframes swing {
    20% {
        -moz-transform: rotate(15deg);
    }

    40% {
        -moz-transform: rotate(-10deg);
    }

    60% {
        -moz-transform: rotate(5deg);
    }

    80% {
        -moz-transform: rotate(-5deg);
    }

    100% {
        -moz-transform: rotate(0deg);
    }
}

@-o-keyframes swing {
    20% {
        -o-transform: rotate(15deg);
    }

    40% {
        -o-transform: rotate(-10deg);
    }

    60% {
        -o-transform: rotate(5deg);
    }

    80% {
        -o-transform: rotate(-5deg);
    }

    100% {
        -o-transform: rotate(0deg);
    }
}

@keyframes swing {
    20% {
        transform: rotate(15deg);
    }

    40% {
        transform: rotate(-10deg);
    }

    60% {
        transform: rotate(5deg);
    }

    80% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.animated.swing {
    -webkit-transform-origin: top center;
    -moz-transform-origin: top center;
    -o-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    -moz-animation-name: swing;
    -o-animation-name: swing;
    animation-name: swing;
}

@-webkit-keyframes wobble {
    0% {
        -webkit-transform: translateX(0%);
    }

    15% {
        -webkit-transform: translateX(-25%) rotate(-5deg);
    }

    30% {
        -webkit-transform: translateX(20%) rotate(3deg);
    }

    45% {
        -webkit-transform: translateX(-15%) rotate(-3deg);
    }

    60% {
        -webkit-transform: translateX(10%) rotate(2deg);
    }

    75% {
        -webkit-transform: translateX(-5%) rotate(-1deg);
    }

    100% {
        -webkit-transform: translateX(0%);
    }
}

@-moz-keyframes wobble {
    0% {
        -moz-transform: translateX(0%);
    }

    15% {
        -moz-transform: translateX(-25%) rotate(-5deg);
    }

    30% {
        -moz-transform: translateX(20%) rotate(3deg);
    }

    45% {
        -moz-transform: translateX(-15%) rotate(-3deg);
    }

    60% {
        -moz-transform: translateX(10%) rotate(2deg);
    }

    75% {
        -moz-transform: translateX(-5%) rotate(-1deg);
    }

    100% {
        -moz-transform: translateX(0%);
    }
}

@-o-keyframes wobble {
    0% {
        -o-transform: translateX(0%);
    }

    15% {
        -o-transform: translateX(-25%) rotate(-5deg);
    }

    30% {
        -o-transform: translateX(20%) rotate(3deg);
    }

    45% {
        -o-transform: translateX(-15%) rotate(-3deg);
    }

    60% {
        -o-transform: translateX(10%) rotate(2deg);
    }

    75% {
        -o-transform: translateX(-5%) rotate(-1deg);
    }

    100% {
        -o-transform: translateX(0%);
    }
}

@keyframes wobble {
    0% {
        transform: translateX(0%);
    }

    15% {
        transform: translateX(-25%) rotate(-5deg);
    }

    30% {
        transform: translateX(20%) rotate(3deg);
    }

    45% {
        transform: translateX(-15%) rotate(-3deg);
    }

    60% {
        transform: translateX(10%) rotate(2deg);
    }

    75% {
        transform: translateX(-5%) rotate(-1deg);
    }

    100% {
        transform: translateX(0%);
    }
}

.animated.wobble {
    -webkit-animation-name: wobble;
    -moz-animation-name: wobble;
    -o-animation-name: wobble;
    animation-name: wobble;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
    }
}

@-moz-keyframes pulse {
    0% {
        -moz-transform: scale(1);
    }

    50% {
        -moz-transform: scale(1.1);
    }

    100% {
        -moz-transform: scale(1);
    }
}

@-o-keyframes pulse {
    0% {
        -o-transform: scale(1);
    }

    50% {
        -o-transform: scale(1.1);
    }

    100% {
        -o-transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.animated.pulse {
    -webkit-animation-name: pulse;
    -moz-animation-name: pulse;
    -o-animation-name: pulse;
    animation-name: pulse;
}

@-webkit-keyframes flip {
    0% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        -webkit-animation-timing-function: ease-out;
    }

    40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        -webkit-animation-timing-function: ease-out;
    }

    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -webkit-animation-timing-function: ease-in;
    }

    80% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
        -webkit-animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        -webkit-animation-timing-function: ease-in;
    }
}

@-moz-keyframes flip {
    0% {
        -moz-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        -moz-animation-timing-function: ease-out;
    }

    40% {
        -moz-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        -moz-animation-timing-function: ease-out;
    }

    50% {
        -moz-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -moz-animation-timing-function: ease-in;
    }

    80% {
        -moz-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
        -moz-animation-timing-function: ease-in;
    }

    100% {
        -moz-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        -moz-animation-timing-function: ease-in;
    }
}

@-o-keyframes flip {
    0% {
        -o-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        -o-animation-timing-function: ease-out;
    }

    40% {
        -o-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        -o-animation-timing-function: ease-out;
    }

    50% {
        -o-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -o-animation-timing-function: ease-in;
    }

    80% {
        -o-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
        -o-animation-timing-function: ease-in;
    }

    100% {
        -o-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        -o-animation-timing-function: ease-in;
    }
}

@keyframes flip {
    0% {
        transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        animation-timing-function: ease-out;
    }

    40% {
        transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        animation-timing-function: ease-out;
    }

    50% {
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        animation-timing-function: ease-in;
    }

    80% {
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
        animation-timing-function: ease-in;
    }

    100% {
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        animation-timing-function: ease-in;
    }
}

.animated.flip {
    -webkit-backface-visibility: visible !important;
    -webkit-animation-name: flip;
    -moz-backface-visibility: visible !important;
    -moz-animation-name: flip;
    -o-backface-visibility: visible !important;
    -o-animation-name: flip;
    backface-visibility: visible !important;
    animation-name: flip;
}

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
    }

    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

@-moz-keyframes flipInX {
    0% {
        -moz-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }

    40% {
        -moz-transform: perspective(400px) rotateX(-10deg);
    }

    70% {
        -moz-transform: perspective(400px) rotateX(10deg);
    }

    100% {
        -moz-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

@-o-keyframes flipInX {
    0% {
        -o-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }

    40% {
        -o-transform: perspective(400px) rotateX(-10deg);
    }

    70% {
        -o-transform: perspective(400px) rotateX(10deg);
    }

    100% {
        -o-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

@keyframes flipInX {
    0% {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }

    40% {
        transform: perspective(400px) rotateX(-10deg);
    }

    70% {
        transform: perspective(400px) rotateX(10deg);
    }

    100% {
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

.animated.flipInX {
    -webkit-backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    -moz-backface-visibility: visible !important;
    -moz-animation-name: flipInX;
    -o-backface-visibility: visible !important;
    -o-animation-name: flipInX;
    backface-visibility: visible !important;
    animation-name: flipInX;
}

@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

@-moz-keyframes flipOutX {
    0% {
        -moz-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }

    100% {
        -moz-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

@-o-keyframes flipOutX {
    0% {
        -o-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }

    100% {
        -o-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

@keyframes flipOutX {
    0% {
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }

    100% {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

.animated.flipOutX {
    -webkit-animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    -moz-animation-name: flipOutX;
    -moz-backface-visibility: visible !important;
    -o-animation-name: flipOutX;
    -o-backface-visibility: visible !important;
    animation-name: flipOutX;
    backface-visibility: visible !important;
}

@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
    }

    70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}

@-moz-keyframes flipInY {
    0% {
        -moz-transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }

    40% {
        -moz-transform: perspective(400px) rotateY(-10deg);
    }

    70% {
        -moz-transform: perspective(400px) rotateY(10deg);
    }

    100% {
        -moz-transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}

@-o-keyframes flipInY {
    0% {
        -o-transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }

    40% {
        -o-transform: perspective(400px) rotateY(-10deg);
    }

    70% {
        -o-transform: perspective(400px) rotateY(10deg);
    }

    100% {
        -o-transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}

@keyframes flipInY {
    0% {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }

    40% {
        transform: perspective(400px) rotateY(-10deg);
    }

    70% {
        transform: perspective(400px) rotateY(10deg);
    }

    100% {
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}

.animated.flipInY {
    -webkit-backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    -moz-backface-visibility: visible !important;
    -moz-animation-name: flipInY;
    -o-backface-visibility: visible !important;
    -o-animation-name: flipInY;
    backface-visibility: visible !important;
    animation-name: flipInY;
}

@-webkit-keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}

@-moz-keyframes flipOutY {
    0% {
        -moz-transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }

    100% {
        -moz-transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}

@-o-keyframes flipOutY {
    0% {
        -o-transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }

    100% {
        -o-transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}

@keyframes flipOutY {
    0% {
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }

    100% {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}

.animated.flipOutY {
    -webkit-backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    -moz-backface-visibility: visible !important;
    -moz-animation-name: flipOutY;
    -o-backface-visibility: visible !important;
    -o-animation-name: flipOutY;
    backface-visibility: visible !important;
    animation-name: flipOutY;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.animated.fadeIn {
    -webkit-animation-name: fadeIn;
    -moz-animation-name: fadeIn;
    -o-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes fadeInUp {
    0% {
        opacity: 0;
        -moz-transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

@-o-keyframes fadeInUp {
    0% {
        opacity: 0;
        -o-transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -o-transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated.fadeInUp {
    -webkit-animation-name: fadeInUp;
    -moz-animation-name: fadeInUp;
    -o-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes fadeInDown {
    0% {
        opacity: 0;
        -moz-transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

@-o-keyframes fadeInDown {
    0% {
        opacity: 0;
        -o-transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -o-transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated.fadeInDown {
    -webkit-animation-name: fadeInDown;
    -moz-animation-name: fadeInDown;
    -o-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@-moz-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -moz-transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateX(0);
    }
}

@-o-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -o-transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -o-transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.animated.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    -moz-animation-name: fadeInLeft;
    -o-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@-moz-keyframes fadeInRight {
    0% {
        opacity: 0;
        -moz-transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateX(0);
    }
}

@-o-keyframes fadeInRight {
    0% {
        opacity: 0;
        -o-transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -o-transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.animated.fadeInRight {
    -webkit-animation-name: fadeInRight;
    -moz-animation-name: fadeInRight;
    -o-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -moz-transform: translateY(2000px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

@-o-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -o-transform: translateY(2000px);
    }

    100% {
        opacity: 1;
        -o-transform: translateY(0);
    }
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        transform: translateY(2000px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    -moz-animation-name: fadeInUpBig;
    -o-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -moz-transform: translateY(-2000px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

@-o-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -o-transform: translateY(-2000px);
    }

    100% {
        opacity: 1;
        -o-transform: translateY(0);
    }
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        transform: translateY(-2000px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    -moz-animation-name: fadeInDownBig;
    -o-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@-moz-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -moz-transform: translateX(-2000px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateX(0);
    }
}

@-o-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -o-transform: translateX(-2000px);
    }

    100% {
        opacity: 1;
        -o-transform: translateX(0);
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        transform: translateX(-2000px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.animated.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    -moz-animation-name: fadeInLeftBig;
    -o-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@-moz-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -moz-transform: translateX(2000px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateX(0);
    }
}

@-o-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -o-transform: translateX(2000px);
    }

    100% {
        opacity: 1;
        -o-transform: translateX(0);
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        transform: translateX(2000px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.animated.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    -moz-animation-name: fadeInRightBig;
    -o-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-moz-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-o-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.animated.fadeOut {
    -webkit-animation-name: fadeOut;
    -moz-animation-name: fadeOut;
    -o-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
    }
}

@-moz-keyframes fadeOutUp {
    0% {
        opacity: 1;
        -moz-transform: translateY(0);
    }

    100% {
        opacity: 0;
        -moz-transform: translateY(-20px);
    }
}

@-o-keyframes fadeOutUp {
    0% {
        opacity: 1;
        -o-transform: translateY(0);
    }

    100% {
        opacity: 0;
        -o-transform: translateY(-20px);
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

.animated.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    -moz-animation-name: fadeOutUp;
    -o-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
    }
}

@-moz-keyframes fadeOutDown {
    0% {
        opacity: 1;
        -moz-transform: translateY(0);
    }

    100% {
        opacity: 0;
        -moz-transform: translateY(20px);
    }
}

@-o-keyframes fadeOutDown {
    0% {
        opacity: 1;
        -o-transform: translateY(0);
    }

    100% {
        opacity: 0;
        -o-transform: translateY(20px);
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

.animated.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    -moz-animation-name: fadeOutDown;
    -o-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
    }
}

@-moz-keyframes fadeOutLeft {
    0% {
        opacity: 1;
        -moz-transform: translateX(0);
    }

    100% {
        opacity: 0;
        -moz-transform: translateX(-20px);
    }
}

@-o-keyframes fadeOutLeft {
    0% {
        opacity: 1;
        -o-transform: translateX(0);
    }

    100% {
        opacity: 0;
        -o-transform: translateX(-20px);
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-20px);
    }
}

.animated.fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    -moz-animation-name: fadeOutLeft;
    -o-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(20px);
    }
}

@-moz-keyframes fadeOutRight {
    0% {
        opacity: 1;
        -moz-transform: translateX(0);
    }

    100% {
        opacity: 0;
        -moz-transform: translateX(20px);
    }
}

@-o-keyframes fadeOutRight {
    0% {
        opacity: 1;
        -o-transform: translateX(0);
    }

    100% {
        opacity: 0;
        -o-transform: translateX(20px);
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(20px);
    }
}

.animated.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    -moz-animation-name: fadeOutRight;
    -o-animation-name: fadeOutRight;
    animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
    }
}

@-moz-keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        -moz-transform: translateY(0);
    }

    100% {
        opacity: 0;
        -moz-transform: translateY(-2000px);
    }
}

@-o-keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        -o-transform: translateY(0);
    }

    100% {
        opacity: 0;
        -o-transform: translateY(-2000px);
    }
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-2000px);
    }
}

.animated.fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    -moz-animation-name: fadeOutUpBig;
    -o-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig;
}

@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
    }
}

@-moz-keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        -moz-transform: translateY(0);
    }

    100% {
        opacity: 0;
        -moz-transform: translateY(2000px);
    }
}

@-o-keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        -o-transform: translateY(0);
    }

    100% {
        opacity: 0;
        -o-transform: translateY(2000px);
    }
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(2000px);
    }
}

.animated.fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    -moz-animation-name: fadeOutDownBig;
    -o-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
    }
}

@-moz-keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        -moz-transform: translateX(0);
    }

    100% {
        opacity: 0;
        -moz-transform: translateX(-2000px);
    }
}

@-o-keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        -o-transform: translateX(0);
    }

    100% {
        opacity: 0;
        -o-transform: translateX(-2000px);
    }
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-2000px);
    }
}

.animated.fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    -moz-animation-name: fadeOutLeftBig;
    -o-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
    }
}

@-moz-keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        -moz-transform: translateX(0);
    }

    100% {
        opacity: 0;
        -moz-transform: translateX(2000px);
    }
}

@-o-keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        -o-transform: translateX(0);
    }

    100% {
        opacity: 0;
        -o-transform: translateX(2000px);
    }
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(2000px);
    }
}

.animated.fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    -moz-animation-name: fadeOutRightBig;
    -o-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig;
}

@-webkit-keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.3);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
    }

    70% {
        -webkit-transform: scale(0.9);
    }

    100% {
        -webkit-transform: scale(1);
    }
}

@-moz-keyframes bounceIn {
    0% {
        opacity: 0;
        -moz-transform: scale(0.3);
    }

    50% {
        opacity: 1;
        -moz-transform: scale(1.05);
    }

    70% {
        -moz-transform: scale(0.9);
    }

    100% {
        -moz-transform: scale(1);
    }
}

@-o-keyframes bounceIn {
    0% {
        opacity: 0;
        -o-transform: scale(0.3);
    }

    50% {
        opacity: 1;
        -o-transform: scale(1.05);
    }

    70% {
        -o-transform: scale(0.9);
    }

    100% {
        -o-transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

@-webkit-keyframes slideInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
    }

    100% {
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes slideInDown {
    0% {
        opacity: 0;
        -moz-transform: translateY(-2000px);
    }

    100% {
        -moz-transform: translateY(0);
    }
}

@-o-keyframes slideInDown {
    0% {
        opacity: 0;
        -o-transform: translateY(-2000px);
    }

    100% {
        -o-transform: translateY(0);
    }
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-2000px);
    }

    100% {
        transform: translateY(0);
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    -moz-animation-name: slideInDown;
    -o-animation-name: slideInDown;
    animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
    }

    100% {
        -webkit-transform: translateX(0);
    }
}

@-moz-keyframes slideInLeft {
    0% {
        opacity: 0;
        -moz-transform: translateX(-2000px);
    }

    100% {
        -moz-transform: translateX(0);
    }
}

@-o-keyframes slideInLeft {
    0% {
        opacity: 0;
        -o-transform: translateX(-2000px);
    }

    100% {
        -o-transform: translateX(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-2000px);
    }

    100% {
        transform: translateX(0);
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    -moz-animation-name: slideInLeft;
    -o-animation-name: slideInLeft;
    animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
    }

    100% {
        -webkit-transform: translateX(0);
    }
}

@-moz-keyframes slideInRight {
    0% {
        opacity: 0;
        -moz-transform: translateX(2000px);
    }

    100% {
        -moz-transform: translateX(0);
    }
}

@-o-keyframes slideInRight {
    0% {
        opacity: 0;
        -o-transform: translateX(2000px);
    }

    100% {
        -o-transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(2000px);
    }

    100% {
        transform: translateX(0);
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    -moz-animation-name: slideInRight;
    -o-animation-name: slideInRight;
    animation-name: slideInRight;
}

@-webkit-keyframes slideOutLeft {
    0% {
        -webkit-transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
    }
}

@-moz-keyframes slideOutLeft {
    0% {
        -moz-transform: translateX(0);
    }

    100% {
        opacity: 0;
        -moz-transform: translateX(-2000px);
    }
}

@-o-keyframes slideOutLeft {
    0% {
        -o-transform: translateX(0);
    }

    100% {
        opacity: 0;
        -o-transform: translateX(-2000px);
    }
}

@keyframes slideOutLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-2000px);
    }
}

.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    -moz-animation-name: slideOutLeft;
    -o-animation-name: slideOutLeft;
    animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
    0% {
        -webkit-transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
    }
}

@-moz-keyframes slideOutRight {
    0% {
        -moz-transform: translateX(0);
    }

    100% {
        opacity: 0;
        -moz-transform: translateX(2000px);
    }
}

@-o-keyframes slideOutRight {
    0% {
        -o-transform: translateX(0);
    }

    100% {
        opacity: 0;
        -o-transform: translateX(2000px);
    }
}

@keyframes slideOutRight {
    0% {
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(2000px);
    }
}

.slideOutRight {
    -webkit-animation-name: slideOutRight;
    -moz-animation-name: slideOutRight;
    -o-animation-name: slideOutRight;
    animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
    0% {
        -webkit-transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
    }
}

@-moz-keyframes slideOutUp {
    0% {
        -moz-transform: translateY(0);
    }

    100% {
        opacity: 0;
        -moz-transform: translateY(-2000px);
    }
}

@-o-keyframes slideOutUp {
    0% {
        -o-transform: translateY(0);
    }

    100% {
        opacity: 0;
        -o-transform: translateY(-2000px);
    }
}

@keyframes slideOutUp {
    0% {
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-2000px);
    }
}

.slideOutUp {
    -webkit-animation-name: slideOutUp;
    -moz-animation-name: slideOutUp;
    -o-animation-name: slideOutUp;
    animation-name: slideOutUp;
}

.animated.bounceIn {
    -webkit-animation-name: bounceIn;
    -moz-animation-name: bounceIn;
    -o-animation-name: bounceIn;
    animation-name: bounceIn;
}

@-webkit-keyframes bounceInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(-30px);
    }

    80% {
        -webkit-transform: translateY(10px);
    }

    100% {
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes bounceInUp {
    0% {
        opacity: 0;
        -moz-transform: translateY(2000px);
    }

    60% {
        opacity: 1;
        -moz-transform: translateY(-30px);
    }

    80% {
        -moz-transform: translateY(10px);
    }

    100% {
        -moz-transform: translateY(0);
    }
}

@-o-keyframes bounceInUp {
    0% {
        opacity: 0;
        -o-transform: translateY(2000px);
    }

    60% {
        opacity: 1;
        -o-transform: translateY(-30px);
    }

    80% {
        -o-transform: translateY(10px);
    }

    100% {
        -o-transform: translateY(0);
    }
}

@keyframes bounceInUp {
    0% {
        opacity: 0;
        transform: translateY(2000px);
    }

    60% {
        opacity: 1;
        transform: translateY(-30px);
    }

    80% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(0);
    }
}

.animated.bounceInUp {
    -webkit-animation-name: bounceInUp;
    -moz-animation-name: bounceInUp;
    -o-animation-name: bounceInUp;
    animation-name: bounceInUp;
}

@-webkit-keyframes bounceInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
    }

    80% {
        -webkit-transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes bounceInDown {
    0% {
        opacity: 0;
        -moz-transform: translateY(-2000px);
    }

    60% {
        opacity: 1;
        -moz-transform: translateY(30px);
    }

    80% {
        -moz-transform: translateY(-10px);
    }

    100% {
        -moz-transform: translateY(0);
    }
}

@-o-keyframes bounceInDown {
    0% {
        opacity: 0;
        -o-transform: translateY(-2000px);
    }

    60% {
        opacity: 1;
        -o-transform: translateY(30px);
    }

    80% {
        -o-transform: translateY(-10px);
    }

    100% {
        -o-transform: translateY(0);
    }
}

@keyframes bounceInDown {
    0% {
        opacity: 0;
        transform: translateY(-2000px);
    }

    60% {
        opacity: 1;
        transform: translateY(30px);
    }

    80% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.animated.bounceInDown {
    -webkit-animation-name: bounceInDown;
    -moz-animation-name: bounceInDown;
    -o-animation-name: bounceInDown;
    animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(30px);
    }

    80% {
        -webkit-transform: translateX(-10px);
    }

    100% {
        -webkit-transform: translateX(0);
    }
}

@-moz-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -moz-transform: translateX(-2000px);
    }

    60% {
        opacity: 1;
        -moz-transform: translateX(30px);
    }

    80% {
        -moz-transform: translateX(-10px);
    }

    100% {
        -moz-transform: translateX(0);
    }
}

@-o-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -o-transform: translateX(-2000px);
    }

    60% {
        opacity: 1;
        -o-transform: translateX(30px);
    }

    80% {
        -o-transform: translateX(-10px);
    }

    100% {
        -o-transform: translateX(0);
    }
}

@keyframes bounceInLeft {
    0% {
        opacity: 0;
        transform: translateX(-2000px);
    }

    60% {
        opacity: 1;
        transform: translateX(30px);
    }

    80% {
        transform: translateX(-10px);
    }

    100% {
        transform: translateX(0);
    }
}

.animated.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    -moz-animation-name: bounceInLeft;
    -o-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(-30px);
    }

    80% {
        -webkit-transform: translateX(10px);
    }

    100% {
        -webkit-transform: translateX(0);
    }
}

@-moz-keyframes bounceInRight {
    0% {
        opacity: 0;
        -moz-transform: translateX(2000px);
    }

    60% {
        opacity: 1;
        -moz-transform: translateX(-30px);
    }

    80% {
        -moz-transform: translateX(10px);
    }

    100% {
        -moz-transform: translateX(0);
    }
}

@-o-keyframes bounceInRight {
    0% {
        opacity: 0;
        -o-transform: translateX(2000px);
    }

    60% {
        opacity: 1;
        -o-transform: translateX(-30px);
    }

    80% {
        -o-transform: translateX(10px);
    }

    100% {
        -o-transform: translateX(0);
    }
}

@keyframes bounceInRight {
    0% {
        opacity: 0;
        transform: translateX(2000px);
    }

    60% {
        opacity: 1;
        transform: translateX(-30px);
    }

    80% {
        transform: translateX(10px);
    }

    100% {
        transform: translateX(0);
    }
}

.animated.bounceInRight {
    -webkit-animation-name: bounceInRight;
    -moz-animation-name: bounceInRight;
    -o-animation-name: bounceInRight;
    animation-name: bounceInRight;
}

@-webkit-keyframes bounceOut {
    0% {
        -webkit-transform: scale(1);
    }

    25% {
        -webkit-transform: scale(0.95);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(0.3);
    }
}

@-moz-keyframes bounceOut {
    0% {
        -moz-transform: scale(1);
    }

    25% {
        -moz-transform: scale(0.95);
    }

    50% {
        opacity: 1;
        -moz-transform: scale(1.1);
    }

    100% {
        opacity: 0;
        -moz-transform: scale(0.3);
    }
}

@-o-keyframes bounceOut {
    0% {
        -o-transform: scale(1);
    }

    25% {
        -o-transform: scale(0.95);
    }

    50% {
        opacity: 1;
        -o-transform: scale(1.1);
    }

    100% {
        opacity: 0;
        -o-transform: scale(0.3);
    }
}

@keyframes bounceOut {
    0% {
        transform: scale(1);
    }

    25% {
        transform: scale(0.95);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }

    100% {
        opacity: 0;
        transform: scale(0.3);
    }
}

.animated.bounceOut {
    -webkit-animation-name: bounceOut;
    -moz-animation-name: bounceOut;
    -o-animation-name: bounceOut;
    animation-name: bounceOut;
}

@-webkit-keyframes bounceOutUp {
    0% {
        -webkit-transform: translateY(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
    }
}

@-moz-keyframes bounceOutUp {
    0% {
        -moz-transform: translateY(0);
    }

    20% {
        opacity: 1;
        -moz-transform: translateY(20px);
    }

    100% {
        opacity: 0;
        -moz-transform: translateY(-2000px);
    }
}

@-o-keyframes bounceOutUp {
    0% {
        -o-transform: translateY(0);
    }

    20% {
        opacity: 1;
        -o-transform: translateY(20px);
    }

    100% {
        opacity: 0;
        -o-transform: translateY(-2000px);
    }
}

@keyframes bounceOutUp {
    0% {
        transform: translateY(0);
    }

    20% {
        opacity: 1;
        transform: translateY(20px);
    }

    100% {
        opacity: 0;
        transform: translateY(-2000px);
    }
}

.animated.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    -moz-animation-name: bounceOutUp;
    -o-animation-name: bounceOutUp;
    animation-name: bounceOutUp;
}

@-webkit-keyframes bounceOutDown {
    0% {
        -webkit-transform: translateY(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(-20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
    }
}

@-moz-keyframes bounceOutDown {
    0% {
        -moz-transform: translateY(0);
    }

    20% {
        opacity: 1;
        -moz-transform: translateY(-20px);
    }

    100% {
        opacity: 0;
        -moz-transform: translateY(2000px);
    }
}

@-o-keyframes bounceOutDown {
    0% {
        -o-transform: translateY(0);
    }

    20% {
        opacity: 1;
        -o-transform: translateY(-20px);
    }

    100% {
        opacity: 0;
        -o-transform: translateY(2000px);
    }
}

@keyframes bounceOutDown {
    0% {
        transform: translateY(0);
    }

    20% {
        opacity: 1;
        transform: translateY(-20px);
    }

    100% {
        opacity: 0;
        transform: translateY(2000px);
    }
}

.animated.bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    -moz-animation-name: bounceOutDown;
    -o-animation-name: bounceOutDown;
    animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
    0% {
        -webkit-transform: translateX(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
    }
}

@-moz-keyframes bounceOutLeft {
    0% {
        -moz-transform: translateX(0);
    }

    20% {
        opacity: 1;
        -moz-transform: translateX(20px);
    }

    100% {
        opacity: 0;
        -moz-transform: translateX(-2000px);
    }
}

@-o-keyframes bounceOutLeft {
    0% {
        -o-transform: translateX(0);
    }

    20% {
        opacity: 1;
        -o-transform: translateX(20px);
    }

    100% {
        opacity: 0;
        -o-transform: translateX(-2000px);
    }
}

@keyframes bounceOutLeft {
    0% {
        transform: translateX(0);
    }

    20% {
        opacity: 1;
        transform: translateX(20px);
    }

    100% {
        opacity: 0;
        transform: translateX(-2000px);
    }
}

.animated.bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    -moz-animation-name: bounceOutLeft;
    -o-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
    0% {
        -webkit-transform: translateX(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
    }
}

@-moz-keyframes bounceOutRight {
    0% {
        -moz-transform: translateX(0);
    }

    20% {
        opacity: 1;
        -moz-transform: translateX(-20px);
    }

    100% {
        opacity: 0;
        -moz-transform: translateX(2000px);
    }
}

@-o-keyframes bounceOutRight {
    0% {
        -o-transform: translateX(0);
    }

    20% {
        opacity: 1;
        -o-transform: translateX(-20px);
    }

    100% {
        opacity: 0;
        -o-transform: translateX(2000px);
    }
}

@keyframes bounceOutRight {
    0% {
        transform: translateX(0);
    }

    20% {
        opacity: 1;
        transform: translateX(-20px);
    }

    100% {
        opacity: 0;
        transform: translateX(2000px);
    }
}

.animated.bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    -moz-animation-name: bounceOutRight;
    -o-animation-name: bounceOutRight;
    animation-name: bounceOutRight;
}

@-webkit-keyframes rotateIn {
    0% {
        -webkit-transform-origin: center center;
        -webkit-transform: rotate(-200deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: center center;
        -webkit-transform: rotate(0);
        opacity: 1;
    }
}

@-moz-keyframes rotateIn {
    0% {
        -moz-transform-origin: center center;
        -moz-transform: rotate(-200deg);
        opacity: 0;
    }

    100% {
        -moz-transform-origin: center center;
        -moz-transform: rotate(0);
        opacity: 1;
    }
}

@-o-keyframes rotateIn {
    0% {
        -o-transform-origin: center center;
        -o-transform: rotate(-200deg);
        opacity: 0;
    }

    100% {
        -o-transform-origin: center center;
        -o-transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateIn {
    0% {
        transform-origin: center center;
        transform: rotate(-200deg);
        opacity: 0;
    }

    100% {
        transform-origin: center center;
        transform: rotate(0);
        opacity: 1;
    }
}

.animated.rotateIn {
    -webkit-animation-name: rotateIn;
    -moz-animation-name: rotateIn;
    -o-animation-name: rotateIn;
    animation-name: rotateIn;
}

@-webkit-keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(0);
        opacity: 1;
    }
}

@-moz-keyframes rotateInUpLeft {
    0% {
        -moz-transform-origin: left bottom;
        -moz-transform: rotate(90deg);
        opacity: 0;
    }

    100% {
        -moz-transform-origin: left bottom;
        -moz-transform: rotate(0);
        opacity: 1;
    }
}

@-o-keyframes rotateInUpLeft {
    0% {
        -o-transform-origin: left bottom;
        -o-transform: rotate(90deg);
        opacity: 0;
    }

    100% {
        -o-transform-origin: left bottom;
        -o-transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInUpLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(90deg);
        opacity: 0;
    }

    100% {
        transform-origin: left bottom;
        transform: rotate(0);
        opacity: 1;
    }
}

.animated.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    -moz-animation-name: rotateInUpLeft;
    -o-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(0);
        opacity: 1;
    }
}

@-moz-keyframes rotateInDownLeft {
    0% {
        -moz-transform-origin: left bottom;
        -moz-transform: rotate(-90deg);
        opacity: 0;
    }

    100% {
        -moz-transform-origin: left bottom;
        -moz-transform: rotate(0);
        opacity: 1;
    }
}

@-o-keyframes rotateInDownLeft {
    0% {
        -o-transform-origin: left bottom;
        -o-transform: rotate(-90deg);
        opacity: 0;
    }

    100% {
        -o-transform-origin: left bottom;
        -o-transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInDownLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(-90deg);
        opacity: 0;
    }

    100% {
        transform-origin: left bottom;
        transform: rotate(0);
        opacity: 1;
    }
}

.animated.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    -moz-animation-name: rotateInDownLeft;
    -o-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(0);
        opacity: 1;
    }
}

@-moz-keyframes rotateInUpRight {
    0% {
        -moz-transform-origin: right bottom;
        -moz-transform: rotate(-90deg);
        opacity: 0;
    }

    100% {
        -moz-transform-origin: right bottom;
        -moz-transform: rotate(0);
        opacity: 1;
    }
}

@-o-keyframes rotateInUpRight {
    0% {
        -o-transform-origin: right bottom;
        -o-transform: rotate(-90deg);
        opacity: 0;
    }

    100% {
        -o-transform-origin: right bottom;
        -o-transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInUpRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(-90deg);
        opacity: 0;
    }

    100% {
        transform-origin: right bottom;
        transform: rotate(0);
        opacity: 1;
    }
}

.animated.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    -moz-animation-name: rotateInUpRight;
    -o-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(0);
        opacity: 1;
    }
}

@-moz-keyframes rotateInDownRight {
    0% {
        -moz-transform-origin: right bottom;
        -moz-transform: rotate(90deg);
        opacity: 0;
    }

    100% {
        -moz-transform-origin: right bottom;
        -moz-transform: rotate(0);
        opacity: 1;
    }
}

@-o-keyframes rotateInDownRight {
    0% {
        -o-transform-origin: right bottom;
        -o-transform: rotate(90deg);
        opacity: 0;
    }

    100% {
        -o-transform-origin: right bottom;
        -o-transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInDownRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(90deg);
        opacity: 0;
    }

    100% {
        transform-origin: right bottom;
        transform: rotate(0);
        opacity: 1;
    }
}

.animated.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    -moz-animation-name: rotateInDownRight;
    -o-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateOut {
    0% {
        -webkit-transform-origin: center center;
        -webkit-transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: center center;
        -webkit-transform: rotate(200deg);
        opacity: 0;
    }
}

@-moz-keyframes rotateOut {
    0% {
        -moz-transform-origin: center center;
        -moz-transform: rotate(0);
        opacity: 1;
    }

    100% {
        -moz-transform-origin: center center;
        -moz-transform: rotate(200deg);
        opacity: 0;
    }
}

@-o-keyframes rotateOut {
    0% {
        -o-transform-origin: center center;
        -o-transform: rotate(0);
        opacity: 1;
    }

    100% {
        -o-transform-origin: center center;
        -o-transform: rotate(200deg);
        opacity: 0;
    }
}

@keyframes rotateOut {
    0% {
        transform-origin: center center;
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        transform-origin: center center;
        transform: rotate(200deg);
        opacity: 0;
    }
}

.animated.rotateOut {
    -webkit-animation-name: rotateOut;
    -moz-animation-name: rotateOut;
    -o-animation-name: rotateOut;
    animation-name: rotateOut;
}

@-webkit-keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        opacity: 0;
    }
}

@-moz-keyframes rotateOutUpLeft {
    0% {
        -moz-transform-origin: left bottom;
        -moz-transform: rotate(0);
        opacity: 1;
    }

    100% {
        -moz-transform-origin: left bottom;
        -moz-transform: rotate(-90deg);
        opacity: 0;
    }
}

@-o-keyframes rotateOutUpLeft {
    0% {
        -o-transform-origin: left bottom;
        -o-transform: rotate(0);
        opacity: 1;
    }

    100% {
        -o-transform-origin: left bottom;
        -o-transform: rotate(-90deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        transform-origin: left bottom;
        transform: rotate(-90deg);
        opacity: 0;
    }
}

.animated.rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    -moz-animation-name: rotateOutUpLeft;
    -o-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        opacity: 0;
    }
}

@-moz-keyframes rotateOutDownLeft {
    0% {
        -moz-transform-origin: left bottom;
        -moz-transform: rotate(0);
        opacity: 1;
    }

    100% {
        -moz-transform-origin: left bottom;
        -moz-transform: rotate(90deg);
        opacity: 0;
    }
}

@-o-keyframes rotateOutDownLeft {
    0% {
        -o-transform-origin: left bottom;
        -o-transform: rotate(0);
        opacity: 1;
    }

    100% {
        -o-transform-origin: left bottom;
        -o-transform: rotate(90deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        transform-origin: left bottom;
        transform: rotate(90deg);
        opacity: 0;
    }
}

.animated.rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    -moz-animation-name: rotateOutDownLeft;
    -o-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        opacity: 0;
    }
}

@-moz-keyframes rotateOutUpRight {
    0% {
        -moz-transform-origin: right bottom;
        -moz-transform: rotate(0);
        opacity: 1;
    }

    100% {
        -moz-transform-origin: right bottom;
        -moz-transform: rotate(90deg);
        opacity: 0;
    }
}

@-o-keyframes rotateOutUpRight {
    0% {
        -o-transform-origin: right bottom;
        -o-transform: rotate(0);
        opacity: 1;
    }

    100% {
        -o-transform-origin: right bottom;
        -o-transform: rotate(90deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        transform-origin: right bottom;
        transform: rotate(90deg);
        opacity: 0;
    }
}

.animated.rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    -moz-animation-name: rotateOutUpRight;
    -o-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight;
}

@-webkit-keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(0);
        opacity: 1;
    }

    100% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        opacity: 0;
    }
}

@-moz-keyframes rotateOutDownRight {
    0% {
        -moz-transform-origin: right bottom;
        -moz-transform: rotate(0);
        opacity: 1;
    }

    100% {
        -moz-transform-origin: right bottom;
        -moz-transform: rotate(-90deg);
        opacity: 0;
    }
}

@-o-keyframes rotateOutDownRight {
    0% {
        -o-transform-origin: right bottom;
        -o-transform: rotate(0);
        opacity: 1;
    }

    100% {
        -o-transform-origin: right bottom;
        -o-transform: rotate(-90deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(0);
        opacity: 1;
    }

    100% {
        transform-origin: right bottom;
        transform: rotate(-90deg);
        opacity: 0;
    }
}

.animated.rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    -moz-animation-name: rotateOutDownRight;
    -o-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight;
}

@-webkit-keyframes hinge {
    0% {
        -webkit-transform: rotate(0);
        -webkit-transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
    }

    20%, 60% {
        -webkit-transform: rotate(80deg);
        -webkit-transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
    }

    40% {
        -webkit-transform: rotate(60deg);
        -webkit-transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
    }

    80% {
        -webkit-transform: rotate(60deg) translateY(0);
        opacity: 1;
        -webkit-transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
    }

    100% {
        -webkit-transform: translateY(700px);
        opacity: 0;
    }
}

@-moz-keyframes hinge {
    0% {
        -moz-transform: rotate(0);
        -moz-transform-origin: top left;
        -moz-animation-timing-function: ease-in-out;
    }

    20%, 60% {
        -moz-transform: rotate(80deg);
        -moz-transform-origin: top left;
        -moz-animation-timing-function: ease-in-out;
    }

    40% {
        -moz-transform: rotate(60deg);
        -moz-transform-origin: top left;
        -moz-animation-timing-function: ease-in-out;
    }

    80% {
        -moz-transform: rotate(60deg) translateY(0);
        opacity: 1;
        -moz-transform-origin: top left;
        -moz-animation-timing-function: ease-in-out;
    }

    100% {
        -moz-transform: translateY(700px);
        opacity: 0;
    }
}

@-o-keyframes hinge {
    0% {
        -o-transform: rotate(0);
        -o-transform-origin: top left;
        -o-animation-timing-function: ease-in-out;
    }

    20%, 60% {
        -o-transform: rotate(80deg);
        -o-transform-origin: top left;
        -o-animation-timing-function: ease-in-out;
    }

    40% {
        -o-transform: rotate(60deg);
        -o-transform-origin: top left;
        -o-animation-timing-function: ease-in-out;
    }

    80% {
        -o-transform: rotate(60deg) translateY(0);
        opacity: 1;
        -o-transform-origin: top left;
        -o-animation-timing-function: ease-in-out;
    }

    100% {
        -o-transform: translateY(700px);
        opacity: 0;
    }
}

@keyframes hinge {
    0% {
        transform: rotate(0);
        transform-origin: top left;
        animation-timing-function: ease-in-out;
    }

    20%, 60% {
        transform: rotate(80deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out;
    }

    40% {
        transform: rotate(60deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out;
    }

    80% {
        transform: rotate(60deg) translateY(0);
        opacity: 1;
        transform-origin: top left;
        animation-timing-function: ease-in-out;
    }

    100% {
        transform: translateY(700px);
        opacity: 0;
    }
}

.animated.hinge {
    -webkit-animation-name: hinge;
    -moz-animation-name: hinge;
    -o-animation-name: hinge;
    animation-name: hinge;
}

@-webkit-keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%) rotate(-120deg);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
    }
}

@-moz-keyframes rollIn {
    0% {
        opacity: 0;
        -moz-transform: translateX(-100%) rotate(-120deg);
    }

    100% {
        opacity: 1;
        -moz-transform: translateX(0px) rotate(0deg);
    }
}

@-o-keyframes rollIn {
    0% {
        opacity: 0;
        -o-transform: translateX(-100%) rotate(-120deg);
    }

    100% {
        opacity: 1;
        -o-transform: translateX(0px) rotate(0deg);
    }
}

@keyframes rollIn {
    0% {
        opacity: 0;
        transform: translateX(-100%) rotate(-120deg);
    }

    100% {
        opacity: 1;
        transform: translateX(0px) rotate(0deg);
    }
}

.animated.rollIn {
    -webkit-animation-name: rollIn;
    -moz-animation-name: rollIn;
    -o-animation-name: rollIn;
    animation-name: rollIn;
}

@-webkit-keyframes rollOut {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(100%) rotate(120deg);
    }
}

@-moz-keyframes rollOut {
    0% {
        opacity: 1;
        -moz-transform: translateX(0px) rotate(0deg);
    }

    100% {
        opacity: 0;
        -moz-transform: translateX(100%) rotate(120deg);
    }
}

@-o-keyframes rollOut {
    0% {
        opacity: 1;
        -o-transform: translateX(0px) rotate(0deg);
    }

    100% {
        opacity: 0;
        -o-transform: translateX(100%) rotate(120deg);
    }
}

@keyframes rollOut {
    0% {
        opacity: 1;
        transform: translateX(0px) rotate(0deg);
    }

    100% {
        opacity: 0;
        transform: translateX(100%) rotate(120deg);
    }
}

.animated.rollOut {
    -webkit-animation-name: rollOut;
    -moz-animation-name: rollOut;
    -o-animation-name: rollOut;
    animation-name: rollOut;
}

@-webkit-keyframes lightSpeedIn {
    0% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }

    60% {
        -webkit-transform: translateX(-20%) skewX(30deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: translateX(0%) skewX(-15deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
}

@-moz-keyframes lightSpeedIn {
    0% {
        -moz-transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }

    60% {
        -moz-transform: translateX(-20%) skewX(30deg);
        opacity: 1;
    }

    80% {
        -moz-transform: translateX(0%) skewX(-15deg);
        opacity: 1;
    }

    100% {
        -moz-transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
}

@-o-keyframes lightSpeedIn {
    0% {
        -o-transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }

    60% {
        -o-transform: translateX(-20%) skewX(30deg);
        opacity: 1;
    }

    80% {
        -o-transform: translateX(0%) skewX(-15deg);
        opacity: 1;
    }

    100% {
        -o-transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
}

@keyframes lightSpeedIn {
    0% {
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }

    60% {
        transform: translateX(-20%) skewX(30deg);
        opacity: 1;
    }

    80% {
        transform: translateX(0%) skewX(-15deg);
        opacity: 1;
    }

    100% {
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
}

.animated.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    -moz-animation-name: lightSpeedIn;
    -o-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    -moz-animation-timing-function: ease-out;
    -o-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}

.animated.lightSpeedIn {
    -webkit-animation-duration: .5s;
    -moz-animation-duration: .5s;
    -o-animation-duration: .5s;
    animation-duration: 0.5s;
}

@-webkit-keyframes lightSpeedOut {
    0% {
        -webkit-transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
}

@-moz-keyframes lightSpeedOut {
    0% {
        -moz-transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }

    100% {
        -moz-transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
}

@-o-keyframes lightSpeedOut {
    0% {
        -o-transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }

    100% {
        -o-transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
}

@keyframes lightSpeedOut {
    0% {
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }

    100% {
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
}

.animated.lightSpeedOut {
    -webkit-animation-name: lightSpeedOut;
    -moz-animation-name: lightSpeedOut;
    -o-animation-name: lightSpeedOut;
    animation-name: lightSpeedOut;
    -webkit-animation-timing-function: ease-in;
    -moz-animation-timing-function: ease-in;
    -o-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}

.animated.lightSpeedOut {
    -webkit-animation-duration: .25s;
    -moz-animation-duration: .25s;
    -o-animation-duration: .25s;
    animation-duration: 0.25s;
}

.fade {
    opacity: 0;
    -webkit-transition: opacity .15s linear;
    -moz-transition: opacity .15s linear;
    -o-transition: opacity .15s linear;
    transition: opacity 0.15s linear;
}

@-moz-keyframes spin {
    0% {
        -moz-transform: rotate(0deg);
    }

    100% {
        -moz-transform: rotate(359deg);
    }
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
    }
}

@-o-keyframes spin {
    0% {
        -o-transform: rotate(0deg);
    }

    100% {
        -o-transform: rotate(359deg);
    }
}

@-ms-keyframes spin {
    0% {
        -ms-transform: rotate(0deg);
    }

    100% {
        -ms-transform: rotate(359deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(359deg);
    }
}
/*@import "components/summer-note";*/
/*@import "components/super-box";*/
/*@import "components/voice-command";*/
/*
    ██╗   ██╗     █████╗     ██████╗ 
    ╚██╗ ██╔╝    ██╔══██╗    ██╔══██╗
     ╚████╔╝     ███████║    ██████╔╝
      ╚██╔╝      ██╔══██║    ██╔═══╝ 
       ██║       ██║  ██║    ██║     
       ╚═╝       ╚═╝  ╚═╝    ╚═╝     
*/
/*!
* the-price
*/
.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 {
    /*display: inline-block; */
    display: block;
    min-height: 0;
    /* support: IE7 */
}

    .ui-helper-clearfix:before, .ui-helper-clearfix:after {
        content: "";
        display: table;
        border-collapse: collapse;
    }

    .ui-helper-clearfix:after {
        content: ".";
        display: block;
        height: 0;
        clear: both;
        visibility: hidden;
    }

.ui-helper-zfix {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    opacity: 0;
    filter: alpha(opacity=0);
}

.ui-front {
    z-index: 100;
}

.ui-state-disabled {
    cursor: default !important;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=35);
    opacity: 0.35;
    background-image: none;
}

    .ui-state-disabled .ui-icon {
        filter: alpha(opacity=35);
        /* For IE8 - See #6059 */
    }

.ui-state-default {
    color: #333333;
    background-color: #ffffff;
    font-weight: normal;
    border: 1px solid #cccccc;
}

    .ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited {
        color: #555555;
        text-decoration: none;
    }

    .ui-state-default .ui-icon {
        background-image: url("../../img/jqueryui/ui-icons_888888_256x240.png");
    }

.ui-state-hover, .ui-state-focus {
    color: #333333;
    background-color: #ebebeb;
    border-color: #adadad;
    text-decoration: none;
}

    .ui-state-hover .ui-icon, .ui-state-focus .ui-icon {
        background-image: url("../../img/jqueryui/ui-icons_454545_256x240.png");
    }

    .ui-state-hover a, .ui-state-hover a:hover, .ui-state-hover a:link, .ui-state-hover a:visited {
        color: #333333;
        text-decoration: none;
    }

.ui-state-active {
    border: 1px solid #adadad;
    font-weight: normal;
    color: #333333;
}

    .ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
        color: #333333;
        text-decoration: none;
    }

    .ui-state-active .ui-icon {
        background-image: url("../../img/jqueryui/ui-icons_454545_256x240.png");
    }

.ui-state-highlight, .ui-state-error, .ui-state-default {
    position: relative;
    border-width: 1px;
    border-style: solid;
}

    .ui-state-highlight p, .ui-state-error p, .ui-state-default p {
        font-size: 13px;
        font-weight: normal;
        line-height: 18px;
        margin: 7px 15px;
    }

.ui-state-highlight {
    color: #3a87ad;
    background-color: #d9edf7;
    border-color: #bce8f1;
}

    .ui-state-highlight a {
        color: #2d6987;
    }

    .ui-state-highlight .ui-icon {
        background-image: url("../../img/jqueryui/ui-icons_2e83ff_256x240.png");
    }

.ui-state-error {
    color: #b94a48;
    background-color: #f2dede;
    border-color: #eed3d7;
}

    .ui-state-error a {
        color: #953b39;
    }

.ui-state-error-text {
    color: #953b39;
}

.ui-icon {
    display: block;
    text-indent: -99999px;
    overflow: hidden;
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
    background-image: url("../../img/jqueryui/ui-icons_222222_256x240.png");
}

.ui-resizable {
    position: relative;
}

.ui-resizable-handle {
    position: absolute;
    font-size: 0.1px;
    z-index: 99999;
    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-widget {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 13px;
}

    .ui-widget .ui-widget {
        font-size: 13px;
    }

    .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button {
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: inherit;
    }

.ui-widget-content {
    border: 1px solid #aaaaaa;
    background: #ffffff;
    color: #404040;
}

    .ui-widget-content .ui-icon {
        background-image: url("../../img/jqueryui/ui-icons_222222_256x240.png");
    }

.ui-widget-header {
    font-weight: bold;
    background-color: #F5F5F5;
    border-color: #DDDDDD;
    color: #333333;
}

    .ui-widget-header a {
        color: #222222;
    }

    .ui-widget-header .ui-icon {
        background-image: url("../../img/jqueryui/ui-icons_222222_256x240.png");
    }

.ui-widget :active {
    outline: none;
}

.ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary {
    font-weight: bold;
}

.ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
    opacity: 0.7;
    font-weight: normal;
}

.ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
    color: #333333;
    background-color: #ffffff;
    font-weight: normal;
    border: 1px solid #cccccc;
}

.ui-widget-content .ui-state-hover, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-hover, .ui-widget-header .ui-state-focus {
    color: #333333;
    background-color: #ebebeb;
    border-color: #adadad;
    text-decoration: none;
}

.ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
    border: 1px solid #adadad;
    font-weight: normal;
    color: #333333;
}

.ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
    color: #3a87ad;
    background-color: #d9edf7;
    border-color: #bce8f1;
}

    .ui-widget-content .ui-state-highlight a, .ui-widget-header .ui-state-highlight a {
        color: #2d6987;
    }

.ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {
    color: #b94a48;
    background-color: #f2dede;
    border-color: #eed3d7;
}

    .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a {
        color: #953b39;
    }

.ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text {
    color: #953b39;
}

.ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=35);
    opacity: 0.35;
    background-image: none;
}

.ui-widget-overlay {
    background: #aaaaaa;
    opacity: .30;
    filter: alpha(opacity=30);
    position: absolute;
    z-index: 949 !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ui-widget-shadow {
    margin: -8px 0 0 -8px;
    padding: 8px;
    background: #aaaaaa;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
    opacity: 0.3;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
}

.ui-priority-primary {
    font-weight: bold;
}

.ui-priority-secondary {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
    opacity: 0.7;
    font-weight: normal;
}

.ui-accordion {
    width: 100%;
}

.ui-accordion-li-fix {
    display: inline;
}

.ui-accordion .ui-accordion-header {
    display: block;
    cursor: pointer;
    position: relative;
    margin-top: 2px;
    padding: .5em .5em .5em .7em;
    min-height: 0;
}

.ui-accordion .ui-accordion-header-active {
    border-bottom: 0 !important;
}

.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
    position: absolute;
    left: .5em;
    top: 50%;
    margin-top: -8px;
}

.ui-accordion .ui-accordion-icons {
    padding-left: 2.2em;
}

    .ui-accordion .ui-accordion-icons .ui-accordion-icons {
        padding-left: 2.2em;
    }

.ui-accordion .ui-accordion-noicons {
    padding-left: .7em;
}

.ui-accordion .ui-accordion-content {
    padding: 1em 2.2em;
    border-top: 0 none;
    margin-top: -3px;
    position: relative;
    top: 1px;
    margin-bottom: 2px;
    overflow: auto;
    display: none;
}

.ui-accordion .ui-accordion-content-active {
    display: block;
}

.ui-autocomplete {
    position: absolute;
    top: 0;
    left: 0;
    cursor: default;
}

.ui-button {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.428571429;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid #ccc;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

    .ui-button:focus {
        outline: thin dotted #333;
        outline: 5px auto -webkit-focus-ring-color;
        outline-offset: -2px;
    }

    .ui-button:focus, .ui-button:hover {
        color: #333333;
        background-color: #ebebeb;
        border-color: #adadad;
        text-decoration: none;
    }

.ui-button-text-icon-primary {
    padding: 2px 7px 3px;
}

    .ui-button-text-icon-primary .ui-button-icon-primary {
        float: left;
    }

        .ui-button-text-icon-primary .ui-button-icon-primary.ui-icon {
            margin-top: 5px;
        }

    .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-primary {
    color: #ffffff;
    background-color: #428bca;
    border-color: #357ebd;
}

    .ui-button-primary:hover, .ui-button-primary:focus {
        color: #ffffff;
        background-color: #3276b1;
        border-color: #285e8e;
    }

.ui-button-warning {
    color: #ffffff;
    background-color: #f0ad4e;
    border-color: #eea236;
}

    .ui-button-warning:hover {
        color: #ffffff;
        background-color: #ed9c28;
        border-color: #d58512;
    }

.ui-button-info {
    color: #ffffff;
    background-color: #5bc0de;
    border-color: #46b8da;
}

    .ui-button-info:hover {
        color: #ffffff;
        background-color: #39b3d7;
        border-color: #269abc;
    }

.ui-button-danger {
    color: #ffffff;
    background-color: #d9534f;
    border-color: #d43f3a;
}

    .ui-button-danger:hover {
        color: #ffffff;
        background-color: #d2322d;
        border-color: #ac2925;
    }

.ui-button-inverse {
    color: #ffffff;
    background-color: #222222;
    border-color: #080808;
}

    .ui-button-inverse:hover {
        color: #ffffff;
        background-color: #363636;
        border-color: #000000;
    }

.ui-button-success {
    color: #ffffff;
    background-color: #5cb85c;
    border-color: #4cae4c;
}

    .ui-button-success:hover {
        color: #ffffff;
        background-color: #47a447;
        border-color: #398439;
    }

.ui-button-error {
    color: #ffffff;
    background-color: #c43c35;
    border-color: #882a25;
}

.ui-button-primary:hover, .ui-button-success:hover, .ui-button-info:hover, .ui-button-danger:hover, .ui-button-warning:hover, .ui-button-inverse:hover {
    color: #ffffff;
    text-decoration: none;
}

.ui-button-icon-only {
    width: 2.2em;
}

.ui-button-icons-only {
    width: 3.4em;
}

    .ui-button-icons-only .ui-icon {
        left: 50%;
        margin-left: -8px;
        margin-right: -6px;
    }

    .ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text {
        padding: .4em;
        text-indent: -9999px;
        display: none;
    }

.ui-button .ui-button-text {
    display: block;
    line-height: normal;
}

.ui-button-text-icons .ui-button-text {
    padding-left: 2.1em;
    padding-right: 2.1em;
}

.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 {
    margin-bottom: 0;
    margin-top: 0;
    top: 50%;
}

.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 {
    left: .5em;
}

.ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary {
    right: .5em;
}

.ui-btn-lg {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33;
    border-radius: 6px;
}

.ui-btn-sm, .ui-btn-xs {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

.ui-btn-xs {
    padding: 1px 5px;
}

.ui-btn-block {
    display: block;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
}

    .ui-btn-block + .ui-btn-block {
        margin-top: 5px;
    }

.ui-buttonset {
    margin-right: 7px;
}

    .ui-buttonset .ui-state-active {
        color: #ffffff;
        background-color: #428bca;
        border-color: #357ebd;
    }

        .ui-buttonset .ui-state-active.ui-state-hover {
            color: #ffffff;
            background-color: #3276b1;
            border-color: #285e8e;
        }

    .ui-buttonset .ui-button {
        margin-left: 0;
        margin-right: -0.4em;
    }

.ui-menu {
    list-style: none;
    padding: 2px;
    margin: 0;
    display: block;
    outline: none;
    width: 200px;
    margin-bottom: 2em;
}

    .ui-menu .ui-menu {
        margin-top: -3px;
        position: absolute;
        list-style: none;
    }

    .ui-menu .ui-menu-item {
        margin: 0;
        padding: 0;
        width: 100%;
        list-style: none;
        /* 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-corner-all {
            -webkit-border-radius: 0px;
            -moz-border-radius: 0px;
            -ms-border-radius: 0px;
            -o-border-radius: 0px;
            border-radius: 0px;
        }

        .ui-menu .ui-menu-item a.ui-state-focus, .ui-menu .ui-menu-item a.ui-state-active, .ui-menu .ui-menu-item a.ui-state-content {
            font-weight: bold;
            margin: 0;
            background-color: #428BCA;
            border-color: #357EBD;
            color: #FFFFFF;
            display: block;
            white-space: nowrap;
        }

        .ui-menu .ui-menu-item a.ui-state-active {
            padding: 1px .4em;
        }

    .ui-menu .ui-state-disabled {
        font-weight: normal;
        margin: .4em 0 .2em;
        line-height: 1.5;
    }

        .ui-menu .ui-state-disabled a {
            cursor: default;
        }

.ui-menu-icons {
    position: relative;
}

    .ui-menu-icons .ui-menu-item a {
        position: relative;
        padding-left: 2em;
    }

.ui-menu .ui-icon {
    position: absolute;
    top: .2em;
    left: .2em;
}

.ui-menu .ui-menu-icon {
    position: static;
    float: right;
}

.ui-spinner {
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding: 0;
    vertical-align: middle;
}

.ui-spinner-input {
    border: none;
    background: none;
    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;
}

.ui-spinner a.ui-spinner-button {
    border-top: none;
    border-bottom: none;
    border-right: none;
}

.ui-spinner .ui-icon {
    position: absolute;
    margin-top: -8px;
    top: 50%;
    left: 0;
}

.ui-spinner-up {
    top: 0;
}

.ui-spinner-down {
    bottom: 0;
}

.ui-spinner .ui-icon-triangle-1-s {
    background-position: -65px -16px;
}

* html .ui-helper-clearfix {
    height: 1%;
}

.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
    background-image: url("../../img/jqueryui/ui-icons_f6cf3b_256x240.png");
}

.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-first {
    background-position: -80px -160px;
}

.ui-icon-seek-start {
    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 {
    background-position: -32px -176px;
}

.ui-icon-signal-diag {
    background-position: -16px -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-grip-diagonal-se {
    background-position: -80px -224px;
}

.ui-icon-gripsmall-diagonal-se {
    background-position: -64px -224px;
}

.ui-corner-all {
    -webkit-border-radius: 0px;
    /* Safari 4 */
    -moz-border-radius: 0px;
    /* Firefox 3.6 */
    border-radius: 0px;
}

.ui-corner-top, .ui-corner-left, .ui-corner-tl {
    -moz-border-radius-topleft: 4px;
    -webkit-border-top-left-radius: 4px;
    border-top-left-radius: 4px;
}

.ui-corner-top, .ui-corner-right, .ui-corner-tr {
    -moz-border-radius-topright: 4px;
    -webkit-border-top-right-radius: 4px;
    border-top-right-radius: 4px;
}

.ui-corner-bottom, .ui-corner-left, .ui-corner-bl {
    -moz-border-radius-bottomleft: 4px;
    -webkit-border-bottom-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.ui-corner-bottom, .ui-corner-right, .ui-corner-br {
    -moz-border-radius-bottomright: 4px;
    -webkit-border-bottom-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

ui-button.disabled, ui-button[disabled], ui-button.disabled:hover, ui-button[disabled]:hover, ui-button.disabled:focus, ui-button[disabled]:focus, ui-button.disabled:active, ui-button[disabled]:active, ui-button.disabled.active, ui-button[disabled].active {
    background-color: #ffffff;
    border-color: #cccccc;
}

fieldset[disabled] ui-button {
    background-color: #ffffff;
    border-color: #cccccc;
}

    fieldset[disabled] ui-button:hover, fieldset[disabled] ui-button:focus, fieldset[disabled] ui-button:active, fieldset[disabled] ui-button.ui-state-active {
        background-color: #ffffff;
        border-color: #cccccc;
    }

input[type="submit"].ui-btn-block, input[type="reset"].ui-btn-block, input[type="button"].ui-btn-block {
    width: 100%;
}

button.ui-button-icons-only {
    width: 3.7em;
}

button.ui-button::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input.ui-button {
    padding: .4em 1em;
}

/********** VJ - Move to Less - End *************/
/*
 * jQuery UI Dialog 1.10.3
 *
 * Copyright 2013, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Dialog#theming
 */
.ui-dialog {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
    width: 300px;
    overflow: hidden;
    -webkit-background-clip: padding;
    -moz-background-clip: padding;
    background-clip: padding-box;
    background-color: #ffffff;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    border-radius: 6px;
    outline: medium none;
    z-index: 1050;
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid #999999;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

    .ui-dialog .ui-dialog-title {
        float: left;
        color: #404040;
        font-weight: bold;
        margin-top: 5px;
        margin-bottom: 5px;
        padding: 5px;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .ui-dialog .ui-dialog-titlebar {
        /*padding: .4em 1em;*/
        position: relative;
        border: 0 0 0 1px solid;
        border-color: white;
        padding: 5px 15px;
        font-size: 18px;
        text-decoration: none;
        -moz-border-radius-bottomleft: 0;
        -webkit-border-bottom-left-radius: 0;
        border-bottom-left-radius: 0;
        -moz-border-radius-bottomright: 0;
        -webkit-border-bottom-right-radius: 0;
        border-bottom-right-radius: 0;
        border-bottom: 1px solid #ccc;
    }

    .ui-dialog .ui-dialog-titlebar-close {
        position: absolute;
        right: .3em;
        top: 50%;
        width: 19px;
        margin: -20px 0 0 0;
        padding: 1px;
        height: 18px;
        font-size: 20px;
        font-weight: bold;
        line-height: 13.5px;
        text-shadow: 0 1px 0 #ffffff;
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=25);
        opacity: 0.25;
        background: none;
        border-width: 0;
        border: none;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

        .ui-dialog .ui-dialog-titlebar-close span {
            display: block;
            margin: 1px;
            text-indent: 9999px;
        }

        .ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus {
            padding: 1px;
            filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
            opacity: 0.9;
        }

    .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: .5em 0 0 0;
        background-color: #ffffff;
        padding: 5px 15px 5px;
        border-top: 1px solid #ddd;
        -webkit-border-radius: 0 0 6px 6px;
        -moz-border-radius: 0 0 6px 6px;
        -ms-border-radius: 0 0 6px 6px;
        -o-border-radius: 0 0 6px 6px;
        border-radius: 0 0 6px 6px;
        -webkit-box-shadow: inset 0 1px 0 #ffffff;
        -moz-box-shadow: inset 0 1px 0 #ffffff;
        box-shadow: inset 0 1px 0 #ffffff;
        margin-bottom: 0;
    }

        .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: 14px;
        height: 14px;
        right: 3px;
        bottom: 3px;
    }

    .ui-dialog .ui-dialog-titlebar {
        cursor: move;
    }

.ui-dialog-buttonpane .ui-dialog-buttonset .ui-button {
    color: #ffffff;
    background-color: #428bca;
    border-color: #357ebd;
}

    .ui-dialog-buttonpane .ui-dialog-buttonset .ui-button.ui-state-hover {
        color: #ffffff;
        background-color: #3276b1;
        border-color: #285e8e;
    }

.ui-dialog-buttonset .ui-button:not(:first-child) {
    cursor: pointer;
    display: inline-block;
    color: #333333;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    -webkit-transition: 0.1s false false, linear false false, all false false;
    -moz-transition: 0.1s false false false, linear false false false, all false false false;
    -o-transition: 0.1s false false false, linear false false false, all false false false;
    transition: 0.1s linear all;
    overflow: visible;
}

    .ui-dialog-buttonset .ui-button:not(:first-child) .ui-state-hover {
        color: #333333;
        background-color: #ebebeb;
        border-color: #adadad;
        text-decoration: none;
    }

.ui-dialog-buttonset .ui-button.ui-button-info {
    color: #ffffff;
    background-color: #5bc0de;
    border-color: #46b8da;
}

    .ui-dialog-buttonset .ui-button.ui-button-info.ui-state-hover {
        color: #ffffff;
        background-color: #39b3d7;
        border-color: #269abc;
    }

.ui-dialog-buttonset .ui-button.ui-button-success {
    color: #ffffff;
    background-color: #5cb85c;
    border-color: #4cae4c;
}

    .ui-dialog-buttonset .ui-button.ui-button-success.ui-state-hover {
        color: #ffffff;
        background-color: #47a447;
        border-color: #398439;
    }

.ui-dialog-buttonset .ui-button.ui-button-warning {
    color: #ffffff;
    background-color: #f0ad4e;
    border-color: #eea236;
}

    .ui-dialog-buttonset .ui-button.ui-button-warning.ui-state-hover {
        color: #ffffff;
        background-color: #ed9c28;
        border-color: #d58512;
    }

.ui-dialog-buttonset .ui-button.ui-button-danger {
    color: #ffffff;
    background-color: #d9534f;
    border-color: #d43f3a;
}

    .ui-dialog-buttonset .ui-button.ui-button-danger.ui-state-hover {
        color: #ffffff;
        background-color: #d2322d;
        border-color: #ac2925;
    }

.ui-dialog-buttonset .ui-button.ui-button-inverse {
    color: #ffffff;
    background-color: #222222;
    border-color: #080808;
}

    .ui-dialog-buttonset .ui-button.ui-button-inverse.ui-state-hover {
        color: #ffffff;
        background-color: #363636;
        border-color: #000000;
    }

/*
 * jQuery UI Slider 1.10.3
 *
 * Copyright 2013, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Slider#theming
 */
.ui-slider {
    position: relative;
    text-align: left;
}

    .ui-slider.ui-state-disabled .ui-slider-handle,
    .ui-slider.ui-state-disabled .ui-slider-range {
        filter: inherit;
    }

    .ui-slider .ui-slider-handle {
        position: absolute;
        z-index: 2;
        width: 16px;
        height: 18px;
        cursor: default;
    }

    .ui-slider .ui-slider-range {
        position: absolute;
        z-index: 1;
        font-size: .7em;
        display: block;
        border: 0;
        background-position: 0 0;
        color: #ffffff;
        background-color: #0e90d2;
        background-image: -webkit-gradient(linear, to bottom, #149bdf, #0480be);
        background-image: -webkit-linear-gradient(to bottom, #149bdf, #0480be);
        background-image: -moz-linear-gradient(to bottom, #149bdf, #0480be);
        background-image: -ms-linear-gradient(to bottom, #149bdf, #0480be);
        background-image: -o-linear-gradient(to bottom, #149bdf, #0480be);
        background-image: linear-gradient(to bottom, #149bdf, #0480be);
        background-repeat: repeat-x;
        -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
        -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
        box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-transition: width false false, 0.6s false false, ease false false;
        -moz-transition: width false false false, 0.6s false false false, ease false false false;
        -o-transition: width false false false, 0.6s false false false, ease false false false;
        transition: width 0.6s ease;
    }

.ui-slider-horizontal {
    height: 10px;
    background: #D5D5D5;
    border: none;
}

    .ui-slider-horizontal .ui-slider-handle {
        top: -0.3em;
        margin-left: -0.6em;
        background-color: #fff;
        border-color: #CCC;
    }

        .ui-slider-horizontal .ui-slider-handle:focus {
            background-color: #fff;
            border-color: #357EBD;
        }

        .ui-slider-horizontal .ui-slider-handle:hover {
            background-color: #fff;
            border-color: #285E8E;
            outline: 0;
        }

        .ui-slider-horizontal .ui-slider-handle:active {
            background-color: #428BCA;
            border-color: #3276B1;
        }

    .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: -0.3em;
        margin-left: 0;
        margin-bottom: -0.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;
    }

/*
 * jQuery UI Tabs 1.10.3
 *
 * Copyright 2013, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://jqueryui.com/tabs/
 */
.ui-tabs {
    position: relative;
    /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
    border: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}

    .ui-tabs .ui-tabs-nav {
        margin-bottom: 5px;
        border: solid #ddd;
        border-width: 0 0 1px 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
        background: none;
    }

        .ui-tabs .ui-tabs-nav li {
            position: relative;
            top: 0;
            float: left;
            margin-right: 2px;
            margin-bottom: -1px;
            border: 0;
            list-style: none;
            white-space: nowrap;
            background: none;
            filter: none;
        }

            .ui-tabs .ui-tabs-nav li a {
                float: left;
                border: 1px solid #fff;
                border-bottom: 1px solid #ddd;
                -webkit-border-radius: 4px 4px 0 0;
                -moz-border-radius: 4px 4px 0 0;
                -ms-border-radius: 4px 4px 0 0;
                -o-border-radius: 4px 4px 0 0;
                border-radius: 4px 4px 0 0;
                padding: 8px 12px;
                font-weight: normal;
                text-decoration: none;
                outline: none;
                color: #0069D6;
                background: none;
            }

                .ui-tabs .ui-tabs-nav li a:hover {
                    border: 1px solid whiteSmoke;
                    border-bottom: 1px solid #ddd;
                    background-color: whiteSmoke;
                }

            .ui-tabs .ui-tabs-nav li.ui-tabs-active a {
                border: 1px solid #ddd;
                border-bottom: 1px solid #fff;
                background-color: #fff;
                color: #555;
            }

            .ui-tabs .ui-tabs-nav li.ui-tabs-active:hover {
                background: #fff;
                cursor: text;
            }

            .ui-tabs .ui-tabs-nav li.ui-tabs-active a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-tabs-loading a {
                cursor: text;
            }

    .ui-tabs .ui-tabs-panel {
        display: block;
        margin: 1em 0;
        border: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
        padding: 1px 0;
        background: none;
    }

    .ui-tabs .ui-tabs-hide {
        display: none !important;
    }

.ui-tabs-nav .ui-state-default {
    border: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

/*
 * jQuery UI Tooltip 1.10.3
 *
 * Copyright 2013, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://jqueryui.com/tooltip/
 */
.ui-tooltip {
    display: block;
    font-size: 11px;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    opacity: 0.8;
    position: absolute;
    visibility: visible;
    z-index: 1024;
    max-width: 200px;
    background: #000000;
    border: 1px solid #000000;
    color: #FFFFFF;
    padding: 3px 8px;
    text-align: center;
    text-decoration: none;
    -webkit-box-shadow: inset 0 1px 0 #000000;
    -moz-box-shadow: inset 0 1px 0 #000000;
    box-shadow: inset 0 1px 0 #000000;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
}

body .ui-tooltip {
    border-width: 1px;
}

/*
 * jQuery UI Datepicker 1.10.3
 *
 * Copyright 2013, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://jqueryui.com/datepicker/
 */
.ui-datepicker {
    width: 17em;
    padding: .2em .2em 0;
    display: none;
}

    .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 .ui-datepicker-group-last .ui-datepicker-header {
    border-left-width: 0;
}

.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
    border-left-width: 0;
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
    clear: left;
}

.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 .ui-datepicker-header {
    position: relative;
    border: 0;
    font-weight: bold;
    width: 100%;
    padding: 4px 0;
    background-color: #f5f5f5;
    color: #808080;
}

.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;
        }

.ui-datepicker .ui-datepicker-next,
.ui-datepicker .ui-datepicker-prev {
    position: absolute;
    top: 2px;
    width: 1.8em;
    height: 1.8em;
}

    .ui-datepicker .ui-datepicker-next span,
    .ui-datepicker .ui-datepicker-prev span {
        display: block;
        position: absolute;
        left: 50%;
        margin-left: -8px;
        top: 50%;
        margin-top: -8px;
    }

.ui-datepicker .ui-datepicker-next {
    right: 2px;
}

.ui-datepicker .ui-datepicker-prev {
    left: 2px;
}

.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-year {
    width: 100%;
}

.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;
    font-weight: bold;
    color: gray;
}

.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 td a {
        margin-bottom: 0;
        border: 0;
    }

    .ui-datepicker td:hover {
        color: #ffffff;
    }

    .ui-datepicker td .ui-state-default {
        border: 0;
        background: none;
        margin-bottom: 0;
        padding: 5px;
        color: gray;
        text-align: center;
        filter: none;
    }

    .ui-datepicker td .ui-state-highlight {
        color: #ffffff;
        background-color: #A90329;
        border-color: #46b8da;
        text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
        border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
    }

    .ui-datepicker td .ui-state-active {
        color: #333333;
        background-color: #ebebeb;
        border-color: #adadad;
        margin-bottom: 0;
        font-size: normal;
        text-shadow: 0;
        border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
    }

    .ui-datepicker td .ui-state-hover {
        color: #ffffff;
        background: #428bca;
        background-color: #428bca;
        text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
        border-color: #357ebd;
        border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
    }

.ui-datepicker-row-break {
    clear: both;
    width: 100%;
    font-size: 0em;
}

.ui-datepicker-rtl {
    direction: rtl;
}

    .ui-datepicker-rtl .ui-datepicker-prev {
        right: 2px;
        left: auto;
    }

        .ui-datepicker-rtl .ui-datepicker-prev:hover {
            right: 1px;
            left: auto;
        }

    .ui-datepicker-rtl .ui-datepicker-next {
        left: 2px;
        right: 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 {
                float: right;
            }

    .ui-datepicker-rtl .ui-datepicker-group {
        float: right;
    }

    .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header {
        border-right-width: 0;
        border-left-width: 1px;
    }

    .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
        border-right-width: 0;
        border-left-width: 1px;
    }

.ui-datepicker-cover {
    display: none;
    display: block;
    position: absolute;
    z-index: -1;
    filter: mask();
    top: -4px;
    left: -4px;
    width: 200px;
    height: 200px;
}

.ui-datepicker-today a {
    background-color: #BFBFBF;
    cursor: pointer;
    padding: 0 4px;
    margin-bottom: 0;
}

    .ui-datepicker-today a:hover {
        background-color: #808080;
        color: #ffffff;
    }

/*
 * jQuery UI Progressbar 1.10.3
 *
 * Copyright 2013, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Progressbar#theming
 */
.ui-progressbar {
    height: 2em;
    margin-bottom: 20px;
    border: 0;
    overflow: hidden;
    background-color: #f7f7f7;
    background-image: -webkit-gradient(linear, to bottom, #f5f5f5, #f9f9f9);
    background-image: -webkit-linear-gradient(to bottom, #f5f5f5, #f9f9f9);
    background-image: -moz-linear-gradient(to bottom, #f5f5f5, #f9f9f9);
    background-image: -ms-linear-gradient(to bottom, #f5f5f5, #f9f9f9);
    background-image: -o-linear-gradient(to bottom, #f5f5f5, #f9f9f9);
    background-image: linear-gradient(to bottom, #f5f5f5, #f9f9f9);
    background-repeat: repeat-x;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    border-radius: 0px;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.ui-progressbar-value {
    margin: 0;
    height: 100%;
    color: #ffffff;
    /*this can be removed if ui-widget-header is blue*/
    background-color: #428BCA;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: width false false, 0.6s false false, ease false false;
    -moz-transition: width false false false, 0.6s false false false, ease false false false;
    -o-transition: width false false false, 0.6s false false false, ease false false false;
    transition: width 0.6s ease;
}

.ui-progressbar-overlay {
    background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
    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: -moz-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);
    background-size: 40px 40px;
    -webkit-animation: progress-bar-stripes 2s linear infinite;
    -moz-animation: progress-bar-stripes 2s linear infinite;
    -ms-animation: progress-bar-stripes 2s linear infinite;
    -o-animation: progress-bar-stripes 2s linear infinite;
    animation: progress-bar-stripes 2s linear infinite;
}

.ui-progressbar-indeterminate .ui-progressbar-value {
    background-image: none;
}

/**Toolbar**/
.ui-toolbar {
    padding: 7px 14px;
    margin: 0 0 18px;
    background-color: #f5f5f5;
    background-repeat: repeat-x;
    background-image: -webkit-gradient(linear, top, #ffffff, #f5f5f5);
    background-image: -webkit-linear-gradient(top, #ffffff, #f5f5f5);
    background-image: -moz-linear-gradient(top, #ffffff, #f5f5f5);
    background-image: -ms-linear-gradient(top, #ffffff, #f5f5f5);
    background-image: -o-linear-gradient(top, #ffffff, #f5f5f5);
    background-image: linear-gradient(top, #ffffff, #f5f5f5);
    /* IE8 */
    border: 1px solid #ddd;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: inset 0 1px 0 #ffffff;
    -moz-box-shadow: inset 0 1px 0 #ffffff;
    box-shadow: inset 0 1px 0 #ffffff;
}

/** File Input **/
.customfile-button {
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.428571429;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid #ccc;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

/***Wijmo Theming**/
div.wijmo-wijmenu {
    padding: 0 20px;
    background-color: #222222;
    background-repeat: repeat-x;
    background-image: -webkit-gradient(linear, top, #333333, #222222);
    background-image: -webkit-linear-gradient(top, #333333, #222222);
    background-image: -moz-linear-gradient(top, #333333, #222222);
    background-image: -ms-linear-gradient(top, #333333, #222222);
    background-image: -o-linear-gradient(top, #333333, #222222);
    background-image: linear-gradient(top, #333333, #222222);
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

    div.wijmo-wijmenu .wijmo-wijmenu-item {
        margin: 0;
        border: 0;
    }

        div.wijmo-wijmenu .wijmo-wijmenu-item .wijmo-wijmenu-child {
            background: #333;
            border: 0;
            margin: 0;
            padding: 6px 0;
            width: 160px;
            -webkit-border-radius: 0 0 6px 6px;
            -moz-border-radius: 0 0 6px 6px;
            -ms-border-radius: 0 0 6px 6px;
            -o-border-radius: 0 0 6px 6px;
            border-radius: 0 0 6px 6px;
            -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

            div.wijmo-wijmenu .wijmo-wijmenu-item .wijmo-wijmenu-child .ui-state-hover {
                background: #191919;
            }

    div.wijmo-wijmenu .wijmo-wijmenu-child .wijmo-wijmenu-link {
        display: block;
        float: none;
        padding: 4px 15px;
        width: auto;
    }

    div.wijmo-wijmenu .wijmo-wijmenu-child .wijmo-wijmenu-text {
        float: none;
    }

div .ui-widget-header h3 {
    position: relative;
    margin-top: 1px;
    padding: 0;
}

.wijmo-wijmenu .ui-state-default {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    color: #bfbfbf;
    text-shadow: none;
    filter: none;
}

    .wijmo-wijmenu .ui-state-default .wijmo-wijmenu-text {
        color: #bfbfbf;
    }

.wijmo-wijmenu .ui-state-hover {
    background: #444;
    background: rgba(255, 255, 255, 0.05);
}

    .wijmo-wijmenu .ui-state-hover .wijmo-wijmenu-text {
        color: #ffffff;
    }

.wijmo-wijmenu h3 a {
    color: #ffffff;
    display: block;
    float: left;
    font-size: 20px;
    font-weight: 200;
    line-height: 1;
    margin-left: -20px;
    margin-top: 1px;
    padding: 8px 20px 12px;
}

    .wijmo-wijmenu h3 a:hover {
        background-color: rgba(255, 255, 255, 0.05);
        color: #ffffff;
        text-decoration: none;
    }

.wijmo-wijmenu .ui-widget-header {
    border: 0;
}

.wijmo-wijmenu .wijmo-wijmenu-parent .wijmo-wijmenu-child {
    padding: 0.3em 0;
}

.wijmo-wijmenu a.wijmo-wijmenu-link {
    margin: 0;
    line-height: 19px;
    padding: 10px 10px 11px;
    border: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}

.wijmo-wijmenu .wijmo-wijmenu-item .wijmo-wijmenu-separator {
    padding: 5px 0;
    background-image: none;
    background-color: #222;
    border-top: 1px solid #444;
    border-bottom: 0;
    border-left: 0;
    border-right: 0;
}

.wijmo-wijmenu .wijmo-wijmenu-item input {
    -moz-transition: none 0s ease 0s;
    background-color: rgba(255, 255, 255, 0.3);
    border: 1px solid #111111;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset, 0 1px 0 rgba(255, 255, 255, 0.25);
    -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset, 0 1px 0 rgba(255, 255, 255, 0.25);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset, 0 1px 0 rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.75);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1;
    margin: 5px 10px 0 10px;
    padding: 4px 9px;
    width: 100px;
}

    .wijmo-wijmenu .wijmo-wijmenu-item input:hover {
        background-color: rgba(255, 255, 255, 0.5);
        color: #ffffff;
    }

    .wijmo-wijmenu .wijmo-wijmenu-item input:focus {
        background-color: #ffffff;
        border: 0 none;
        -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
        -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
        box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
        color: #404040;
        outline: 0 none;
        padding: 5px 10px;
        text-shadow: 0 1px 0 #ffffff;
    }

.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
    text-shadow: none;
}

/**
 * Font Awesome in jQuery UI
 * @author Gerits Aurelien
 *
 **/
.ui-button-icon-primary.ui-icon[class^="icon-"]:before, .ui-button-icon-primary.ui-icon[class*=" icon-"]:before, .ui-button-icon-secondary.ui-icon[class^="icon-"]:before, .ui-button-icon-secondary.ui-icon[class*=" icon-"]:before {
    font-size: inherit;
    margin-left: 7px !important;
    margin-left: 5px;
    display: inline;
    text-decoration: inherit;
    color: inherit;
}

/* **
 * If you use "Font awesome" is disable UI icons in element
 ** */
.ui-state-default .ui-icon[class*=" icon-"] {
    /* Reset background with font Awesome */
    background: none;
    margin-left: -12px;
    /*fix for margin issue with font awesome buttons*/
}

.flag {
    width: 16px;
    height: 11px;
    background: url("../../img/flags/flags.png") no-repeat;
    margin-top: -0.18em;
    display: inline-block;
    /*  Not yet :)
      &.flag-kurdistan {
      background-position: -160px -77px;
  }*/
}

    .flag.flag-ad {
        background-position: -16px 0;
    }

    .flag.flag-ae {
        background-position: -32px 0;
    }

    .flag.flag-af {
        background-position: -48px 0;
    }

    .flag.flag-ag {
        background-position: -64px 0;
    }

    .flag.flag-ai {
        background-position: -80px 0;
    }

    .flag.flag-al {
        background-position: -96px 0;
    }

    .flag.flag-am {
        background-position: -112px 0;
    }

    .flag.flag-an {
        background-position: -128px 0;
    }

    .flag.flag-ao {
        background-position: -144px 0;
    }

    .flag.flag-ar {
        background-position: -160px 0;
    }

    .flag.flag-as {
        background-position: -176px 0;
    }

    .flag.flag-at {
        background-position: -192px 0;
    }

    .flag.flag-au {
        background-position: -208px 0;
    }

    .flag.flag-aw {
        background-position: -224px 0;
    }

    .flag.flag-az {
        background-position: -240px 0;
    }

    .flag.flag-ba {
        background-position: 0 -11px;
    }

    .flag.flag-bb {
        background-position: -16px -11px;
    }

    .flag.flag-bd {
        background-position: -32px -11px;
    }

    .flag.flag-be {
        background-position: -48px -11px;
    }

    .flag.flag-bf {
        background-position: -64px -11px;
    }

    .flag.flag-bg {
        background-position: -80px -11px;
    }

    .flag.flag-bh {
        background-position: -96px -11px;
    }

    .flag.flag-bi {
        background-position: -112px -11px;
    }

    .flag.flag-bj {
        background-position: -128px -11px;
    }

    .flag.flag-bm {
        background-position: -144px -11px;
    }

    .flag.flag-bn {
        background-position: -160px -11px;
    }

    .flag.flag-bo {
        background-position: -176px -11px;
    }

    .flag.flag-br {
        background-position: -192px -11px;
    }

    .flag.flag-bs {
        background-position: -208px -11px;
    }

    .flag.flag-bt {
        background-position: -224px -11px;
    }

    .flag.flag-bv {
        background-position: -240px -11px;
    }

    .flag.flag-bw {
        background-position: 0 -22px;
    }

    .flag.flag-by {
        background-position: -16px -22px;
    }

    .flag.flag-bz {
        background-position: -32px -22px;
    }

    .flag.flag-ca {
        background-position: -48px -22px;
    }

    .flag.flag-catalonia {
        background-position: -64px -22px;
    }

    .flag.flag-cd {
        background-position: -80px -22px;
    }

    .flag.flag-cf {
        background-position: -96px -22px;
    }

    .flag.flag-cg {
        background-position: -112px -22px;
    }

    .flag.flag-ch {
        background-position: -128px -22px;
    }

    .flag.flag-ci {
        background-position: -144px -22px;
    }

    .flag.flag-ck {
        background-position: -160px -22px;
    }

    .flag.flag-cl {
        background-position: -176px -22px;
    }

    .flag.flag-cm {
        background-position: -192px -22px;
    }

    .flag.flag-cn {
        background-position: -208px -22px;
    }

    .flag.flag-co {
        background-position: -224px -22px;
    }

    .flag.flag-cr {
        background-position: -240px -22px;
    }

    .flag.flag-cu {
        background-position: 0 -33px;
    }

    .flag.flag-cv {
        background-position: -16px -33px;
    }

    .flag.flag-cw {
        background-position: -32px -33px;
    }

    .flag.flag-cy {
        background-position: -48px -33px;
    }

    .flag.flag-cz {
        background-position: -64px -33px;
    }

    .flag.flag-de {
        background-position: -80px -33px;
    }

    .flag.flag-dj {
        background-position: -96px -33px;
    }

    .flag.flag-dk {
        background-position: -112px -33px;
    }

    .flag.flag-dm {
        background-position: -128px -33px;
    }

    .flag.flag-do {
        background-position: -144px -33px;
    }

    .flag.flag-dz {
        background-position: -160px -33px;
    }

    .flag.flag-ec {
        background-position: -176px -33px;
    }

    .flag.flag-ee {
        background-position: -192px -33px;
    }

    .flag.flag-eg {
        background-position: -208px -33px;
    }

    .flag.flag-eh {
        background-position: -224px -33px;
    }

    .flag.flag-england {
        background-position: -240px -33px;
    }

    .flag.flag-er {
        background-position: 0 -44px;
    }

    .flag.flag-es {
        background-position: -16px -44px;
    }

    .flag.flag-et {
        background-position: -32px -44px;
    }

    .flag.flag-eu {
        background-position: -48px -44px;
    }

    .flag.flag-fi {
        background-position: -64px -44px;
    }

    .flag.flag-fj {
        background-position: -80px -44px;
    }

    .flag.flag-fk {
        background-position: -96px -44px;
    }

    .flag.flag-fm {
        background-position: -112px -44px;
    }

    .flag.flag-fo {
        background-position: -128px -44px;
    }

    .flag.flag-fr {
        background-position: -144px -44px;
    }

    .flag.flag-ga {
        background-position: -160px -44px;
    }

    .flag.flag-gb {
        background-position: -176px -44px;
    }

    .flag.flag-gd {
        background-position: -192px -44px;
    }

    .flag.flag-ge {
        background-position: -208px -44px;
    }

    .flag.flag-gf {
        background-position: -224px -44px;
    }

    .flag.flag-gg {
        background-position: -240px -44px;
    }

    .flag.flag-gh {
        background-position: 0 -55px;
    }

    .flag.flag-gi {
        background-position: -16px -55px;
    }

    .flag.flag-gl {
        background-position: -32px -55px;
    }

    .flag.flag-gm {
        background-position: -48px -55px;
    }

    .flag.flag-gn {
        background-position: -64px -55px;
    }

    .flag.flag-gp {
        background-position: -80px -55px;
    }

    .flag.flag-gq {
        background-position: -96px -55px;
    }

    .flag.flag-gr {
        background-position: -112px -55px;
    }

    .flag.flag-gs {
        background-position: -128px -55px;
    }

    .flag.flag-gt {
        background-position: -144px -55px;
    }

    .flag.flag-gu {
        background-position: -160px -55px;
    }

    .flag.flag-gw {
        background-position: -176px -55px;
    }

    .flag.flag-gy {
        background-position: -192px -55px;
    }

    .flag.flag-hk {
        background-position: -208px -55px;
    }

    .flag.flag-hm {
        background-position: -224px -55px;
    }

    .flag.flag-hn {
        background-position: -240px -55px;
    }

    .flag.flag-hr {
        background-position: 0 -66px;
    }

    .flag.flag-ht {
        background-position: -16px -66px;
    }

    .flag.flag-hu {
        background-position: -32px -66px;
    }

    .flag.flag-ic {
        background-position: -48px -66px;
    }

    .flag.flag-id {
        background-position: -64px -66px;
    }

    .flag.flag-ie {
        background-position: -80px -66px;
    }

    .flag.flag-il {
        background-position: -96px -66px;
    }

    .flag.flag-im {
        background-position: -112px -66px;
    }

    .flag.flag-in {
        background-position: -128px -66px;
    }

    .flag.flag-io {
        background-position: -144px -66px;
    }

    .flag.flag-iq {
        background-position: -160px -66px;
    }

    .flag.flag-ir {
        background-position: -176px -66px;
    }

    .flag.flag-is {
        background-position: -192px -66px;
    }

    .flag.flag-it {
        background-position: -208px -66px;
    }

    .flag.flag-je {
        background-position: -224px -66px;
    }

    .flag.flag-jm {
        background-position: -240px -66px;
    }

    .flag.flag-jo {
        background-position: 0 -77px;
    }

    .flag.flag-jp {
        background-position: -16px -77px;
    }

    .flag.flag-ke {
        background-position: -32px -77px;
    }

    .flag.flag-kg {
        background-position: -48px -77px;
    }

    .flag.flag-kh {
        background-position: -64px -77px;
    }

    .flag.flag-ki {
        background-position: -80px -77px;
    }

    .flag.flag-km {
        background-position: -96px -77px;
    }

    .flag.flag-kn {
        background-position: -112px -77px;
    }

    .flag.flag-kp {
        background-position: -128px -77px;
    }

    .flag.flag-kr {
        background-position: -144px -77px;
    }

    .flag.flag-kw {
        background-position: -176px -77px;
    }

    .flag.flag-ky {
        background-position: -192px -77px;
    }

    .flag.flag-kz {
        background-position: -208px -77px;
    }

    .flag.flag-la {
        background-position: -224px -77px;
    }

    .flag.flag-lb {
        background-position: -240px -77px;
    }

    .flag.flag-lc {
        background-position: 0 -88px;
    }

    .flag.flag-li {
        background-position: -16px -88px;
    }

    .flag.flag-lk {
        background-position: -32px -88px;
    }

    .flag.flag-lr {
        background-position: -48px -88px;
    }

    .flag.flag-ls {
        background-position: -64px -88px;
    }

    .flag.flag-lt {
        background-position: -80px -88px;
    }

    .flag.flag-lu {
        background-position: -96px -88px;
    }

    .flag.flag-lv {
        background-position: -112px -88px;
    }

    .flag.flag-ly {
        background-position: -128px -88px;
    }

    .flag.flag-ma {
        background-position: -144px -88px;
    }

    .flag.flag-mc {
        background-position: -160px -88px;
    }

    .flag.flag-md {
        background-position: -176px -88px;
    }

    .flag.flag-me {
        background-position: -192px -88px;
    }

    .flag.flag-mg {
        background-position: -208px -88px;
    }

    .flag.flag-mh {
        background-position: -224px -88px;
    }

    .flag.flag-mk {
        background-position: -240px -88px;
    }

    .flag.flag-ml {
        background-position: 0 -99px;
    }

    .flag.flag-mm {
        background-position: -16px -99px;
    }

    .flag.flag-mn {
        background-position: -32px -99px;
    }

    .flag.flag-mo {
        background-position: -48px -99px;
    }

    .flag.flag-mp {
        background-position: -64px -99px;
    }

    .flag.flag-mq {
        background-position: -80px -99px;
    }

    .flag.flag-mr {
        background-position: -96px -99px;
    }

    .flag.flag-ms {
        background-position: -112px -99px;
    }

    .flag.flag-mt {
        background-position: -128px -99px;
    }

    .flag.flag-mu {
        background-position: -144px -99px;
    }

    .flag.flag-mv {
        background-position: -160px -99px;
    }

    .flag.flag-mw {
        background-position: -176px -99px;
    }

    .flag.flag-mx {
        background-position: -192px -99px;
    }

    .flag.flag-my {
        background-position: -208px -99px;
    }

    .flag.flag-mz {
        background-position: -224px -99px;
    }

    .flag.flag-na {
        background-position: -240px -99px;
    }

    .flag.flag-nc {
        background-position: 0 -110px;
    }

    .flag.flag-ne {
        background-position: -16px -110px;
    }

    .flag.flag-nf {
        background-position: -32px -110px;
    }

    .flag.flag-ng {
        background-position: -48px -110px;
    }

    .flag.flag-ni {
        background-position: -64px -110px;
    }

    .flag.flag-nl {
        background-position: -80px -110px;
    }

    .flag.flag-no {
        background-position: -96px -110px;
    }

    .flag.flag-np {
        background-position: -112px -110px;
    }

    .flag.flag-nr {
        background-position: -128px -110px;
    }

    .flag.flag-nu {
        background-position: -144px -110px;
    }

    .flag.flag-nz {
        background-position: -160px -110px;
    }

    .flag.flag-om {
        background-position: -176px -110px;
    }

    .flag.flag-pa {
        background-position: -192px -110px;
    }

    .flag.flag-pe {
        background-position: -208px -110px;
    }

    .flag.flag-pf {
        background-position: -224px -110px;
    }

    .flag.flag-pg {
        background-position: -240px -110px;
    }

    .flag.flag-ph {
        background-position: 0 -121px;
    }

    .flag.flag-pk {
        background-position: -16px -121px;
    }

    .flag.flag-pl {
        background-position: -32px -121px;
    }

    .flag.flag-pm {
        background-position: -48px -121px;
    }

    .flag.flag-pn {
        background-position: -64px -121px;
    }

    .flag.flag-pr {
        background-position: -80px -121px;
    }

    .flag.flag-ps {
        background-position: -96px -121px;
    }

    .flag.flag-pt {
        background-position: -112px -121px;
    }

    .flag.flag-pw {
        background-position: -128px -121px;
    }

    .flag.flag-py {
        background-position: -144px -121px;
    }

    .flag.flag-qa {
        background-position: -160px -121px;
    }

    .flag.flag-re {
        background-position: -176px -121px;
    }

    .flag.flag-ro {
        background-position: -192px -121px;
    }

    .flag.flag-rs {
        background-position: -208px -121px;
    }

    .flag.flag-ru {
        background-position: -224px -121px;
    }

    .flag.flag-rw {
        background-position: -240px -121px;
    }

    .flag.flag-sa {
        background-position: 0 -132px;
    }

    .flag.flag-sb {
        background-position: -16px -132px;
    }

    .flag.flag-sc {
        background-position: -32px -132px;
    }

    .flag.flag-scotland {
        background-position: -48px -132px;
    }

    .flag.flag-sd {
        background-position: -64px -132px;
    }

    .flag.flag-se {
        background-position: -80px -132px;
    }

    .flag.flag-sg {
        background-position: -96px -132px;
    }

    .flag.flag-sh {
        background-position: -112px -132px;
    }

    .flag.flag-si {
        background-position: -128px -132px;
    }

    .flag.flag-sk {
        background-position: -144px -132px;
    }

    .flag.flag-sl {
        background-position: -160px -132px;
    }

    .flag.flag-sm {
        background-position: -176px -132px;
    }

    .flag.flag-sn {
        background-position: -192px -132px;
    }

    .flag.flag-so {
        background-position: -208px -132px;
    }

    .flag.flag-somaliland {
        background-position: -224px -132px;
    }

    .flag.flag-sr {
        background-position: -240px -132px;
    }

    .flag.flag-ss {
        background-position: 0 -143px;
    }

    .flag.flag-st {
        background-position: -16px -143px;
    }

    .flag.flag-sv {
        background-position: -32px -143px;
    }

    .flag.flag-sx {
        background-position: -48px -143px;
    }

    .flag.flag-sy {
        background-position: -64px -143px;
    }

    .flag.flag-sz {
        background-position: -80px -143px;
    }

    .flag.flag-tc {
        background-position: -96px -143px;
    }

    .flag.flag-td {
        background-position: -112px -143px;
    }

    .flag.flag-tf {
        background-position: -128px -143px;
    }

    .flag.flag-tg {
        background-position: -144px -143px;
    }

    .flag.flag-th {
        background-position: -160px -143px;
    }

    .flag.flag-tj {
        background-position: -176px -143px;
    }

    .flag.flag-tk {
        background-position: -192px -143px;
    }

    .flag.flag-tl {
        background-position: -208px -143px;
    }

    .flag.flag-tm {
        background-position: -224px -143px;
    }

    .flag.flag-tn {
        background-position: -240px -143px;
    }

    .flag.flag-to {
        background-position: 0 -154px;
    }

    .flag.flag-tr {
        background-position: -16px -154px;
    }

    .flag.flag-tt {
        background-position: -32px -154px;
    }

    .flag.flag-tv {
        background-position: -48px -154px;
    }

    .flag.flag-tw {
        background-position: -64px -154px;
    }

    .flag.flag-tz {
        background-position: -80px -154px;
    }

    .flag.flag-ua {
        background-position: -96px -154px;
    }

    .flag.flag-ug {
        background-position: -112px -154px;
    }

    .flag.flag-um {
        background-position: -128px -154px;
    }

    .flag.flag-us {
        background-position: -144px -154px;
    }

    .flag.flag-uy {
        background-position: -160px -154px;
    }

    .flag.flag-uz {
        background-position: -176px -154px;
    }

    .flag.flag-va {
        background-position: -192px -154px;
    }

    .flag.flag-vc {
        background-position: -208px -154px;
    }

    .flag.flag-ve {
        background-position: -224px -154px;
    }

    .flag.flag-vg {
        background-position: -240px -154px;
    }

    .flag.flag-vi {
        background-position: 0 -165px;
    }

    .flag.flag-vn {
        background-position: -16px -165px;
    }

    .flag.flag-vu {
        background-position: -32px -165px;
    }

    .flag.flag-wales {
        background-position: -48px -165px;
    }

    .flag.flag-wf {
        background-position: -64px -165px;
    }

    .flag.flag-ws {
        background-position: -80px -165px;
    }

    .flag.flag-ye {
        background-position: -96px -165px;
    }

    .flag.flag-yt {
        background-position: -112px -165px;
    }

    .flag.flag-za {
        background-position: -128px -165px;
    }

    .flag.flag-zanzibar {
        background-position: -144px -165px;
    }

    .flag.flag-zm {
        background-position: -160px -165px;
    }

    .flag.flag-zw {
        background-position: -176px -165px;
    }

/*
 * JQUI STUFF
 */
/*	Overlay	 */
.ui-widget-overlay {
    background-image: none;
    background: #AAA;
    height: 100%;
    z-index: 949 !important;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

/* Slider */
.slider {
    margin-top: 0;
    margin-bottom: 30px;
}

    .slider.slider-vertical {
        margin-bottom: 0;
        margin-right: 5px;
    }

/* menu */
.ui-menu {
    width: 155px;
    padding: 2px;
    -webkit-box-shadow: 0 2px 4px rgba(30, 30, 100, 0.25);
    -moz-box-shadow: 0 2px 4px rgba(30, 30, 100, 0.25);
    box-shadow: 0 2px 4px rgba(30, 30, 100, 0.25);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.2);
    z-index: 1;
}

    .ui-menu .ui-state-disabled {
        margin: .4em 0 .2em !important;
        background: none !important;
        color: #999 !important;
        font-weight: normal !important;
        cursor: default;
    }

    .ui-menu .ui-menu-item a .ui-menu-icon {
        width: auto;
        height: auto;
        top: 0;
        left: auto;
        right: auto;
        bottom: auto;
        text-indent: 0;
    }

.ui-icon-carat-1-e:before {
    content: "\f105";
    font-family: FontAwesome;
    font-size: 14px;
    display: inline;
}

/* tabs */
.ui-tabs .ui-tabs-nav {
    margin-bottom: 0;
}

    .ui-tabs .ui-tabs-nav li {
        margin-right: 3px;
    }

        .ui-tabs .ui-tabs-nav li a {
            -webkit-border-radius: 0px;
            -moz-border-radius: 0px;
            -ms-border-radius: 0px;
            -o-border-radius: 0px;
            border-radius: 0px;
            background-color: #F5F5F5;
            border: 1px solid #F5F5F5;
            border-bottom: 1px solid #dddddd;
            color: #838383;
        }

        .ui-tabs .ui-tabs-nav li.ui-tabs-active a {
            font-weight: bold;
            border-top-width: 0px !important;
            margin-top: 1px !important;
            -webkit-box-shadow: 0 -2px 0 #57889c;
            -moz-box-shadow: 0 -2px 0 #57889c;
            box-shadow: 0 -2px 0 #57889c;
        }

.ui-tabs .ui-tabs-panel {
    border: 1px solid #dddddd;
    margin: 0;
    padding: 10px 13px;
    border-top: none;
}

/* accordions */
.ui-accordion .ui-accordion-content {
    padding: 15px;
}

.ui-accordion .ui-accordion-header {
    background-color: #fbfbfb;
    font-size: 15px;
    padding: 10px 15px 10px 36px !important;
    margin-top: -2px;
    border-color: #dddddd !important;
}

.ui-accordion .ui-accordion-header-active + .ui-accordion-content {
    border-top: 1px solid #dddddd;
}

.ui-accordion .ui-accordion-header, .ui-accordion .ui-accordion-content {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    border-radius: 0px;
}

.ui-accordion-content {
    border-color: #dddddd !important;
}

.ui-accordion-header-icon {
    text-indent: 0px !important;
    background-image: none !important;
    text-align: center;
    line-height: normal;
    left: 12px !important;
    margin-top: -6px !important;
    font-size: 14px !important;
}

/*
* Calendar
*/
.ui-datepicker .ui-datepicker-next,
.ui-datepicker .ui-datepicker-prev {
    text-align: center;
    margin-top: 2px;
}

    .ui-datepicker .ui-datepicker-next span,
    .ui-datepicker .ui-datepicker-prev span {
        background: none !important;
    }

.ui-datepicker-next > :first-child,
.ui-datepicker-prev > :first-child {
    text-indent: 0 !important;
}

/*
 * JS SLIDER
 * Copied from: js/plugin/noUiSlider/jquery.nouislider.css 
 */
/*	General CSS resets;
 *		The target itself is not affected, allowing
 *		the remainder of the document to use an
 *		alternate box-sizing model;
 *		Support for box-sizing is wide spread:
 *		http://caniuse.com/#search=box-sizing
 */
.noUi-target * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -ms-touch-action: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    cursor: default;
}

/*	Main slider bar;
 *		Standard styles no longer incorrectly force a
 *		width or height on the slider.
 */
.noUi-base {
    width: 100%;
    height: 14px;
    position: relative;
    max-width: 100%;
    max-height: 100%;
    border: 1px solid #bfbfbf;
    z-index: 1;
}

.noUi-origin-lower {
    background: #72a8d7;
}

/*	Handles + active state;
 *		The :after pseudo-element wont inherit
 *		box-sizing, so it needs to applied manually.
 */
.noUi-handle {
    background: #858585;
    height: 30px;
    width: 16px;
    border: 1px solid #ffffff;
    margin: -8px 0 0 -8px;
    cursor: default;
}

    .noUi-handle:hover {
        background: #6c6c6c;
    }

.noUi-active {
    cursor: default;
    box-shadow: rgba(0, 0, 0, 0.1) 1px 1px 1px 0px;
    background: #686868;
    height: 32px;
    width: 18px;
    margin: -9px 0 0 -8px;
    border: none;
}

    .noUi-active:after {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        content: "";
        display: block;
        height: 100%;
        border: 1px solid #dddddd;
    }

.noUi-connect {
    background: #3276b1;
}

.noUi-background {
    background: #eeeeee;
    border: none;
}

.noUi-origin {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 0;
}

.noUi-origin-upper {
    background: inherit !important;
}

.noUi-z-index {
    z-index: 10;
}

.noUi-vertical {
    width: 10px;
    height: 100%;
}

    .noUi-vertical .noUi-origin {
        bottom: 0;
        left: 0;
    }

    .noUi-vertical .noUi-handle {
        margin: -8px 0 0 -3px;
    }

.noUi-target[disabled] .noUi-base {
    background: #999999;
}

.noUi-target[disabled].noUi-connect {
    background: #BBB;
}

.noUi-state-tap .noUi-origin {
    -webkit-transition: left 0.3s false, top 0.3s false;
    -moz-transition: left 0.3s false false, top 0.3s false false;
    -o-transition: left 0.3s false false, top 0.3s false false;
    transition: left 0.3s, top 0.3s;
}

/*	Functional styles for handle positioning;
 *		Note that the origins have z-index 0, the base has
 *		z-index 1; This fixes a bug where borders become invisible.
 */
/*	Adaptations for the vertical slider;
 *		Some standard styles have been extended to keep
 *		exceptions for the vertical slider as minimal as possible.
 */
/*	Various alternate slider states;
 *		Support for transition is widely available,
 *		Only IE7, IE8 and IE9 will ignore these rules.
 *		Since this is merely a progressive enhancement,
 *		this is no problem at all.
 *		http://caniuse.com/#search=transition
 */
/*
 * JQUI SPINNERS
 */
.ui-spinner {
    width: 100%;
}

.ui-spinner-input {
    margin: 0 !important;
    height: 30px;
    padding: 6px 24px 6px 12px;
}

    .ui-spinner-input.spinner-left {
        padding: 6px 12px 6px 24px;
    }

        .ui-spinner-input.spinner-left + .ui-spinner-button,
        .ui-spinner-input.spinner-left + .ui-spinner-button + .ui-spinner-button {
            right: auto;
            left: 0;
        }

    .ui-spinner-input.spinner-both {
        padding: 6px 30px;
    }

        .ui-spinner-input.spinner-both + .ui-spinner-button + .ui-spinner-button {
            left: 0;
            right: auto;
        }

        .ui-spinner-input.spinner-both + .ui-spinner-button,
        .ui-spinner-input.spinner-both + .ui-spinner-button + .ui-spinner-button {
            height: 30px;
            width: 25px;
        }

        .ui-spinner-input.spinner-both + .ui-spinner-up:before, .ui-spinner-input.spinner-both + .ui-spinner-up + .ui-spinner-down:before {
            margin-top: 8px;
        }

.ui-spinner-up, .ui-spinner-down {
    background: #739e73;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}

    .ui-spinner-up:hover, .ui-spinner-up:active, .ui-spinner-up:focus {
        background: #5b835b;
    }

.ui-spinner-down {
    background: #c2032f;
}

    .ui-spinner-down:hover, .ui-spinner-down:active, .ui-spinner-down:focus {
        background: #77021d;
    }

    .ui-spinner-down:before {
        content: "\f068";
    }

    .ui-spinner-up:before, .ui-spinner-down:before {
        display: inline-block;
        font-family: FontAwesome;
        font-style: normal;
        font-weight: normal;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: "\f067";
        color: #ffffff;
        font-size: 14px;
        margin-top: 1px;
    }

    .ui-spinner-up > :first-child, .ui-spinner-down > :first-child {
        display: none;
    }

.ui-spinner-button {
    width: 19px;
}

/*
 * JQUI ADJUSTMENT
 */
.widget-header > :first-child {
    margin: 13px 0;
}

.ui-dialog .ui-dialog-titlebar {
    padding: 0 10px;
    background: #ffffff;
    border-bottom-color: #eeeeee;
}

.ui-dialog .ui-dialog-titlebar-close {
    margin-top: -16px;
    margin-right: 4px;
}

    .ui-dialog .ui-dialog-titlebar-close:before {
        content: "\f00d";
        font-family: FontAwesome;
        font-style: normal;
        font-weight: normal;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        font-size: 13px;
    }

.ui-dialog .ui-dialog-title {
    margin: 0;
}

.ui-dialog .ui-dialog-buttonpane {
    margin-top: 13px;
    padding: 19px 15px 20px;
    text-align: right;
    border-top: 1px solid #eeeeee;
}

    .ui-dialog .ui-dialog-buttonpane button {
        margin: 0 .4em 0 0;
    }

.ui-autocomplete {
    z-index: 905 !important;
}

/*
    ██╗   ██╗     █████╗     ██████╗ 
    ╚██╗ ██╔╝    ██╔══██╗    ██╔══██╗
     ╚████╔╝     ███████║    ██████╔╝
      ╚██╔╝      ██╔══██║    ██╔═══╝ 
       ██║       ██║  ██║    ██║     
       ╚═╝       ╚═╝  ╚═╝    ╚═╝     
*/
:-webkit-full-screen #fullscreen > :first-child > a {
    background-color: #e8e8e8;
    background-image: -webkit-gradient(linear, to bottom, #5a5a5a 0%, #686868 100%);
    background-image: -webkit-linear-gradient(to bottom, #5a5a5a 0%, #686868 100%);
    background-image: -moz-linear-gradient(to bottom, #5a5a5a 0%, #686868 100%);
    background-image: -ms-linear-gradient(to bottom, #5a5a5a 0%, #686868 100%);
    background-image: -o-linear-gradient(to bottom, #5a5a5a 0%, #686868 100%);
    background-image: linear-gradient(to bottom, #5a5a5a 0%, #686868 100%);
    -webkit-box-shadow: inset 0px 0px 3px 1px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: inset 0px 0px 3px 1px rgba(0, 0, 0, 0.15);
    box-shadow: inset 0px 0px 3px 1px rgba(0, 0, 0, 0.15);
    color: #ffffff;
    border-color: #494949;
}

:-moz-full-screen #fullscreen > :first-child > a {
    background-color: #e8e8e8;
    background-image: -webkit-gradient(linear, to bottom, #5a5a5a 0%, #686868 100%);
    background-image: -webkit-linear-gradient(to bottom, #5a5a5a 0%, #686868 100%);
    background-image: -moz-linear-gradient(to bottom, #5a5a5a 0%, #686868 100%);
    background-image: -ms-linear-gradient(to bottom, #5a5a5a 0%, #686868 100%);
    background-image: -o-linear-gradient(to bottom, #5a5a5a 0%, #686868 100%);
    background-image: linear-gradient(to bottom, #5a5a5a 0%, #686868 100%);
    -webkit-box-shadow: inset 0px 0px 3px 1px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: inset 0px 0px 3px 1px rgba(0, 0, 0, 0.15);
    box-shadow: inset 0px 0px 3px 1px rgba(0, 0, 0, 0.15);
    color: #ffffff;
    border-color: #494949;
}

:-ms-fullscreen #fullscreen > :first-child > a {
    background-color: #e8e8e8;
    background-image: -webkit-gradient(linear, to bottom, #5a5a5a 0%, #686868 100%);
    background-image: -webkit-linear-gradient(to bottom, #5a5a5a 0%, #686868 100%);
    background-image: -moz-linear-gradient(to bottom, #5a5a5a 0%, #686868 100%);
    background-image: -ms-linear-gradient(to bottom, #5a5a5a 0%, #686868 100%);
    background-image: -o-linear-gradient(to bottom, #5a5a5a 0%, #686868 100%);
    background-image: linear-gradient(to bottom, #5a5a5a 0%, #686868 100%);
    -webkit-box-shadow: inset 0px 0px 3px 1px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: inset 0px 0px 3px 1px rgba(0, 0, 0, 0.15);
    box-shadow: inset 0px 0px 3px 1px rgba(0, 0, 0, 0.15);
    color: #ffffff;
    border-color: #494949;
}

:full-screen #fullscreen > :first-child > a {
    background-color: #e8e8e8;
    background-image: -webkit-gradient(linear, to bottom, #5a5a5a 0%, #686868 100%);
    background-image: -webkit-linear-gradient(to bottom, #5a5a5a 0%, #686868 100%);
    background-image: -moz-linear-gradient(to bottom, #5a5a5a 0%, #686868 100%);
    background-image: -ms-linear-gradient(to bottom, #5a5a5a 0%, #686868 100%);
    background-image: -o-linear-gradient(to bottom, #5a5a5a 0%, #686868 100%);
    background-image: linear-gradient(to bottom, #5a5a5a 0%, #686868 100%);
    -webkit-box-shadow: inset 0px 0px 3px 1px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: inset 0px 0px 3px 1px rgba(0, 0, 0, 0.15);
    box-shadow: inset 0px 0px 3px 1px rgba(0, 0, 0, 0.15);
    color: #ffffff;
    border-color: #494949;
}

/* deeper elements */
:-webkit-full-screen video {
    width: 100%;
    height: 100%;
}

/* styling the backdrop*/
::backdrop {
    /* properties */
}

::-ms-backdrop {
    /* properties */
}

/*@import "components/pricing";*/
/*@import "components/pace";*/
/*@import "components/chat";*/
/*
    ██╗   ██╗     █████╗     ██████╗ 
    ╚██╗ ██╔╝    ██╔══██╗    ██╔══██╗
     ╚████╔╝     ███████║    ██████╔╝
      ╚██╔╝      ██╔══██║    ██╔═══╝ 
       ██║       ██║  ██║    ██║     
       ╚═╝       ╚═╝  ╚═╝    ╚═╝     
*/
/*
* SMART FORMS
*/
.smart-form {
    margin: 0;
    outline: none;
    color: #666;
    position: relative;
}

    .smart-form *,
    .smart-form *:after,
    .smart-form *:before {
        margin: 0;
        padding: 0;
        -webkit-box-sizing: content-box;
        -moz-box-sizing: content-box;
        box-sizing: content-box;
    }

    .smart-form .btn {
        -webkit-box-sizing: content-box;
        -moz-box-sizing: content-box;
        box-sizing: content-box;
    }

    .smart-form .radio + .radio,
    .smart-form .checkbox + .checkbox {
        margin-top: 0;
    }

    .smart-form legend {
        padding-top: 15px;
    }

    .smart-form header {
        display: block;
        padding: 8px 0;
        border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
        background: white;
        font-size: 16px;
        font-weight: 300;
        color: #232323;
        margin: 10px 14px 0;
    }

    .smart-form fieldset {
        display: block;
        padding: 25px 14px 5px;
        border: none;
        background: rgba(255, 255, 255, 0.9);
        position: relative;
    }

        .smart-form fieldset + fieldset {
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

    .smart-form section {
        margin-bottom: 15px;
        position: relative;
    }

    .smart-form footer {
        display: block;
        padding: 7px 14px 15px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        background: rgba(248, 248, 248, 0.9);
    }

        .smart-form footer:after {
            content: '';
            display: table;
            clear: both;
        }

        .smart-form footer .btn {
            float: right;
            height: 31px;
            margin: 10px 0 0 5px;
            padding: 0 22px;
            font: 300 15px/29px 'Open Sans', Helvetica, Arial, sans-serif;
            cursor: pointer;
        }

    .smart-form .label {
        display: block;
        margin-bottom: 6px;
        line-height: 19px;
        font-weight: 400;
        font-size: 13px;
        color: #333;
        text-align: left;
    }

        .smart-form .label.col {
            margin: 0;
            padding-top: 7px;
        }

    .smart-form .note {
        margin-top: 6px;
        padding: 0 1px;
        font-size: 11px;
        line-height: 15px;
        color: #999;
    }

        .smart-form .note a {
            font-size: 13px;
        }

    .smart-form .input, .smart-form .select, .smart-form .textarea, .smart-form .radio, .smart-form .checkbox, .smart-form .toggle, .smart-form .button {
        position: relative;
        display: block;
        font-weight: 400;
    }

        .smart-form .input.state-disabled, .smart-form .select.state-disabled, .smart-form .textarea.state-disabled, .smart-form .radio.state-disabled, .smart-form .checkbox.state-disabled, .smart-form .toggle.state-disabled, .smart-form .button.state-disabled {
            cursor: default !important;
            opacity: 0.6 !important;
        }

        .smart-form .input input,
        .smart-form .select select,
        .smart-form .textarea textarea {
            display: block;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
            width: 100%;
            height: 32px;
            padding: 8px 10px;
            outline: none;
            border-width: 1px;
            border-style: solid;
            -webkit-border-radius: 0;
            -moz-border-radius: 0;
            -ms-border-radius: 0;
            -o-border-radius: 0;
            border-radius: 0;
            background: #fff;
            font: 13px/16px 'Open Sans', Helvetica, Arial, sans-serif;
            color: #404040;
            appearance: normal;
            -moz-appearance: none;
            -webkit-appearance: none;
        }

    .smart-form .input-file .button {
        position: absolute;
        top: 4px;
        right: 4px;
        float: none;
        height: 22px;
        margin: 0;
        padding: 0 14px;
        font-size: 13px;
        line-height: 22px;
    }

        .smart-form .input-file .button:hover {
            box-shadow: none;
        }

        .smart-form .input-file .button input {
            position: absolute;
            top: 0;
            right: 0;
            padding: 0;
            font-size: 30px;
            cursor: pointer;
            filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
            opacity: 0;
        }

    .smart-form .select i {
        position: absolute;
        top: 10px;
        right: 11px;
        width: 5px;
        height: 11px;
        background: white;
        box-shadow: 0 0 0 9px white;
    }

        .smart-form .select i:after, .smart-form .select i:before {
            content: '';
            position: absolute;
            right: 0;
            border-right: 4px solid transparent;
            border-left: 4px solid transparent;
        }

        .smart-form .select i:after {
            bottom: 0;
            border-top: 4px solid #404040;
        }

        .smart-form .select i:before {
            top: 0;
            border-bottom: 4px solid #404040;
        }

    .smart-form .select select {
        padding: 5px;
    }

    .smart-form .select-multiple select {
        height: auto;
    }

    .smart-form .textarea textarea {
        height: auto;
        resize: none;
    }

        .smart-form .textarea textarea:focus + .tooltip {
            filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
            opacity: 1;
        }

        .smart-form .textarea textarea:focus + .tooltip-top-right {
            right: 0;
            left: auto;
            margin-bottom: 5px;
        }

        .smart-form .textarea textarea:focus + .tooltip-top-left {
            right: auto;
            left: 0;
            margin-bottom: 5px;
        }

        .smart-form .textarea textarea:focus + .tooltip-right {
            left: 100%;
            margin-left: 5px;
        }

        .smart-form .textarea textarea:focus + .tooltip-left {
            right: 100%;
            left: auto;
            margin-right: 5px;
        }

        .smart-form .textarea textarea:focus + .tooltip-bottom-right {
            right: 0;
            left: auto;
            margin-top: 5px;
        }

        .smart-form .textarea textarea:focus + .tooltip-bottom-left {
            right: auto;
            left: 0;
            margin-top: 5px;
        }

    .smart-form .textarea-resizable textarea {
        resize: vertical;
    }

    .smart-form .textarea-expandable textarea {
        height: 31px;
    }

        .smart-form .textarea-expandable textarea:focus {
            height: auto;
        }

    .smart-form .radio,
    .smart-form .checkbox {
        margin-bottom: 4px;
        padding-left: 25px;
        line-height: 25px;
        color: #404040;
        cursor: pointer;
        font-size: 13px;
    }

        .smart-form .radio:last-child,
        .smart-form .checkbox:last-child {
            margin-bottom: 0;
        }

        .smart-form .radio input,
        .smart-form .checkbox input {
            position: absolute;
            left: -9999px;
        }

            .smart-form .radio input + i:after,
            .smart-form .checkbox input + i:after {
                position: absolute;
                filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
                opacity: 0;
                -webkit-transition: opacity false false, 0.1s false false;
                -moz-transition: opacity false false false, 0.1s false false false;
                -o-transition: opacity false false false, 0.1s false false false;
                transition: opacity 0.1s;
            }

            .smart-form .radio input:checked + i:after,
            .smart-form .checkbox input:checked + i:after {
                filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
                opacity: 1;
            }

        .smart-form .radio i,
        .smart-form .checkbox i {
            position: absolute;
            top: 3px;
            left: 0;
            display: block;
            width: 17px;
            height: 17px;
            outline: none;
            border-width: 1px;
            border-style: solid;
            background: #FFF;
        }

        .smart-form .radio i {
            border-radius: 50%;
        }

        .smart-form .radio input + i:after {
            content: '';
            top: 4px;
            left: 4px;
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background-color: #3276B1;
        }

        .smart-form .checkbox input + i:after {
            content: '\f00c';
            top: -1px;
            left: 1px;
            width: 15px;
            height: 15px;
            font: normal 16px/19px FontAwesome;
            text-align: center;
            color: #3276B1;
        }

        .smart-form .checkbox input:checked:hover + i:after {
            content: '\f00d';
        }

        .smart-form .checkbox input:checked:disabled:hover + i:after {
            content: '\f00c';
        }

        .smart-form .checkbox input + input[type=hidden] + i:after {
            content: '\f00c';
            top: -1px;
            left: 1px;
            width: 15px;
            height: 15px;
            font: normal 16px/19px FontAwesome;
            text-align: center;
        }

        .smart-form .checkbox input:checked:hover + input[type=hidden] + i:after {
            content: '\f00d';
        }

        .smart-form .checkbox input:checked:disabled:hover + input[type=hidden] + i:after {
            content: '\f00c';
        }

        .smart-form .checkbox input:checked + input[type=hidden] + i:after {
            opacity: 1;
        }

    .smart-form .inline-group {
        margin: 0 -15px -4px 0;
    }

        .smart-form .inline-group:after {
            content: '';
            display: table;
            clear: both;
        }

        .smart-form .inline-group .radio, .smart-form .inline-group .checkbox {
            float: left;
            margin-right: 30px;
        }

            .smart-form .inline-group .radio:last-child, .smart-form .inline-group .checkbox:last-child {
                margin-bottom: 4px;
            }

    .smart-form .toggle {
        margin-bottom: 4px;
        padding-right: 61px;
        font-size: 15px;
        line-height: 25px;
        color: #404040;
        cursor: pointer;
    }

        .smart-form .toggle:last-child {
            margin-bottom: 0;
        }

        .smart-form .toggle input {
            position: absolute;
            left: -9999px;
        }

            .smart-form .toggle input:checked + i:after {
                content: attr(data-swchon-text);
                text-align: right;
            }

            .smart-form .toggle input:checked + i:before {
                right: 36px;
            }

            .smart-form .toggle input:checked + input[type=hidden] + i:after {
                content: attr(data-swchon-text);
                text-align: right;
            }

            .smart-form .toggle input:checked + input[type=hidden] + i:before {
                right: 36px;
            }

        .smart-form .toggle i {
            content: '';
            position: absolute;
            top: 4px;
            right: 0;
            display: block;
            width: 49px;
            height: 17px;
            border-width: 1px;
            border-style: solid;
            border-radius: 12px;
            background: #fff;
        }

            .smart-form .toggle i:after {
                content: attr(data-swchoff-text);
                position: absolute;
                top: 2px;
                right: 8px;
                left: 8px;
                font-style: normal;
                font-size: 9px;
                line-height: 13px;
                font-weight: 700;
                text-align: left;
                color: #5f5f5f;
            }

            .smart-form .toggle i:before {
                content: '';
                position: absolute;
                z-index: 1;
                top: 4px;
                right: 4px;
                display: block;
                width: 9px;
                height: 9px;
                border-radius: 50%;
                opacity: 1;
                -webkit-transition: right false false, 0.2s false false;
                -moz-transition: right false false false, 0.2s false false false;
                -o-transition: right false false false, 0.2s false false false;
                transition: right 0.2s;
                background-color: #3276B1;
            }

        .smart-form .toggle.state-success input:checked + i {
            background: #f0fff0;
        }

    .smart-form .rating {
        margin-bottom: 4px;
        font-size: 13px;
        line-height: 25px;
        color: #404040;
    }

        .smart-form .rating:last-child {
            margin-bottom: 0;
        }

        .smart-form .rating input {
            position: absolute;
            left: -9999px;
        }

            .smart-form .rating input + label:hover,
            .smart-form .rating input + label:hover ~ label {
                color: #3276B1;
            }

            .smart-form .rating input:checked ~ label {
                color: #3276B1;
            }

        .smart-form .rating label {
            display: block;
            float: right;
            height: 17px;
            margin-top: 5px;
            padding: 0 2px;
            font-size: 17px;
            line-height: 17px;
            cursor: pointer;
            color: #ccc;
            -webkit-transition: color false false, 0.3s false false;
            -moz-transition: color false false false, 0.3s false false false;
            -o-transition: color false false false, 0.3s false false false;
            transition: color 0.3s;
        }

        .smart-form .rating.state-error + em {
            margin-top: -4px;
            margin-bottom: 4px;
        }

    .smart-form .button {
        float: right;
        height: 31px;
        overflow: hidden;
        margin: 10px 0 0 5px;
        padding: 0 25px;
        outline: none;
        border: 0;
        font: 300 15px/31px 'Open Sans', Helvetica, Arial, sans-serif;
        text-decoration: none;
        color: #fff;
        cursor: pointer;
        background-color: #3276B1;
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
        opacity: 0.8;
        -webkit-transition: opacity false false, 0.2s false false;
        -moz-transition: opacity false false false, 0.2s false false false;
        -o-transition: opacity false false false, 0.2s false false false;
        transition: opacity 0.2s;
    }

        .smart-form .button.button-secondary {
            background-color: #b3b3b3;
        }

        .smart-form .button:hover {
            filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
            opacity: 1;
        }

    .smart-form .icon-append,
    .smart-form .icon-prepend {
        position: absolute;
        top: 5px;
        width: 22px;
        height: 22px;
        font-size: 14px;
        line-height: 22px;
        text-align: center;
        color: #A2A2A2;
    }

    .smart-form .icon-append {
        right: 5px;
        padding-left: 3px;
        border-left-width: 1px;
        border-left-style: solid;
    }

    .smart-form .icon-prepend {
        left: 5px;
        padding-right: 3px;
        border-right-width: 1px;
        border-right-style: solid;
    }

    .smart-form .input .icon-prepend + input, .smart-form .input .icon-prepend + textarea, .smart-form .textarea .icon-prepend + input, .smart-form .textarea .icon-prepend + textarea {
        padding-left: 37px;
    }

    .smart-form .input .icon-prepend + .icon-append + input, .smart-form .input .icon-prepend + .icon-append + textarea, .smart-form .textarea .icon-prepend + .icon-append + input, .smart-form .textarea .icon-prepend + .icon-append + textarea {
        padding-left: 37px;
    }

    .smart-form .input .icon-append + input, .smart-form .input .icon-append + textarea, .smart-form .textarea .icon-append + input, .smart-form .textarea .icon-append + textarea {
        padding-right: 37px;
    }

    .smart-form .row {
        margin: 0 -15px;
    }

        .smart-form .row:after {
            content: '';
            display: table;
            clear: both;
        }

    .smart-form .col {
        float: left;
        min-height: 1px;
        padding-right: 15px;
        padding-left: 15px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .smart-form .col-1 {
        width: 8.33%;
    }

    .smart-form .col-2 {
        width: 16.66%;
    }

    .smart-form .col-3 {
        width: 25%;
    }

    .smart-form .col-4 {
        width: 33.33%;
    }

    .smart-form .col-5 {
        width: 41.66%;
    }

    .smart-form .col-6 {
        width: 50%;
    }

    .smart-form .col-8 {
        width: 66.67%;
    }

    .smart-form .col-9 {
        width: 75%;
    }

    .smart-form .col-10 {
        width: 83.33%;
    }

    .smart-form .tooltip {
        position: absolute;
        z-index: 99999;
        left: -9999px;
        padding: 2px 8px 3px;
        font-size: 11px;
        line-height: 16px;
        font-weight: 400;
        background: rgba(0, 0, 0, 0.9);
        color: #fff;
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
        opacity: 0;
        -webkit-transition: margin 0.3s false, opacity 0.3s false;
        -moz-transition: margin 0.3s false false, opacity 0.3s false false;
        -o-transition: margin 0.3s false false, opacity 0.3s false false;
        transition: margin 0.3s, opacity 0.3s;
    }

        .smart-form .tooltip:after {
            content: '';
            position: absolute;
        }

    .smart-form .tooltip-top-right {
        bottom: 100%;
        margin-bottom: 15px;
    }

        .smart-form .tooltip-top-right:after {
            top: 100%;
            right: 11px;
            border-top: 4px solid rgba(0, 0, 0, 0.9);
            border-right: 4px solid transparent;
            border-left: 4px solid transparent;
        }

    .smart-form .tooltip-top-left {
        bottom: 100%;
        margin-bottom: 15px;
    }

        .smart-form .tooltip-top-left:after {
            top: 100%;
            left: 11px;
            border-top: 4px solid rgba(0, 0, 0, 0.9);
            border-right: 4px solid transparent;
            border-left: 4px solid transparent;
        }

    .smart-form .tooltip-right {
        top: 4px;
        white-space: nowrap;
        margin-left: 15px;
    }

        .smart-form .tooltip-right:after {
            top: 6px;
            right: 100%;
            border-top: 4px solid transparent;
            border-right: 4px solid rgba(0, 0, 0, 0.9);
            border-bottom: 4px solid transparent;
        }

    .smart-form .tooltip-left {
        top: 4px;
        white-space: nowrap;
        margin-right: 15px;
    }

        .smart-form .tooltip-left:after {
            top: 6px;
            left: 100%;
            border-top: 4px solid transparent;
            border-bottom: 4px solid transparent;
            border-left: 4px solid rgba(0, 0, 0, 0.9);
        }

    .smart-form .tooltip-bottom-right {
        top: 100%;
        margin-top: 15px;
    }

        .smart-form .tooltip-bottom-right:after {
            bottom: 100%;
            right: 11px;
            border-right: 4px solid transparent;
            border-bottom: 4px solid rgba(0, 0, 0, 0.9);
            border-left: 4px solid transparent;
        }

    .smart-form .tooltip-bottom-left {
        top: 100%;
        margin-top: 15px;
    }

        .smart-form .tooltip-bottom-left:after {
            bottom: 100%;
            left: 11px;
            border-right: 4px solid transparent;
            border-bottom: 4px solid rgba(0, 0, 0, 0.9);
            border-left: 4px solid transparent;
        }

    .smart-form .input input:focus + .tooltip {
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
        opacity: 1;
    }

    .smart-form .input input:focus + .tooltip-top-right {
        right: 0;
        left: auto;
        margin-bottom: 5px;
    }

    .smart-form .input input:focus + .tooltip-top-left {
        right: auto;
        left: 0;
        margin-bottom: 5px;
    }

    .smart-form .input input:focus + .tooltip-right {
        left: 100%;
        margin-left: 5px;
    }

    .smart-form .input input:focus + .tooltip-left {
        right: 100%;
        left: auto;
        margin-right: 5px;
    }

    .smart-form .input input:focus + .tooltip-bottom-right {
        right: 0;
        left: auto;
        margin-top: 5px;
    }

    .smart-form .input input:focus + .tooltip-bottom-left {
        right: auto;
        left: 0;
        margin-top: 5px;
    }

    .smart-form .input.state-disabled input {
        cursor: default !important;
        opacity: 0.6 !important;
    }

    .smart-form .input input,
    .smart-form .select select,
    .smart-form .textarea textarea,
    .smart-form .radio i,
    .smart-form .checkbox i,
    .smart-form .toggle i,
    .smart-form .icon-append,
    .smart-form .icon-prepend {
        border-color: #BDBDBD;
        -webkit-transition: border-color false false, 0.3s false false;
        -moz-transition: border-color false false false, 0.3s false false false;
        -o-transition: border-color false false false, 0.3s false false false;
        transition: border-color 0.3s;
    }

    .smart-form .input:hover input,
    .smart-form .select:hover select,
    .smart-form .textarea:hover textarea,
    .smart-form .radio:hover i,
    .smart-form .checkbox:hover i,
    .smart-form .toggle:hover i {
        border-color: #5D98CC;
    }

    .smart-form .radio:hover i,
    .smart-form .checkbox:hover i,
    .smart-form .toggle:hover i {
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
    }

    .smart-form .radio:active i,
    .smart-form .checkbox:active i,
    .smart-form .toggle:active i {
        background: #F0F0F0;
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
    }

    .smart-form .radio input:checked + i,
    .smart-form .checkbox input:checked + i,
    .smart-form .toggle input:checked + i {
        border-color: #3276B1;
    }

    .smart-form .radio.state-error i,
    .smart-form .checkbox.state-error i,
    .smart-form .toggle.state-error i {
        background: #fff0f0;
        border-color: #A90329;
    }

    .smart-form .radio.state-error input:checked + i,
    .smart-form .checkbox.state-error input:checked + i,
    .smart-form .toggle.state-error input:checked + i {
        background: #fff0f0;
    }

    .smart-form .radio.state-success i,
    .smart-form .checkbox.state-success i,
    .smart-form .toggle.state-success i {
        background: #f0fff0;
        border-color: #7DC27D;
    }

    .smart-form .radio.state-disabled:hover i,
    .smart-form .checkbox.state-disabled:hover i,
    .smart-form .toggle.state-disabled:hover i {
        border-color: #e5e5e5 !important;
    }

    .smart-form .input input:focus,
    .smart-form .select select:focus,
    .smart-form .textarea textarea:focus,
    .smart-form .radio input:focus + i,
    .smart-form .checkbox input:focus + i,
    .smart-form .toggle input:focus + i {
        border-color: #3276B1;
    }

    .smart-form .state-error + em {
        display: block;
        margin-top: 6px;
        padding: 0 1px;
        font-style: normal;
        font-size: 11px;
        line-height: 15px;
        color: #D56161;
    }

    .smart-form .state-error input,
    .smart-form .state-error select,
    .smart-form .state-error textarea {
        background: #fff0f0;
        border-color: #A90329;
    }

        .smart-form .state-error select + i {
            background: #FFF0F0;
            box-shadow: 0 0 0 9px #FFF0F0;
        }

    .smart-form .state-success input, .smart-form .state-success select, .smart-form .state-success textarea {
        background: #f0fff0;
        border-color: #7DC27D;
    }

        .smart-form .state-success select + i {
            background: honeyDew;
            box-shadow: 0 0 0 9px honeyDew;
        }

    .smart-form .state-disabled.radio input:checked + i, .smart-form .state-disabled.checkbox input:checked + i, .smart-form .state-disabled.toggle input:checked + i {
        border-color: #e5e5e5 !important;
        color: #333 !important;
    }

    .smart-form .state-disabled.checkbox input + i:after, .smart-form .state-disabled.radio input + i:after {
        border-color: #e5e5e5 !important;
        color: #333 !important;
    }

    .smart-form .state-disabled.radio input + i:after {
        background-color: #333;
    }

    .smart-form .note-success {
        color: #6fb679;
    }

    .smart-form .input.state-disabled:hover input,
    .smart-form .select.state-disabled:hover select,
    .smart-form .textarea.state-disabled:hover textarea {
        border-color: #e5e5e5 !important;
    }

    .smart-form .message {
        display: none;
        color: #6fb679;
    }

        .smart-form .message i {
            display: block;
            margin: 0 auto 20px;
            width: 81px;
            height: 81px;
            border: 1px solid #6fb679;
            border-radius: 50%;
            font-size: 30px;
            line-height: 81px;
        }

    .smart-form.submited fieldset, .smart-form.submited footer {
        display: none;
    }

    .smart-form.submited .message {
        display: block;
        padding: 25px 30px;
        background: rgba(255, 255, 255, 0.9);
        font: 300 18px/27px 'Open Sans', Helvetica, Arial, sans-serif;
        text-align: center;
    }

    .smart-form .ui-widget-content .ui-spinner-input {
        margin: 0;
        border: 0;
        box-shadow: none !important;
        height: 29px;
    }

.smart-form-modal {
    position: fixed;
    z-index: 1;
    display: none;
    width: 400px;
}

.smart-form-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.smart-form input.input-lg {
    height: 44px;
    padding: 10px 16px;
    font-size: 17px;
    line-height: 1.33;
}

.smart-form input.input-sm {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
}

.smart-form input.input-xs {
    height: 24px;
    padding: 2px 10px;
    font-size: 11px;
    line-height: 1.5;
}

.smart-form select.input-sm {
    height: 30px;
    line-height: 15px;
    font-size: 12px;
}

    .smart-form select.input-sm + i {
        height: 10px;
    }

.smart-form select.input-lg {
    height: 44px;
    line-height: 22px;
    font-size: 17px;
}

    .smart-form select.input-lg + i {
        height: 11px;
        top: 17px;
    }

.note {
    padding: 0 1px;
    line-height: 15px;
    color: #999;
    margin-top: 2px;
    font-size: 10px;
}

.toggle-input {
    margin-bottom: 4px;
    padding-right: 61px;
    font-size: 15px;
    line-height: 25px;
    color: #404040;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

    .toggle-input .toggle:last-child {
        margin-bottom: 0;
    }

    .toggle-input .toggle input {
        position: absolute;
        left: -9999px;
    }

        .toggle-input .toggle input:checked + i {
            border-color: #3276B1;
        }

            .toggle-input .toggle input:checked + i:after {
                content: attr(data-swchon-text);
                text-align: right;
            }

            .toggle-input .toggle input:checked + i:before {
                right: 36px;
            }

        .toggle-input .toggle input:focus + i {
            border-color: #3276B1;
        }

    .toggle-input .toggle i {
        content: '';
        position: absolute;
        top: 4px;
        right: 0;
        display: block;
        width: 49px;
        height: 17px;
        border-width: 1px;
        border-style: solid;
        border-radius: 12px;
        background: #fff;
    }

        .toggle-input .toggle i:after {
            content: attr(data-swchoff-text);
            position: absolute;
            top: 2px;
            font-style: normal;
            font-size: 9px;
            line-height: 13px;
            font-weight: 700;
            text-align: left;
            color: #5f5f5f;
            left: 7px;
            right: 7px;
        }

        .toggle-input .toggle i:before {
            content: '';
            position: absolute;
            z-index: 1;
            top: 4px;
            right: 4px;
            display: block;
            width: 9px;
            height: 9px;
            border-radius: 50%;
            opacity: 1;
            -webkit-transition: right false false, 0.2s false false;
            -moz-transition: right false false false, 0.2s false false false;
            -o-transition: right false false false, 0.2s false false false;
            transition: right 0.2s;
            background-color: #3276B1;
        }

    .toggle-input .toggle.state-success i {
        background: #f0fff0;
        border-color: #7DC27D;
    }

    .toggle-input .toggle.state-success input:checked + i {
        background: #f0fff0;
    }

    .toggle-input .toggle.state-disabled {
        cursor: default !important;
        opacity: 0.6 !important;
    }

        .toggle-input .toggle.state-disabled:hover i {
            border-color: #e5e5e5 !important;
        }

    .toggle-input.wide .toggle i {
        width: 59px;
    }

    .toggle-input.wide .toggle input:checked + i:after {
        padding-left: 8px;
        text-align: left;
    }

    .toggle-input.wide .toggle input:checked + i:before {
        right: 47px;
    }

    .toggle-input .state-disabled.toggle input:checked + i {
        border-color: #e5e5e5 !important;
        color: #333 !important;
    }

table td .toggle-input {
    margin-bottom: 0px;
    display: block;
    height: 25px;
}

    table td .toggle-input label {
        display: block;
    }

@media screen and (max-width: 600px) {
    .smart-form .col {
        float: none;
        width: 100%;
    }
}

.state-error .icon-append,
.state-error .icon-prepend {
    color: #ed1c24;
}

.ui-timepicker-div .ui-widget-header {
    margin-bottom: 8px;
}

.ui-timepicker-div dl {
    text-align: left;
}

    .ui-timepicker-div dl dt {
        float: left;
        clear: left;
        padding: 0 0 0 5px;
    }

    .ui-timepicker-div dl dd {
        margin: 17px 10px 12px 40%;
    }

.ui-timepicker-div td {
    font-size: 90%;
}

.ui-timepicker-rtl {
    direction: rtl;
}

    .ui-timepicker-rtl dl {
        text-align: right;
        padding: 0 5px 0 0;
    }

        .ui-timepicker-rtl dl dt {
            float: right;
            clear: right;
        }

        .ui-timepicker-rtl dl dd {
            margin: 0 40% 10px 10px;
        }

.ui-tpicker-grid-label {
    background: none;
    border: none;
    margin: 0;
    padding: 0;
}

/*
    ██╗   ██╗     █████╗     ██████╗ 
    ╚██╗ ██╔╝    ██╔══██╗    ██╔══██╗
     ╚████╔╝     ███████║    ██████╔╝
      ╚██╔╝      ██╔══██║    ██╔═══╝ 
       ██║       ██║  ██║    ██║     
       ╚═╝       ╚═╝  ╚═╝    ╚═╝     
*/
/*
 * Error Page
 */
.error-box {
    max-width: 900px;
    margin: 0 auto;
}

.error-text {
    font-weight: 400;
    color: #ffffff;
    letter-spacing: -4px;
    font-size: 700%;
    margin-bottom: 30px;
    text-shadow: 0 1px 0 #cccccc, 0 2px 0 #bfbfbf, 0 3px 0 #bbbbbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaaaaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.2), 0 20px 20px rgba(0, 0, 0, 0.15);
}

.error-search {
    width: 300px;
    margin: 0 auto 20px;
}

.error-icon-shadow {
    text-shadow: 0 1px 0 #803838, 0 2px 0 #a85d5d, 0 3px 0 #b86565, 0 4px 0 #d86f6f, 0 5px 0 #b3a5a5, 0 6px 1px rgba(131, 51, 51, 0.1), 0 0 5px rgba(102, 30, 30, 0.1), 0 1px 3px rgba(95, 15, 15, 0.3), 0 3px 5px rgba(100, 23, 23, 0.2), 0 5px 10px rgba(114, 30, 30, 0.25), 0 10px 10px rgba(94, 15, 15, 0.2), 0 20px 20px rgba(121, 38, 38, 0.15);
}

/*
    ██╗   ██╗     █████╗     ██████╗ 
    ╚██╗ ██╔╝    ██╔══██╗    ██╔══██╗
     ╚████╔╝     ███████║    ██████╔╝
      ╚██╔╝      ██╔══██║    ██╔═══╝ 
       ██║       ██║  ██║    ██║     
       ╚═╝       ╚═╝  ╚═╝    ╚═╝     
*/
/*
 * LOGIN/REGISTER/EXTR PAGE
 */
.display-image {
    margin-top: -60px;
    margin-right: 20px;
}

.terms-body {
    max-height: 400px;
    overflow: auto;
}

#extr-page {
    background: #ffffff;
    overflow: visible;
}

    #extr-page .container {
        border: none;
    }

    #extr-page #header {
        margin: 0;
        height: 71px;
        border-bottom: 1px solid #eeeeee !important;
        overflow: hidden;
        padding: 0 30px;
        background-clip: padding-box;
        border-width: 0;
        min-height: 28px;
        background: #f4f4f4 !important;
    }

        #extr-page #header #logo {
            margin-top: 15px;
            margin-left: 0;
        }

    #extr-page #main {
        padding-top: 20px;
        background: #ffffff;
        margin: 0;
    }

#extr-page-header-space {
    float: right;
    text-align: right;
    display: block;
    vertical-align: middle;
    line-height: 71px;
}

    #extr-page-header-space > :first-child {
        font-size: 13px;
        margin-right: 14px;
        vertical-align: -3px;
        font-weight: 400;
    }

    #extr-page-header-space .btn {
        font-weight: bold;
        text-transform: uppercase;
    }

    #extr-page-header-space > * {
        display: inline-block;
    }

#extr-page .hero {
    background-image: url("../../img/gradient/login.png");
    background-repeat: no-repeat;
    background-position: 0 137px;
    height: 360px;
    width: 100%;
    float: left;
}

#extr-page h4.paragraph-header {
    color: #565656;
    font-size: 15px;
    font-weight: normal;
    line-height: 22px;
    margin-top: 15px;
    width: 270px;
}

#extr-page h5.about-heading {
    color: #565656;
    font-size: 15px;
    font-weight: bold;
    line-height: 24px;
    margin: 0 0 5px;
}

#extr-page .login-header-big {
    font-weight: 400;
}

#extr-page .login-desc-box-l {
    min-height: 350px;
    width: 50%;
}

#extr-page .login-app-icons {
    vertical-align: top;
    margin-top: 90px;
    width: 300px;
}

@media (min-width: 768px) and (max-width: 880px) {
    #extr-page #header {
        padding: 0 5px !important;
    }
}

@media only screen and (min-width: 0px) and (max-width: 679px) {
    #extr-page #header {
        padding: 0 5px !important;
    }

        #extr-page #header #logo {
            margin-top: 22px;
        }

            #extr-page #header #logo img {
                width: 135px;
            }
}
/*
    ██╗   ██╗     █████╗     ██████╗ 
    ╚██╗ ██╔╝    ██╔══██╗    ██╔══██╗
     ╚████╔╝     ███████║    ██████╔╝
      ╚██╔╝      ██╔══██║    ██╔═══╝ 
       ██║       ██║  ██║    ██║     
       ╚═╝       ╚═╝  ╚═╝    ╚═╝     
*/
/*
 * NESTABLES
 */
.dd {
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
    max-width: 600px;
    list-style: none;
    font-size: 13px;
    line-height: 20px;
}

.dd-list {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .dd-list .dd-list {
        padding-left: 30px;
    }

.dd-collapsed .dd-list {
    display: none;
}

.dd-item {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    min-height: 20px;
    font-size: 13px;
    line-height: 20px;
}

    .dd-item > button {
        position: relative;
        cursor: pointer;
        float: left;
        width: 25px;
        height: 20px;
        margin: 7px 10px;
        line-height: 22px !important;
        padding: 0;
        text-indent: 100%;
        white-space: nowrap;
        overflow: hidden;
        border: 0;
        background: transparent;
        text-align: center;
        display: inline-block;
        font-family: FontAwesome;
        font-style: normal;
        font-weight: normal;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        font-size: 18px;
    }

        .dd-item > button:before {
            content: '\f055';
            display: block;
            position: absolute;
            width: 100%;
            text-align: center;
            text-indent: 0;
            color: #0091d9;
        }

        .dd-item > button[data-action="collapse"]:before {
            content: '\f056';
            color: #a90329;
        }

.dd-empty {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    min-height: 20px;
    font-size: 13px;
    line-height: 20px;
    margin: 5px 0;
    padding: 0;
    min-height: 30px;
    background: #f2fbff;
    border: 1px dashed #b6bcbf;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px dashed #bbb;
    min-height: 100px;
    background-color: #eeeeee;
    background-image: -webkit-gradient(linear, 45deg, #ffffff 25%, transparent 25%, transparent 75%, #ffffff 75%, #ffffff);
    background-image: -webkit-linear-gradient(45deg, #ffffff 25%, transparent 25%, transparent 75%, #ffffff 75%, #ffffff);
    background-image: -moz-linear-gradient(45deg, #ffffff 25%, transparent 25%, transparent 75%, #ffffff 75%, #ffffff);
    background-image: -ms-linear-gradient(45deg, #ffffff 25%, transparent 25%, transparent 75%, #ffffff 75%, #ffffff);
    background-image: -o-linear-gradient(45deg, #ffffff 25%, transparent 25%, transparent 75%, #ffffff 75%, #ffffff);
    background-image: linear-gradient(45deg, #ffffff 25%, transparent 25%, transparent 75%, #ffffff 75%, #ffffff);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
}

.dd-placeholder {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    min-height: 20px;
    font-size: 13px;
    line-height: 20px;
    margin: 5px 0;
    padding: 0;
    min-height: 30px;
    background: #f2fbff;
    border: 1px dashed #b6bcbf;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.dd-handle {
    display: block;
    font-size: 15px;
    margin: 5px 0;
    padding: 7px 15px;
    color: #333333;
    text-decoration: none;
    border: 1px solid #cfcfcf;
    background: #fbfbfb;
}

    .dd-handle:hover {
        color: #2ea8e5;
        background: #ffffff;
        background: #FDDFB3 !important;
        border: 1px solid #FAA937;
        color: #333 !important;
    }

        .dd-handle:hover + .dd-list .dd-handle {
            background: #FDDFB3 !important;
            border: 1px solid #FAA937;
            color: #333 !important;
        }

    .dd-handle > span {
        font-size: 13px;
        color: #777;
    }

.dd-dragel {
    position: absolute;
    pointer-events: none;
    z-index: 9999;
}

    .dd-dragel > .dd-item .dd-handle {
        margin-top: 0;
    }

    .dd-dragel > .dd-item > .dd-handle {
        border-left-width: 4px;
    }

    .dd-dragel .dd-handle {
        -webkit-box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, 0.1);
        box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, 0.1);
    }

    .dd-dragel > .dd3-item > .dd3-content {
        margin: 0;
    }

    .dd-dragel > li.dd-item.dd3-item {
        position: relative;
        top: 10px;
        left: 10px;
        z-index: 999;
    }

.dd-hover > .dd-handle {
    background: #2ea8e5 !important;
}

.dd3-content {
    display: block;
    margin: 5px 0;
    padding: 6px 10px 8px 40px;
    font-size: 15px;
    color: #333333;
    text-decoration: none;
    border: 1px solid #cfcfcf;
    background: #fbfbfb;
}

    .dd3-content:hover {
        color: #2ea8e5;
        background: #ffffff;
    }

.dd3-item > button {
    margin-left: 38px;
}

.dd3-handle {
    position: absolute;
    margin: 0;
    left: 0;
    top: 0;
    cursor: move;
    width: 30px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    border: 1px solid #aaa;
    background: #bfbfbf;
    background-image: -webkit-gradient(linear, top, #dddddd 0%, #bbbbbb 100%);
    background-image: -webkit-linear-gradient(top, #dddddd 0%, #bbbbbb 100%);
    background-image: -moz-linear-gradient(top, #dddddd 0%, #bbbbbb 100%);
    background-image: -ms-linear-gradient(top, #dddddd 0%, #bbbbbb 100%);
    background-image: -o-linear-gradient(top, #dddddd 0%, #bbbbbb 100%);
    background-image: linear-gradient(top, #dddddd 0%, #bbbbbb 100%);
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 18px;
    padding: 8px 15px;
}

    .dd3-handle:before {
        content: '\f0c9';
        display: block;
        position: absolute;
        left: 0;
        top: 3px;
        width: 100%;
        text-align: center;
        text-indent: 0;
        color: #818181;
        font-weight: normal;
        line-height: 28px;
    }

    .dd3-handle:hover:before {
        color: #C27616;
    }

/**
 * Nestable Extras
 */
.nestable-lists {
    display: block;
    clear: both;
    padding: 30px 0;
    width: 100%;
    border: 0;
    border-top: 2px solid #bfbfbf;
    border-bottom: 2px solid #bfbfbf;
}

#nestable-menu {
    padding: 0;
    margin: 10px 0 20px;
}

#nestable-output {
    width: 100%;
    padding: 5px;
}

#nestable2-output {
    width: 100%;
    padding: 5px;
}

@media only screen and (min-width: 700px) {
    .dd {
        float: left;
        width: 100%;
    }

        .dd + .dd {
            margin-left: 2%;
        }
}
/*@import "components/section-calendar";*/
/*@import "components/section-inbox";				
@import "components/section-profile";			
@import "components/section-search";*/
/*@import "components/section-todo";*/
/*
    ██╗   ██╗     █████╗     ██████╗ 
    ╚██╗ ██╔╝    ██╔══██╗    ██╔══██╗
     ╚████╔╝     ███████║    ██████╔╝
      ╚██╔╝      ██╔══██║    ██╔═══╝ 
       ██║       ██║  ██║    ██║     
       ╚═╝       ╚═╝  ╚═╝    ╚═╝     
*/
/*
 * TIMELINE PAGE
 */
/* Timeline */
.smart-timeline {
    position: relative;
}

.smart-timeline-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .smart-timeline-list:after {
        content: " ";
        background-color: #eeeeee;
        position: absolute;
        display: block;
        width: 2px;
        top: 0;
        left: 95px;
        bottom: 0;
        z-index: 1;
    }

    .smart-timeline-list li {
        position: relative;
        margin: 0;
        padding: 15px 0;
    }

        .smart-timeline-list li:hover {
            background-color: #f4f4f4;
        }

.smart-timeline-hover li:hover {
    background-color: #f9f9f9;
}

.smart-timeline-icon {
    background: #3276b1;
    color: #ffffff;
    border-radius: 50%;
    position: absolute;
    width: 32px;
    height: 32px;
    line-height: 28px;
    font-size: 14px;
    text-align: center;
    left: 80px;
    top: 10px;
    z-index: 100;
    padding: 2px;
}

    .smart-timeline-icon > img {
        height: 32px;
        width: 32px;
        border-radius: 50%;
        margin-top: -2px;
        margin-left: -2px;
        border: 2px solid #3276b1;
    }

.smart-timeline-time {
    float: left;
    width: 70px;
    text-align: right;
}

    .smart-timeline-time > small {
        font-style: italic;
    }

.smart-timeline-content {
    margin-left: 123px;
}

/*@import "components/section-forum";*/
/*@import "components/section-ajax-msg";*/
/*
    ██╗   ██╗     █████╗     ██████╗ 
    ╚██╗ ██╔╝    ██╔══██╗    ██╔══██╗
     ╚████╔╝     ███████║    ██████╔╝
      ╚██╔╝      ██╔══██║    ██╔═══╝ 
       ██║       ██║  ██║    ██║     
       ╚═╝       ╚═╝  ╚═╝    ╚═╝     
*/
html {
    margin: 0;
    padding: 0;
    min-height: 100%;
    background: url("../../Content/images/mybg.png") #ffffff;
    position: relative;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    background: url("../../Content/images/mybg.png") #ffffff;
    direction: ltr;
}

    body.mobile-view-activated.hidden-menu {
        overflow-x: hidden;
    }

    body.modal-open {
        overflow: hidden !important;
    }

    body.container {
        position: absolute;
        left: 0;
        right: 0;
        padding: 0;
        border-left: 1px solid #bfbfbf;
        border-right: 1px solid #bfbfbf;
        box-shadow: 0 2px 70px rgba(0, 0, 0, 0.45);
    }

a {
    -ms-touch-action: none !important;
}

    a:hover, a:active, a:focus {
        outline: 0;
    }

button {
    outline: 0;
    -ms-touch-action: none !important;
}

    button:active, button:focus {
        outline: 0;
    }

object,
embed,
input::-moz-focus-inner {
    outline: 0;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    font-family: "Open Sans", Arial, Helvetica, Sans-Serif;
    font-weight: 300;
}

.page-title {
    margin: 12px 0 28px;
}

    .page-title span {
        font-size: 16px;
        color: #333333;
        display: inline-block;
        vertical-align: 1px;
    }

label {
    font-weight: normal;
}

*:focus {
    outline: 0 !important;
}

input {
    -ms-touch-action: none !important;
}

    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 {
        outline: 0;
        outline: thin dotted \9;
        /* IE6-9 */
        -webkit-box-shadow: none !important;
        -moz-box-shadow: none !important;
        box-shadow: none !important;
    }

textarea:focus,
select:focus,
.uneditable-input:focus {
    outline: 0;
    outline: thin dotted \9;
    /* IE6-9 */
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
}

.input-sm, .input-lg, .input-xs {
    -webkit-border-radius: 0px !important;
    -moz-border-radius: 0px !important;
    -ms-border-radius: 0px !important;
    -o-border-radius: 0px !important;
    border-radius: 0px !important;
}

.input-xs {
    height: 24px;
    padding: 2px 10px;
    font-size: 11px;
    line-height: 1.5;
}

.form-control {
    -webkit-border-radius: 0px !important;
    -moz-border-radius: 0px !important;
    -ms-border-radius: 0px !important;
    -o-border-radius: 0px !important;
    border-radius: 0px !important;
}

.btn-xs {
    padding: 1px 5px;
}

.btn-sm {
    padding: 6px 10px 5px;
}

.btn-lg {
    padding: 10px 16px;
}

.no-space {
    margin: 0;
}

    .no-space > [class*="col-"] {
        margin: 0 !important;
        padding-right: 0;
        padding-left: 0;
    }

#content {
    padding: 10px 15px;
    position: relative;
    /*position:relative;
   left:0px;*/
}

/*
 * Headers
 */
h1 {
    letter-spacing: -1px;
    font-size: 24px;
    margin: 10px 0;
}

    h1 small {
        font-size: 18px;
        font-weight: 300;
        letter-spacing: -1px;
    }

.lead {
    font-size: 19px;
}

h2 {
    letter-spacing: -1px;
    font-size: 22px;
    margin: 20px 0;
    line-height: normal;
}

h3 {
    display: block;
    font-size: 19px;
    font-weight: 400;
    margin: 20px 0;
    line-height: normal;
}

h4 {
    line-height: normal;
}

h5 {
    font-size: 17px;
    font-weight: 300;
    margin: 10px 0;
    line-height: normal;
}

h6 {
    font-size: 15px;
    margin: 10px 0;
    font-weight: bold;
    line-height: normal;
}

.row-seperator-header {
    margin: 15px 14px 20px;
    border-bottom: none;
    display: block;
    color: #646464;
    font-size: 20px;
    font-weight: 400;
}

/*
 * Footer
 * see: component-page-footer.less
 */
/*
 * Center Canvas
 */
.center-canvas, .center-child-canvas > canvas {
    display: block !important;
    margin: 0 auto !important;
}

/*
 * JUST A BORDER
 */
.bordered {
    border: 1px solid rgba(0, 0, 0, 0.2);
}

    .bordered:hover {
        border: 1px solid rgba(0, 0, 0, 0.4);
    }

/*
 * ***************************************************
 * MAIN LAYOUT START
 * ***************************************************
 */
aside {
    display: block;
    overflow: hidden;
    background: #3a3633;
    background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSI5NyUiIHN0b3AtY29sb3I9IiMzYTM2MzMiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMmEyNzI1IiBzdG9wLW9wYWNpdHk9IjEiLz4KICA8L2xpbmVhckdyYWRpZW50PgogIDxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+Cjwvc3ZnPg==");
    background-image: -webkit-gradient(linear, left, #3a3633 93%, #2a2725 100%);
    background-image: -webkit-linear-gradient(left, #3a3633 93%, #2a2725 100%);
    background-image: -moz-linear-gradient(left, #3a3633 93%, #2a2725 100%);
    background-image: -ms-linear-gradient(left, #3a3633 93%, #2a2725 100%);
    background-image: -o-linear-gradient(left, #3a3633 93%, #2a2725 100%);
    background-image: linear-gradient(left, #3a3633 93%, #2a2725 100%);
    min-height: 100%;
    width: 220px;
}

/*
 * HEADER GROUP
 */
#header {
    display: block;
    height: 49px;
    margin: 0;
    padding: 0 13px 0 0;
    background-color: #f3f3f3;
    background-image: -webkit-gradient(linear, to bottom, #f3f3f3, #e2e2e2);
    background-image: -webkit-linear-gradient(to bottom, #f3f3f3, #e2e2e2);
    background-image: -moz-linear-gradient(to bottom, #f3f3f3, #e2e2e2);
    background-image: -ms-linear-gradient(to bottom, #f3f3f3, #e2e2e2);
    background-image: -o-linear-gradient(to bottom, #f3f3f3, #e2e2e2);
    background-image: linear-gradient(to bottom, #f3f3f3, #e2e2e2);
    background-repeat: repeat-x;
    position: relative;
    z-index: 905;
}

    #header > div {
        display: inline-block;
        vertical-align: middle;
        height: 49px;
        float: left;
    }

        #header > div.open {
            font-weight: bold;
        }

    #header > :first-child {
        width: 220px;
    }

.fixed-header #header {
    position: fixed;
    width: 100%;
    z-index: 905;
    top: 0px;
    border-bottom: 2px solid #999999;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    box-shadow: -11px 12px 23px rgba(0, 0, 0, 0.1);
}

    .fixed-header #header .ajax-dropdown {
        z-index: 906;
    }

.fixed-header.fixed-ribbon #header {
    border-bottom: none;
    box-shadow: none;
}

.fixed-header #shortcut {
    position: fixed;
}

.fixed-header #main {
    margin-top: 49px;
}

.container.fixed-header #header {
    max-width: 1164px;
}

#logo {
    display: inline-block;
    width: 175px;
    margin-top: 5px;
    margin-left: 9px;
}

    #logo img {
        width: auto;
        height: auto;
        padding-left: 3px;
    }

    #logo span {
        font-size: 20px;
        position: absolute;
        margin-top: 5px;
        margin-left: 5px;
        color: #003265;
        letter-spacing: -1px;
    }

#logo-group > span {
    display: inline-block;
    height: 39px;
    float: left;
}

span#activity {
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
    cursor: default !important;
    display: inline-block;
    font-weight: bold;
    height: 24px;
    width: 24px;
    padding: 2px;
    text-align: center;
    text-decoration: none !important;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: #f8f8f8;
    background-image: -webkit-gradient(linear, top, #f8f8f8, #f1f1f1);
    background-image: -webkit-linear-gradient(top, #f8f8f8, #f1f1f1);
    background-image: -moz-linear-gradient(top, #f8f8f8, #f1f1f1);
    background-image: -ms-linear-gradient(top, #f8f8f8, #f1f1f1);
    background-image: -o-linear-gradient(top, #f8f8f8, #f1f1f1);
    background-image: linear-gradient(top, #f8f8f8, #f1f1f1);
    border: 1px solid #bfbfbf;
    color: #c4bab6;
    font-size: 19px;
    margin: 10px 0 0 0;
    position: relative;
}

    span#activity:hover {
        border: 1px solid #bfbfbf;
        -webkit-transition: all false false, 0s false false;
        -moz-transition: all false false false, 0s false false false;
        -o-transition: all false false false, 0s false false false;
        transition: all 0s;
        cursor: pointer !important;
        -webkit-box-shadow: inset 0px 0px 4px 1px rgba(0, 0, 0, 0.08);
        -moz-box-shadow: inset 0px 0px 4px 1px rgba(0, 0, 0, 0.08);
        box-shadow: inset 0px 0px 4px 1px rgba(0, 0, 0, 0.08);
    }

#activity > b.badge {
    position: absolute;
    top: -5px;
    right: -5px;
    cursor: pointer;
    background: #0091d9;
    display: inline-block;
    font-size: 10px;
    box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.07);
    color: #ffffff;
    font-weight: bold;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    padding: 2px 4px 3px 4px;
    text-align: center;
    line-height: normal;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

#activity.active .badge {
    background: #006fa6 !important;
}

#project-context {
    display: inline-block;
    padding: 7px 13px 0;
    position: relative;
}

    #project-context > span {
        display: block;
    }

    #project-context > :first-child {
        display: block;
        color: #bfbfbf;
        font-size: 10px;
        font-weight: bold;
        text-transform: uppercase;
        text-shadow: 0 0 1px white;
        padding-left: 0px;
        text-align: left;
    }

#project-selector {
    max-width: 97%;
    white-space: nowrap;
    background: none;
    border: none;
    padding: 0;
    text-align: left;
    color: #555555;
    font-size: 14px;
    cursor: pointer;
}

    #project-selector:hover {
        color: #333333;
    }

.project-context {
    display: inline-block;
    padding: 7px 13px 0;
    position: relative;
}

    .project-context > span {
        display: block;
    }

    .project-context > :first-child {
        display: block;
        color: #bfbfbf;
        font-size: 10px;
        font-weight: bold;
        text-transform: uppercase;
        text-shadow: 0 0 1px white;
        padding-left: 0px;
        text-align: left;
    }

.project-selector {
    max-width: 97%;
    white-space: nowrap;
    background: none;
    border: none;
    padding: 0;
    text-align: left;
    color: #555555;
    font-size: 14px;
    cursor: pointer;
}

    .project-selector:hover {
        color: #333333;
    }

.header-search {
    position: relative;
}

    .header-search.pull-right {
        margin-left: 6px;
    }

    .header-search > input[type="text"] {
        display: block;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        min-width: 200px;
        width: 100%;
        height: 30px;
        padding: 0 10px;
        outline: none;
        border-width: 1px;
        border-style: solid;
        border-radius: 0;
        border-color: #bfbfbf;
        background: #ffffff;
        color: #404040;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        margin-top: 10px;
        line-height: normal;
    }

    .header-search > button {
        background: none;
        border: none;
        color: #6D6A69;
        font-size: 17px;
        height: 30px;
        line-height: 30px;
        margin: 0;
        padding: 0;
        position: absolute;
        right: 0px;
        top: 10px;
        width: 30px;
        z-index: 2;
    }

#search-mobile {
    display: none;
}

#cancel-search-js {
    position: absolute;
    display: none;
    background: #a90329;
    z-index: 3;
    color: #ffffff;
    padding: 0;
    right: 10px;
    top: 10px;
    text-align: center;
    height: 29px;
    line-height: 29px;
    width: 30px;
    font-size: 17px;
    text-decoration: none !important;
}

/*
 * LEFT PANEL
 */
#left-panel {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 904;
    padding-top: 49px;
}

/*
 * MAIN PANEL
 */
#main {
    margin-left: 220px;
    padding: 0;
    padding-bottom: 40px;
    min-height: 500px;
}

/*
 * RIBBON
 */
#ribbon {
    min-height: 40px;
    background: #474544;
    padding: 0 15px;
    position: relative;
}

    #ribbon .breadcrumb {
        display: inline-block;
        margin: 0;
        padding: 11px 34px 11px 0 !important;
        background: none;
        vertical-align: top;
        color: #BBB !important;
        text-decoration: none !important;
    }

        #ribbon .breadcrumb a {
            color: #BBB !important;
            text-decoration: none !important;
        }

        #ribbon .breadcrumb > .active, #ribbon .breadcrumb li:last-child {
            color: #E4E4E4;
        }

.fixed-ribbon #ribbon {
    position: fixed;
    right: 0;
    left: 220px;
    top: 49px;
    z-index: 901;
}

.fixed-ribbon #content {
    padding-top: 50px;
}

.fixed-navigation #left-panel {
    height: 100%;
    position: fixed;
    /*z-index: @fixed-navigation-zindex; */
}

.fixed-navigation nav {
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
    height: 100%;
    padding-bottom: 49px;
}

    .fixed-navigation nav > ul {
        padding-right: 15px;
        position: relative;
        height: 100%;
        width: 114%;
        overflow-x: hidden;
        overflow-y: scroll;
    }

.container.fixed-ribbon #ribbon {
    width: 944px;
    left: 590px;
}

.minified.fixed-ribbon #ribbon {
    left: 45px;
}

.hidden-menu.fixed-ribbon #ribbon {
    left: 10px;
}

/*
 * NAV
 * Menu CSS is learnt from: http://experiments.wemakesites.net/css3-treeview.html
 */
.mobile-detected.fixed-navigation nav > ul {
    padding-right: 30px !important;
}

.minified.fixed-navigation nav {
    -webkit-overflow-scrolling: none;
    overflow: visible;
    height: auto;
    padding-bottom: 0px;
}

    .minified.fixed-navigation nav > ul {
        overflow: visible;
        padding-right: 0px;
        width: 100%;
    }

nav ul {
    width: 100%;
    padding: 40px 28px 25px 0;
    padding: 0;
    margin: 0;
    font-size: 13px;
    line-height: 0.5em;
    list-style: none;
    position: relative;
}

    nav ul li {
        overflow: hidden;
    }

        nav ul li a {
            line-height: normal;
            font-size: 14px;
            padding: 10px 10px 10px 11px;
            color: #a8a8a8;
            display: block;
            font-weight: normal;
            text-decoration: none !important;
            position: relative;
        }

            nav ul li a:active {
                background: #616161 !important;
            }

            nav ul li a:focus {
                color: #c9c9c9;
            }

            nav ul li a:hover {
                color: #ffffff;
                text-decoration: none;
            }

        nav ul li.active > a:before {
            content: "\f0d9";
            font-family: FontAwesome;
            display: block;
            height: 27px;
            line-height: normal;
            width: 27px;
            position: absolute;
            right: -21px;
            font-size: 20px;
            color: #eeeeee;
        }

        nav ul li.active.open > a:before {
            content: "";
        }

        nav ul li.open > a {
            color: #fff !important;
        }

            nav ul li.open > a b {
                color: #fff !important;
            }

        nav ul li li {
            border-bottom: none;
            position: relative;
        }

    nav ul .active > a {
        color: #fff !important;
        position: relative;
    }

    nav ul b {
        float: right;
        font-size: 11px;
        margin-top: 2px;
    }

    nav ul span.menu-item-parent {
        display: inline-block;
        margin: 0;
        padding: 0;
    }

    nav ul ul {
        margin: 0;
        display: none;
        background: rgba(69, 69, 69, 0.6);
        padding: 7px 0;
    }

        nav ul ul ul {
            background: transparent;
            padding: 0;
        }

            nav ul ul ul li a {
                color: #bfbfbf;
                padding: 8px 10px 8px 60px;
                font-size: 14px;
            }

                nav ul ul ul li a:hover {
                    background-color: #4C4F53;
                    color: #ffffff;
                }

            nav ul ul ul ul li a {
                padding-left: 80px;
            }

            nav ul ul ul ul ul li a {
                padding-left: 100px;
            }

            nav ul ul ul ul ul ul li a {
                padding-left: 120px;
            }

        nav ul ul li {
            margin: 0;
            padding: 0;
        }

            nav ul ul li > a {
                padding-left: 42px;
                font-size: 14px;
                font-weight: normal;
                outline: 0;
            }

                nav ul ul li > a:hover {
                    background-color: rgba(69, 69, 69, 0.8);
                    color: #ffffff;
                }

        nav ul ul b {
            color: #B3B3B3;
        }

        nav ul ul > li:hover b {
            color: #D5D9E2;
        }

nav > ul > li:last-child.open {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

nav > ul > li > ul > li > a {
    padding-top: 7px;
    padding-bottom: 7px;
}

nav > ul > li > ul > li > ul > li > a {
    padding-top: 7px;
    padding-bottom: 7px;
}

nav > ul > li > ul::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    left: 23px;
    top: 0;
    bottom: 0;
    border-left: 1px solid #7A7A7A;
}

nav > ul > li > a b {
    position: absolute !important;
    right: 10px;
    top: 10px;
}

nav > ul > li > a > i {
    /*font-size: 121%; fa-lg overrides this so..  */
    margin-right: 5px;
    width: 15px;
    display: inline-block;
    text-align: center;
    position: relative;
}

    nav > ul > li > a > i > em {
        font-size: 9px;
        display: block;
        padding: 2px;
        position: absolute;
        top: -8px;
        right: -6px;
        text-decoration: none;
        font-style: normal;
        background: #ED1C24;
        color: #ffffff;
        min-width: 13px;
        border-radius: 50%;
        max-height: 13px;
        line-height: 8px;
        font-weight: bold;
        vertical-align: baseline;
        white-space: nowrap;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

nav > ul > li:hover > ul::before, nav > ul > li:hover > ul > li::before {
    border-color: #ACACAC !important;
}

nav > ul ul li::before {
    content: "";
    display: block;
    position: absolute;
    width: 8px;
    left: 23px;
    top: 16px;
    border-top: 1px solid #7A7A7A;
    z-index: 1;
}

nav > ul ul li a i {
    font-size: 14px !important;
    width: 18px !important;
    text-align: center !important;
    vertical-align: 0 !important;
    line-height: 1 !important;
}

nav > ul ul ul li::before {
    content: "";
    display: block;
    position: absolute;
    width: 18px;
    left: 10px;
    top: 17px;
    border-top: 1px solid transparent;
}

/*
 * HEADER NAV DROPDOWN LIST
 */
.header-dropdown-list {
    list-style: none;
    float: right;
    position: relative;
    margin: 0;
}

    .header-dropdown-list > li {
        display: inline-block;
        padding-right: 5px;
    }

        .header-dropdown-list > li > .dropdown-toggle {
            margin-top: 16px;
            display: block;
        }

/*
 * ***************************************************
 * MAIN LAYOUT END
 * ***************************************************
 */
/*
 * ACCORDIONS
 */
.smart-accordion-default.panel-group {
    margin-bottom: 0px;
}

    .smart-accordion-default.panel-group .panel + .panel {
        margin-top: -1px;
    }

    .smart-accordion-default.panel-group .panel-heading {
        padding: 0px;
    }

    .smart-accordion-default.panel-group .panel-title a {
        display: block;
        padding: 10px 15px;
        text-decoration: none !important;
    }

.smart-accordion-default .panel-heading {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}

.smart-accordion-default .panel-default {
    border-color: #c3c3c3;
}

    .smart-accordion-default .panel-default > .panel-heading {
        background-color: #fcfcfc;
    }

.smart-accordion-default .panel-title > a > :first-child {
    display: none;
}

.smart-accordion-default .panel-title > a.collapsed > .fa {
    display: none;
}

.smart-accordion-default .panel-title > a.collapsed > :first-child {
    display: inline-block;
}

.panel-group .panel {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}

.no-padding .smart-accordion-default > div {
    border-left: none !important;
    border-right: none !important;
}

    .no-padding .smart-accordion-default > div:first-child {
        border-top: none !important;
    }

    .no-padding .smart-accordion-default > div:last-child {
        border-bottom: none !important;
    }

/*
 * ON OFF SWITCHES
 */
/* http://proto.io/freebies/onoff/ */
.onoffswitch {
    position: relative;
    width: 50px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    margin-top: 3px;
    margin-bottom: 3px;
    margin-left: 5px;
    display: inline-block;
    vertical-align: middle;
}

.onoffswitch-container {
    margin-top: 4px;
    margin-left: 7px;
    display: inline-block;
}

.onoffswitch-checkbox {
    display: none;
}

    .onoffswitch-checkbox + .onoffswitch-label .onoffswitch-switch:before {
        content: "\f00d";
        color: #a90329;
        display: block;
        text-align: center;
        line-height: 19px;
        font-size: 10px;
        text-shadow: 0 -1px 0 #ffffff;
        font-weight: bold;
        font-family: FontAwesome;
    }

    .onoffswitch-checkbox:disabled + .onoffswitch-label {
        border-color: #ababab #999999 #878787 !important;
    }

        .onoffswitch-checkbox:disabled + .onoffswitch-label .onoffswitch-inner:after {
            text-shadow: 0 1px 0 #ffffff;
            background: #bfbfbf;
            color: #333333;
        }

        .onoffswitch-checkbox:disabled + .onoffswitch-label .onoffswitch-switch {
            background-color: #f4f4f4;
            background-image: -webkit-gradient(linear, to bottom, #bfbfbf, #f4f4f4);
            background-image: -webkit-linear-gradient(to bottom, #bfbfbf, #f4f4f4);
            background-image: -moz-linear-gradient(to bottom, #bfbfbf, #f4f4f4);
            background-image: -ms-linear-gradient(to bottom, #bfbfbf, #f4f4f4);
            background-image: -o-linear-gradient(to bottom, #bfbfbf, #f4f4f4);
            background-image: linear-gradient(to bottom, #bfbfbf, #f4f4f4);
            box-shadow: none !important;
        }

    .onoffswitch-checkbox:checked + .onoffswitch-label {
        border-color: #3276b1 #2a6395 #255681;
    }

        .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
            right: 0px;
        }

            .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch:before {
                content: "\f00d";
                color: #a90329;
                display: block;
                text-align: center;
                line-height: 19px;
                font-size: 10px;
                text-shadow: 0 -1px 0 #ffffff;
                font-weight: bold;
                font-family: FontAwesome;
                content: "\f00c";
                color: #57889c;
            }

        .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
            margin-left: 0;
            display: block;
        }

    .onoffswitch-checkbox:checked:disabled + .onoffswitch-label .onoffswitch-inner:before {
        text-shadow: 0 1px 0 #ffffff;
        background: #bfbfbf;
        color: #333333;
    }

    .onoffswitch-checkbox:checked:disabled + .onoffswitch-label .onoffswitch-switch {
        background-color: #f4f4f4;
        background-image: -webkit-gradient(linear, to bottom, #bfbfbf, #f4f4f4);
        background-image: -webkit-linear-gradient(to bottom, #bfbfbf, #f4f4f4);
        background-image: -moz-linear-gradient(to bottom, #bfbfbf, #f4f4f4);
        background-image: -ms-linear-gradient(to bottom, #bfbfbf, #f4f4f4);
        background-image: -o-linear-gradient(to bottom, #bfbfbf, #f4f4f4);
        background-image: linear-gradient(to bottom, #bfbfbf, #f4f4f4);
        box-shadow: none !important;
    }

    .onoffswitch-checkbox:checked:disabled + .onoffswitch-label .onoffswitch-label {
        border-color: #ababab #999999 #878787 !important;
    }

.onoffswitch-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #626262;
    border-radius: 50px;
    border-color: #adadad #b3b3b3 #9e9e9e;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.onoffswitch-inner {
    width: 200%;
    margin-left: -100%;
    display: block;
}

    .onoffswitch-inner:before, .onoffswitch-inner:after {
        float: left;
        width: 50%;
        height: 15px;
        padding: 0;
        line-height: 15px;
        font-size: 10px;
        color: #ffffff;
        font-family: Trebuchet, Arial, sans-serif;
        font-weight: bold;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .onoffswitch-inner:before {
        content: attr(data-swchon-text);
        text-shadow: 0 -1px 0 #333333;
        padding-left: 7px;
        background-color: #3276b1;
        color: #ffffff;
        box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.05);
        text-align: left;
    }

    .onoffswitch-inner:after {
        content: attr(data-swchoff-text);
        padding-right: 7px;
        text-shadow: 0 -1px 0 #ffffff;
        background-color: #ffffff;
        color: #555555;
        text-align: right;
        box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
    }

.onoffswitch-switch {
    width: 19px;
    height: 19px;
    margin: -2px;
    background: white;
    border: 1px solid #9a9a9a;
    border-radius: 50px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 32px;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    background-color: #f4f4f4;
    background-image: -webkit-gradient(linear, to bottom, #ffffff, #eeeeee);
    background-image: -webkit-linear-gradient(to bottom, #ffffff, #eeeeee);
    background-image: -moz-linear-gradient(to bottom, #ffffff, #eeeeee);
    background-image: -ms-linear-gradient(to bottom, #ffffff, #eeeeee);
    background-image: -o-linear-gradient(to bottom, #ffffff, #eeeeee);
    background-image: linear-gradient(to bottom, #ffffff, #eeeeee);
    background-repeat: repeat-x;
    -webkit-box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.3);
}

    .onoffswitch-switch:hover {
        background-color: #eeeeee;
    }

    .onoffswitch-switch:active {
        background-color: #eeeeee;
        box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
    }

.onoffswitch + span, .onoffswitch-title {
    display: inline-block;
    vertical-align: middle;
    margin-top: -5px;
}

/*
 * FORMS
 */
.form-control {
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
}

.form hr {
    margin-left: -13px;
    margin-right: -13px;
    border-color: rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    margin-bottom: 20px;
}

.form fieldset {
    display: block;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    position: relative;
}

    .form fieldset .form-group:last-child {
        margin-bottom: 0;
    }

        .form fieldset .form-group:last-child .note {
            margin-bottom: 0;
        }

.form-actions {
    display: block;
    padding: 13px 14px 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(249, 249, 249, 0.9);
    margin-top: 25px;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: -13px;
    text-align: right;
}

.form header {
    display: block;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
    background: #ffffff;
    font-size: 16px;
    font-weight: 300;
    color: #222222;
    margin: 25px 0px 20px;
}

    .form header:first-child {
        margin-top: 10px;
    }

.form .form-group:last-child {
    margin-bottom: 0;
}

    .form .form-group:last-child .note {
        margin-bottom: 0;
    }

.form-horizontal .form-group .form-group {
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
}

fieldset {
    position: relative;
    z-index: 1;
}

.well .form-actions {
    margin-left: -19px;
    margin-right: -19px;
    margin-bottom: -19px;
}

.well.well-lg .form-actions {
    margin-left: -24px;
    margin-right: -24px;
    margin-bottom: -24px;
}

.well.well-sm .form-actions {
    margin-left: -9px;
    margin-right: -9px;
    margin-bottom: -9px;
}

.popover-content .form-actions {
    margin: 0 -14px -9px;
    border-radius: 0 0 3px 3px;
    padding: 9px 14px;
}

.no-padding .form .form-actions {
    margin: 0;
    display: block;
    padding: 13px 14px 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(248, 248, 248, 0.9);
    text-align: right;
    margin-top: 25px;
}

.no-padding .form header {
    margin: 25px 14px 0;
}

legend {
    display: block;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
    background: #ffffff;
    font-size: 16px;
    font-weight: 300;
    color: #222222;
    margin: 25px 0px 20px;
    font-weight: 400;
    margin-top: 0px;
    background: none;
}

.input-group-addon {
    padding: 6px 10px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    -webkit-transition: background-color false false, 0.3s false false;
    -moz-transition: background-color false false false, 0.3s false false false;
    -o-transition: background-color false false false, 0.3s false false false;
    transition: background-color 0.3s;
}

    .input-group-addon .fa {
        font-size: 14px;
    }

    .input-group-addon .fa-lg, .input-group-addon .fa-2x {
        font-size: 2em;
    }

    .input-group-addon .fa-3x, .input-group-addon .fa-4x, .input-group-addon .fa-5x {
        font-size: 30px;
    }

    .input-group-addon .checkbox,
    .input-group-addon .radio {
        min-height: 0px;
        margin-right: 0px !important;
        padding-top: 0;
    }

    .input-group-addon label input[type="checkbox"].checkbox + span, .input-group-addon label input[type="radio"].radiobox + span, .input-group-addon label input[type="radio"].radiobox + span:before, .input-group-addon label input[type="checkbox"].checkbox + span:before {
        margin-right: 0px;
    }

    .input-group-addon .onoffswitch,
    .input-group-addon onoffswitch-label {
        margin: 0;
    }

.input[type="text"]:focus + .input-group-addon {
    border-color: #0091d9;
    background-color: #72a0ce;
    color: #ffffff;
}

.input-icon-right {
    position: relative;
}

    .input-icon-right > i {
        position: absolute;
        right: 10px;
        top: 30%;
        font-size: 16px;
        color: #bfbfbf;
    }

    .input-icon-right .form-control {
        padding-right: 27px;
    }

.input-icon-left > i {
    position: absolute;
    right: 10px;
    top: 30%;
    font-size: 16px;
    color: #bfbfbf;
    right: auto;
    left: 24px;
}

.input-icon-left .form-control {
    padding-left: 29px;
}

.has-warning input[type="text"] {
    border-color: #dbab57;
}

    .has-warning input[type="text"] + .input-group-addon {
        border-color: #dbab57;
        background-color: #faf2cc;
        color: #c09853;
    }

    .has-warning input[type="text"]:focus {
        border-color: #dbab57;
    }

        .has-warning input[type="text"]:focus + .input-group-addon {
            border-color: #dbab57;
            background-color: #e1c118;
            color: #ffffff;
        }

.has-error .input-group-addon {
    border-color: #b94a48;
    background: #f2dede;
    color: #b94a48;
}

.has-error input[type="text"] {
    border-color: #b94a48;
}

    .has-error input[type="text"] + .input-group-addon {
        border-color: #b94a48;
        background-color: #f2dede;
        color: #b94a48;
    }

    .has-error input[type="text"]:focus {
        border-color: #c05e5e;
    }

        .has-error input[type="text"]:focus + .input-group-addon {
            border-color: #c05e5e;
            background-color: #c05e5e;
            color: #ffffff;
        }

.has-error .select2-container .select2-choice {
    border-color: #b94a48;
}

.has-error .k-state-default {
    border-color: #b94a48 !important;
}

.has-success input[type="text"]:focus + .input-group-addon {
    border-color: #468847;
    background-color: #468847;
    color: #ffffff;
}

.has-success .select2-container .select2-choice {
    border-color: #468847;
}

.has-success .k-state-default {
    border-color: #468847 !important;
}

.note {
    margin-top: 6px;
    padding: 0 1px;
    font-size: 11px;
    line-height: 15px;
    color: #999999;
}

input[type="text"].ui-autocomplete-loading, input[type="password"].ui-autocomplete-loading, input[type="datetime"].ui-autocomplete-loading, input[type="datetime-local"].ui-autocomplete-loading, input[type="date"].ui-autocomplete-loading, input[type="month"].ui-autocomplete-loading, input[type="time"].ui-autocomplete-loading, input[type="week"].ui-autocomplete-loading, input[type="number"].ui-autocomplete-loading, input[type="email"].ui-autocomplete-loading, input[type="url"].ui-autocomplete-loading, input[type="search"].ui-autocomplete-loading, input[type="tel"].ui-autocomplete-loading, input[type="color"].ui-autocomplete-loading {
    background-image: url("../../img/select2-spinner.gif") !important;
    background-repeat: no-repeat;
    background-position: 99% 50%;
    padding-right: 27px;
}

/*
 * Timeline Seperator
 */
.timeline-seperator {
    display: block;
    text-align: center;
    color: #999999;
    margin: 20px 0 0;
}

    .timeline-seperator > :first-child {
        padding: 4px 5px;
        border: 1px dashed rgba(0, 0, 0, 0.1);
        background: #ffffff;
        font-size: 11px;
        border-radius: 4px;
    }

    .timeline-seperator .btn {
        margin-right: 15px;
    }

        .timeline-seperator .btn + .dropdown-menu {
            margin-right: 15px;
        }

    .timeline-seperator:after {
        display: block;
        content: " ";
        margin: 0 20px;
        border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
        margin-top: -8px;
    }

/*
 * Alerts
 */
.alert {
    margin-bottom: 20px;
    margin-top: 0px;
    padding: 5px 15px 5px 34px;
    color: #675100;
    border-width: 0px;
    border-left-width: 5px;
    padding: 10px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}

    .alert .close {
        top: 0px;
        right: -5px;
        line-height: 20px;
    }

.alert-heading {
    font-weight: 600;
}

.alert-danger {
    border-color: #953b39;
    color: #ffffff;
    background: #c26565;
    text-shadow: none;
}

.alert-warning {
    border-color: #dfb56c;
    color: #826430;
    background: #efe1b3;
}

.alert-success {
    border-color: #8ac38b;
    color: #356635;
    background: #cde0c4;
}

.alert-info {
    border-color: #9cb4c5;
    color: #305d8c;
    background: #d6dde7;
}

/*
 * WELLS
 */
.well {
    background: #fbfbfb;
    border: 1px solid #dddddd;
    -webkit-box-shadow: 0 1px 1px #ececec;
    -moz-box-shadow: 0 1px 1px #ececec;
    box-shadow: 0 1px 1px #ececec;
    position: relative;
}

    .well.well-clean {
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        border-color: transparent;
    }

    .well.well-glass {
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        border-color: transparent;
        background-color: rgba(255, 255, 255, 0.25);
        color: #ffffff;
    }

    .well.well-light {
        background: #ffffff;
        border: 1px solid #e2e2e2;
    }

    .well.transparent {
        border: none !important;
        background: none !important;
    }

    .well[class^="bg-"], .well[class*=" bg-"] {
        border: 1px solid #555555 !important;
    }

.widget-body .well {
    margin-bottom: 0px;
}

.jarviswidget.well.transparent > div {
    padding: 0px !important;
}

    .jarviswidget.well.transparent > div .widget-body {
        padding: 0px !important;
    }

/* any wells with custom bg the border will be darkened */
/*
 * PROGRESS BARS
 */
.progress {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
    height: 22px;
    background: #eeeeee;
    -webkit-box-shadow: 0 1px 0 transparent, 0 0 0 1px #e3e3e3 inset;
    -moz-box-shadow: 0 1px 0 transparent, 0 0 0 1px #e3e3e3 inset;
    box-shadow: 0 1px 0 transparent, 0 0 0 1px #e3e3e3 inset;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}

.progress-micro {
    height: 3px !important;
    line-height: 3px !important;
}

.progress-xs {
    height: 7px !important;
    line-height: 7px !important;
}

.progress-sm {
    height: 14px !important;
    line-height: 14px !important;
}

.progress-lg {
    height: 30px !important;
    line-height: 30px !important;
}

.progress .progress-bar {
    position: absolute;
    overflow: hidden;
    line-height: 20px;
}

.progress .progressbar-back-text {
    position: absolute;
    width: 100%;
    height: 100%;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
}

.progress .progressbar-front-text {
    display: block;
    width: 100%;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
}

.progress.right .progress-bar {
    right: 0;
}

.progress.right .progress-bar-front-text {
    position: absolute;
    right: 0;
}

.progress.vertical {
    width: 25px;
    height: 100%;
    min-height: 150px;
    margin-right: 20px;
    display: inline-block;
    margin-bottom: 0px;
}

    .progress.vertical.bottom {
        position: relative;
    }

        .progress.vertical.bottom .progressbar-front-text {
            position: absolute;
            bottom: 0;
        }

        .progress.vertical.bottom .progress-bar {
            position: absolute;
            bottom: 0;
        }

    .progress.vertical .progress-bar {
        width: 100%;
        height: 0;
        -webkit-transition: height false false, 0.6s false false, ease false false;
        -moz-transition: height false false false, 0.6s false false false, ease false false false;
        -o-transition: height false false false, 0.6s false false false, ease false false false;
        transition: height 0.6s ease;
    }

.progress.wide-bar {
    width: 40px;
}

.progress-bar {
    float: left;
    width: 0;
    height: 100%;
    font-size: 11px;
    color: #ffffff;
    text-align: center;
    background-color: #57889c;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    font-weight: bold;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    background-image: url("../../img/pattern/overlay-pattern.png");
}

.progress-bar-danger {
    background-color: #a90329;
}

.progress-bar-success {
    background-color: #739e73;
}

.progress-bar-warning {
    background-color: #c79121;
}

.progress-bar-info {
    background-color: #57889c;
}

.progress-striped .progress-bar {
    background-image: -webkit-gradient(linear, 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: -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: -moz-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: -ms-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);
    background-size: 40px 40px;
}

.progress.active .progress-bar {
    -webkit-animation: progress-bar-stripes 2s linear infinite;
    -moz-animation: progress-bar-stripes 2s linear infinite;
    -ms-animation: progress-bar-stripes 2s linear infinite;
    -o-animation: progress-bar-stripes 2s linear infinite;
    animation: progress-bar-stripes 2s linear infinite;
}

.progress-striped .progress-bar-danger {
    background-image: -webkit-gradient(linear, 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: -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: -moz-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: -ms-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-striped .progress-bar-success {
    background-image: -webkit-gradient(linear, 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: -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: -moz-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: -ms-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-striped .progress-bar-warning {
    background-image: -webkit-gradient(linear, 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: -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: -moz-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: -ms-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-striped .progress-bar-info {
    background-image: -webkit-gradient(linear, 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: -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: -moz-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: -ms-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-info .bar {
    background: #57889c;
}

.progress .bar-info {
    background: #57889c;
}

@-webkit-keyframes progress-bar-stripes {
    from {
        background-position: 40px 0;
    }

    to {
        background-position: 0 0;
    }
}

@-moz-keyframes progress-bar-stripes {
    from {
        background-position: 40px 0;
    }

    to {
        background-position: 0 0;
    }
}

@-o-keyframes progress-bar-stripes {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 40px 0;
    }
}

@keyframes progress-bar-stripes {
    from {
        background-position: 40px 0;
    }

    to {
        background-position: 0 0;
    }
}

.vertical-bars {
    padding: 0;
    margin: 0;
}

    .vertical-bars:after {
        content: "";
        display: block;
        height: 0;
        clear: both;
    }

    .vertical-bars li {
        padding: 14px 0;
        width: 25%;
        display: block;
        float: left;
        text-align: center;
    }

        .vertical-bars li:first-child {
            border-left: none;
        }

        .vertical-bars li > .progress.vertical {
            margin: 0 auto;
            float: none;
        }

            .vertical-bars li > .progress.vertical:first-child {
                margin-left: auto;
            }

/*
 * BAR HOLDER
 */
.bar-holder {
    padding: 18px 15px;
}

    .bar-holder:first-child {
        border-top: none;
    }

    .bar-holder .progress {
        margin: 0;
    }

.nav-tabs > li > a {
    border-radius: 0px;
    color: #333333;
}

    .nav-tabs > li > a .badge {
        font-size: 11px;
        padding: 3px 5px 3px 5px;
        opacity: .5;
        margin-left: 5px;
        min-width: 17px;
        font-weight: normal;
    }

    .nav-tabs > li > a .label {
        display: inline-block;
        font-size: 11px;
        margin-left: 5px;
        opacity: .5;
    }

    .nav-tabs > li > a > .fa {
        opacity: .5;
    }

.nav-tabs > li.active > a {
    -webkit-box-shadow: 0 -2px 0 #57889c;
    -moz-box-shadow: 0 -2px 0 #57889c;
    box-shadow: 0 -2px 0 #57889c;
    border-top-width: 0px !important;
    margin-top: 1px !important;
    font-weight: bold;
}

    .nav-tabs > li.active > a .badge, .nav-tabs > li.active > a .label {
        opacity: 1;
    }

    .nav-tabs > li.active > a > .fa {
        opacity: 1;
    }

.nav-tabs.bordered {
    background: #ffffff;
    border: 1px solid #dddddd;
}

    .nav-tabs.bordered > :first-child a {
        border-left-width: 0px !important;
    }

    .nav-tabs.bordered + .tab-content {
        border: 1px solid #dddddd;
        border-top: none;
    }

.tabs-left {
    border-bottom: 0;
}

    .tabs-left .nav-tabs > li > a .badge {
        margin-right: 5px;
        margin-left: 0px;
    }

    .tabs-left .nav-tabs > li.active > a {
        -webkit-box-shadow: -2px 0 0 #57889c;
        -moz-box-shadow: -2px 0 0 #57889c;
        box-shadow: -2px 0 0 #57889c;
        border-top-width: 1px !important;
        border-left: none !important;
        margin-left: 1px !important;
    }

    .tabs-left > .nav-tabs {
        float: left;
        margin-right: 19px;
        border-right: 1px solid #dddddd;
        border-bottom: 0;
    }

        .tabs-left > .nav-tabs > li {
            float: none;
        }

            .tabs-left > .nav-tabs > li > a {
                min-width: 74px;
                margin-right: 0;
                margin-bottom: 3px;
                margin-right: -1px;
            }

                .tabs-left > .nav-tabs > li > a:hover, .tabs-left > .nav-tabs > li > a:focus {
                    border-color: #eeeeee #d5d5d5 #eeeeee #eeeeee;
                }

        .tabs-left > .nav-tabs .active > a {
            border-color: #d5d5d5 transparent #d5d5d5 #dddddd;
            *border-right-color: #ffffff;
        }

            .tabs-left > .nav-tabs .active > a:hover, .tabs-left > .nav-tabs .active > a:focus {
                border-color: #d5d5d5 transparent #d5d5d5 #dddddd;
                *border-right-color: #ffffff;
            }

    .tabs-left > .nav-pills {
        float: left;
        margin-right: 19px;
        border-right: 1px solid #dddddd;
        border-right: none;
    }

        .tabs-left > .nav-pills > li {
            float: none;
        }

            .tabs-left > .nav-pills > li > a {
                min-width: 74px;
                margin-right: 0;
                margin-bottom: 3px;
            }

    .tabs-left .nav-pills > li.active > a {
        -webkit-box-shadow: none !important;
        -moz-box-shadow: none !important;
        box-shadow: none !important;
        border: none !important;
    }

    .tabs-left > .tab-content {
        margin-left: 109px;
    }

.tabs-right {
    border-bottom: 0;
}

    .tabs-right .nav-tabs > li.active > a {
        -webkit-box-shadow: 2px 0 0 #57889c;
        -moz-box-shadow: 2px 0 0 #57889c;
        box-shadow: 2px 0 0 #57889c;
        border-top-width: 1px !important;
        border-right: none !important;
        margin-right: 1px !important;
    }

    .tabs-right > .nav-tabs {
        float: right;
        margin-left: 19px;
        border-left: 1px solid #dddddd;
        border-bottom: 0;
    }

        .tabs-right > .nav-tabs > li {
            float: none;
        }

            .tabs-right > .nav-tabs > li > a {
                min-width: 74px;
                margin-right: 0;
                margin-bottom: 3px;
                margin-left: -1px;
            }

                .tabs-right > .nav-tabs > li > a:hover, .tabs-right > .nav-tabs > li > a:focus {
                    border-color: #eeeeee #eeeeee #eeeeee #dddddd;
                }

        .tabs-right > .nav-tabs .active > a {
            border-color: #d5d5d5 transparent #d5d5d5 #dddddd;
            *border-right-color: #ffffff;
        }

            .tabs-right > .nav-tabs .active > a:hover, .tabs-right > .nav-tabs .active > a:focus {
                border-color: #d5d5d5 transparent #d5d5d5 #dddddd;
                *border-right-color: #ffffff;
            }

    .tabs-right > .nav-pills > li {
        float: none;
    }

        .tabs-right > .nav-pills > li > a {
            min-width: 74px;
            margin-right: 0;
            margin-bottom: 3px;
        }

.tabs-below {
    border-bottom: 0;
}

    .tabs-below .nav-tabs {
        border-top: 1px solid #dddddd;
    }

        .tabs-below .nav-tabs > li {
            margin-top: -1px;
            margin-bottom: 0;
        }

            .tabs-below .nav-tabs > li.active > a {
                -webkit-box-shadow: 0 2px 0 #57889c;
                -moz-box-shadow: 0 2px 0 #57889c;
                box-shadow: 0 2px 0 #57889c;
                border-bottom-width: 0px !important;
                border-top: none !important;
                margin-top: 0px !important;
            }

    .tabs-below > .nav-tabs {
        border-bottom: 0;
        border-top: 1px solid #dddddd;
    }

        .tabs-below > .nav-tabs > li {
            margin-top: -1px;
            margin-bottom: 0;
        }

            .tabs-below > .nav-tabs > li > a:focus, .tabs-below > .nav-tabs > li > a:hover {
                border-top-color: #dddddd;
                border-bottom-color: transparent;
            }

        .tabs-below > .nav-tabs > .active > a {
            border-color: transparent #dddddd #dddddd #dddddd;
        }

            .tabs-below > .nav-tabs > .active > a:hover, .tabs-below > .nav-tabs > .active > a:focus {
                border-color: transparent #dddddd #dddddd #dddddd;
            }

.tabs-pull-right.nav-tabs > li {
    float: right;
}

    .tabs-pull-right.nav-tabs > li:first-child > a {
        margin-right: 1px;
    }

.tabs-pull-right.nav-pills > li {
    float: right;
}

    .tabs-pull-right.nav-pills > li:first-child > a {
        margin-right: 1px;
    }

.tabs-pull-right.bordered.nav-tabs > li:first-child > a {
    border-left-width: 1px !important;
    margin-right: 0px;
    border-right-width: 0px;
}

.tabs-pull-right.bordered.nav-pills > li:first-child > a {
    border-left-width: 1px !important;
    margin-right: 0px;
    border-right-width: 0px;
}

.tab-content > .tab-pane {
    display: none;
}

.tab-content > .active {
    display: block;
}

.pill-content .pill-pane {
    display: none;
}

.pill-content > .active {
    display: block;
}

/* jarviswidget header first child is tab */
.jarviswidget > header > .nav-tabs.pull-left > li:first-child a {
    border-left-width: 0px !important;
}

/*
 * WEBKIT IOS HIGHLIGHT COLOR
 *
 */
a:link,
.btn,
button {
    -webkit-tap-highlight-color: rgba(169, 3, 41, 0.5);
}

.login-info {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    position: relative;
}

    .login-info * {
        -webkit-box-sizing: content-box;
        -moz-box-sizing: content-box;
        box-sizing: content-box;
    }

    .login-info #activity {
        position: absolute;
        right: 5px;
        top: 4px;
        margin: 0px;
    }

#logo-group *,
.ddh,
.ddh *,
.minified .menu-item-parent {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

/*
 * BS2 useful classes
 * these classes and its importance was overlooked in BS3
 */
.hidden-desktop {
    display: none !important;
}

/*
 * DROPDOWN MENU
 */
.dropdown-menu-xs {
    min-width: 37px;
}

    .dropdown-menu-xs > li > a {
        padding: 3px 10px;
    }

        .dropdown-menu-xs > li > a:hover i {
            color: #fff !important;
        }

.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -6px;
        margin-left: -1px;
    }

    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }

    .dropdown-submenu:hover > a:after {
        border-left-color: #ffffff;
    }

    .dropdown-submenu > a:after {
        display: block;
        content: " ";
        float: right;
        width: 0;
        height: 0;
        border-color: transparent;
        border-style: solid;
        border-width: 5px 0 5px 5px;
        border-left-color: #bfbfbf;
        margin-top: 5px;
        margin-right: -10px;
    }

    .dropdown-submenu.pull-left {
        float: none;
    }

        .dropdown-submenu.pull-left > .dropdown-menu {
            left: -100%;
            margin-left: 10px;
        }

/*
 * Table
 */
.table.has-tickbox thead tr th:first-child {
    width: 18px;
}

.table.has-tickbox.smart-form thead tr th:first-child .radio, .table.has-tickbox.smart-form thead tr th:first-child checkbox {
    padding: 0px !important;
}

.table.has-tickbox.smart-form tbody tr th:first-child .radio, .table.has-tickbox.smart-form tbody tr th:first-child checkbox {
    padding: 0px !important;
}

.table thead tr {
    background-color: #eeeeee;
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#fafafa));
    background-image: -webkit-linear-gradient(top, #f2f2f2 0, #fafafa 100%);
    background-image: -moz-linear-gradient(top, #f2f2f2 0, #fafafa 100%);
    background-image: -ms-linear-gradient(top, #f2f2f2 0, #fafafa 100%);
    background-image: -o-linear-gradient(top, #f2f2f2 0, #fafafa 100%);
    background-image: linear-gradient(top, #f2f2f2 0%, #fafafa 100%);
    font-size: 12px;
}

.table-bordered > thead > tr > th, .table-bordered > thead > tr > td {
    border-width: 1px;
}

.table-condensed.table > tbody > tr > td, .table-condensed.table > tbody > tr > th {
    padding: 5px 10px !important;
}

.table-condensed.table > tfoot > tr > td, .table-condensed.table > tfoot > tr > th {
    padding: 5px 10px !important;
}

.table-condensed.table > thead > tr > td, .table-condensed.table > thead > tr > th {
    padding: 5px 10px !important;
}

.fc-border-separate thead tr {
    background-color: #eeeeee;
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#fafafa));
    background-image: -webkit-linear-gradient(top, #f2f2f2 0, #fafafa 100%);
    background-image: -moz-linear-gradient(top, #f2f2f2 0, #fafafa 100%);
    background-image: -ms-linear-gradient(top, #f2f2f2 0, #fafafa 100%);
    background-image: -o-linear-gradient(top, #f2f2f2 0, #fafafa 100%);
    background-image: linear-gradient(top, #f2f2f2 0%, #fafafa 100%);
    font-size: 12px;
}

    .fc-border-separate thead tr th {
        padding: 4px;
        line-height: 1.428571429;
    }

.no-padding > .table-bordered {
    border: none !important;
}

    .no-padding > .table-bordered thead tr th:first-child,
    .no-padding > .table-bordered thead tr td:first-child {
        border-left-width: 0px !important;
    }

    .no-padding > .table-bordered thead tr th:last-child {
        border-right-width: 0px !important;
    }

    .no-padding > .table-bordered tbody tr td:first-child {
        border-left-width: 0px !important;
    }

    .no-padding > .table-bordered tbody tr td:last-child {
        border-right-width: 0px !important;
    }

    .no-padding > .table-bordered tbody tr:last-child td {
        border-bottom-width: 0px !important;
    }

.no-padding > .table-responsive > .table-bordered {
    border: none !important;
}

    .no-padding > .table-responsive > .table-bordered thead tr th:first-child,
    .no-padding > .table-responsive > .table-bordered thead tr td:first-child {
        border-left-width: 0px !important;
    }

    .no-padding > .table-responsive > .table-bordered thead tr th:last-child {
        border-right-width: 0px !important;
    }

    .no-padding > .table-responsive > .table-bordered tbody tr td:first-child {
        border-left-width: 0px !important;
    }

    .no-padding > .table-responsive > .table-bordered tbody tr td:last-child {
        border-right-width: 0px !important;
    }

    .no-padding > .table-responsive > .table-bordered tbody tr:last-child td {
        border-bottom-width: 0px !important;
    }

.no-padding .table-responsive .table {
    margin-bottom: 0;
}

.no-padding .note-editable .table-bordered {
    border: 1px solid #dddddd !important;
}

.smart-form.table td .radio i, .smart-form.table td .checkbox i {
    top: 0px !important;
}

.smart-form.table th .radio i, .smart-form.table th .checkbox i {
    top: 0px !important;
}

/*
 * small stats
 */
.show-stats {
    padding-top: 6px !important;
}

    .show-stats .progress {
        height: 7px;
        border-radius: 0;
        margin-top: 3px;
        margin-bottom: 15px;
    }

    .show-stats .show-stat-buttons > :first-child {
        padding-right: 5px;
    }

    .show-stats .show-stat-buttons > :last-child {
        padding-left: 5px;
    }

.show-stat-buttons {
    float: left;
    width: 100%;
}

.show-stat-microcharts {
    margin-left: -10px;
    margin-right: -10px;
}

    .show-stat-microcharts > div {
        border-right: 1px solid #DADADA !important;
        border-top: 1px solid #DADADA !important;
        margin-top: 10px !important;
        height: 65px;
        overflow: hidden;
        padding: 7px 9px;
    }

    .show-stat-microcharts > :last-child {
        border-right: none !important;
    }

    .show-stat-microcharts .sparkline {
        margin-top: 10px;
        margin-right: 8px;
        opacity: .7;
    }

        .show-stat-microcharts .sparkline:hover {
            opacity: 1;
        }

.smaller-stat {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .smaller-stat .smaller-stat li {
        margin-top: 3px;
        margin-right: 0px;
    }

        .smaller-stat .smaller-stat li:first-child {
            margin-top: 8px;
        }

    .smaller-stat span.label {
        width: 40px;
        display: block;
        text-align: left;
        opacity: .5;
        cursor: default;
    }

        .smaller-stat span.label:hover {
            opacity: 1;
        }

/*
 * Login info
 */
.login-info {
    border-bottom: 1px solid #D8D4D4;
    display: block;
    font-size: 12px;
    height: 39px;
    color: #ffffff;
    border: solid transparent;
    border-width: 1px 0px 1px 0px;
    box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.07);
    width: 100%;
    margin: 0px !important;
    border-bottom: 1px solid #525151;
}

    .login-info a {
        text-decoration: none !important;
        color: #a8a8a8;
        display: inline-block;
        margin-top: 6px;
    }

        .login-info a span {
            text-transform: capitalize;
            font-size: 14px;
            /* 14px~ */
            display: inline-block;
            text-decoration: none;
            max-width: 150px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            vertical-align: middle;
        }

            .login-info a span + i {
                vertical-align: middle;
            }

        .login-info a:hover {
            color: #ffffff;
        }

    .login-info > span {
        height: 38px;
        display: block;
        padding: 0 10px;
        border-bottom: 1px solid #1A1817;
    }

    .login-info img {
        width: 25px;
        height: auto;
        display: inline-block;
        vertical-align: middle;
        margin-top: 1px;
        margin-right: 5px;
        margin-left: 0px;
        border-left: 3px solid #ffffff;
    }

img.online {
    border-left: 5px solid #fff;
    border-left-color: #40ac2b !important;
}

img.busy {
    border-left: 5px solid #fff;
    border-left-color: #ed1c24 !important;
}

img.offline {
    border-left: 5px solid #fff;
    border-left-color: #dddddd !important;
}

img.away {
    border-left: 5px solid #fff;
    border-left-color: #ffc40d !important;
}

/*
 * Client page forms
 */
.client-form header {
    padding: 15px 13px;
    margin: 0;
    border-bottom-style: solid;
    border-bottom-color: rgba(0, 0, 0, 0.1);
    background: rgba(248, 248, 248, 0.9);
}

/*
 * MINIFIED MENU
 */
.minified .inbox-badge {
    border-radius: 50%;
    font-size: 9px;
    padding: 2px;
    position: absolute;
    top: 6px;
    right: 6px;
    background: #ED1C24;
    min-width: 13px;
}

.minified .minifyme {
    right: 0px;
    color: #A8A8A8;
    position: relative;
    width: 100%;
    border-radius: 0px;
    margin: 0;
    height: 34px;
    font-size: 23px;
}

    .minified .minifyme .fa:before {
        content: "\f0a9";
    }

.minified .login-info {
    height: 38px;
    border-bottom: 1px solid #181818;
}

    .minified .login-info a span, .minified .login-info a i {
        display: none;
    }

    .minified .login-info span {
        padding: 0px 5px;
        text-align: center;
    }

    .minified .login-info img {
        width: 39px;
    }

.minified #left-panel {
    width: 45px;
    overflow: visible;
}

.minified #main {
    margin-left: 45px;
}

.minified nav > ul > li {
    overflow: visible;
    position: relative;
    border-bottom: 1px solid #1A1817;
    border-top: 1px solid #525151;
}

    .minified nav > ul > li a {
        position: relative;
    }

        .minified nav > ul > li a .fa.fa-fw {
            display: block;
            width: auto;
            text-align: center;
            padding: 0;
        }

        .minified nav > ul > li a > i {
            text-align: center;
            margin: 0;
            display: block;
        }

    .minified nav > ul > li > a .menu-item-parent {
        display: none;
    }

    .minified nav > ul > li > a > b {
        display: none;
    }

    .minified nav > ul > li > a > .menu-item-parent {
        display: none;
        position: absolute;
        left: 40px;
        top: -3px;
        width: 186px;
        height: 38px;
        line-height: 38px;
        background-color: whiteSmoke;
        color: #333333;
        z-index: 3;
        -webkit-box-shadow: 2px 1px 2px 0 rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 2px 1px 2px 0 rgba(0, 0, 0, 0.2);
        box-shadow: 2px 1px 2px 0 rgba(0, 0, 0, 0.2);
        border-left: 1px solid #bfbfbf;
        border-top: 1px solid #D8D4D4;
        border-bottom: 1px solid #ffffff;
        padding-left: 12px;
    }

    .minified nav > ul > li > ul {
        display: none !important;
        position: absolute;
        left: 40px;
        width: 200px;
        z-index: 5;
        border: 1px solid #bfbfbf;
        min-height: 180px;
        -webkit-box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.2);
        box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.2);
        background: #3A3633;
        margin-top: -3px;
    }

        .minified nav > ul > li > ul::before {
            left: 12px;
            border-left: none;
        }

        .minified nav > ul > li > ul > li {
            background-color: rgba(69, 69, 69, 0.9);
        }

            .minified nav > ul > li > ul > li > ul {
                position: relative;
                left: 13px;
                border: none;
                width: auto;
                margin-left: -12px;
                width: 197px;
            }

                .minified nav > ul > li > ul > li > ul > li {
                    background-color: #484B50;
                }

                    .minified nav > ul > li > ul > li > ul > li > a {
                        padding-top: 7px;
                        padding-bottom: 7px;
                    }

                    .minified nav > ul > li > ul > li > ul > li a {
                        padding-top: 6px;
                        padding-bottom: 6px;
                    }

            .minified nav > ul > li > ul > li > a {
                padding-top: 7px;
                padding-bottom: 7px;
            }

    .minified nav > ul > li.active > a::before {
        content: "\f0d9";
    }

    .minified nav > ul > li:hover > a > .menu-item-parent, .minified nav > ul > li:hover > ul {
        display: block !important;
    }

.minified nav > ul > ul {
    min-height: 100px !important;
    max-height: 180px !important;
    overflow-y: scroll;
    overflow-x: hidden;
    background: #ed1c24 !important;
}

.minified nav > ul ul li::before {
    left: 12px;
    border: none;
}

.minified nav ul > li > a {
    padding: 10px 11px;
    display: block;
}

.minified nav ul ul li a {
    padding-left: 14px;
}

.minified nav ul ul li li a {
    padding-left: 25px;
}

.minified nav ul ul ul ul li a {
    padding-left: 45px;
}

.minified nav ul ul ul ul ul li a {
    padding-left: 62px;
}

.minified nav ul ul ul ul ul ul li a {
    padding-left: 82px;
}

.minified .slimScrollDiv {
    overflow: visible !important;
}

    .minified .slimScrollDiv > :first-child {
        overflow: visible !important;
    }

.minified .slimScrollBar, .minified .slimScrollRail {
    display: none;
}

.minifyme {
    border-bottom: 1px solid #302F2F;
    background: #454545;
    color: #A8A8A8;
    text-align: center;
    padding: 0;
    width: 36px;
    height: 28px;
    display: block;
    position: absolute;
    right: -3px;
    border-radius: 5px 0px 0px 5px;
    cursor: pointer;
    margin-top: 5px;
    font-size: 19px;
    transition: all 0.1s linear 0s;
}

    .minifyme :hover {
        background: #646464;
        color: #E4E4E4;
        right: 0px;
    }

.slimScrollDiv {
    overflow: hidden;
}

    .slimScrollDiv > :first-child {
        overflow: hidden;
    }

/*
 * ALTERNATIVE PAGING
 */
.pagination.pagination-alt > li > a {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border: none;
    margin-left: -1px;
}

.pagination.pagination-alt > li:first-child > a {
    padding-left: 0px;
}

.pagination > li > a, .pagination > li > span {
    -webkit-box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.05);
    -moz-box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.05);
}

.disabled {
    color: #ffffff;
}

.btn {
    -webkit-box-shadow: 2px;
    -moz-box-shadow: 2px;
    box-shadow: 2px;
    -webkit-box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.05);
    -moz-box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.05);
}

.btn-default.disabled {
    color: #999999;
}

.btn:active {
    position: relative;
    top: 1px;
    left: 1px;
}

.btn.btn-ribbon {
    background-color: #707070;
    background-image: -moz-linear-gradient(top, #777777, #666666);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#777777), to(#666666));
    background-image: -webkit-linear-gradient(top, #777777, #666666);
    background-image: -o-linear-gradient(top, #777777, #666666);
    background-image: linear-gradient(to bottom, #777777, #666666);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff777777', endColorstr='#ff666666', GradientType=0);
    color: white;
    padding: 0 5px;
    line-height: 20px;
    vertical-align: middle;
    height: 20px;
    display: block;
    border: none;
    float: left;
    margin: 0 8px 0 0;
    cursor: pointer;
}

    .btn.btn-ribbon > i {
        font-size: 111%;
    }

.ribbon-button-alignment {
    padding-top: 10px;
    display: inline-block;
}

    .ribbon-button-alignment.pull-right > .btn.btn-ribbon {
        margin: 0 0 0 8px;
    }

/*
 * Panels
 */
.panel-purple {
    border-color: #6e587a;
}

    .panel-purple > .panel-heading {
        color: #ffffff;
        background-color: #6e587a;
        border-color: #6e587a;
    }

.panel-greenLight {
    border-color: #71843f;
}

    .panel-greenLight > .panel-heading {
        color: #ffffff;
        background-color: #71843f;
        border-color: #71843f;
    }

.panel-greenDark {
    border-color: #496949;
}

    .panel-greenDark > .panel-heading {
        color: #ffffff;
        background-color: #496949;
        border-color: #496949;
    }

.panel-darken {
    border-color: #333333;
}

    .panel-darken > .panel-heading {
        color: #ffffff;
        background-color: #404040;
        border-color: #404040;
    }

.panel-pink {
    border-color: #ac5287;
}

    .panel-pink > .panel-heading {
        color: #ffffff;
        background-color: #ac5287;
        border-color: #ac5287;
    }

.panel-green {
    border-color: #356e35;
}

    .panel-green > .panel-heading {
        color: #ffffff;
        background-color: #356e35;
        border-color: #356e35;
    }

.panel-blueLight {
    border-color: #92a2a8;
}

    .panel-blueLight > .panel-heading {
        color: #ffffff;
        background-color: #92a2a8;
        border-color: #92a2a8;
    }

.panel-pinkDark {
    border-color: #a8829f;
}

    .panel-pinkDark > .panel-heading {
        color: #ffffff;
        background-color: #a8829f;
        border-color: #a8829f;
    }

.panel-redLight {
    border-color: #a65858;
}

    .panel-redLight > .panel-heading {
        color: #ffffff;
        background-color: #a65858;
        border-color: #a65858;
    }

.panel-red {
    border-color: #a90329;
}

    .panel-red > .panel-heading {
        color: #ffffff;
        background-color: #a90329;
        border-color: #a90329;
    }

.panel-teal {
    border-color: #568a89;
}

    .panel-teal > .panel-heading {
        color: #ffffff;
        background-color: #568a89;
        border-color: #568a89;
    }

.panel-orange {
    border-color: #c79121;
}

    .panel-orange > .panel-heading {
        color: #ffffff;
        background-color: #c79121;
        border-color: #c79121;
    }

.panel-blueDark {
    border-color: #4c4f53;
}

    .panel-blueDark > .panel-heading {
        color: #ffffff;
        background-color: #4c4f53;
        border-color: #4c4f53;
    }

.panel-magenta {
    border-color: #6e3671;
}

    .panel-magenta > .panel-heading {
        color: #ffffff;
        background-color: #6e3671;
        border-color: #6e3671;
    }

.panel-blue {
    border-color: #57889c;
}

    .panel-blue > .panel-heading {
        color: #ffffff;
        background-color: #57889c;
        border-color: #57889c;
    }

.panel-footer > .btn-block {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    border-bottom: none;
    border-left: none;
    border-right: none;
}

/*
 * Circle Buttons
 */
.btn-circle {
    width: 30px;
    height: 30px;
    text-align: center;
    padding: 6px 0;
    font-size: 12px;
    line-height: 18px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}

    .btn-circle.btn-lg {
        width: 50px;
        height: 50px;
        padding: 10px 15px;
        font-size: 18px;
        line-height: 30px;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        border-radius: 50%;
    }

    .btn-circle.btn-xl {
        width: 70px;
        height: 70px;
        padding: 10px 15px;
        font-size: 24px;
        line-height: 50px;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        border-radius: 50%;
    }

.btn-metro {
    margin: 0 0 20px;
    padding-top: 15px;
    padding-bottom: 15px;
}

    .btn-metro > span {
        display: block;
        vertical-align: bottom;
        margin-top: 10px;
        text-transform: uppercase;
    }

        .btn-metro > span.label {
            position: absolute;
            top: 0px;
            right: 0px;
        }

.btn-label {
    position: relative;
    left: -12px;
    display: inline-block;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 3px 0 0 3px;
}

.btn-labeled {
    padding-top: 0;
    padding-bottom: 0;
}

.btn-link {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    font-size: 14px;
}

#left-panel {
    -webkit-transition: 250ms false false, cubic-bezier(0.1, 0.57, 0.1, 1) false false;
    -moz-transition: 250ms false false false, cubic-bezier(0.1, 0.57, 0.1, 1) false false false;
    -o-transition: 250ms false false false, cubic-bezier(0.1, 0.57, 0.1, 1) false false false;
    transition: 250ms cubic-bezier(0.1, 0.57, 0.1, 1);
    -webkit-transform: translate(0px, 0px) translateZ(0px);
    -moz-transform: translate(0px, 0px) translateZ(0px);
    -ms-transform: translate(0px, 0px) translateZ(0px);
    -o-transform: translate(0px, 0px) translateZ(0px);
    transform: translate(0px, 0px) translateZ(0px);
}

#main {
    -webkit-transition: all false false, 0.2s false false, ease-out false false;
    -moz-transition: all false false false, 0.2s false false false, ease-out false false false;
    -o-transition: all false false false, 0.2s false false false, ease-out false false false;
    transition: all 0.2s ease-out;
}

/*
 * CHARTS
 */
.chart {
    overflow: hidden;
    /*- disabled for widget chrome bug */
    height: 220px;
    margin: 20px 5px 10px 10px;
}

.chart-small {
    overflow: hidden;
    height: 100px;
    width: 100%;
}

.chart-large {
    overflow: hidden;
    height: 235px;
    width: 100%;
}

.chart-xl {
    overflow: hidden;
    height: 297px;
    width: 100%;
}

/*
 * Flot Tool tips
 */
#flotTip {
    padding: 3px 5px;
    background-color: #ffffff;
    z-index: 9999;
    color: #333333;
    -webkit-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    border: 1px solid #C1C1C1;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
}

    #flotTip span {
        color: #38812D;
        font-weight: bold;
    }

.legendLabel span {
    display: block;
    margin: 0 5px;
}

.legendColorBox {
    padding-left: 10px;
    vertical-align: top;
    padding-top: 5px;
}

    .legendColorBox div > div {
        width: 4px;
        height: 4px;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        border-radius: 50%;
        -webkit-box-sizing: content-box;
        -moz-box-sizing: content-box;
        box-sizing: content-box;
    }

/*
 * Morris Charts
 */
.morris-hover {
    position: absolute;
    z-index: 903;
}

    .morris-hover.morris-default-style {
        border-radius: 10px;
        padding: 6px;
        color: #666;
        background: rgba(255, 255, 255, 0.8);
        border: solid 2px rgba(230, 230, 230, 0.8);
        font-family: sans-serif;
        font-size: 12px;
        text-align: center;
    }

        .morris-hover.morris-default-style .morris-hover-row-label {
            font-weight: bold;
            margin: 0.25em 0;
        }

        .morris-hover.morris-default-style .morris-hover-point {
            white-space: nowrap;
            margin: 0.1em 0;
        }

.fixed-page-footer .morris-hover {
    z-index: 900;
}

/*
 * Flot Chart
 */
.has-legend {
    margin-top: 30px !important;
}

.has-legend-unique {
    margin-top: 19px !important;
}

/*
 * EASY PIE CHART
 */
.easyPieChart {
    position: relative;
    text-align: center;
}

    .easyPieChart canvas {
        position: absolute;
        top: 0;
        left: 0;
    }

.easy-pie-chart {
    display: inline-block;
}

    .easy-pie-chart .percent {
        color: #444;
        font-size: 12px;
        font-weight: bold;
    }

.easy-pie-title {
    display: inline-block;
    margin: 10px 6px 0;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    width: 100px;
    height: 19px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

    .easy-pie-title .icon-color-good, .easy-pie-title .icon-color-bad {
        font-size: 18px;
    }

/*
 * Carren colors
 */
.icon-color-good {
    color: #40ac2b;
}

.icon-color-bad {
    color: #ed1c24;
}

/*
 * SIGNS
 */
.percent-sign:after {
    content: " %";
    line-height: normal;
}

.degree-sign:after {
    content: " %";
    line-height: normal;
    content: " °F";
}

/*
 * HIDDEN MENU
 */
.hidden-menu #left-panel {
    left: -210px;
    z-index: 903;
}

    .hidden-menu #left-panel:hover {
        left: 0px;
    }

.hidden-menu #main {
    margin-left: 10px;
}

.hidden-menu .minifyme {
    display: none;
}

.hidden-menu #hide-menu > :first-child > a {
    background-color: #e8e8e8;
    background-image: -moz-linear-gradient(top, #5a5a5a 0%, #686868 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5a5a5a), color-stop(100%, #686868));
    background-image: -webkit-linear-gradient(to bottom, #5a5a5a 0%, #686868 100%);
    background-image: -o-linear-gradient(to bottom, #5a5a5a 0%, #686868 100%);
    background-image: -ms-linear-gradient(to bottom, #5a5a5a 0%, #686868 100%);
    background-image: linear-gradient(to bottom, #5a5a5a 0%, #686868 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5A5A5A', endColorstr='#686868', GradientType=0);
    -webkit-box-shadow: inset 0px 0px 3px 1px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: inset 0px 0px 3px 1px rgba(0, 0, 0, 0.15);
    box-shadow: inset 0px 0px 3px 1px rgba(0, 0, 0, 0.15);
    color: #ffffff;
    border-color: #494949;
}

    .hidden-menu #hide-menu > :first-child > a:active {
        -webkit-box-shadow: inset 0px 0px 6px 1px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: inset 0px 0px 6px 1px rgba(0, 0, 0, 0.2);
        box-shadow: inset 0px 0px 6px 1px rgba(0, 0, 0, 0.2);
    }

.minified #hide-menu {
    display: none;
}

.btn-header.pull-right {
    margin-left: 6px;
}

.btn-header a > span {
    font-size: 13px;
    font-weight: normal;
    line-height: 30px;
    height: 30px;
    display: inline-block;
}

.btn-header > :first-child > a {
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
    cursor: default !important;
    display: inline-block;
    font-weight: bold;
    height: 30px;
    min-width: 30px;
    padding: 2px;
    text-align: center;
    text-decoration: none !important;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: #f8f8f8;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#f1f1f1));
    background-image: -webkit-linear-gradient(top, #f8f8f8, #f1f1f1);
    background-image: -moz-linear-gradient(top, #f8f8f8, #f1f1f1);
    background-image: -ms-linear-gradient(top, #f8f8f8, #f1f1f1);
    background-image: -o-linear-gradient(top, #f8f8f8, #f1f1f1);
    background-image: linear-gradient(top, #f8f8f8, #f1f1f1);
    border: 1px solid #bfbfbf;
    color: #6D6A69;
    font-size: 17px;
    margin: 10px 0 0 0;
}

    .btn-header > :first-child > a:hover {
        border: 1px solid #bfbfbf;
        color: #222;
        -webkit-transition: all false false, 0s false false;
        -moz-transition: all false false false, 0s false false false;
        -o-transition: all false false false, 0s false false false;
        transition: all 0s;
        cursor: pointer;
        -webkit-box-shadow: inset 0px 0px 4px 1px rgba(0, 0, 0, 0.08);
        -moz-box-shadow: inset 0px 0px 4px 1px rgba(0, 0, 0, 0.08);
        box-shadow: inset 0px 0px 4px 1px rgba(0, 0, 0, 0.08);
    }

    .btn-header > :first-child > a:active {
        background-color: #e8e8e8;
        background-image: -moz-linear-gradient(top, #e8e8e8 0%, #ededed 100%);
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #e8e8e8), color-stop(100%, #ededed));
        background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #ededed 100%);
        background-image: -o-linear-gradient(top, #e8e8e8 0%, #ededed 100%);
        background-image: -ms-linear-gradient(top, #e8e8e8 0%, #ededed 100%);
        background-image: linear-gradient(to bottom, #e8e8e8 0%, #ededed 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e8e8e8', endColorstr='#ededed', GradientType=0);
        -webkit-box-shadow: inset 0px 0px 3px 1px rgba(0, 0, 0, 0.15);
        -moz-box-shadow: inset 0px 0px 3px 1px rgba(0, 0, 0, 0.15);
        box-shadow: inset 0px 0px 3px 1px rgba(0, 0, 0, 0.15);
    }

.full-screen #fullscreen > :first-child > a:active {
    -webkit-box-shadow: inset 0px 0px 6px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: inset 0px 0px 6px 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0px 0px 6px 1px rgba(0, 0, 0, 0.2);
}

/*
 * AJAX DROPDOWN
 */
.ajax-dropdown {
    position: absolute;
    display: none;
    z-index: 905;
    background: white;
    top: 48px;
    left: 16px;
    width: 344px;
    height: 435px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: 0 2px 4px rgba(30, 30, 100, 0.25);
    -moz-box-shadow: 0 2px 4px rgba(30, 30, 100, 0.25);
    box-shadow: 0 2px 4px rgba(30, 30, 100, 0.25);
    padding: 10px;
    background: #ffffff;
    border: 1px solid #b3b3b3;
}

    .ajax-dropdown > :first-child {
        margin: 0 0 3px 0;
        padding: 0 0 9px 0;
    }

    .ajax-dropdown:after, .ajax-dropdown:before {
        bottom: 100%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
    }

    .ajax-dropdown:after {
        border-color: rgba(255, 255, 255, 0);
        border-bottom-color: #ffffff;
        border-width: 7px;
        left: 50%;
        margin-left: -7px;
    }

    .ajax-dropdown:before {
        border-color: rgba(131, 131, 131, 0);
        border-bottom-color: #838383;
        border-width: 8px;
        left: 50%;
        margin-left: -8px;
    }

    .ajax-dropdown .btn-group .btn {
        font-weight: bold;
        text-transform: capitalize;
    }

    .ajax-dropdown .btn-group > :nth-child(2) {
        border-right-width: 0px;
        border-left-width: 0px;
    }

    .ajax-dropdown .btn-group > :last-child {
        border-right-width: 1px !important;
    }

    .ajax-dropdown .btn-group .btn:active {
        top: 0px;
        left: 0px;
    }

    .ajax-dropdown .ajax-notifications {
        height: 365px;
        display: block;
        overflow: auto;
        margin-right: -10px;
        margin-left: -10px;
        border-bottom: 1px solid #CECECE;
        border-top: 1px solid #CECECE;
        background: #E9E9E9;
    }

        .ajax-dropdown .ajax-notifications > .alert-transparent {
            background-color: transparent;
            border-color: transparent;
            color: #757575;
            margin: 13px 10px;
        }

        .ajax-dropdown .ajax-notifications > .alert > :first-child {
            margin-bottom: 10px;
            font-weight: 400;
        }

    .ajax-dropdown > :last-child {
        font-size: 13px;
        display: block;
        padding: 5px 0;
        line-height: 22px;
        font-weight: 400;
    }

    .ajax-dropdown .fa-4x.fa-border {
        border-width: 3px;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        border-radius: 50%;
        display: block;
        margin: 0 auto;
        width: 46px;
        text-align: center;
        color: #D1D1D1;
        border-color: #D1D1D1;
    }

/*
 * LARGE DROPDOWNS
 */
.dropdown-large {
    position: static !important;
}

.dropdown-menu-large {
    margin-left: 16px;
    margin-right: 16px;
    padding: 20px 0px;
}

    .dropdown-menu-large > li > ul {
        padding: 0;
        margin: 0;
    }

        .dropdown-menu-large > li > ul > li {
            list-style: none;
        }

            .dropdown-menu-large > li > ul > li > a {
                display: block;
                padding: 3px 20px;
                clear: both;
                font-weight: normal;
                line-height: 1.428571429;
                color: #333333;
                white-space: normal;
            }

                .dropdown-menu-large > li > ul > li > a:hover, .dropdown-menu-large > li > ul > li > a:focus {
                    text-decoration: none;
                    color: #262626;
                    background-color: #f5f5f5;
                }

    .dropdown-menu-large .disabled > a {
        color: #999999;
    }

        .dropdown-menu-large .disabled > a:hover, .dropdown-menu-large .disabled > a:focus {
            color: #999999;
            text-decoration: none;
            background-color: transparent;
            background-image: none;
            filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
            cursor: not-allowed;
        }

    .dropdown-menu-large .dropdown-header {
        color: #428bca;
        font-size: 18px;
    }

@media (max-width: 768px) {
    .dropdown-menu-large {
        margin-left: 0;
        margin-right: 0;
    }

        .dropdown-menu-large > li {
            margin-bottom: 30px;
        }

            .dropdown-menu-large > li:last-child {
                margin-bottom: 0;
            }

        .dropdown-menu-large .dropdown-header {
            padding: 3px 15px !important;
        }
}
/*
 * PAGING
 */
.pagination-xs > li > a,
.pagination-xs > li > span {
    padding: 4px 9px;
    font-size: 12px;
}

/*
 * NOTIFICATIONS : MAIL
 */
.notification-body {
    padding: 0 0 0 3px;
    margin: 0;
    list-style: none;
}

    .notification-body *, .notification-body:before *, .notification-body:after * {
        -webkit-box-sizing: border-box !important;
        -moz-box-sizing: border-box !important;
        box-sizing: border-box !important;
    }

    .notification-body > li {
        border-bottom: 1px solid #E9E9E9;
        position: relative;
    }

        .notification-body > li > span {
            background: #ffffff;
            display: block;
            min-height: 25px;
            overflow: hidden;
            padding: 8px 10px 13px;
            white-space: normal;
        }

            .notification-body > li > span:hover {
                background: #F0F4F7;
                color: #667F8F;
            }

        .notification-body > li a {
            text-decoration: none;
            display: block;
            position: relative;
            overflow: hidden;
        }

            .notification-body > li a.msg {
                padding-left: 50px !important;
            }

            .notification-body > li a:hover {
                text-decoration: none;
            }

            .notification-body > li a span {
                display: block;
                position: relative;
                overflow: hidden;
            }

        .notification-body > li:hover .progress {
            background: #ffffff;
            -webkit-box-shadow: 0 1px 0 transparent, 0 0 0 1px #a7a7a7 inset;
            -moz-box-shadow: 0 1px 0 transparent, 0 0 0 1px #a7a7a7 inset;
            box-shadow: 0 1px 0 transparent, 0 0 0 1px #a7a7a7 inset;
        }

        .notification-body > li:hover .text-muted {
            color: #333333;
        }

    .notification-body .from {
        font-size: 14px;
        line-height: normal;
        color: #333333;
        font-weight: normal;
        margin-right: 60px;
        margin-bottom: 6px;
        height: 20px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }

    .notification-body .unread {
        background: #FFFFE0;
    }

        .notification-body .unread .from {
            font-weight: bold;
        }

    .notification-body time {
        position: absolute;
        top: 3px;
        right: 0;
        font-size: 11px;
        font-weight: normal;
        color: #058dc7;
    }

    .notification-body .msg-body {
        font-size: 13px;
        color: #A0A0A0;
        max-height: 35px;
        width: 100%;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }

    .notification-body .subject {
        font-size: 13px;
        color: #A0A0A0;
        max-height: 35px;
        width: 100%;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        font-size: 13px;
        color: #333333;
        max-height: 22px;
    }

/*
 * WIZARDS
 */
.bootstrapWizard {
    display: block;
    list-style: none;
    padding: 0;
    position: relative;
    width: 100%;
}

    .bootstrapWizard a:hover, .bootstrapWizard a:active, .bootstrapWizard a:focus {
        text-decoration: none;
    }

    .bootstrapWizard li {
        display: block;
        float: left;
        width: 25%;
        text-align: center;
        padding-left: 0;
    }

        .bootstrapWizard li:before {
            border-top: 3px solid #55606E;
            content: "";
            display: block;
            font-size: 0;
            overflow: hidden;
            position: relative;
            top: 11px;
            right: 1px;
            width: 100%;
            z-index: 1;
        }

        .bootstrapWizard li:first-child:before {
            left: 50%;
            max-width: 50%;
        }

        .bootstrapWizard li:last-child:before {
            max-width: 50%;
            width: 50%;
        }

        .bootstrapWizard li.complete .step {
            background: #0aa66e;
            padding: 1px 6px;
            border: 3px solid #55606E;
        }

        .bootstrapWizard li.complete .title {
            color: #2B3D53;
        }

        .bootstrapWizard li .step {
            background: #B2B5B9;
            color: #ffffff;
            display: inline;
            font-size: 15px;
            font-weight: bold;
            line-height: 12px;
            padding: 7px 13px;
            border: 3px solid transparent;
            border-radius: 50%;
            line-height: normal;
            position: relative;
            text-align: center;
            z-index: 2;
            transition: all 0.1s linear 0s;
        }

            .bootstrapWizard li .step i {
                font-size: 10px;
                font-weight: normal;
                position: relative;
                top: -1.5px;
            }

        .bootstrapWizard li.active .step, .bootstrapWizard li.active.complete .step {
            background: #0091d9;
            color: #ffffff;
            font-weight: bold;
            padding: 7px 13px;
            font-size: 15px;
            border-radius: 50%;
            border: 3px solid #55606E;
        }

        .bootstrapWizard li.active .title {
            color: #2B3D53;
        }

        .bootstrapWizard li .title {
            color: #bfbfbf;
            display: block;
            font-size: 13px;
            line-height: 15px;
            max-width: 100%;
            position: relative;
            table-layout: fixed;
            text-align: center;
            top: 20px;
            word-wrap: break-word;
            z-index: 104;
        }

.wizard-actions {
    display: block;
    list-style: none;
    padding: 0;
    position: relative;
    width: 100%;
}

    .wizard-actions li {
        display: inline;
    }

.tab-content.transparent {
    background-color: transparent;
}

/*
 * FUELUX WIZARD
 */
.fuelux .wizard {
    position: relative;
    overflow: hidden;
    background-color: #f9f9f9;
    border: 1px solid #d4d4d4;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    *zoom: 1;
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
    -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
}

    .fuelux .wizard:before, .fuelux .wizard:after {
        display: table;
        line-height: 0;
        content: "";
    }

    .fuelux .wizard:after {
        clear: both;
    }

    .fuelux .wizard ul {
        width: 4000px;
        padding: 0;
        margin: 0;
        list-style: none outside none;
    }

        .fuelux .wizard ul.previous-disabled li.complete {
            cursor: default;
        }

            .fuelux .wizard ul.previous-disabled li.complete:hover {
                color: #356e35;
                cursor: default;
                background: #f3f4f5;
            }

                .fuelux .wizard ul.previous-disabled li.complete:hover .chevron:before {
                    border-left-color: #f3f4f5;
                }

        .fuelux .wizard ul li {
            position: relative;
            float: left;
            height: 46px;
            padding: 0 20px 0 30px;
            margin: 0;
            font-size: 16px;
            line-height: 46px;
            color: #999999;
            cursor: default;
            background: #ededed;
        }

            .fuelux .wizard ul li .chevron {
                position: absolute;
                top: 0;
                right: -14px;
                z-index: 1;
                display: block;
                border: 24px solid transparent;
                border-right: 0;
                border-left: 14px solid #d4d4d4;
            }

                .fuelux .wizard ul li .chevron:before {
                    position: absolute;
                    top: -24px;
                    right: 1px;
                    display: block;
                    border: 24px solid transparent;
                    border-right: 0;
                    border-left: 14px solid #ededed;
                    content: "";
                }

            .fuelux .wizard ul li.complete {
                color: #468847;
                background: #f3f4f5;
            }

                .fuelux .wizard ul li.complete:hover {
                    cursor: pointer;
                    background: #e7eff8;
                }

                    .fuelux .wizard ul li.complete:hover .chevron:before {
                        border-left: 14px solid #e7eff8;
                    }

                .fuelux .wizard ul li.complete .chevron:before {
                    border-left: 14px solid #f3f4f5;
                }

            .fuelux .wizard ul li.active {
                color: #3a87ad;
                background: #f1f6fc;
            }

                .fuelux .wizard ul li.active .chevron:before {
                    border-left: 14px solid #f1f6fc;
                }

            .fuelux .wizard ul li .badge {
                margin-right: 8px;
            }

            .fuelux .wizard ul li:first-child {
                padding-left: 20px;
                border-radius: 4px 0 0 4px;
            }

    .fuelux .wizard .actions {
        position: absolute;
        right: 0;
        z-index: 2;
        float: right;
        padding-right: 15px;
        padding-left: 15px;
        line-height: 46px;
        vertical-align: middle;
        background-color: #eeeeee;
        border-left: 1px solid #d4d4d4;
    }

        .fuelux .wizard .actions a {
            margin-right: 8px;
            font-size: 12px;
            line-height: 45px;
        }

        .fuelux .wizard .actions .btn-prev i {
            margin-right: 5px;
        }

        .fuelux .wizard .actions .btn-next i {
            margin-left: 5px;
        }

.fuelux .step-content .step-pane {
    display: none;
}

.fuelux .step-content .active {
    display: block;
}

    .fuelux .step-content .active .btn-group .active {
        display: inline-block;
    }

/*
 * jarvismetro TILE
 */
.jarvismetro-tile {
    float: left;
    display: block;
    background-color: #ffffff;
    width: 100px;
    height: 70px;
    cursor: pointer;
    box-shadow: inset 0px 0px 1px #FFFFCC;
    border: 1px dotted #C5C5C5;
    text-decoration: none;
    color: #ffffff;
    font-weight: 300;
    font-smooth: always;
    margin: 0 10px 20px 0;
    padding: 5px;
    position: relative;
}

    .jarvismetro-tile:hover {
        z-index: 10;
        -webkit-transform: scale(1.07);
        -moz-transform: scale(1.07);
        -ms-transform: scale(1.07);
        -o-transform: scale(1.07);
        transform: scale(1.07);
    }

    .jarvismetro-tile.big-cubes {
        width: 120px;
        height: 120px;
    }

    .jarvismetro-tile.double {
        width: 249px;
    }

    .jarvismetro-tile:active {
        top: 1px;
        left: 1px;
    }

    .jarvismetro-tile .iconbox {
        text-align: center;
    }

        .jarvismetro-tile .iconbox i {
            display: block;
            margin: 15px auto 0;
            height: 75px;
        }

        .jarvismetro-tile .iconbox span {
            display: block;
            text-align: left;
        }

            .jarvismetro-tile .iconbox span > span {
                position: absolute;
                right: -3px;
                bottom: -3px;
                border-radius: 50%;
                padding: 5px 5px;
                border: 1px solid #ffffff;
            }

.selected {
    border: 1px solid #0091d9 !important;
    position: relative;
}

    .selected:before {
        display: block;
        position: absolute;
        content: "\f00c";
        color: #ffffff;
        right: 4px;
        top: 3px;
        font-family: FontAwesome;
        z-index: 2;
    }

    .selected:after {
        width: 0;
        height: 0;
        border-top: 35px solid #0091d9;
        border-left: 35px solid transparent;
        position: absolute;
        display: block;
        right: 0;
        content: "";
        top: 0;
        z-index: 1;
    }

/*
 * SHORT CUT
 */
#shortcut {
    display: block;
    position: absolute;
    top: 0px;
    left: 0;
    height: auto;
    width: 100%;
    background-color: #33302F;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 907;
    display: none;
    color: #ffffff;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    #shortcut ul {
        padding: 15px 20px 10px;
        list-style: none;
        margin: 0;
        -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
        -moz-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
        border-bottom: 1px solid #423F3F;
    }

        #shortcut ul li {
            display: inline-block;
            width: auto;
        }

            #shortcut ul li .jarvismetro-tile {
                margin: 0px 3px 3px;
                border: none;
                -webkit-border-radius: 0px;
                -moz-border-radius: 0px;
                -ms-border-radius: 0px;
                -o-border-radius: 0px;
                border-radius: 0px;
            }

                #shortcut ul li .jarvismetro-tile:hover {
                    color: #ffffff;
                    text-decoration: none;
                }

                #shortcut ul li .jarvismetro-tile:active, #shortcut ul li .jarvismetro-tile:focus {
                    left: 0;
                    top: 0;
                }

#shortcut-on #response-btn {
    display: none !important;
}

#shortcut-on #main .navbar, #shortcut-on #left-bar .navbar {
    border: none !important;
}

/*
 * ARROW BOX
 */
.arrow-box-up:after, .arrow-box-up:before {
    bottom: 100%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.arrow-box-up:after {
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: #ffffff;
    border-width: 7px;
    left: 50%;
    margin-left: -7px;
}

.arrow-box-up:before {
    border-color: rgba(131, 131, 131, 0);
    border-bottom-color: #838383;
    border-width: 8px;
    left: 50%;
    margin-left: -8px;
}

.arrow-box-up-right:after, .arrow-box-up-right:before {
    bottom: 100%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.arrow-box-up-right:after {
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: #ffffff;
    border-width: 7px;
    right: 10px;
    margin-left: -7px;
}

.arrow-box-up-right:before {
    border-color: rgba(131, 131, 131, 0);
    border-bottom-color: #838383;
    border-width: 8px;
    right: 9px;
    margin-left: -8px;
}

/*
 * BOOTSTRAP TOOLTIP
 */
.tooltip-inner {
    padding: 5px 10px;
    font-size: 11px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    border-radius: 0px;
}

/*
 * SPARKLINE
 */
.jqstooltip {
    padding: 7px !important;
    -webkit-border-radius: 3px !important;
    -moz-border-radius: 3px !important;
    -ms-border-radius: 3px !important;
    -o-border-radius: 3px !important;
    border-radius: 3px !important;
    border: none !important;
    background-color: #000000 !important;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

    .jqstooltip .jqsfield {
        font-family: "Segoe UI", "Open Sans", Calibri, Candara, Arial, sans-serif;
        font-size: 11px;
    }

#sparks {
    display: block;
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
    text-align: right;
}

    #sparks li {
        display: inline-block;
        max-height: 47px;
        overflow: hidden;
        text-align: left;
        -webkit-box-sizing: content-box;
        -moz-box-sizing: content-box;
        box-sizing: content-box;
        border-left: 1px dotted #c7c7c7;
        padding: 0 10px;
    }

        #sparks li h5 {
            color: #555;
            float: left;
            font-size: 11px;
            font-weight: normal;
            margin: -3px 0 0 0;
            padding: 0;
            border: none;
            text-transform: uppercase;
        }

        #sparks li span {
            color: #636363;
            display: block;
        }

        #sparks li:last-child {
            padding-right: 0;
        }

        #sparks li:first-child {
            border-left: none;
            padding-left: 0;
        }

.sparks-info {
    min-width: 70px;
}

    .sparks-info span {
        font-size: 18px;
        line-height: 20px;
        margin: 0;
        text-transform: none;
    }

    .sparks-info .sparkline {
        display: block;
        float: right;
        margin: 3px 0 0 20px;
    }

/*
 * WEBKIT SCROLLING CSS
 * Reference: http://stackoverflow.com/questions/10592657/scrollbar-stylesheet
 * GitHub Source: https://gist.github.com/jambu/2004633
 */
.custom-scroll::-webkit-scrollbar {
    -webkit-overflow-scrolling: touch;
    height: 10px;
    width: 10px;
}

    .custom-scroll::-webkit-scrollbar:hover {
        background-color: #E9E9E9;
        border: 1px solid #dbdbdb;
    }

.custom-scroll::-webkit-scrollbar-button:start:decrement, .custom-scroll::-webkit-scrollbar-button:end:increment {
    background: transparent;
    display: block;
    height: 0;
}

.custom-scroll::-webkit-scrollbar-track {
    background-clip: padding-box;
    border-width: 0 0 0 4px;
    border: solid transparent;
}

.custom-scroll::-webkit-scrollbar-track-piece {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    background-color: transparent;
}

.custom-scroll::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.07);
    -moz-box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.07);
    box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.07);
    -webkit-background-clip: padding;
    -moz-background-clip: padding;
    background-clip: padding-box;
    background-color: rgba(0, 0, 0, 0.2);
    border-width: 0;
    border: none;
}

    .custom-scroll::-webkit-scrollbar-thumb:vertical, .custom-scroll::-webkit-scrollbar-thumb:horizontal {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
        background-color: #bfbfbf;
        border-radius: 0;
    }

    .custom-scroll::-webkit-scrollbar-thumb:active {
        -webkit-box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.33);
        -moz-box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.33);
        box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.33);
        background-color: rgba(0, 0, 0, 0.44);
        box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.33);
    }

    .custom-scroll::-webkit-scrollbar-thumb:hover {
        background-color: #959595;
    }

/*
 * Typehead
 */
.twitter-typehead .tt-query, .twitter-typehead .tt-hint {
    margin-bottom: 0;
}

.tt-droopdown-menu {
    min-width: 160px;
    margin-top: 2px;
    padding: 5px 0;
    background-color: #ffffff;
    border: 1px solid #bfbfbf;
    border: 1px solid rgba(0, 0, 0, 0.2);
    *border-right-width: 2px;
    *border-bottom-width: 2px;
    -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;
    -moz-background-clip: padding;
    background-clip: padding-box;
}

.tt-suggestion {
    display: block;
    padding: 3px 20px;
}

    .tt-suggestion.tt-is-under-cursor {
        color: #ffffff;
        background-color: #0081c2;
    }

        .tt-suggestion.tt-is-under-cursor a {
            color: #ffffff;
        }

    .tt-suggestion p {
        margin: 0;
    }

/*
 * Google Maps
 */
.google_maps {
    width: 100%;
    height: 350px;
    position: relative;
}

    .google_maps * {
        -webkit-box-sizing: content-box;
        -moz-box-sizing: content-box;
        box-sizing: content-box;
    }

    .google_maps img {
        max-width: none;
        /* needed for google map popup*/
    }

/*
 * Header btn
 */
.header-btn {
    margin-top: 5px;
}

.tree {
    min-height: 20px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
}

    .tree li {
        list-style-type: none;
        margin: 0;
        padding: 5px;
        position: relative;
    }

        .tree li:before, .tree li:after {
            content: '';
            left: -20px;
            position: absolute;
            right: auto;
        }

        .tree li :before {
            border-left: 1px solid #999999;
            bottom: 50px;
            height: 100%;
            top: -11px;
            width: 1px;
            -webkit-transition: "border-color 0.1s ease 0.1s" false false;
            -moz-transition: "border-color 0.1s ease 0.1s" false false false;
            -o-transition: "border-color 0.1s ease 0.1s" false false false;
            transition: "border-color 0.1s ease 0.1s";
        }

        .tree li :after {
            border-top: 1px solid #999999;
            height: 20px;
            top: 18px;
            width: 25px;
        }

        .tree li span {
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            -ms-border-radius: 5px;
            -o-border-radius: 5px;
            border-radius: 5px;
            border: 1px dotted #999999;
            display: inline-block;
            padding: 3px 8px;
            text-decoration: none;
            -webkit-transition: color, 0.2s, ease, 0.1s background-color 0.2s ease 0.1s false, border-color 0.3s ease;
            -webkit-transition-delay: 0s, 0.2s;
            -moz-transition: color, 0.2s, ease, 0.1s background-color 0.2s ease 0.1s false false, border-color 0.3s ease 0.2s;
            -o-transition: color, 0.2s, ease, 0.1s background-color 0.2s ease 0.1s false false, border-color 0.3s ease 0.2s;
            transition: color 0.2s ease 0.1s, background-color 0.2s ease 0.1s, border-color 0.3s ease 0.2s;
        }

        .tree li.parent_li > span {
            cursor: pointer;
            padding: 7px;
        }

            .tree li.parent_li > span:hover, .tree li.parent_li > span:hover + ul li span {
                background: #eee;
                border: 1px solid #94a0b4;
                color: #000000;
            }

            .tree li.parent_li > span:hover {
                background-color: #DF8505;
                border: 1px solid #C67605;
                color: #ffffff;
            }

                .tree li.parent_li > span:hover + ul li::before {
                    border-left-color: #F89406;
                }

                .tree li.parent_li > span:hover + ul li ::after {
                    border-top-color: #F89406;
                }

                .tree li.parent_li > span:hover + ul li span {
                    background: #FDDFB3 !important;
                    border: 1px solid #FAA937;
                    color: #000;
                }

        .tree li:last-child::before {
            height: 30px;
        }

    .tree ul ul {
        padding-left: 34px;
        padding-top: 10px;
    }

        .tree ul ul li:hover {
            background: rgba(0, 0, 0, 0.015);
        }

    .tree > ul {
        padding-left: 0;
    }

        .tree > ul > li:before, .tree > ul > li:after {
            border: 0;
        }

/*
 * VECTOR MAP
 */
.jvectormap-label {
    position: absolute;
    display: none;
    border: solid 1px #CDCDCD;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    background: #292929;
    color: white;
    font-family: sans-serif, Verdana;
    font-size: smaller;
    padding: 3px;
}

.jvectormap-zoomin, .jvectormap-zoomout {
    position: absolute;
    background: #292929;
    padding: 4px;
    width: 22px;
    height: 22px;
    cursor: pointer;
    line-height: 10px;
    text-align: center;
    font-size: 14px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
    -webkit-box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.05);
    -moz-box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
    border: 1px solid #bfbfbf;
}

    .jvectormap-zoomin:hover, .jvectormap-zoomout:hover {
        background: #eeeeee;
        border-color: #d9d9d9;
    }

.jvectormap-zoomin {
    top: 0;
}

.jvectormap-zoomout {
    top: 24px;
}

.vector-map {
    height: 300px;
    width: 100%;
    padding: 10px;
}

#heat-fill {
    display: block;
    position: relative;
    margin-bottom: 20px;
    background: #333333;
    height: 7px;
    width: 200px;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAAABCAIAAAAU3Xa1AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDowMDE4MkZGMzMzOTgxMUUzODZBQUNFQUNFOTk0NEUxRiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDowMDE4MkZGNDMzOTgxMUUzODZBQUNFQUNFOTk0NEUxRiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjAwMTgyRkYxMzM5ODExRTM4NkFBQ0VBQ0U5OTQ0RTFGIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjAwMTgyRkYyMzM5ODExRTM4NkFBQ0VBQ0U5OTQ0RTFGIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+rG8MDAAAAM5JREFUeNpUUtESwyAIg8ft9v8/W4ElBPWKV1AIiKEeEWVuVlWjINSVONBnirQDxukNgcuyTQsBzLHMDsLIQQw+nIL71JqNJ5GZJXApFNpmtlagQjfS2xGbkFA4Iwu+hu0sK3Wl3nOwNv7TvPrWk3X0eW9dK1pU9hK2eTuWb2ySJmlziutA3iBxmblPNvA5PNsuUpoDY80+Z0SW1IRpDEqwC58C14tsr1f8le8si0aojdADr/1UjaclsFashX8GGkL9wDxtRsV6ft/PX4ABADRzhOVIOJaAAAAAAElFTkSuQmCC);
}

.fill-a, .fill-b {
    width: 20px;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    background: #ffffff;
    padding-right: 4px;
    position: absolute;
    left: 0px;
    margin-top: -7px;
    font-weight: bold;
}

.fill-b {
    text-align: left;
    position: absolute;
    right: 0px;
    left: auto;
    top: 0px;
    width: 60px;
    padding-left: 4px;
    padding-right: 0px;
}

/*
 * CKEDITOR
 */
.cke_top {
    background: rgba(248, 248, 248, 0.9) !important;
    background-image: none !important;
}

/*
 * BS Multiselect
 * TODO:
 */
.multiselect-container {
    position: absolute;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

    .multiselect-container .input-group {
        margin: 5px;
    }

    .multiselect-container > li {
        padding: 0;
    }

        .multiselect-container > li > a.multiselect-all label {
            font-weight: bold;
        }

        .multiselect-container > li > a.multiselect-group {
            margin: 0;
            padding: 3px 20px 3px 20px;
            height: 100%;
            font-weight: bold;
        }

        .multiselect-container > li > a > label {
            margin: 0;
            height: 100%;
            cursor: pointer;
            font-weight: normal;
        }

            .multiselect-container > li > a > label.radio, .multiselect-container > li > a > label.checkbox {
                margin: 0;
            }

            .multiselect-container > li > a > label > input[type="checkbox"] {
                margin-bottom: 5px;
            }

.btn-group > .btn-group:nth-child(2) > .multiselect.btn {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

/*
 * FORMS: INPUT WITH ICONS
 */
.input-group .icon-addon .form-control {
    border-radius: 0;
}

.input-group-lg .icon-addon.addon-lg + .input-group-btn > .btn {
    height: 46px;
}

.icon-addon {
    position: relative;
    color: #555;
    display: block;
}

    .icon-addon:after, .icon-addon:before {
        display: table;
        content: " ";
    }

    .icon-addon:after {
        clear: both;
    }

    .icon-addon.addon-md .glyphicon, .icon-addon .glyphicon, .icon-addon.addon-md .fa, .icon-addon .fa {
        position: absolute;
        z-index: 2;
        left: 10px;
        width: 20px;
        margin-left: -2.5px;
        text-align: center;
        padding: 10px 0;
        top: 1px;
    }

    .icon-addon .form-control {
        padding-left: 30px;
        float: left;
        font-weight: normal;
    }

        .icon-addon .form-control:focus + .glyphicon, .icon-addon .form-control:focus + .fa {
            color: #2580db;
        }

    .icon-addon:hover .glyphicon, .icon-addon:hover .fa {
        color: #2580db;
    }

    .icon-addon.addon-lg .form-control {
        line-height: 1.33;
        height: 46px;
        font-size: 18px;
        padding: 10px 16px 10px 40px;
    }

    .icon-addon.addon-lg .fa, .icon-addon.addon-lg .glyphicon {
        font-size: 18px;
        margin-left: 0;
        left: 11px;
        top: 4px;
    }

    .icon-addon.addon-sm .form-control {
        height: 30px;
        padding: 5px 10px 5px 28px;
        font-size: 12px;
        line-height: 1.5;
    }

    .icon-addon.addon-sm .fa, .icon-addon.addon-sm .glyphicon {
        margin-left: 0;
        font-size: 12px;
        left: 5px;
        top: -1px;
    }

    .icon-addon.addon-md .form-control {
        padding-left: 30px;
        float: left;
        font-weight: normal;
    }

    .icon-addon input:disabled + .glyphicon, .icon-addon input:disabled + .fa {
        color: #ccc;
    }

    .icon-addon select:disabled + .glyphicon, .icon-addon select:disabled + .fa {
        color: #ccc;
    }

/*
    ██╗   ██╗     █████╗     ██████╗ 
    ╚██╗ ██╔╝    ██╔══██╗    ██╔══██╗
     ╚████╔╝     ███████║    ██████╔╝
      ╚██╔╝      ██╔══██║    ██╔═══╝ 
       ██║       ██║  ██║    ██║     
       ╚═╝       ╚═╝  ╚═╝    ╚═╝     
*/
/* This issue relates to container + toggle menu with a result of overflow. */
html.hidden-menu-mobile-lock {
    overflow-x: hidden;
}

/*
    ██╗   ██╗     █████╗     ██████╗ 
    ╚██╗ ██╔╝    ██╔══██╗    ██╔══██╗
     ╚████╔╝     ███████║    ██████╔╝
      ╚██╔╝      ██╔══██║    ██╔═══╝ 
       ██║       ██║  ██║    ██║     
       ╚═╝       ╚═╝  ╚═╝    ╚═╝     
*/
/*
 * No Padding
 */
.no-content-padding {
    margin: -10px -14px 0 -14px;
    /*used with content >:first-child */
}

.no-padding {
    padding: 0px !important;
}

    .no-padding > pre {
        margin: 30px;
    }

    .no-padding > table {
        border: none !important;
        margin-bottom: 0px !important;
        border-bottom-width: 0px !important;
    }

        .no-padding > table tr td:last-child, .no-padding > table tr th:last-child, .no-padding > table tr td:first-child, .no-padding > table tr th:first-child {
            border-right: none !important;
        }

    .no-padding .dataTables_wrapper table {
        border: none !important;
        margin-bottom: 0px !important;
        border-bottom-width: 0px !important;
    }

        .no-padding .dataTables_wrapper table tr td:last-child, .no-padding .dataTables_wrapper table tr th:last-child, .no-padding .dataTables_wrapper table tr td:first-child, .no-padding .dataTables_wrapper table tr th:first-child {
            border-right: none !important;
        }

        .no-padding .dataTables_wrapper table tbody tr:last-child td {
            border-bottom: 0;
        }

.no-padding-bottom {
    padding-bottom: 0px !important;
}

.padding-5 {
    padding: 5px !important;
}

.padding-7 {
    padding: 7px !important;
}

.padding-10 {
    padding: 10px !important;
}

.padding-gutter {
    padding: 13px !important;
}

.padding-top-10 {
    padding-top: 10px !important;
}

.padding-top-15 {
    padding-top: 15px !important;
}

.padding-bottom-10 {
    padding-bottom: 10px !important;
}

.padding-bottom-0 {
    padding-bottom: 0px !important;
}

.padding-top-0 {
    padding-top: 0px !important;
}

/*
 * Font Weights
 */
.semi-bold {
    font-weight: 400 !important;
}

.ultra-light {
    font-weight: 300 !important;
}

/*
 * Font Sizes
 */
.font-xs {
    font-size: 85% !important;
}

.font-sm {
    font-size: 95% !important;
}

.font-md {
    font-size: 130% !important;
}

.font-lg {
    font-size: 160% !important;
}

.font-xl {
    font-size: 200% !important;
}

.font-400 {
    font-size: 400% !important;
}

/*
 * Margins
 */
.no-margin {
    margin: 0px !important;
}

.margin-top-5 {
    margin-top: 5px !important;
}

.margin-top-10 {
    margin-top: 10px !important;
}

.margin-bottom-5 {
    margin-bottom: 5px !important;
}

.margin-bottom-10 {
    margin-bottom: 10px !important;
}

.margin-right-5 {
    margin-right: 5px !important;
}

.margin-top-0 {
    margin-top: 0px !important;
}

.margin-bottom-0 {
    margin-bottom: 0px !important;
}

/*
 * No border
 */
.well[class*=" bg-"].no-border {
    border-width: 0px !important;
}

.no-border {
    border-width: 0px !important;
}

.no-border-transparent {
    border-color: transparent !important;
}

.no-border-radius {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}

/*
 * Inlines
 */
.display-inline {
    display: inline-block !important;
}

.display-normal {
    display: inline !important;
}

/*
 * CURSORS
 */
.cursor-pointer {
    cursor: pointer;
}

/*
 * Images
 */
.hover-transparent {
    opacity: .5;
}

    .hover-transparent:hover {
        opacity: 1;
    }

/*
 * Forced text alignments
 */
.text-align-center {
    text-align: center !important;
}

.text-align-left {
    text-align: left !important;
}

.text-align-right {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

/*
 * HR
 */
hr.simple {
    margin-top: 10px;
    margin-bottom: 10px;
    border-style: dashed;
}

/*
 * SHORT CUTS
 */
.pull-right {
    float: right !Important;
}

.pull-left {
    float: left !Important;
}

/*
 * Air fields
 * Description: absolute positioned objects
 */
.air {
    position: absolute;
    z-index: 5;
}

.air-bottom {
    bottom: 0px;
}

.air-bottom-left {
    bottom: 0px;
    left: 0px;
}

.air-bottom-right {
    bottom: 0px;
    right: 0px;
}

.air-top {
    top: 0px;
}

.air-top-right {
    top: 0px;
    right: 0px;
}

.air-top-left {
    top: 0px;
    left: 0px;
}

/*
 * Display none
 */
.display-none {
    display: none !important;
}

/*
    ██╗   ██╗     █████╗     ██████╗ 
    ╚██╗ ██╔╝    ██╔══██╗    ██╔══██╗
     ╚████╔╝     ███████║    ██████╔╝
      ╚██╔╝      ██╔══██║    ██╔═══╝ 
       ██║       ██║  ██║    ██║     
       ╚═╝       ╚═╝  ╚═╝    ╚═╝     
*/
/*
 * Custom Radio and Input
 * SETUP
 */
.checkbox input[type="checkbox"].checkbox + input[type="hidden"] + span,
.checkbox input[type="checkbox"].checkbox + span {
    margin-left: -20px;
}

.checkbox-inline input[type="checkbox"].checkbox + input[type="hidden"] + span,
.checkbox-inline input[type="checkbox"].checkbox + span {
    margin-left: -20px;
}

.radiobox-inline input[type="radio"].radiobox + span {
    margin-left: -20px;
}

.radio input[type="radio"].radiobox + span {
    margin-left: -20px;
}

.form-inline .checkbox input[type="checkbox"].checkbox + span, .form-inline .radiobox input[type="radio"].radiobox + span {
    margin-left: 0px;
}

.form-inline .checkbox, .form-inline .radiobox {
    padding-left: 0px;
}

label input[type="radio"].radiobox + span {
    vertical-align: middle;
    line-height: 20px;
    position: relative;
    z-index: 19;
    display: inline-block;
    margin: 0;
    line-height: 17px;
    min-height: 14px;
    min-width: 14px;
    margin-right: 5px;
}

    label input[type="radio"].radiobox + span:hover {
        cursor: pointer;
    }

    label input[type="radio"].radiobox + span:before {
        font-family: 'FontAwesome';
        font-size: 12px;
        border-radius: 0;
        content: "\a0";
        /* we use '\a0'; to simulate a non-breaking-space (http://milov.nl/7029) */
        display: inline-block;
        text-align: center;
        vertical-align: middle;
        padding: 1px;
        height: 12px;
        line-height: 12px;
        min-width: 12px;
        margin-right: 5px;
        border: 1px solid #bfbfbf;
        background-color: #f4f4f4;
        font-weight: normal;
        margin-top: -1px;
        content: "\a0";
        /* we use '\a0'; to simulate a non-breaking-space (http://milov.nl/7029) */
        -webkit-border-radius: 50px;
        -moz-border-radius: 50px;
        -ms-border-radius: 50px;
        -o-border-radius: 50px;
        border-radius: 50px;
        box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 0px 0px rgba(255, 255, 255, 0.2);
    }

label input[type="radio"].radiobox:checked + span {
    font-weight: bold;
}

    label input[type="radio"].radiobox:checked + span:before {
        /* DEFAULT COLOR */
        content: "\f111";
        /* circle */
        color: #2E7BCC;
    }

label input[type="radio"].radiobox.style3:checked + span:before {
    color: #a90329;
    border-color: #a90329;
}

label input[type="radio"].radiobox.style2:checked + span {
    font-weight: normal;
}

    label input[type="radio"].radiobox.style2:checked + span:before {
        color: #66665e;
        border-color: #4d90fe;
        font-size: 9px;
    }

label input[type="radio"].radiobox.style-1 + span:before {
    font-size: 9px;
    background: #ffffff;
    text-shadow: none;
    box-shadow: none !important;
    border-width: 1px;
    height: 13px;
    line-height: 13px;
    min-width: 13px;
}

label input[type="radio"].radiobox.style-1:checked + span {
    font-weight: normal;
}

    label input[type="radio"].radiobox.style-1:checked + span:before {
        font-size: 10px;
        color: #333333;
        border-color: #333333;
        background: #ffffff;
    }

label input[type="radio"][disabled].radiobox + span, label input[type="radio"][disabled].radiobox:checked + span {
    color: #A7A7A7;
    cursor: not-allowed;
}

    label input[type="radio"][disabled].radiobox:checked + span:before {
        content: "\f111";
        background: #eee !important;
        border-color: #CCC !important;
        box-shadow: none;
        color: #A7A7A7;
    }

    label input[type="radio"][disabled].radiobox + span:before {
        background: #eee !important;
        border-color: #CCC !important;
        box-shadow: none;
        color: #A7A7A7;
    }

label input[type="checkbox"].checkbox + span, label input[type="checkbox"].checkbox + input[type="hidden"] + span {
    position: relative;
    z-index: 19;
    display: inline-block;
    margin: 0;
    line-height: 17px;
    min-height: 14px;
    min-width: 14px;
    margin-right: 5px;
}

    label input[type="checkbox"].checkbox + span:hover, label input[type="checkbox"].checkbox + input[type="hidden"] + span:hover {
        cursor: pointer;
    }

    label input[type="checkbox"].checkbox + span:before, label input[type="checkbox"].checkbox + input[type="hidden"] + span:before {
        font-family: 'FontAwesome';
        font-size: 12px;
        border-radius: 0;
        content: "\a0";
        /* we use '\a0'; to simulate a non-breaking-space (http://milov.nl/7029) */
        display: inline-block;
        text-align: center;
        vertical-align: middle;
        padding: 1px;
        height: 12px;
        line-height: 12px;
        min-width: 12px;
        margin-right: 5px;
        border: 1px solid #bfbfbf;
        background-color: #f4f4f4;
        font-weight: normal;
        margin-top: -1px;
        content: "\a0";
        /* we use '\a0'; to simulate a non-breaking-space (http://milov.nl/7029) */
    }

label input[type="checkbox"].checkbox:checked + span:before, label input[type="checkbox"].checkbox:checked + input[type="hidden"] + span:before {
    content: "\f00c";
    color: #2E7BCC;
}

label input[type="checkbox"].checkbox:checked + span, label input[type="checkbox"].checkbox:checked + input[type="hidden"] + span {
    font-weight: bold;
}

label input[type="checkbox"].checkbox.style-3:checked + span:before, label input[type="checkbox"].checkbox.style-3:checked + input[type="hidden"] + span:before {
    color: #ffffff;
    border-color: #a90329;
    background: #a90329;
}

label input[type="checkbox"].checkbox.style-2 + span:before, label input[type="checkbox"].checkbox.style-2 + input[type="hidden"] + span:before {
    background: transparent;
    border-color: #c1c1c1;
    box-shadow: none;
}

label input[type="checkbox"].checkbox.style-2:checked + span:before, label input[type="checkbox"].checkbox.style-2:checked + input[type="hidden"] + span:before {
    content: "\f00c";
    color: #66665e;
    border-color: #4d90fe;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYxIDY0LjE0MDk0OSwgMjAxMC8xMi8wNy0xMDo1NzowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNS4xIFdpbmRvd3MiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MUQ0MEM4RUFEQUE4MTFFMkEwMjM5NzlCRjAxM0UwRjciIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MUQ0MEM4RUJEQUE4MTFFMkEwMjM5NzlCRjAxM0UwRjciPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDoxRDQwQzhFOERBQTgxMUUyQTAyMzk3OUJGMDEzRTBGNyIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDoxRDQwQzhFOURBQTgxMUUyQTAyMzk3OUJGMDEzRTBGNyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PsD/PVAAAAAQSURBVHjaYv7//78vQIABAAlYA05NMPppAAAAAElFTkSuQmCC) #ffffff;
    /*#fefeec*/
}

label input[type="checkbox"].checkbox.style-2:checked + span, label input[type="checkbox"].checkbox.style-2:checked + input[type="hidden"] + span {
    font-weight: normal;
}

label input[type="checkbox"].checkbox.style-1 + span:before, label input[type="checkbox"].checkbox.style-1 + input[type="hidden"] + span:before {
    color: #333333;
    background: #ffffff;
    text-shadow: none;
    box-shadow: none !important;
    border-width: 1px;
    height: 12px;
    line-height: 13px;
    min-width: 12px;
}

label input[type="checkbox"].checkbox.style-1:checked + span:before, label input[type="checkbox"].checkbox.style-1:checked + input[type="hidden"] + span:before {
    color: #333333;
    border-color: #333333;
}

label input[type="checkbox"].checkbox.style-1:checked + span, label input[type="checkbox"].checkbox.style-1:checked + input[type="hidden"] + span {
    font-weight: normal;
}

label input[type="checkbox"][disabled].checkbox + span, label input[type="checkbox"][disabled].checkbox:checked + span, label input[type="checkbox"][disabled].checkbox + input[type="hidden"] + span, label input[type="checkbox"][disabled].checkbox:checked + input[type="hidden"] + span {
    color: #A7A7A7;
    cursor: not-allowed;
}

    label input[type="checkbox"][disabled].checkbox + span:before {
        background: #eee !important;
        border-color: #CCC !important;
        box-shadow: none;
        color: #A7A7A7;
        box-shadow: none !important;
    }

    label input[type="checkbox"][disabled].checkbox:checked + span:before, label input[type="checkbox"][disabled].checkbox:checked + input[type="hidden"] + span:before {
        content: "\f00c";
        color: #A7A7A7;
        background: #eee !important;
        border-color: #CCC !important;
        box-shadow: none;
        color: #A7A7A7;
        box-shadow: none !important;
    }

label input[type="checkbox"][disabled].checkbox.style-2:checked + span:before, label input[type="checkbox"][disabled].checkbox.style-2:checked + input[type="hidden"] + span:before {
    content: "\f00c";
}

label:hover input[type="radio"][disabled].radiobox:checked + span:before {
    color: #A7A7A7;
    cursor: not-allowed;
    background: #eee !important;
    border-color: #CCC !important;
    box-shadow: none;
    color: #A7A7A7;
}

label:hover input[type="radio"].radiobox + span:before, label:hover input[type="radio"].radiobox:checked + span:before {
    color: #2E7BCC;
    border-color: #2E7BCC;
}

label:hover input[type="radio"].radiobox.style-3 + span:before, label:hover input[type="radio"].radiobox.style-3:checked + span:before {
    color: #a90329;
    border-color: #a90329;
}

label:hover input[type="radio"].radiobox.style-2:checked + span:before {
    color: #66665e;
    border-color: #4d90fe;
}

label:hover input[type="radio"].radiobox.style-1:checked + span:before {
    color: #333333;
    border-color: #333333;
    background: #ffffff;
}

label:hover input[type="radio"].radiobox.style-1 + span:before {
    color: #333333;
    border-color: #333333;
    background: #ffffff;
}

label:hover input[type="checkbox"][disabled].checkbox:checked + span:before, label:hover input[type="checkbox"][disabled].checkbox:checked + input[type="hidden"] + span:before {
    color: #A7A7A7;
    cursor: not-allowed;
    background: #eee !important;
    border-color: #CCC !important;
    box-shadow: none;
    color: #A7A7A7;
    box-shadow: none !important;
}

label:hover input[type="checkbox"].checkbox + span:before, label:hover input[type="checkbox"].checkbox + input[type="hidden"] + span:before {
    color: #2E7BCC;
    border-color: #2E7BCC;
}

label:hover input[type="checkbox"].checkbox.style-3 + span:before, label:hover input[type="checkbox"].checkbox.style-3 + input[type="hidden"] + span:before {
    color: #ffffff;
    border-color: #A90327;
}

label:hover input[type="checkbox"].checkbox.style-2 + span:before, label:hover input[type="checkbox"].checkbox.style-2 + input[type="hidden"] + span:before {
    box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 0px 0px rgba(255, 255, 255, 0.2);
}

label:hover input[type="checkbox"].checkbox.style-2:checked + span:before, label:hover input[type="checkbox"].checkbox.style-2:checked + input[type="hidden"] + span:before {
    box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, 0.3), 0px 1px 0px 0px rgba(255, 255, 255, 0.4);
}

label:hover input[type="checkbox"].checkbox.style-1 + span:before, label:hover input[type="checkbox"].checkbox.style-1 + input[type="hidden"] + span:before {
    border-color: #333333;
}

label:active input[type="radio"].radiobox + span:before {
    box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, 0.3), 0px 1px 0px 0px rgba(255, 255, 255, 0.4);
}

label:active input[type="radio"][disabled].radiobox:checked + span:before {
    background: #eee !important;
    border-color: #CCC !important;
    box-shadow: none;
    color: #A7A7A7;
}

label:active input[type="checkbox"].checkbox + span:before, label:active input[type="checkbox"].checkbox + input[type="hidden"] + span:before {
    box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, 0.3), 0px 1px 0px 0px rgba(255, 255, 255, 0.4);
}

label:active input[type="checkbox"].checkbox:checked + span:before, label:active input[type="checkbox"].checkbox:checked + input[type="hidden"] + span:before {
    color: #ffffff;
    background: #2E7BCC;
    border-color: #2E7BCC;
}

label:active input[type="checkbox"].checkbox.style-1:checked + span:before, label:active input[type="checkbox"].checkbox.style-1:checked + input[type="hidden"] + span:before {
    color: #ffffff;
    background: #333333;
    border-color: #333333;
}

label:active input[type="checkbox"].checkbox.style-2 + span:before, label:active input[type="checkbox"].checkbox.style-2 + input[type="hidden"] + span:before {
    color: #66665e;
    background: transparent;
    border-color: #c1c1c1;
    box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, 0.3), 0px 1px 0px 0px rgba(255, 255, 255, 0.4);
}

label:active input[type="checkbox"].checkbox.style-2:checked + span:before, label:active input[type="checkbox"].checkbox.style-2:checked + input[type="hidden"] + span:before {
    color: #66665e;
    background: transparent;
    border-color: #c1c1c1;
    box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, 0.3), 0px 1px 0px 0px rgba(255, 255, 255, 0.4);
}

label:active input[type="checkbox"].checkbox.style-3:checked + span:before, label:active input[type="checkbox"].checkbox.style-3:checked + input[type="hidden"] + span:before {
    color: #a90329;
    background: #ffffff;
    border-color: #a90329;
}

label:active input[type="checkbox"][disabled].checkbox:checked + span:before, label:active input[type="checkbox"][disabled].checkbox:checked + input[type="hidden"] + span:before {
    background: #eee !important;
    border-color: #CCC !important;
    box-shadow: none;
    color: #A7A7A7;
    box-shadow: none !important;
}

input[type="checkbox"].checkbox {
    visibility: hidden;
    position: absolute;
    z-index: 20;
    width: 18px;
    height: 18px;
}

    input[type="checkbox"].checkbox + input[type="hidden"] + span, input[type="checkbox"].checkbox + span {
        vertical-align: middle;
        line-height: 20px;
    }

        input[type="checkbox"].checkbox + span,
        input[type="checkbox"].checkbox + span:after,
        input[type="checkbox"].checkbox + span:before,
        input[type="checkbox"].checkbox + input[type="hidden"] + span,
        input[type="checkbox"].checkbox + input[type="hidden"] + span:after,
        input[type="checkbox"].checkbox + input[type="hidden"] + span:before {
            -webkit-box-sizing: content-box !important;
            -moz-box-sizing: content-box !important;
            box-sizing: content-box !important;
        }

input[type="radio"].radiobox {
    visibility: hidden;
    position: absolute;
    z-index: 20;
    width: 18px;
    height: 18px;
}

    input[type="radio"].radiobox + span,
    input[type="radio"].radiobox + span:after,
    input[type="radio"].radiobox + span:before {
        -webkit-box-sizing: content-box !important;
        -moz-box-sizing: content-box !important;
        box-sizing: content-box !important;
    }

/*
    ██╗   ██╗     █████╗     ██████╗ 
    ╚██╗ ██╔╝    ██╔══██╗    ██╔══██╗
     ╚████╔╝     ███████║    ██████╔╝
      ╚██╔╝      ██╔══██║    ██╔═══╝ 
       ██║       ██║  ██║    ██║     
       ╚═╝       ╚═╝  ╚═╝    ╚═╝     
*/
/*
 * ANIMATED
 */
/* Navigation icon first level 
.desktop-detected nav > ul > li > a:hover i {
	-webkit-animation-name: wobble;
	-moz-animation-name: wobble;
	-o-animation-name: wobble;
	animation-name: wobble;
}
.desktop-detected nav > ul > li > a:hover i {
	-webkit-animation-duration: .7s;
	-moz-animation-duration: .7s;
	-o-animation-duration: .7s;
	animation-duration: .7s;
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
}*/
/* All dropdowns */
.open > .dropdown-menu {
    -webkit-animation-name: "flipInX";
    -moz-animation-name: "flipInX";
    -o-animation-name: "flipInX";
    animation-name: "flipInX";
    -webkit-animation-duration: .4s;
    -moz-animation-duration: .4s;
    -o-animation-duration: .4s;
    animation-duration: .4s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

.open + .ajax-dropdown {
    -webkit-animation-name: "flipInY";
    -moz-animation-name: "flipInY";
    -o-animation-name: "flipInY";
    animation-name: "flipInY";
    -webkit-animation-duration: .7s;
    -moz-animation-duration: .7s;
    -o-animation-duration: .7s;
    animation-duration: .7s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

/*
    ██╗   ██╗     █████╗     ██████╗ 
    ╚██╗ ██╔╝    ██╔══██╗    ██╔══██╗
     ╚████╔╝     ███████║    ██████╔╝
      ╚██╔╝      ██╔══██║    ██╔═══╝ 
       ██║       ██║  ██║    ██║     
       ╚═╝       ╚═╝  ╚═╝    ╚═╝     
*/
/*
     * USED WITH DEMO
     */
.square {
    display: block;
    float: left;
    margin-right: 10px;
    height: 20px;
    width: 20px;
}

/*
     * RESET BOOTSTRAP DEFAULT IE FILTER
     */
[class^="bg-"],
[class*=" bg-"] {
    filter: none !important;
}

/*
     * TEXT COLOR
     */
.txt-color-blue {
    color: #57889c !important;
}

.txt-color-blueLight {
    color: #92a2a8 !important;
}

.txt-color-blueDark {
    color: #4c4f53 !important;
}

.txt-color-green {
    color: #356e35 !important;
}

.txt-color-greenLight {
    color: #71843f !important;
}

.txt-color-greenDark {
    color: #496949 !important;
}

.txt-color-red {
    color: #a90329 !important;
}

.txt-color-yellow {
    color: #b09b5b !important;
}

.txt-color-orange {
    color: #b19a6b !important;
}

.txt-color-orangeDark {
    color: #a57225 !important;
}

.txt-color-pink {
    color: #ac5287 !important;
}

.txt-color-pinkDark {
    color: #a8829f !important;
}

.txt-color-purple {
    color: #6e587a !important;
}

.txt-color-darken {
    color: #404040 !important;
}

.txt-color-lighten {
    color: #d5e7ec !important;
}

.txt-color-white {
    color: #ffffff !important;
}

.txt-color-grayDark {
    color: #525252 !important;
}

.txt-color-magenta {
    color: #6e3671 !important;
}

.txt-color-teal {
    color: #568a89 !important;
}

.txt-color-redLight {
    color: #a65858 !important;
}

/*
     * BACKGROUNDS
     */
.bg-color-blue {
    background-color: #57889c !important;
}

.bg-color-blueLight {
    background-color: #92a2a8 !important;
}

.bg-color-blueDark {
    background-color: #4c4f53 !important;
}

.bg-color-green {
    background-color: #356e35 !important;
}

.bg-color-greenLight {
    background-color: #71843f !important;
}

.bg-color-greenDark {
    background-color: #496949 !important;
}

.bg-color-red {
    background-color: #a90329 !important;
}

.bg-color-yellow {
    background-color: #b09b5b !important;
}

.bg-color-orange {
    background-color: #c79121 !important;
}

.bg-color-orangeDark {
    background-color: #a57225 !important;
}

.bg-color-pink {
    background-color: #ac5287 !important;
}

.bg-color-pinkDark {
    background-color: #a8829f !important;
}

.bg-color-purple {
    background-color: #6e587a !important;
}

.bg-color-darken {
    background-color: #404040 !important;
}

.bg-color-lighten {
    background-color: #d5e7ec !important;
}

.bg-color-white {
    background-color: #ffffff !important;
}

.bg-color-grayDark {
    background-color: #525252 !important;
}

.bg-color-magenta {
    background-color: #6e3671 !important;
}

.bg-color-teal {
    background-color: #568a89 !important;
}

.bg-color-redLight {
    background-color: #a65858 !important;
}

/*
    ██╗   ██╗     █████╗     ██████╗ 
    ╚██╗ ██╔╝    ██╔══██╗    ██╔══██╗
     ╚████╔╝     ███████║    ██████╔╝
      ╚██╔╝      ██╔══██║    ██╔═══╝ 
       ██║       ██║  ██║    ██║     
       ╚═╝       ╚═╝  ╚═╝    ╚═╝     
*/
.page-footer {
    height: 40px;
    padding: 10px 15px 0;
    padding-left: 233px;
    border-top: 1px solid #CECECE;
    background: #2a2725;
    width: 100%;
    position: absolute;
    display: block;
    bottom: 0px;
}

.fixed-page-footer .page-footer {
    position: fixed;
    z-index: 901;
}

.minified .page-footer {
    padding-left: 58px;
}

.container.fixed-page-footer .page-footer {
    max-width: 1164px;
}

.hidden-menu .page-footer {
    padding-left: 20px;
}

/*
    ██╗   ██╗     █████╗     ██████╗ 
    ╚██╗ ██╔╝    ██╔══██╗    ██╔══██╗
     ╚████╔╝     ███████║    ██████╔╝
      ╚██╔╝      ██╔══██║    ██╔═══╝ 
       ██║       ██║  ██║    ██║     
       ╚═╝       ╚═╝  ╚═╝    ╚═╝     
*/
/*
 * GENERAL MOBILE (Applies to all resolutions below 979px)
 */
@media (max-width: 979px) {
    /* mobile lock x-scroll for menu */
    html.hidden-menu-mobile-lock {
        overflow-x: hidden;
    }

    /* Force content to spread 100% */
    #main {
        width: 100% !important;
    }

    /* Footer */
    .page-footer {
        padding: 15px 15px 0;
    }

    /* Profile Page */
    .profile-pic {
        float: left;
    }

        .profile-pic > img {
            width: 110px;
            margin-right: 10px;
        }

        .profile-pic + div, .profile-pic + div, .profile-pic + div {
            padding-left: 30px;
            padding-right: 30px;
        }

    #fullscreen > :first-child > a {
        display: none !important;
    }

    body.container {
        border: none !important;
        width: 100% !important;
    }

    .inbox-data-message > :first-child {
        height: 50px;
        overflow: hidden;
    }

    .show-stats .show-stat-buttons > :first-child {
        padding-right: 13px;
    }

    .show-stats .show-stat-buttons > :last-child {
        padding-left: 13px;
    }

    .inbox-checkbox-triggered > .btn-group .btn {
        padding-left: 10px;
        padding-right: 10px;
    }

    .inbox-body .table-wrap {
        padding: 0px !important;
        padding-left: 5px !important;
        padding-right: 5px !important;
    }

    .inbox-nav-bar {
        padding-left: 5px;
        padding-right: 5px;
    }

    .inbox-data-message > :first-child > :first-child {
        display: block !important;
        font-size: 14px;
    }

    .inbox-table-icon > :first-child {
        margin-top: 12px;
    }

    .inbox-table .inbox-table-icon {
        padding-left: 10px !important;
    }

    /* search header */
    .header-search.pull-right {
        margin-left: 0px;
    }

    /* Visibility */
    .visible-tablet {
        display: inline-block !important;
    }

    .hidden-tablet,
    .display-inline.hidden-tablet {
        display: none !important;
    }

    .jarviswidget header h2 {
        width: 310px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }

    /* dropzone image fix */
    .dropzone .dz-default.dz-message {
        background-size: 100%;
        width: 200px;
        height: 43px;
        margin-left: -112px;
        margin-top: -23.5px;
    }
}
/* MOBILE LAYOUT STARTS HERE */
/*
 * IPAD HORIZONTAL
 */
@media (min-width: 768px) and (max-width: 979px) {
    #main::after {
        /*content: "IPAD HORIZONTAL";*/
    }

    #main {
        margin-left: 0;
    }

    #left-panel {
        left: -220px;
    }

    /* minified adjustment counter */
    .minified #left-panel {
        left: 0px;
    }

    /* responsive menu button */
    #hide-menu > :first-child > a {
        margin-top: 9px;
        width: 40px;
    }

    .btn-header a {
        margin-top: 9px !important;
        width: 40px !important;
    }

    #hide-menu i {
        color: #6D6A69;
        font-size: 100%;
    }

    .hidden-menu #hide-menu i {
        color: #ffffff;
    }

    .hidden-menu #left-panel {
        left: 0;
    }

    .hidden-menu #main {
        position: relative;
        left: 210px;
    }

    .hidden-menu.fixed-ribbon #ribbon {
        left: 220px;
        width: 100%;
    }

    #hide-menu i::before {
        content: "\f0c9";
    }

    .fixed-ribbon #ribbon {
        left: 0px;
    }

    .jarviswidget header h2 {
        width: 200px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }

    /*
   * Header search
   */
    .header-search > input[type="text"] {
        margin-top: 9px;
    }
}
/*
 * IPAD VERTICAL
 */
@media (min-width: 768px) and (max-width: 880px) {
    #main {
        margin-left: 0;
        overflow-x: hidden;
    }

        #main::after {
            /*content: "IPAD VERTICAL";*/
        }

    #left-panel {
        left: -220px;
    }

    .no-content-padding {
        margin: 0 -14px !important;
    }

    .inbox-nav-bar.no-content-padding {
        margin-top: -10px !important;
    }

    /* minified adjustment counter */
    .minified #left-panel {
        left: 0px;
    }

    /* responsive menu button */
    #hide-menu > :first-child > a,
    .btn-header a {
        margin-top: 5px !important;
        width: 40px !important;
        height: 39px !important;
        line-height: 38px !important;
    }

    #logo {
        display: inline-block;
        width: 175px;
        margin-top: 5px;
        margin-left: 9px;
    }

        #logo img {
            width: auto;
            height: auto;
            padding-left: 3px;
        }

        #logo span {
            font-size: 20px;
            position: absolute;
            margin-top: 5px;
            margin-left: 5px;
            color: #003265;
            letter-spacing: -1px;
        }

    #logo-group > span {
        display: inline-block;
        height: 39px;
        float: left;
    }

    .btn-header.transparent a {
        border: none !important;
        background: none;
        margin-left: 0;
        width: 25px !important;
        box-shadow: none !important;
    }

        .btn-header.transparent a:hover {
            color: #a90329;
        }

    #hide-menu i, #hide-menu .head-menu i {
        color: #6D6A69;
        font-size: 121%;
    }

        #hide-menu i::before {
            content: "\f0c9";
        }

    .hidden-menu #hide-menu i {
        color: #ffffff;
    }

    .hidden-menu #left-panel {
        left: 0px;
    }

    .hidden-menu #main {
        position: relative;
        left: 210px;
    }

    .hidden-menu.fixed-ribbon #ribbon {
        left: 220px;
        width: 100%;
    }

    .fixed-ribbon #ribbon {
        left: 0px;
    }

    .jarviswidget header h2 {
        width: 180px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }

    /*
   * Header search
   */
    .header-search > input[type="text"] {
        margin-top: 9px;
    }
}
/*
 * OTHER DEVICES
 */
@media (max-width: 767px) {
    /* Profile Page */
    .profile-pic > img {
        width: 100px;
    }

    #main {
        margin-left: 0px;
        overflow-x: hidden;
    }

        #main::after {
            /*content: "OTHER DEVICES";*/
        }

    #left-panel {
        left: -220px;
    }

    .show-stat {
        /* dashboard microcharts */
    }

    .show-stat-microcharts > div {
        margin-top: 0px !important;
        border-right: none !important;
    }

    .show-stat-buttons {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    /* padding adjustment */
    #content,
    #ribbon {
        padding-left: 5px;
        padding-right: 5px;
    }

    #header {
        padding-right: 5px;
    }

    #logo {
        display: inline-block;
        width: 175px;
        margin-top: 5px;
        margin-left: 9px;
    }

        #logo img {
            width: auto;
            height: auto;
            padding-left: 3px;
        }

        #logo span {
            font-size: 20px;
            position: absolute;
            margin-top: 5px;
            margin-left: 5px;
            color: #003265;
            letter-spacing: -1px;
        }

    #logo-group > span {
        display: inline-block;
        height: 39px;
        float: left;
    }

    .no-content-padding {
        margin: 0 -5px !important;
    }

    .inbox-nav-bar.no-content-padding {
        margin-top: -10px !important;
    }

    /* minified adjustment counter */
    .minified #left-panel {
        left: 0px;
    }

    .btn-header {
        /* transparent header button */
    }

        .btn-header.transparent a {
            border: none !important;
            background: none;
            margin-left: 0;
            width: 25px !important;
            box-shadow: none !important;
        }

            .btn-header.transparent a:hover {
                color: #a90329;
            }

        .btn-header a {
            margin-top: 5px !important;
            width: 40px !important;
            height: 39px !important;
            line-height: 38px !important;
        }

    #hide-menu {
        /* responsive menu button */
    }

        #hide-menu > :first-child > a {
            margin-top: 5px !important;
            width: 40px !important;
            height: 39px !important;
            line-height: 38px !important;
            width: 50px !important;
        }

        #hide-menu i {
            color: #6D6A69;
            font-size: 121%;
        }

            #hide-menu i::before {
                content: "\f0c9";
            }

    .head-menu i {
        color: #6D6A69;
        font-size: 121%;
    }

    .hidden-menu #hide-menu i {
        color: #ffffff;
    }

    .hidden-menu #left-panel {
        left: 0px;
    }

    .hidden-menu #main {
        position: relative;
        left: 210px;
    }

    .hidden-menu.fixed-ribbon #ribbon {
        left: 220px;
        width: 100%;
    }

    .fixed-ribbon #ribbon {
        left: 0px;
    }

    .fixed-ribbon #content {
        padding-top: 52px;
    }

    /*.fixed-navigation #left-panel {
      position:absolute !important;
  }*/
    body.fixed-navigation.hidden-menu {
        overflow: hidden !important;
    }

    /*
   * header search
   */
    .header-search {
        display: none;
    }

    #search-mobile {
        display: block;
    }

        #search-mobile .header-search {
            display: block;
            position: absolute;
            top: 0px;
            width: 100%;
            height: 49px;
            background: #333;
            padding: 0 2px;
            box-sizing: border-box;
            left: 0px;
        }

            #search-mobile .header-search > input[type="text"] {
                margin-top: 2px;
                height: 45px;
                border-color: #333;
                padding-right: 75px;
            }

            #search-mobile .header-search > button {
                height: 29px;
                line-height: 29px;
                background: #DDDDDD;
                right: 44px;
            }

        #search-mobile #search-mobile {
            display: none;
        }

        #search-mobile #cancel-search-js {
            display: block;
        }

    .jarviswidget header h2 {
        width: 250px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }
}
/*
 * ANDROID
 */
@media only screen and (min-width: 0px) and (max-width: 679px) {
    /* Profile Page */
    .profile-pic > img {
        width: 90px;
    }

    #main {
        margin-left: 0;
        overflow-x: hidden;
    }

        #main::after {
            /*content: "ANDROID";*/
        }

    #left-panel {
        left: -220px;
    }

    .show-stat {
        /* dashboard microcharts */
    }

    .show-stat-microcharts > div {
        margin-top: 0px !important;
        border-right: none !important;
    }

    .show-stat-buttons {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    /* padding adjustment */
    #content,
    #ribbon {
        padding-left: 5px;
        padding-right: 5px;
    }

    #header {
        padding-right: 5px;
        /* header color altered and adjusted for mobile view & contrast */
        background: #ffffff;
    }

    #logo {
        display: inline-block;
        width: 175px;
        margin-top: 5px;
        margin-left: 9px;
    }

        #logo img {
            width: auto;
            height: auto;
            padding-left: 3px;
        }

        #logo span {
            font-size: 20px;
            position: absolute;
            margin-top: 5px;
            margin-left: 5px;
            color: #003265;
            letter-spacing: -1px;
        }

    #logo-group > span {
        display: inline-block;
        height: 39px;
        float: left;
    }

    .no-content-padding {
        margin: 0 -5px !important;
    }

    .inbox-nav-bar.no-content-padding {
        margin-top: -10px !important;
    }

    /* minified adjustment counter */
    .minified #left-panel {
        left: 0;
    }

    #ribbon {
        border-bottom: 1px solid #CFCFCF;
        border-top: 1px solid #E6E6E6;
        background: #F5F5F5;
    }

        #ribbon .breadcrumb {
            color: #6D6C6C !important;
        }

            #ribbon .breadcrumb a {
                color: #6D6C6C !important;
            }

            #ribbon .breadcrumb > .active, #ribbon .breadcrumb li:last-child {
                color: #333 !important;
            }

    #hide-menu {
        /* responsive menu button */
        /* menu btn cont... */
    }

        #hide-menu > :first-child > a {
            margin-top: 5px !important;
            width: 40px !important;
            height: 39px !important;
            line-height: 38px !important;
            width: 50px !important;
        }

        #hide-menu i {
            color: #6D6A69;
            font-size: 121%;
        }

            #hide-menu i::before {
                content: "\f0c9";
            }

    head-menu i {
        color: #6D6A69;
        font-size: 121%;
    }

    .btn-header a {
        margin-top: 5px !important;
        width: 40px !important;
        height: 39px !important;
        line-height: 38px !important;
    }

    .btn-header.transparent {
        /* transparent header button */
    }

        .btn-header.transparent a {
            border: none !important;
            background: none;
            margin-left: 0;
            width: 25px !important;
            box-shadow: none !important;
        }

            .btn-header.transparent a:hover {
                color: #a90329;
            }

    .hidden-menu #hide-menu i {
        color: #ffffff;
    }

    .hidden-menu #left-panel {
        left: 0;
    }

    .hidden-menu #main {
        position: relative;
        left: 210px;
    }

    .hidden-menu.fixed-ribbon #ribbon {
        left: 220px;
        width: 100%;
    }

    .fixed-ribbon #ribbon {
        left: 0px;
    }

    /*
   * header search
   */
    .header-search {
        display: none;
    }

    #search-mobile {
        display: block;
    }

        #search-mobile .header-search {
            display: block;
            position: absolute;
            top: 0px;
            width: 100%;
            height: 49px;
            background: #333;
            padding: 0 2px;
            box-sizing: border-box;
            left: 0px;
        }

            #search-mobile .header-search > input[type="text"] {
                margin-top: 2px;
                height: 45px;
                border-color: #333;
                padding-right: 75px;
            }

            #search-mobile .header-search > button {
                height: 29px;
                line-height: 29px;
                background: #DDDDDD;
                right: 44px;
            }

        #search-mobile #search-mobile {
            display: none;
        }

        #search-mobile #cancel-search-js {
            display: block;
        }

    .hidden-tablet {
        display: none !important;
    }

    .jarviswidget header h2 {
        width: 300px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }
}
/*,
 * IPHONE
 */
@media only screen and (min-width: 320px) and (max-width: 479px) {
    /* Hide headings on phones as its not needed*/
    .page-title {
        display: none;
    }

    .profile-pic {
        text-align: left;
    }

        .profile-pic > img {
            width: 90px;
            margin-left: 0px;
            top: -25px;
            margin-right: 0px;
        }

        .profile-pic + div > h1 {
            font-size: 20px;
        }

            .profile-pic + div > h1 small {
                font-size: 16px;
            }

    .profile-carousel .carousel-indicators {
        top: 10px;
    }

    #main {
        margin-left: 0;
        overflow-x: hidden;
    }

        #main::after {
            /*content: "IPHONE";*/
        }

    #left-panel {
        left: -220px;
    }

    /* dashboard microcharts */
    .show-stat-microcharts > div {
        margin-top: 0px !important;
        border-right: none !important;
    }

    .show-stat-buttons {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    /* padding adjustment */
    #content {
        padding-left: 5px;
        padding-right: 5px;
    }

    /* header color altered and adjusted for mobile view & contrast */
    #header {
        padding-right: 5px;
        background: #ffffff;
    }

    #logo {
        display: inline-block;
        width: 175px;
        margin-top: 5px;
        margin-left: 9px;
    }

        #logo img {
            width: auto;
            height: auto;
            padding-left: 3px;
        }

        #logo span {
            font-size: 20px;
            position: absolute;
            margin-top: 5px;
            margin-left: 5px;
            color: #003265;
            letter-spacing: -1px;
        }

    #logo-group > span {
        display: inline-block;
        height: 39px;
        float: left;
    }

    .no-content-padding {
        margin: 0 -5px !important;
    }

    .inbox-nav-bar.no-content-padding {
        margin-top: -10px !important;
    }

    /* minified adjustment counter */
    .minified #left-panel {
        left: 0px;
    }

    #ribbon {
        padding-left: 5px;
        padding-right: 5px;
        border-bottom: 1px solid #CFCFCF;
        border-top: 1px solid #E6E6E6;
        background: #F5F5F5;
    }

        #ribbon .breadcrumb {
            color: #6D6C6C !important;
        }

            #ribbon .breadcrumb a {
                color: #6D6C6C !important;
            }

            #ribbon .breadcrumb > .active,
            #ribbon .breadcrumb li:last-child {
                color: #333 !important;
            }

    #sparks {
        /* spark line top */
        text-align: center;
        background: #E0E0E0;
        padding: 10px 0;
        margin-bottom: 15px;
    }

        #sparks li {
            padding: 0 10px 0 20px;
        }

    .btn-header {
        /* transparent header button */
    }

        .btn-header a {
            margin-top: 5px !important;
            width: 40px !important;
            height: 39px !important;
            line-height: 38px !important;
        }

        .btn-header.transparent a {
            border: none !important;
            background: none;
            margin-left: 0;
            width: 25px !important;
            box-shadow: none !important;
        }

            .btn-header.transparent a:hover {
                color: #a90329;
            }

    #hide-menu {
        /* responsive menu button */
    }

        #hide-menu > :first-child > a {
            margin-top: 5px !important;
            width: 40px !important;
            height: 39px !important;
            line-height: 38px !important;
            width: 46px !important;
        }

        #hide-menu #hide-menu i {
            color: #6D6A69;
            font-size: 121%;
        }

            #hide-menu #hide-menu i::before {
                content: "\f0c9";
            }

    .hidden-menu #hide-menu i {
        color: #ffffff;
    }

    .hidden-menu #left-panel {
        left: 0px;
    }

    .hidden-menu #main {
        position: relative;
        left: 210px;
    }

    .hidden-menu.fixed-ribbon #ribbon {
        left: 220px;
        width: 100%;
    }

    .fixed-ribbon #ribbon {
        left: 0px;
    }

    /* #*$^& Bootstrap 3 ! */
    .hidden-mobile {
        display: none !important;
    }

    .visible-mobile {
        display: inline-block !important;
    }

    .ajax {
        /* activity panel */
    }

    .ajax-notifications {
        height: 250px;
    }

    .ajax-dropdown {
        width: 299px;
        height: 320px;
        left: 0;
        top: 49px;
    }

        .ajax-dropdown:before {
            margin-left: -14px;
        }

        .ajax-dropdown:after {
            margin-left: -13px;
        }

    /*
   * header search
   */
    .header-search {
        display: none;
    }

    #search-mobile {
        display: block;
        margin-left: 0;
    }

    .search-mobile .header-search {
        display: block;
        position: absolute;
        top: 0px;
        width: 100%;
        height: 49px;
        background: #333;
        padding: 0 2px;
        box-sizing: border-box;
        left: 0px;
    }

        .search-mobile .header-search > input[type="text"] {
            margin-top: 2px;
            height: 45px;
            border-color: #333;
            padding-right: 75px;
        }

        .search-mobile .header-search > button {
            height: 29px;
            line-height: 29px;
            background: #DDDDDD;
            right: 44px;
        }

    .search-mobile #search-mobile {
        display: none;
    }

    .search-mobile #cancel-search-js {
        display: block;
    }

    /* widget headers width */
    .jarviswidget header h2 {
        width: 135px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }
}
/*
    ██╗   ██╗     █████╗     ██████╗ 
    ╚██╗ ██╔╝    ██╔══██╗    ██╔══██╗
     ╚████╔╝     ███████║    ██████╔╝
      ╚██╔╝      ██╔══██║    ██╔═══╝ 
       ██║       ██║  ██║    ██║     
       ╚═╝       ╚═╝  ╚═╝    ╚═╝     
*/
@-ms-viewport {
}
/*
    ██╗   ██╗     █████╗     ██████╗ 
    ╚██╗ ██╔╝    ██╔══██╗    ██╔══██╗
     ╚████╔╝     ███████║    ██████╔╝
      ╚██╔╝      ██╔══██║    ██╔═══╝ 
       ██║       ██║  ██║    ██║     
       ╚═╝       ╚═╝  ╚═╝    ╚═╝     
*/
#extr-page #main {
    margin-top: 0px !important;
}

#mobile-profile-img {
    display: none;
}

.menu-on-top #mobile-profile-img {
    display: block !important;
    padding-right: 2px !important;
    padding-left: 2px !important;
}

    .menu-on-top #mobile-profile-img a.userdropdown img {
        width: 30px;
        margin-top: 5px;
        margin-left: 2px;
        border-radius: 3px;
        border: 1px solid #797979 !important;
    }

.menu-on-top .page-footer {
    padding: 15px 13px 0;
}

.menu-on-top .hidden-menu #left-panel {
    left: 0px;
}

.menu-on-top #main {
    margin-left: 0px !important;
    margin-top: 69px !important;
}

.menu-on-top .minifyme,
.menu-on-top #hide-menu,
.menu-on-top #logout {
    display: none !important;
}

.menu-on-top aside#left-panel {
    width: 100% !important;
    min-height: 0 !important;
    height: auto;
    overflow: visible;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid #222;
    border-top: 1px solid #333;
}

    .menu-on-top aside#left-panel nav > ul {
        display: block;
        width: 100%;
        /* Hover state */
    }

        .menu-on-top aside#left-panel nav > ul > li:first-child {
            margin-left: 0px;
        }

        .menu-on-top aside#left-panel nav > ul > li {
            display: block;
            position: relative;
            height: auto !important;
            padding: 0px !important;
            display: inline-block;
            float: left;
            border-right: 1px solid #222;
            border-left: 1px solid #4E4E4E;
            overflow: visible;
        }

            .menu-on-top aside#left-panel nav > ul > li > a {
                display: inline-block;
                height: 68px;
                line-height: 17px;
                text-shadow: none !important;
                font-size: 13px;
                text-decoration: none;
                line-height: 22px;
                padding: 10px 9px !important;
            }

                .menu-on-top aside#left-panel nav > ul > li > a > i {
                    display: block !important;
                    margin: 1px 0 4px;
                    line-height: inherit;
                    width: auto;
                    /*vertical-align: sub;*/
                    text-align: center;
                    font-size: 18px;
                    margin-bottom: 2px;
                    width: 100%;
                }

            .menu-on-top aside#left-panel nav > ul > li:hover {
                background: #fff;
                /* Old browsers */
                background: -moz-linear-gradient(top, #cfcfcf 0%, #ffffff 66%);
                /* FF3.6+ */
                background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #cfcfcf), color-stop(66%, #ffffff));
                /* Chrome,Safari4+ */
                background: -webkit-linear-gradient(top, #cfcfcf 0%, #ffffff 66%);
                /* Chrome10+,Safari5.1+ */
                background: -o-linear-gradient(top, #cfcfcf 0%, #ffffff 66%);
                /* Opera 11.10+ */
                background: -ms-linear-gradient(top, #cfcfcf 0%, #ffffff 66%);
                /* IE10+ */
                background: linear-gradient(to bottom, #cfcfcf 0%, #ffffff 66%);
                /* W3C */
                filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cfcfcf', endColorstr='#ffffff', GradientType=0);
                /* IE6-9 */
            }

                .menu-on-top aside#left-panel nav > ul > li:hover > a {
                    color: #333 !important;
                    border-left: 1px solid #c7c7c7;
                    border-right: 1px solid #c7c7c7;
                    padding-left: 8px !important;
                    padding-right: 8px !important;
                }

            .menu-on-top aside#left-panel nav > ul > li > ul {
                position: absolute !important;
                background: #3a3633;
            }

            .menu-on-top aside#left-panel nav > ul > li:hover > ul {
                display: block !important;
            }

    .menu-on-top aside#left-panel nav ul li.active > a:before {
        content: "" !important;
    }

.menu-on-top li.active > a {
    font-weight: bold !important;
}

.menu-on-top .login-info {
    display: none;
}

.menu-on-top .menu-item-parent {
    max-width: 72px;
    min-width: 50px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    font-size: 13px;
}

    .menu-on-top .menu-item-parent + span {
        float: none !important;
        top: 5px;
        right: 5px;
        position: absolute;
    }

.menu-on-top nav > ul > li > a b {
    display: none;
}

.menu-on-top nav > ul > li > ul::before {
    border: none;
}

.menu-on-top nav > ul ul li::before {
    border: none;
}

.menu-on-top nav > ul ul li:hover > ul {
    display: block;
    position: absolute;
    z-index: 999;
    left: 100%;
    top: -8px;
    background: #333;
}

.menu-on-top nav > ul ul ul {
    border-top: 1px solid #c7c7c7 !important;
}

.menu-on-top nav ul ul {
    background: #ffffff !important;
    border: 1px solid #c7c7c7;
    -webkit-box-shadow: inset 0px -4px 0px 0px #bd2a2a;
    -moz-box-shadow: inset 0px -4px 0px 0px #bd2a2a;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border-bottom: 1px solid #BD2A2A;
    border-top: none;
    width: 200px;
    border-radius: 0;
    padding: 3px;
    margin-left: 0px;
}

    .menu-on-top nav ul ul li {
        overflow: visible;
    }

        .menu-on-top nav ul ul li a {
            padding-left: 10px !important;
            font-size: 13px;
            color: #4C4F53;
        }

            .menu-on-top nav ul ul li a:hover {
                color: #fff;
                background-color: #4C4F53;
            }

    .menu-on-top nav ul ul ul {
        background: #ffffff !important;
        border: 1px solid #c7c7c7;
        -webkit-box-shadow: inset 0px -4px 0px 0px #bd2a2a;
        -moz-box-shadow: inset 0px -4px 0px 0px #bd2a2a;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        border-bottom: 1px solid #BD2A2A;
        border-top: none;
        width: 200px;
        border-radius: 0;
        padding: 3px;
        margin-left: 0px;
    }

        .menu-on-top nav ul ul ul li a {
            color: #4C4F53;
        }

            .menu-on-top nav ul ul ul li a:hover {
                color: #fff;
                background-color: #4C4F53;
            }

        .menu-on-top nav ul ul ul li:hover > a {
            color: #fff;
            background-color: #4C4F53;
        }

/*
 * Child Arrow
 */
/* top level childs */
.menu-on-top nav > ul > li > a:after {
    content: "\f0dd" !important;
    top: 76% !important;
    color: #636363 !important;
    left: 46%;
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f0da";
    display: block !important;
    position: absolute;
    top: 9px;
    right: 4px;
    color: #333;
}

.menu-on-top nav > ul > li > a:only-child:after {
    content: "" !important;
}

.menu-on-top nav > ul ul > li a:after, .menu-on-top nav > ul ul > li a:hover:after {
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f0da";
    display: block !important;
    position: absolute;
    top: 9px;
    right: 4px;
    color: #333;
}

.menu-on-top nav > ul ul > li a:hover:after {
    color: #fff;
}

.menu-on-top nav > ul ul > li a:only-child:after {
    content: "" !important;
}

.menu-on-top nav ul ul li:hover > a:after {
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f0da";
    display: block !important;
    position: absolute;
    top: 9px;
    right: 4px;
    color: #333;
    color: #fff;
}

.menu-on-top nav ul ul li.active:hover > a {
    color: #fff !important;
}

.menu-on-top nav ul ul .active > a {
    color: #333 !important;
}

    .menu-on-top nav ul ul .active > a:hover {
        color: #fff !important;
    }

.menu-on-top .slimScrollDiv,
.menu-on-top nav {
    overflow: visible !important;
}

/*
 * FIXED TOP HEADER
 */
body .menu-on-top.fixed-header {
    padding-top: 49px;
}

    body .menu-on-top.fixed-header.fixed-navigation nav > ul {
        padding-right: 0px;
        /**/
        position: relative;
        /**/
        height: auto;
        /**/
        width: auto;
        /**/
        overflow: visible;
        /**/
    }

    body .menu-on-top.fixed-header.fixed-navigation.fixed-ribbon #ribbon {
        left: 0px;
        top: 118px;
    }

/*
 * RESPONSIVE
 */
/*
 * GENERAL MOBILE (Applies to all resolutions below 979px)
 */
@media (max-width: 979px) {
    .menu-on-top #mobile-profile-img a.userdropdown img {
        width: 39px;
        margin-top: 0px;
        margin-left: 2px;
        border-radius: 3px;
        margin-right: -3px;
    }

    .menu-on-top .btn-header.pull-right {
        margin-left: 0px !important;
    }

    .menu-on-top #main {
        margin-top: 0px !important;
    }

    .menu-on-top #left-panel {
        left: 0px;
        display: none;
    }

    .menu-on-top body.menu-on-top.fixed-header.fixed-navigation.fixed-ribbon #ribbon {
        top: 49px;
    }

    .menu-on-top.hidden-menu #left-panel {
        display: block;
    }

    .menu-on-top.hidden-menu #main {
        left: 0px !important;
    }

    .menu-on-top #hide-menu {
        display: block !important;
    }

    .menu-on-top aside#left-panel nav {
        height: 300px !important;
        overflow: scroll;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch;
    }

    .menu-on-top .menu-item-parent {
        white-space: inherit;
        overflow: visible;
        text-overflow: inherit;
        text-align: left;
        min-width: 85%;
        max-width: 85%;
        padding-left: 5px;
    }

        .menu-on-top .menu-item-parent + span {
            top: 50%;
            margin-top: -8px;
        }

    .menu-on-top nav li.active > ul {
        display: block;
    }

    .menu-on-top nav > ul > li.active {
        background: #fff;
        background: -moz-linear-gradient(top, #cfcfcf 0, #ffffff 66%);
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #cfcfcf), color-stop(66%, #ffffff));
        background: -webkit-linear-gradient(top, #cfcfcf 0, #ffffff 66%);
        background: -o-linear-gradient(top, #cfcfcf 0, #ffffff 66%);
        background: -ms-linear-gradient(top, #cfcfcf 0, #ffffff 66%);
        background: linear-gradient(to bottom, #cfcfcf 0, #ffffff 66%);
    }

        .menu-on-top nav > ul > li.active > a {
            color: #333 !important;
        }

    .menu-on-top nav > ul > li > a:after {
        top: 50%;
        right: 15px;
        font-size: 15px;
        margin-top: -8px;
        content: "\f0dd" !important;
        top: 50% !important;
        left: auto;
        margin-top: -14px;
        font-size: 20px;
    }

    .menu-on-top nav > ul > li > a:only-child:after {
        content: "" !important;
    }

    .menu-on-top nav > ul ul > li a:after, .menu-on-top nav > ul ul > li a:hover:after {
        top: 50%;
        right: 15px;
        font-size: 15px;
        margin-top: -8px;
        content: "\f0dd" !important;
    }

    .menu-on-top nav > ul ul > li a:only-child:after {
        content: "" !important;
    }

    .menu-on-top nav ul ul {
        padding: 0px;
        border: none;
    }

        .menu-on-top nav ul ul li:hover > a:after {
            top: 50%;
            right: 15px;
            font-size: 15px;
            margin-top: -8px;
            content: "\f0dd" !important;
        }

        .menu-on-top nav ul ul > li a:only-child:after {
            content: "" !important;
        }

        .menu-on-top nav ul ul ul {
            padding: 0px;
            border: none;
            border-bottom: 2px solid #333;
        }

    .menu-on-top aside#left-panel nav > ul > li {
        width: 100%;
    }

        .menu-on-top aside#left-panel nav > ul > li > a {
            height: auto;
            display: block;
            padding: 8px 9px !important;
            border-bottom: 1px dotted #585858;
            padding-top: 10px;
            padding-bottom: 10px;
        }

            .menu-on-top aside#left-panel nav > ul > li > a > i {
                display: inline !important;
            }

        .menu-on-top aside#left-panel nav > ul > li > ul > li > a {
            padding-top: 10px;
            padding-bottom: 10px;
        }

        .menu-on-top aside#left-panel nav > ul > li:active > ul, .menu-on-top aside#left-panel nav > ul > li:focus > ul {
            display: block !important;
        }

    .menu-on-top aside#left-panel nav > ul li ul {
        position: relative !important;
        width: 100%;
        top: 0px;
        left: 0px;
    }
}
/*
    ██╗   ██╗     █████╗     ██████╗ 
    ╚██╗ ██╔╝    ██╔══██╗    ██╔══██╗
     ╚████╔╝     ███████║    ██████╔╝
      ╚██╔╝      ██╔══██║    ██╔═══╝ 
       ██║       ██║  ██║    ██║     
       ╚═╝       ╚═╝  ╚═╝    ╚═╝     
*/
.ui-timepicker-div .ui-widget-header {
    margin-bottom: 8px;
}

.ui-timepicker-div dl {
    text-align: left;
}

    .ui-timepicker-div dl dt {
        float: left;
        clear: left;
        padding: 0 0 0 5px;
    }

    .ui-timepicker-div dl dd {
        margin: 0 10px 10px 40%;
    }

.ui-timepicker-div td {
    font-size: 90%;
}

.ui-timepicker-rtl {
    direction: rtl;
}

    .ui-timepicker-rtl dl {
        text-align: right;
        padding: 0 5px 0 0;
    }

        .ui-timepicker-rtl dl dt {
            float: right;
            clear: right;
        }

        .ui-timepicker-rtl dl dd {
            margin: 0 40% 10px 10px;
        }

.ui-tpicker-grid-label {
    background: none;
    border: none;
    margin: 0;
    padding: 0;
}

.error-stack {
    max-height: 156px;
    overflow: auto;
}

.bootstro-next-btn {
    float: right;
}

.bootstro-prev-btn {
    float: left;
}

.bootstro-backdrop {
    opacity: 0.5;
    background-color: #000000;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
    filter: alpha(opacity=50);
}

.bootstro-highlight {
    z-index: 9999;
    position: relative;
    border: 1px solid white;
    background-color: white;
}

.bootstro-finish-btn-wrapper {
    /*border-top:1px solid #eee;*/
    padding-top: 10px;
    text-align: center;
    clear: both;
}

    .bootstro-finish-btn-wrapper button {
        font-size: 12px !important;
        padding: 3px 5px 3px 5px !important;
        font-weight: bold;
    }

.bootstro-nav-wrapper {
    margin-top: 10px;
}

    .bootstro-nav-wrapper button {
        font-size: 12px !important;
        padding: 3px 5px 3px 5px !important;
        font-weight: bold;
    }

.well > h1:first-child {
    margin-top: 0px;
}

.well > h2:first-child {
    margin-top: 0px;
}

.well > h3:first-child {
    margin-top: 0px;
}

.well > h4:first-child {
    margin-top: 0px;
}

.well > h5:first-child {
    margin-top: 0px;
}

.well > h6:first-child {
    margin-top: 0px;
}

.buttton-box {
    width: 100%;
    display: table;
    min-height: 200px;
}

    .buttton-box > div {
        display: table-cell;
        vertical-align: middle;
    }

        .buttton-box > div .btn-lg {
            padding: 20px 36px;
        }

#main {
    visibility: hidden;
}

.mobile-detected #main {
    visibility: visible;
}

.btn-header > .company-info > a {
    color: #6D6A69;
    font-size: 17px;
}

    .btn-header > .company-info > a > span {
        height: 24px;
        line-height: 24px;
    }

    .btn-header > .company-info > a .fa-angle-right {
        margin: 0px 6px;
    }

.company-info .dropdown-toggle + .dropdown-menu {
    width: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: #f8f8f8;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#f1f1f1));
    background-image: -webkit-linear-gradient(top, #f8f8f8, #f1f1f1);
    background-image: -moz-linear-gradient(top, #f8f8f8, #f1f1f1);
    background-image: -ms-linear-gradient(top, #f8f8f8, #f1f1f1);
    background-image: -o-linear-gradient(top, #f8f8f8, #f1f1f1);
    background-image: linear-gradient(top, #f8f8f8, #f1f1f1);
    border: 1px solid #bfbfbf;
    color: #6D6A69;
    left: auto;
    right: 0px;
    min-width: 300px;
}

    .company-info .dropdown-toggle + .dropdown-menu li a:hover {
        border: 0px;
        color: #262626;
        background-color: #ffffff;
    }

    .company-info .dropdown-toggle + .dropdown-menu + .dropdown-menu .dd-wrap {
        padding-left: 20px;
        padding-right: 20px;
    }

.position-info {
    background-color: #ffffff;
    margin-bottom: -8px;
    margin-top: -5px;
    padding: 5px 20px 5px 20px;
    padding: 0px;
    -webkit-border-top-left-radius: 4px;
    -webkit-border-top-right-radius: 4px;
    -moz-border-radius-topleft: 4px;
    -moz-border-radius-topright: 4px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    overflow: hidden;
}

    .position-info .list-group {
        margin-bottom: 0px;
    }

        .position-info .list-group .list-group-item {
            border-width: 0px;
            border-top-width: 1px;
            padding-left: 20px;
            padding-right: 20px;
        }

            .position-info .list-group .list-group-item:first-child {
                border-top: 0px;
            }

.position-static {
    position: static;
}

.position-select-holder {
    width: 100%;
    min-height: 450px;
    position: absolute;
    display: table;
    z-index: 50;
    top: 34px;
    padding: 0 15px;
    left: 0;
}

    .position-select-holder .message {
        color: #ffffff;
        text-align: center;
        display: table-cell;
        vertical-align: middle;
        text-align: center;
    }

.workgroup-select-holder {
    width: 100%;
    min-height: 450px;
    position: absolute;
    display: table;
    z-index: 50;
    top: 34px;
    padding: 0 15px;
    left: 0;
}

    .workgroup-select-holder .message {
        color: #ffffff;
        text-align: center;
        display: table-cell;
        vertical-align: middle;
        text-align: center;
    }

.select2-hidden-accessible {
    display: none !important;
    visibility: hidden !important;
}

.mb0 {
    margin-bottom: 0px !important;
}

.opacity30 {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
    filter: alpha(opacity=30);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
    opacity: 0.3;
}

.widget input, .k-widget, .widget .editable-input, .k-widget .form-control {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.org-tree div.k-treeview {
    overflow: visible !important;
    margin-top: 10px;
}

.org-tree .k-top, .org-tree .k-bot, .org-tree .k-mid {
    z-index: 20;
    position: relative;
}

.org-tree .k-treeview .k-item {
    position: relative;
    padding-top: 5px !important;
}

.org-tree .k-treeview > ul > li::after, .org-tree .k-treeview .k-treeview > ul > li:before {
    border: 0;
}

.org-tree .k-treeview li:before,
.org-tree .k-treeview li:after {
    content: '';
    left: 10px;
    position: absolute;
    right: auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 5;
}

.org-tree .k-treeview li:before {
    border-left: 1px solid #999999;
    bottom: 50px;
    height: 100%;
    top: -14px;
    width: 1px;
    -webkit-transition: "border-color 0.1s ease 0.1s";
    -moz-transition: "border-color 0.1s ease 0.1s";
    -o-transition: "border-color 0.1s ease 0.1s";
    transition: "border-color 0.1s ease 0.1s";
}

.org-tree .k-treeview li:after {
    border-top: 1px solid #999999;
    height: 29px;
    top: 15px;
    width: 17px;
}

.org-tree .k-treeview > ul > li:before,
.org-tree .k-treeview > ul > li::after {
    border: 0;
}

.org-tree .k-treeview li:last-child::before {
    height: 30px;
}

.org-tree .k-treeview .k-icon {
    margin-left: 0px;
    position: absolute;
    left: 5px;
    top: 50%;
    margin-top: -8px !important;
}

    .org-tree .k-treeview .k-icon.k-minus,
    .org-tree .k-treeview .k-icon.k-plus {
        margin-left: 0px;
    }

.org-tree .k-treeview .k-in {
    margin: 0px !important;
    padding: 0px !important;
    border: 0px !important;
    box-shadow: none !important;
    background-color: transparent;
    background-image: none;
    color: #428bca;
}

    .org-tree .k-treeview .k-in.k-state-hover {
        background-color: transparent;
    }

.org-tree .k-treeview .k-icon + .k-in > span {
    padding-left: 1.6em !important;
}

.org-tree .k-treeview .k-in > span {
    display: block;
    margin: 1px 0;
    padding: .4167em .6667em .3333em .5833em;
    margin: 1px 0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background-color: #ebebeb;
    background-image: none;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid transparent;
    color: #428bca;
}

.org-tree .k-treeview .k-in.k-state-selected > span.unit-pos {
    background-color: #428bca;
    border-color: #428bca;
    color: #ffffff;
}

.org-tree .k-treeview > ul > li.k-item {
    padding-left: 0px;
}

.organization-widget {
    min-height: 452px;
}

.user-list .widget-body {
    height: 100%;
}

.user-list .k-grid {
    min-height: 391px;
}

/*@import "components/bootstrap-validator";*/

/*# sourceMappingURL=core.css.map */
