﻿@charset "UTF-8";

.animated-delay, .animated-waypoint {
    opacity: 0;
}

.sparkline-delay {
    position: absolute;
    bottom: 0;
    width: 40px;
    height: 35px;
    line-height: 24px;
}

.animated.animated-short {
    -webkit-animation-duration: .6s !important;
    animation-duration: .6s !important;
}

.animated.animated-shorter {
    -webkit-animation-duration: .3s !important;
    animation-duration: .3s !important;
}

.animated.animated-long {
    -webkit-animation-duration: 1.4s !important;
    animation-duration: 1.4s !important;
}

.animated.animated-longer {
    -webkit-animation-duration: 2s !important;
    animation-duration: 2s !important;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

    .animated.infinite {
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
    }

    .animated.hinge {
        -webkit-animation-duration: 2s;
        animation-duration: 2s;
    }

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
        transform: perspective(400px) scale3d(.95, .95, .95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

@keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
        transform: perspective(400px) scale3d(.95, .95, .95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip;
}

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transition-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transition-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transition-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transition-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
}

@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transition-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transition-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transition-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transition-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

.flipInY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
}

@-webkit-keyframes slideInDown {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    50% {
        opacity: 1;
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    }
}

@keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    }
}

.zoomInDown {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    }
}

@keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    }
}

.zoomInLeft {
    -webkit-animation-name: zoomInLeft;
    animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    }
}

@keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    }
}

.zoomInRight {
    -webkit-animation-name: zoomInRight;
    animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    }
}

@keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    }
}

.zoomInUp {
    -webkit-animation-name: zoomInUp;
    animation-name: zoomInUp;
}

.ad {
    position: relative;
    display: inline-block;
    font: normal normal normal 16px/1 Store4;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
}

.ad-wand {
    top: 1px;
}

    .ad-wand:before {
        content: "\e010"
    }

.ad-radio-tower:before {
    content: "\f030"
}

.ad-ruby:before {
    content: "\f047"
}

.ad-screen-full:before {
    content: "\f066"
}

@font-face {
    font-family: 'Glyphicons Halflings';
    src: url(../fonts/glyphicons/glyphicons-halflings-regular.eot);
    src: url(../fonts/glyphicons/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(../fonts/glyphicons/glyphicons-halflings-regular.woff2) format('woff2'), url(../fonts/glyphicons/glyphicons-halflings-regular.woff) format('woff'), url(../fonts/glyphicons/glyphicons-halflings-regular.ttf) format('truetype'), url(../fonts/glyphicons/glyphicons-halflings-regular.svg#@glyphicons_halflingsregular) format('svg');
}

.glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.glyphicon-asterisk:before {
    content: "\2a"
}

.glyphicon-plus:before {
    content: "\2b"
}

.glyphicon-eur:before, .glyphicon-euro:before {
    content: "\20ac"
}

.glyphicon-minus:before {
    content: "\2212"
}

.glyphicon-cloud:before {
    content: "\2601"
}

.glyphicon-envelope:before {
    content: "\2709"
}

.glyphicon-pencil:before {
    content: "\270f"
}

.glyphicon-glass:before {
    content: "\e001"
}

.glyphicon-music:before {
    content: "\e002"
}

.glyphicon-search:before {
    content: "\e003"
}

.glyphicon-heart:before {
    content: "\e005"
}

.glyphicon-star:before {
    content: "\e006"
}

.glyphicon-star-empty:before {
    content: "\e007"
}

.glyphicon-user:before {
    content: "\e008"
}

.glyphicon-film:before {
    content: "\e009"
}

.glyphicon-th-large:before {
    content: "\e010"
}

.glyphicon-th:before {
    content: "\e011"
}

.glyphicon-th-list:before {
    content: "\e012"
}

.glyphicon-ok:before {
    content: "\e013"
}

.glyphicon-remove:before {
    content: "\e014"
}

.glyphicon-zoom-in:before {
    content: "\e015"
}

.glyphicon-zoom-out:before {
    content: "\e016"
}

.glyphicon-off:before {
    content: "\e017"
}

.glyphicon-signal:before {
    content: "\e018"
}

.glyphicon-cog:before {
    content: "\e019"
}

.glyphicon-trash:before {
    content: "\e020"
}

.glyphicon-home:before {
    content: "\e021"
}

.glyphicon-file:before {
    content: "\e022"
}

.glyphicon-time:before {
    content: "\e023"
}

.glyphicon-road:before {
    content: "\e024"
}

.glyphicon-download-alt:before {
    content: "\e025"
}

.glyphicon-download:before {
    content: "\e026"
}

.glyphicon-upload:before {
    content: "\e027"
}

.glyphicon-inbox:before {
    content: "\e028"
}

.glyphicon-play-circle:before {
    content: "\e029"
}

.glyphicon-repeat:before {
    content: "\e030"
}

.glyphicon-refresh:before {
    content: "\e031"
}

.glyphicon-list-alt:before {
    content: "\e032"
}

.glyphicon-lock:before {
    content: "\e033"
}

.glyphicon-flag:before {
    content: "\e034"
}

.glyphicon-headphones:before {
    content: "\e035"
}

.glyphicon-volume-off:before {
    content: "\e036"
}

.glyphicon-volume-down:before {
    content: "\e037"
}

.glyphicon-volume-up:before {
    content: "\e038"
}

.glyphicon-qrcode:before {
    content: "\e039"
}

.glyphicon-barcode:before {
    content: "\e040"
}

.glyphicon-tag:before {
    content: "\e041"
}

.glyphicon-tags:before {
    content: "\e042"
}

.glyphicon-book:before {
    content: "\e043"
}

.glyphicon-bookmark:before {
    content: "\e044"
}

.glyphicon-print:before {
    content: "\e045"
}

.glyphicon-camera:before {
    content: "\e046"
}

.glyphicon-font:before {
    content: "\e047"
}

.glyphicon-bold:before {
    content: "\e048"
}

.glyphicon-italic:before {
    content: "\e049"
}

.glyphicon-text-height:before {
    content: "\e050"
}

.glyphicon-text-width:before {
    content: "\e051"
}

.glyphicon-align-left:before {
    content: "\e052"
}

.glyphicon-align-center:before {
    content: "\e053"
}

.glyphicon-align-right:before {
    content: "\e054"
}

.glyphicon-align-justify:before {
    content: "\e055"
}

.glyphicon-list:before {
    content: "\e056"
}

.glyphicon-indent-left:before {
    content: "\e057"
}

.glyphicon-indent-right:before {
    content: "\e058"
}

.glyphicon-facetime-video:before {
    content: "\e059"
}

.glyphicon-picture:before {
    content: "\e060"
}

.glyphicon-map-marker:before {
    content: "\e062"
}

.glyphicon-adjust:before {
    content: "\e063"
}

.glyphicon-tint:before {
    content: "\e064"
}

.glyphicon-edit:before {
    content: "\e065"
}

.glyphicon-share:before {
    content: "\e066"
}

.glyphicon-check:before {
    content: "\e067"
}

.glyphicon-move:before {
    content: "\e068"
}

.glyphicon-step-backward:before {
    content: "\e069"
}

.glyphicon-fast-backward:before {
    content: "\e070"
}

.glyphicon-backward:before {
    content: "\e071"
}

.glyphicon-play:before {
    content: "\e072"
}

.glyphicon-pause:before {
    content: "\e073"
}

.glyphicon-stop:before {
    content: "\e074"
}

.glyphicon-forward:before {
    content: "\e075"
}

.glyphicon-fast-forward:before {
    content: "\e076"
}

.glyphicon-step-forward:before {
    content: "\e077"
}

.glyphicon-eject:before {
    content: "\e078"
}

.glyphicon-chevron-left:before {
    content: "\e079"
}

.glyphicon-chevron-right:before {
    content: "\e080"
}

.glyphicon-plus-sign:before {
    content: "\e081"
}

.glyphicon-minus-sign:before {
    content: "\e082"
}

.glyphicon-remove-sign:before {
    content: "\e083"
}

.glyphicon-ok-sign:before {
    content: "\e084"
}

.glyphicon-question-sign:before {
    content: "\e085"
}

.glyphicon-info-sign:before {
    content: "\e086"
}

.glyphicon-screenshot:before {
    content: "\e087"
}

.glyphicon-remove-circle:before {
    content: "\e088"
}

.glyphicon-ok-circle:before {
    content: "\e089"
}

.glyphicon-ban-circle:before {
    content: "\e090"
}

.glyphicon-arrow-left:before {
    content: "\e091"
}

.glyphicon-arrow-right:before {
    content: "\e092"
}

.glyphicon-arrow-up:before {
    content: "\e093"
}

.glyphicon-arrow-down:before {
    content: "\e094"
}

.glyphicon-share-alt:before {
    content: "\e095"
}

.glyphicon-resize-full:before {
    content: "\e096"
}

.glyphicon-resize-small:before {
    content: "\e097"
}

.glyphicon-exclamation-sign:before {
    content: "\e101"
}

.glyphicon-gift:before {
    content: "\e102"
}

.glyphicon-leaf:before {
    content: "\e103"
}

.glyphicon-fire:before {
    content: "\e104"
}

.glyphicon-eye-open:before {
    content: "\e105"
}

.glyphicon-eye-close:before {
    content: "\e106"
}

.glyphicon-warning-sign:before {
    content: "\e107"
}

.glyphicon-plane:before {
    content: "\e108"
}

.glyphicon-calendar:before {
    content: "\e109"
}

.glyphicon-random:before {
    content: "\e110"
}

.glyphicon-comment:before {
    content: "\e111"
}

.glyphicon-magnet:before {
    content: "\e112"
}

.glyphicon-chevron-up:before {
    content: "\e113"
}

.glyphicon-chevron-down:before {
    content: "\e114"
}

.glyphicon-retweet:before {
    content: "\e115"
}

.glyphicon-shopping-cart:before {
    content: "\e116"
}

.glyphicon-folder-close:before {
    content: "\e117"
}

.glyphicon-folder-open:before {
    content: "\e118"
}

.glyphicon-resize-vertical:before {
    content: "\e119"
}

.glyphicon-resize-horizontal:before {
    content: "\e120"
}

.glyphicon-hdd:before {
    content: "\e121"
}

.glyphicon-bullhorn:before {
    content: "\e122"
}

.glyphicon-bell:before {
    content: "\e123"
}

.glyphicon-certificate:before {
    content: "\e124"
}

.glyphicon-thumbs-up:before {
    content: "\e125"
}

.glyphicon-thumbs-down:before {
    content: "\e126"
}

.glyphicon-hand-right:before {
    content: "\e127"
}

.glyphicon-hand-left:before {
    content: "\e128"
}

.glyphicon-hand-up:before {
    content: "\e129"
}

.glyphicon-hand-down:before {
    content: "\e130"
}

.glyphicon-circle-arrow-right:before {
    content: "\e131"
}

.glyphicon-circle-arrow-left:before {
    content: "\e132"
}

.glyphicon-circle-arrow-up:before {
    content: "\e133"
}

.glyphicon-circle-arrow-down:before {
    content: "\e134"
}

.glyphicon-globe:before {
    content: "\e135"
}

.glyphicon-wrench:before {
    content: "\e136"
}

.glyphicon-tasks:before {
    content: "\e137"
}

.glyphicon-filter:before {
    content: "\e138"
}

.glyphicon-briefcase:before {
    content: "\e139"
}

.glyphicon-fullscreen:before {
    content: "\e140"
}

.glyphicon-dashboard:before {
    content: "\e141"
}

.glyphicon-paperclip:before {
    content: "\e142"
}

.glyphicon-heart-empty:before {
    content: "\e143"
}

.glyphicon-link:before {
    content: "\e144"
}

.glyphicon-phone:before {
    content: "\e145"
}

.glyphicon-pushpin:before {
    content: "\e146"
}

.glyphicon-usd:before {
    content: "\e148"
}

.glyphicon-gbp:before {
    content: "\e149"
}

.glyphicon-sort:before {
    content: "\e150"
}

.glyphicon-sort-by-alphabet:before {
    content: "\e151"
}

.glyphicon-sort-by-alphabet-alt:before {
    content: "\e152"
}

.glyphicon-sort-by-order:before {
    content: "\e153"
}

.glyphicon-sort-by-order-alt:before {
    content: "\e154"
}

.glyphicon-sort-by-attributes:before {
    content: "\e155"
}

.glyphicon-sort-by-attributes-alt:before {
    content: "\e156"
}

.glyphicon-unchecked:before {
    content: "\e157"
}

.glyphicon-expand:before {
    content: "\e158"
}

.glyphicon-collapse-down:before {
    content: "\e159"
}

.glyphicon-collapse-up:before {
    content: "\e160"
}

.glyphicon-log-in:before {
    content: "\e161"
}

.glyphicon-flash:before {
    content: "\e162"
}

.glyphicon-log-out:before {
    content: "\e163"
}

.glyphicon-new-window:before {
    content: "\e164"
}

.glyphicon-record:before {
    content: "\e165"
}

.glyphicon-save:before {
    content: "\e166"
}

.glyphicon-open:before {
    content: "\e167"
}

.glyphicon-saved:before {
    content: "\e168"
}

.glyphicon-import:before {
    content: "\e169"
}

.glyphicon-export:before {
    content: "\e170"
}

.glyphicon-send:before {
    content: "\e171"
}

.glyphicon-floppy-disk:before {
    content: "\e172"
}

.glyphicon-floppy-saved:before {
    content: "\e173"
}

.glyphicon-floppy-remove:before {
    content: "\e174"
}

.glyphicon-floppy-save:before {
    content: "\e175"
}

.glyphicon-floppy-open:before {
    content: "\e176"
}

.glyphicon-credit-card:before {
    content: "\e177"
}

.glyphicon-transfer:before {
    content: "\e178"
}

.glyphicon-cutlery:before {
    content: "\e179"
}

.glyphicon-header:before {
    content: "\e180"
}

.glyphicon-compressed:before {
    content: "\e181"
}

.glyphicon-earphone:before {
    content: "\e182"
}

.glyphicon-phone-alt:before {
    content: "\e183"
}

.glyphicon-tower:before {
    content: "\e184"
}

.glyphicon-stats:before {
    content: "\e185"
}

.glyphicon-sd-video:before {
    content: "\e186"
}

.glyphicon-hd-video:before {
    content: "\e187"
}

.glyphicon-subtitles:before {
    content: "\e188"
}

.glyphicon-sound-stereo:before {
    content: "\e189"
}

.glyphicon-sound-dolby:before {
    content: "\e190"
}

.glyphicon-sound-5-1:before {
    content: "\e191"
}

.glyphicon-sound-6-1:before {
    content: "\e192"
}

.glyphicon-sound-7-1:before {
    content: "\e193"
}

.glyphicon-copyright-mark:before {
    content: "\e194"
}

.glyphicon-registration-mark:before {
    content: "\e195"
}

.glyphicon-cloud-download:before {
    content: "\e197"
}

.glyphicon-cloud-upload:before {
    content: "\e198"
}

.glyphicon-tree-conifer:before {
    content: "\e199"
}

.glyphicon-tree-deciduous:before {
    content: "\e200"
}

.glyphicon-cd:before {
    content: "\e201"
}

.glyphicon-save-file:before {
    content: "\e202"
}

.glyphicon-open-file:before {
    content: "\e203"
}

.glyphicon-level-up:before {
    content: "\e204"
}

.glyphicon-copy:before {
    content: "\e205"
}

.glyphicon-paste:before {
    content: "\e206"
}

.glyphicon-alert:before {
    content: "\e209"
}

.glyphicon-equalizer:before {
    content: "\e210"
}

.glyphicon-king:before {
    content: "\e211"
}

.glyphicon-queen:before {
    content: "\e212"
}

.glyphicon-pawn:before {
    content: "\e213"
}

.glyphicon-bishop:before {
    content: "\e214"
}

.glyphicon-knight:before {
    content: "\e215"
}

.glyphicon-baby-formula:before {
    content: "\e216"
}

.glyphicon-tent:before {
    content: "\26fa"
}

.glyphicon-blackboard:before {
    content: "\e218"
}

.glyphicon-bed:before {
    content: "\e219"
}

.glyphicon-apple:before {
    content: "\f8ff"
}

.glyphicon-erase:before {
    content: "\e221"
}

.glyphicon-hourglass:before {
    content: "\231b"
}

.glyphicon-lamp:before {
    content: "\e223"
}

.glyphicon-duplicate:before {
    content: "\e224"
}

.glyphicon-piggy-bank:before {
    content: "\e225"
}

.glyphicon-scissors:before {
    content: "\e226"
}

.glyphicon-bitcoin:before {
    content: "\e227"
}

.glyphicon-yen:before {
    content: "\00a5"
}

.glyphicon-ruble:before {
    content: "\20bd"
}

.glyphicon-scale:before {
    content: "\e230"
}

.glyphicon-ice-lolly:before {
    content: "\e231"
}

.glyphicon-ice-lolly-tasted:before {
    content: "\e232"
}

.glyphicon-education:before {
    content: "\e233"
}

.glyphicon-option-horizontal:before {
    content: "\e234"
}

.glyphicon-option-vertical:before {
    content: "\e235"
}

.glyphicon-menu-hamburger:before {
    content: "\e236"
}

.glyphicon-modal-window:before {
    content: "\e237"
}

.glyphicon-oil:before {
    content: "\e238"
}

.glyphicon-grain:before {
    content: "\e239"
}

.glyphicon-sunglasses:before {
    content: "\e240"
}

.glyphicon-text-size:before {
    content: "\e241"
}

.glyphicon-text-color:before {
    content: "\e242"
}

.glyphicon-text-background:before {
    content: "\e243"
}

.glyphicon-object-align-top:before {
    content: "\e244"
}

.glyphicon-object-align-bottom:before {
    content: "\e245"
}

.glyphicon-object-align-horizontal:before {
    content: "\e246"
}

.glyphicon-object-align-left:before {
    content: "\e247"
}

.glyphicon-object-align-vertical:before {
    content: "\e248"
}

.glyphicon-object-align-right:before {
    content: "\e249"
}

.glyphicon-triangle-right:before {
    content: "\e250"
}

.glyphicon-triangle-left:before {
    content: "\e251"
}

.glyphicon-triangle-bottom:before {
    content: "\e252"
}

.glyphicon-triangle-top:before {
    content: "\e253"
}

.glyphicon-console:before {
    content: "\e254"
}

.glyphicon-superscript:before {
    content: "\e255"
}

.glyphicon-subscript:before {
    content: "\e256"
}

.glyphicon-menu-left:before {
    content: "\e257"
}

.glyphicon-menu-right:before {
    content: "\e258"
}

.glyphicon-menu-down:before {
    content: "\e259"
}

.glyphicon-menu-up:before {
    content: "\e260"
}

@font-face {
    font-family: FontAwesome;
    src: url(../fonts/font-awesome/fontawesome-webfont.eot?v=4.3.0);
    src: url(../fonts/font-awesome/fontawesome-webfont.eot?#iefix&v=4.3.0) format('embedded-opentype'), url(../fonts/font-awesome/fontawesome-webfont.woff2?v=4.3.0) format('woff2'), url(../fonts/font-awesome/fontawesome-webfont.woff?v=4.3.0) format('woff'), url(../fonts/font-awesome/fontawesome-webfont.ttf?v=4.3.0) format('truetype'), url(../fonts/font-awesome/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular) format('svg');
    font-weight: 400;
    font-style: normal;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
}

.fa-lg {
    font-size: 1.33333333em;
    line-height: .75em;
    vertical-align: -15%
}

.fa-2x {
    font-size: 2em;
}

.fa-3x {
    font-size: 3em;
}

.fa-4x {
    font-size: 4em;
}

.fa-5x {
    font-size: 5em;
}

.fa-fw {
    width: 1.28571429em;
    text-align: center;
}

.fa-ul {
    padding-left: 0;
    margin-left: 2.14285714em;
    list-style-type: none;
}

    .fa-ul > li {
        position: relative;
    }

.fa-li {
    position: absolute;
    left: -2.14285714em;
    width: 2.14285714em;
    top: .14285714em;
    text-align: center;
}

    .fa-li.fa-lg {
        left: -1.85714286em;
    }

.fa-border {
    padding: .2em .25em .15em;
    border: .08em solid #eee;
    border-radius: .1em;
}

.fa.pull-left {
    margin-right: .3em;
}

.fa.pull-right {
    margin-left: .3em;
}

.fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

.fa-rotate-90 {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.fa-rotate-180 {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.fa-rotate-270 {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.fa-flip-horizontal {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

.fa-flip-vertical {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
    -webkit-transform: scale(1, -1);
    -ms-transform: scale(1, -1);
    transform: scale(1, -1);
}

:root .fa-flip-horizontal, :root .fa-flip-vertical, :root .fa-rotate-180, :root .fa-rotate-270, :root .fa-rotate-90 {
    filter: none;
}

.fa-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle;
}

.fa-stack-1x, .fa-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
}

.fa-stack-1x {
    line-height: inherit;
}

.fa-stack-2x {
    font-size: 2em;
}

.fa-inverse {
    color: #fff;
}

.fa-glass:before {
    content: "\f000"
}

.fa-music:before {
    content: "\f001"
}

.fa-search:before {
    content: "\f002"
}

.fa-envelope-o:before {
    content: "\f003"
}

.fa-heart:before {
    content: "\f004"
}

.fa-star:before {
    content: "\f005"
}

.fa-star-o:before {
    content: "\f006"
}

.fa-user:before {
    content: "\f007"
}

.fa-film:before {
    content: "\f008"
}

.fa-th-large:before {
    content: "\f009"
}

.fa-th:before {
    content: "\f00a"
}

.fa-th-list:before {
    content: "\f00b"
}

.fa-check:before {
    content: "\f00c"
}

.fa-close:before, .fa-remove:before, .fa-times:before {
    content: "\f00d"
}

.fa-search-plus:before {
    content: "\f00e"
}

.fa-search-minus:before {
    content: "\f010"
}

.fa-power-off:before {
    content: "\f011"
}

.fa-signal:before {
    content: "\f012"
}

.fa-cog:before, .fa-gear:before {
    content: "\f013"
}

.fa-trash-o:before {
    content: "\f014"
}

.fa-home:before {
    content: "\f015"
}

.fa-file-o:before {
    content: "\f016"
}

.fa-clock-o:before {
    content: "\f017"
}

.fa-road:before {
    content: "\f018"
}

.fa-download:before {
    content: "\f019"
}

.fa-arrow-circle-o-down:before {
    content: "\f01a"
}

.fa-arrow-circle-o-up:before {
    content: "\f01b"
}

.fa-inbox:before {
    content: "\f01c"
}

.fa-play-circle-o:before {
    content: "\f01d"
}

.fa-repeat:before, .fa-rotate-right:before {
    content: "\f01e"
}

.fa-refresh:before {
    content: "\f021"
}

.fa-list-alt:before {
    content: "\f022"
}

.fa-lock:before {
    content: "\f023"
}

.fa-flag:before {
    content: "\f024"
}

.fa-headphones:before {
    content: "\f025"
}

.fa-volume-off:before {
    content: "\f026"
}

.fa-volume-down:before {
    content: "\f027"
}

.fa-volume-up:before {
    content: "\f028"
}

.fa-qrcode:before {
    content: "\f029"
}

.fa-barcode:before {
    content: "\f02a"
}

.fa-tag:before {
    content: "\f02b"
}

.fa-tags:before {
    content: "\f02c"
}

.fa-book:before {
    content: "\f02d"
}

.fa-bookmark:before {
    content: "\f02e"
}

.fa-print:before {
    content: "\f02f"
}

.fa-camera:before {
    content: "\f030"
}

.fa-font:before {
    content: "\f031"
}

.fa-bold:before {
    content: "\f032"
}

.fa-italic:before {
    content: "\f033"
}

.fa-text-height:before {
    content: "\f034"
}

.fa-text-width:before {
    content: "\f035"
}

.fa-align-left:before {
    content: "\f036"
}

.fa-align-center:before {
    content: "\f037"
}

.fa-align-right:before {
    content: "\f038"
}

.fa-align-justify:before {
    content: "\f039"
}

.fa-list:before {
    content: "\f03a"
}

.fa-dedent:before, .fa-outdent:before {
    content: "\f03b"
}

.fa-indent:before {
    content: "\f03c"
}

.fa-video-camera:before {
    content: "\f03d"
}

.fa-image:before, .fa-photo:before, .fa-picture-o:before {
    content: "\f03e"
}

.fa-pencil:before {
    content: "\f040"
}

.fa-map-marker:before {
    content: "\f041"
}

.fa-adjust:before {
    content: "\f042"
}

.fa-tint:before {
    content: "\f043"
}

.fa-edit:before, .fa-pencil-square-o:before {
    content: "\f044"
}

.fa-share-square-o:before {
    content: "\f045"
}

.fa-check-square-o:before {
    content: "\f046"
}

.fa-arrows:before {
    content: "\f047"
}

.fa-step-backward:before {
    content: "\f048"
}

.fa-fast-backward:before {
    content: "\f049"
}

.fa-backward:before {
    content: "\f04a"
}

.fa-play:before {
    content: "\f04b"
}

.fa-pause:before {
    content: "\f04c"
}

.fa-stop:before {
    content: "\f04d"
}

.fa-forward:before {
    content: "\f04e"
}

.fa-fast-forward:before {
    content: "\f050"
}

.fa-step-forward:before {
    content: "\f051"
}

.fa-eject:before {
    content: "\f052"
}

.fa-chevron-left:before {
    content: "\f053"
}

.fa-chevron-right:before {
    content: "\f054"
}

.fa-plus-circle:before {
    content: "\f055"
}

.fa-minus-circle:before {
    content: "\f056"
}

.fa-times-circle:before {
    content: "\f057"
}

.fa-check-circle:before {
    content: "\f058"
}

.fa-question-circle:before {
    content: "\f059"
}

.fa-info-circle:before {
    content: "\f05a"
}

.fa-crosshairs:before {
    content: "\f05b"
}

.fa-times-circle-o:before {
    content: "\f05c"
}

.fa-check-circle-o:before {
    content: "\f05d"
}

.fa-ban:before {
    content: "\f05e"
}

.fa-arrow-left:before {
    content: "\f060"
}

.fa-arrow-right:before {
    content: "\f061"
}

.fa-arrow-up:before {
    content: "\f062"
}

.fa-arrow-down:before {
    content: "\f063"
}

.fa-mail-forward:before, .fa-share:before {
    content: "\f064"
}

.fa-expand:before {
    content: "\f065"
}

.fa-compress:before {
    content: "\f066"
}

.fa-plus:before {
    content: "\f067"
}

.fa-minus:before {
    content: "\f068"
}

.fa-asterisk:before {
    content: "\f069"
}

.fa-exclamation-circle:before {
    content: "\f06a"
}

.fa-gift:before {
    content: "\f06b"
}

.fa-leaf:before {
    content: "\f06c"
}

.fa-fire:before {
    content: "\f06d"
}

.fa-eye:before {
    content: "\f06e"
}

.fa-eye-slash:before {
    content: "\f070"
}

.fa-exclamation-triangle:before, .fa-warning:before {
    content: "\f071"
}

.fa-plane:before {
    content: "\f072"
}

.fa-calendar:before {
    content: "\f073"
}

.fa-random:before {
    content: "\f074"
}

.fa-comment:before {
    content: "\f075"
}

.fa-magnet:before {
    content: "\f076"
}

.fa-chevron-up:before {
    content: "\f077"
}

.fa-chevron-down:before {
    content: "\f078"
}

.fa-retweet:before {
    content: "\f079"
}

.fa-shopping-cart:before {
    content: "\f07a"
}

.fa-folder:before {
    content: "\f07b"
}

.fa-folder-open:before {
    content: "\f07c"
}

.fa-arrows-v:before {
    content: "\f07d"
}

.fa-arrows-h:before {
    content: "\f07e"
}

.fa-bar-chart-o:before, .fa-bar-chart:before {
    content: "\f080"
}

.fa-twitter-square:before {
    content: "\f081"
}

.fa-facebook-square:before {
    content: "\f082"
}

.fa-camera-retro:before {
    content: "\f083"
}

.fa-key:before {
    content: "\f084"
}

.fa-cogs:before, .fa-gears:before {
    content: "\f085"
}

.fa-comments:before {
    content: "\f086"
}

.fa-thumbs-o-up:before {
    content: "\f087"
}

.fa-thumbs-o-down:before {
    content: "\f088"
}

.fa-star-half:before {
    content: "\f089"
}

.fa-heart-o:before {
    content: "\f08a"
}

.fa-sign-out:before {
    content: "\f08b"
}

.fa-linkedin-square:before {
    content: "\f08c"
}

.fa-thumb-tack:before {
    content: "\f08d"
}

.fa-external-link:before {
    content: "\f08e"
}

.fa-sign-in:before {
    content: "\f090"
}

.fa-trophy:before {
    content: "\f091"
}

.fa-github-square:before {
    content: "\f092"
}

.fa-upload:before {
    content: "\f093"
}

.fa-lemon-o:before {
    content: "\f094"
}

.fa-phone:before {
    content: "\f095"
}

.fa-square-o:before {
    content: "\f096"
}

.fa-bookmark-o:before {
    content: "\f097"
}

.fa-phone-square:before {
    content: "\f098"
}

.fa-twitter:before {
    content: "\f099"
}

.fa-facebook-f:before, .fa-facebook:before {
    content: "\f09a"
}

.fa-github:before {
    content: "\f09b"
}

.fa-unlock:before {
    content: "\f09c"
}

.fa-credit-card:before {
    content: "\f09d"
}

.fa-rss:before {
    content: "\f09e"
}

.fa-hdd-o:before {
    content: "\f0a0"
}

.fa-bullhorn:before {
    content: "\f0a1"
}

.fa-bell:before {
    content: "\f0f3"
}

.fa-certificate:before {
    content: "\f0a3"
}

.fa-hand-o-right:before {
    content: "\f0a4"
}

.fa-hand-o-left:before {
    content: "\f0a5"
}

.fa-hand-o-up:before {
    content: "\f0a6"
}

.fa-hand-o-down:before {
    content: "\f0a7"
}

.fa-arrow-circle-left:before {
    content: "\f0a8"
}

.fa-arrow-circle-right:before {
    content: "\f0a9"
}

.fa-arrow-circle-up:before {
    content: "\f0aa"
}

.fa-arrow-circle-down:before {
    content: "\f0ab"
}

.fa-globe:before {
    content: "\f0ac"
}

.fa-wrench:before {
    content: "\f0ad"
}

.fa-tasks:before {
    content: "\f0ae"
}

.fa-filter:before {
    content: "\f0b0"
}

.fa-briefcase:before {
    content: "\f0b1"
}

.fa-arrows-alt:before {
    content: "\f0b2"
}

.fa-group:before, .fa-users:before {
    content: "\f0c0"
}

.fa-chain:before, .fa-link:before {
    content: "\f0c1"
}

.fa-cloud:before {
    content: "\f0c2"
}

.fa-flask:before {
    content: "\f0c3"
}

.fa-cut:before, .fa-scissors:before {
    content: "\f0c4"
}

.fa-copy:before, .fa-files-o:before {
    content: "\f0c5"
}

.fa-paperclip:before {
    content: "\f0c6"
}

.fa-floppy-o:before, .fa-save:before {
    content: "\f0c7"
}

.fa-square:before {
    content: "\f0c8"
}

.fa-bars:before, .fa-navicon:before, .fa-reorder:before {
    content: "\f0c9"
}

.fa-list-ul:before {
    content: "\f0ca"
}

.fa-list-ol:before {
    content: "\f0cb"
}

.fa-strikethrough:before {
    content: "\f0cc"
}

.fa-underline:before {
    content: "\f0cd"
}

.fa-table:before {
    content: "\f0ce"
}

.fa-magic:before {
    content: "\f0d0"
}

.fa-truck:before {
    content: "\f0d1"
}

.fa-pinterest:before {
    content: "\f0d2"
}

.fa-pinterest-square:before {
    content: "\f0d3"
}

.fa-google-plus-square:before {
    content: "\f0d4"
}

.fa-google-plus:before {
    content: "\f0d5"
}

.fa-money:before {
    content: "\f0d6"
}

.fa-caret-down:before {
    content: "\f0d7"
}

.fa-caret-up:before {
    content: "\f0d8"
}

.fa-caret-left:before {
    content: "\f0d9"
}

.fa-caret-right:before {
    content: "\f0da"
}

.fa-columns:before {
    content: "\f0db"
}

.fa-sort:before, .fa-unsorted:before {
    content: "\f0dc"
}

.fa-sort-desc:before, .fa-sort-down:before {
    content: "\f0dd"
}

.fa-sort-asc:before, .fa-sort-up:before {
    content: "\f0de"
}

.fa-envelope:before {
    content: "\f0e0"
}

.fa-linkedin:before {
    content: "\f0e1"
}

.fa-rotate-left:before, .fa-undo:before {
    content: "\f0e2"
}

.fa-gavel:before, .fa-legal:before {
    content: "\f0e3"
}

.fa-dashboard:before, .fa-tachometer:before {
    content: "\f0e4"
}

.fa-comment-o:before {
    content: "\f0e5"
}

.fa-comments-o:before {
    content: "\f0e6"
}

.fa-bolt:before, .fa-flash:before {
    content: "\f0e7"
}

.fa-sitemap:before {
    content: "\f0e8"
}

.fa-umbrella:before {
    content: "\f0e9"
}

.fa-clipboard:before, .fa-paste:before {
    content: "\f0ea"
}

.fa-lightbulb-o:before {
    content: "\f0eb"
}

.fa-exchange:before {
    content: "\f0ec"
}

.fa-cloud-download:before {
    content: "\f0ed"
}

.fa-cloud-upload:before {
    content: "\f0ee"
}

.fa-user-md:before {
    content: "\f0f0"
}

.fa-stethoscope:before {
    content: "\f0f1"
}

.fa-suitcase:before {
    content: "\f0f2"
}

.fa-bell-o:before {
    content: "\f0a2"
}

.fa-coffee:before {
    content: "\f0f4"
}

.fa-cutlery:before {
    content: "\f0f5"
}

.fa-file-text-o:before {
    content: "\f0f6"
}

.fa-building-o:before {
    content: "\f0f7"
}

.fa-hospital-o:before {
    content: "\f0f8"
}

.fa-ambulance:before {
    content: "\f0f9"
}

.fa-medkit:before {
    content: "\f0fa"
}

.fa-fighter-jet:before {
    content: "\f0fb"
}

.fa-beer:before {
    content: "\f0fc"
}

.fa-h-square:before {
    content: "\f0fd"
}

.fa-plus-square:before {
    content: "\f0fe"
}

.fa-angle-double-left:before {
    content: "\f100"
}

.fa-angle-double-right:before {
    content: "\f101"
}

.fa-angle-double-up:before {
    content: "\f102"
}

.fa-angle-double-down:before {
    content: "\f103"
}

.fa-angle-left:before {
    content: "\f104"
}

.fa-angle-right:before {
    content: "\f105"
}

.fa-angle-up:before {
    content: "\f106"
}

.fa-angle-down:before {
    content: "\f107"
}

.fa-desktop:before {
    content: "\f108"
}

.fa-laptop:before {
    content: "\f109"
}

.fa-tablet:before {
    content: "\f10a"
}

.fa-mobile-phone:before, .fa-mobile:before {
    content: "\f10b"
}

.fa-circle-o:before {
    content: "\f10c"
}

.fa-quote-left:before {
    content: "\f10d"
}

.fa-quote-right:before {
    content: "\f10e"
}

.fa-spinner:before {
    content: "\f110"
}

.fa-circle:before {
    content: "\f111"
}

.fa-mail-reply:before, .fa-reply:before {
    content: "\f112"
}

.fa-github-alt:before {
    content: "\f113"
}

.fa-folder-o:before {
    content: "\f114"
}

.fa-folder-open-o:before {
    content: "\f115"
}

.fa-smile-o:before {
    content: "\f118"
}

.fa-frown-o:before {
    content: "\f119"
}

.fa-meh-o:before {
    content: "\f11a"
}

.fa-gamepad:before {
    content: "\f11b"
}

.fa-keyboard-o:before {
    content: "\f11c"
}

.fa-flag-o:before {
    content: "\f11d"
}

.fa-flag-checkered:before {
    content: "\f11e"
}

.fa-terminal:before {
    content: "\f120"
}

.fa-code:before {
    content: "\f121"
}

.fa-mail-reply-all:before, .fa-reply-all:before {
    content: "\f122"
}

.fa-star-half-empty:before, .fa-star-half-full:before, .fa-star-half-o:before {
    content: "\f123"
}

.fa-location-arrow:before {
    content: "\f124"
}

.fa-crop:before {
    content: "\f125"
}

.fa-code-fork:before {
    content: "\f126"
}

.fa-chain-broken:before, .fa-unlink:before {
    content: "\f127"
}

.fa-question:before {
    content: "\f128"
}

.fa-info:before {
    content: "\f129"
}

.fa-exclamation:before {
    content: "\f12a"
}

.fa-superscript:before {
    content: "\f12b"
}

.fa-subscript:before {
    content: "\f12c"
}

.fa-eraser:before {
    content: "\f12d"
}

.fa-puzzle-piece:before {
    content: "\f12e"
}

.fa-microphone:before {
    content: "\f130"
}

.fa-microphone-slash:before {
    content: "\f131"
}

.fa-shield:before {
    content: "\f132"
}

.fa-calendar-o:before {
    content: "\f133"
}

.fa-fire-extinguisher:before {
    content: "\f134"
}

.fa-rocket:before {
    content: "\f135"
}

.fa-maxcdn:before {
    content: "\f136"
}

.fa-chevron-circle-left:before {
    content: "\f137"
}

.fa-chevron-circle-right:before {
    content: "\f138"
}

.fa-chevron-circle-up:before {
    content: "\f139"
}

.fa-chevron-circle-down:before {
    content: "\f13a"
}

.fa-html5:before {
    content: "\f13b"
}

.fa-css3:before {
    content: "\f13c"
}

.fa-anchor:before {
    content: "\f13d"
}

.fa-unlock-alt:before {
    content: "\f13e"
}

.fa-bullseye:before {
    content: "\f140"
}

.fa-ellipsis-h:before {
    content: "\f141"
}

.fa-ellipsis-v:before {
    content: "\f142"
}

.fa-rss-square:before {
    content: "\f143"
}

.fa-play-circle:before {
    content: "\f144"
}

.fa-ticket:before {
    content: "\f145"
}

.fa-minus-square:before {
    content: "\f146"
}

.fa-minus-square-o:before {
    content: "\f147"
}

.fa-level-up:before {
    content: "\f148"
}

.fa-level-down:before {
    content: "\f149"
}

.fa-check-square:before {
    content: "\f14a"
}

.fa-pencil-square:before {
    content: "\f14b"
}

.fa-external-link-square:before {
    content: "\f14c"
}

.fa-share-square:before {
    content: "\f14d"
}

.fa-compass:before {
    content: "\f14e"
}

.fa-caret-square-o-down:before, .fa-toggle-down:before {
    content: "\f150"
}

.fa-caret-square-o-up:before, .fa-toggle-up:before {
    content: "\f151"
}

.fa-caret-square-o-right:before, .fa-toggle-right:before {
    content: "\f152"
}

.fa-eur:before, .fa-euro:before {
    content: "\f153"
}

.fa-gbp:before {
    content: "\f154"
}

.fa-dollar:before, .fa-usd:before {
    content: "\f155"
}

.fa-inr:before, .fa-rupee:before {
    content: "\f156"
}

.fa-cny:before, .fa-jpy:before, .fa-rmb:before, .fa-yen:before {
    content: "\f157"
}

.fa-rouble:before, .fa-rub:before, .fa-ruble:before {
    content: "\f158"
}

.fa-krw:before, .fa-won:before {
    content: "\f159"
}

.fa-bitcoin:before, .fa-btc:before {
    content: "\f15a"
}

.fa-file:before {
    content: "\f15b"
}

.fa-file-text:before {
    content: "\f15c"
}

.fa-sort-alpha-asc:before {
    content: "\f15d"
}

.fa-sort-alpha-desc:before {
    content: "\f15e"
}

.fa-sort-amount-asc:before {
    content: "\f160"
}

.fa-sort-amount-desc:before {
    content: "\f161"
}

.fa-sort-numeric-asc:before {
    content: "\f162"
}

.fa-sort-numeric-desc:before {
    content: "\f163"
}

.fa-thumbs-up:before {
    content: "\f164"
}

.fa-thumbs-down:before {
    content: "\f165"
}

.fa-youtube-square:before {
    content: "\f166"
}

.fa-youtube:before {
    content: "\f167"
}

.fa-xing:before {
    content: "\f168"
}

.fa-xing-square:before {
    content: "\f169"
}

.fa-youtube-play:before {
    content: "\f16a"
}

.fa-dropbox:before {
    content: "\f16b"
}

.fa-stack-overflow:before {
    content: "\f16c"
}

.fa-instagram:before {
    content: "\f16d"
}

.fa-flickr:before {
    content: "\f16e"
}

.fa-adn:before {
    content: "\f170"
}

.fa-bitbucket:before {
    content: "\f171"
}

.fa-bitbucket-square:before {
    content: "\f172"
}

.fa-tumblr:before {
    content: "\f173"
}

.fa-tumblr-square:before {
    content: "\f174"
}

.fa-long-arrow-down:before {
    content: "\f175"
}

.fa-long-arrow-up:before {
    content: "\f176"
}

.fa-long-arrow-left:before {
    content: "\f177"
}

.fa-long-arrow-right:before {
    content: "\f178"
}

.fa-apple:before {
    content: "\f179"
}

.fa-windows:before {
    content: "\f17a"
}

.fa-android:before {
    content: "\f17b"
}

.fa-linux:before {
    content: "\f17c"
}

.fa-dribbble:before {
    content: "\f17d"
}

.fa-skype:before {
    content: "\f17e"
}

.fa-foursquare:before {
    content: "\f180"
}

.fa-trello:before {
    content: "\f181"
}

.fa-female:before {
    content: "\f182"
}

.fa-male:before {
    content: "\f183"
}

.fa-gittip:before, .fa-gratipay:before {
    content: "\f184"
}

.fa-sun-o:before {
    content: "\f185"
}

.fa-moon-o:before {
    content: "\f186"
}

.fa-archive:before {
    content: "\f187"
}

.fa-bug:before {
    content: "\f188"
}

.fa-vk:before {
    content: "\f189"
}

.fa-weibo:before {
    content: "\f18a"
}

.fa-renren:before {
    content: "\f18b"
}

.fa-pagelines:before {
    content: "\f18c"
}

.fa-stack-exchange:before {
    content: "\f18d"
}

.fa-arrow-circle-o-right:before {
    content: "\f18e"
}

.fa-arrow-circle-o-left:before {
    content: "\f190"
}

.fa-caret-square-o-left:before, .fa-toggle-left:before {
    content: "\f191"
}

.fa-dot-circle-o:before {
    content: "\f192"
}

.fa-wheelchair:before {
    content: "\f193"
}

.fa-vimeo-square:before {
    content: "\f194"
}

.fa-try:before, .fa-turkish-lira:before {
    content: "\f195"
}

.fa-plus-square-o:before {
    content: "\f196"
}

.fa-space-shuttle:before {
    content: "\f197"
}

.fa-slack:before {
    content: "\f198"
}

.fa-envelope-square:before {
    content: "\f199"
}

.fa-wordpress:before {
    content: "\f19a"
}

.fa-openid:before {
    content: "\f19b"
}

.fa-bank:before, .fa-institution:before, .fa-university:before {
    content: "\f19c"
}

.fa-graduation-cap:before, .fa-mortar-board:before {
    content: "\f19d"
}

.fa-yahoo:before {
    content: "\f19e"
}

.fa-google:before {
    content: "\f1a0"
}

.fa-reddit:before {
    content: "\f1a1"
}

.fa-reddit-square:before {
    content: "\f1a2"
}

.fa-stumbleupon-circle:before {
    content: "\f1a3"
}

.fa-stumbleupon:before {
    content: "\f1a4"
}

.fa-delicious:before {
    content: "\f1a5"
}

.fa-digg:before {
    content: "\f1a6"
}

.fa-pied-piper:before {
    content: "\f1a7"
}

.fa-pied-piper-alt:before {
    content: "\f1a8"
}

.fa-drupal:before {
    content: "\f1a9"
}

.fa-joomla:before {
    content: "\f1aa"
}

.fa-language:before {
    content: "\f1ab"
}

.fa-fax:before {
    content: "\f1ac"
}

.fa-building:before {
    content: "\f1ad"
}

.fa-child:before {
    content: "\f1ae"
}

.fa-paw:before {
    content: "\f1b0"
}

.fa-spoon:before {
    content: "\f1b1"
}

.fa-cube:before {
    content: "\f1b2"
}

.fa-cubes:before {
    content: "\f1b3"
}

.fa-behance:before {
    content: "\f1b4"
}

.fa-behance-square:before {
    content: "\f1b5"
}

.fa-steam:before {
    content: "\f1b6"
}

.fa-steam-square:before {
    content: "\f1b7"
}

.fa-recycle:before {
    content: "\f1b8"
}

.fa-automobile:before, .fa-car:before {
    content: "\f1b9"
}

.fa-cab:before, .fa-taxi:before {
    content: "\f1ba"
}

.fa-tree:before {
    content: "\f1bb"
}

.fa-spotify:before {
    content: "\f1bc"
}

.fa-deviantart:before {
    content: "\f1bd"
}

.fa-soundcloud:before {
    content: "\f1be"
}

.fa-database:before {
    content: "\f1c0"
}

.fa-file-pdf-o:before {
    content: "\f1c1"
}

.fa-file-word-o:before {
    content: "\f1c2"
}

.fa-file-excel-o:before {
    content: "\f1c3"
}

.fa-file-powerpoint-o:before {
    content: "\f1c4"
}

.fa-file-image-o:before, .fa-file-photo-o:before, .fa-file-picture-o:before {
    content: "\f1c5"
}

.fa-file-archive-o:before, .fa-file-zip-o:before {
    content: "\f1c6"
}

.fa-file-audio-o:before, .fa-file-sound-o:before {
    content: "\f1c7"
}

.fa-file-movie-o:before, .fa-file-video-o:before {
    content: "\f1c8"
}

.fa-file-code-o:before {
    content: "\f1c9"
}

.fa-vine:before {
    content: "\f1ca"
}

.fa-codepen:before {
    content: "\f1cb"
}

.fa-jsfiddle:before {
    content: "\f1cc"
}

.fa-life-bouy:before, .fa-life-buoy:before, .fa-life-ring:before, .fa-life-saver:before, .fa-support:before {
    content: "\f1cd"
}

.fa-circle-o-notch:before {
    content: "\f1ce"
}

.fa-ra:before, .fa-rebel:before {
    content: "\f1d0"
}

.fa-empire:before, .fa-ge:before {
    content: "\f1d1"
}

.fa-git-square:before {
    content: "\f1d2"
}

.fa-git:before {
    content: "\f1d3"
}

.fa-hacker-news:before {
    content: "\f1d4"
}

.fa-tencent-weibo:before {
    content: "\f1d5"
}

.fa-qq:before {
    content: "\f1d6"
}

.fa-wechat:before, .fa-weixin:before {
    content: "\f1d7"
}

.fa-paper-plane:before, .fa-send:before {
    content: "\f1d8"
}

.fa-paper-plane-o:before, .fa-send-o:before {
    content: "\f1d9"
}

.fa-history:before {
    content: "\f1da"
}

.fa-circle-thin:before, .fa-genderless:before {
    content: "\f1db"
}

.fa-header:before {
    content: "\f1dc"
}

.fa-paragraph:before {
    content: "\f1dd"
}

.fa-sliders:before {
    content: "\f1de"
}

.fa-share-alt:before {
    content: "\f1e0"
}

.fa-share-alt-square:before {
    content: "\f1e1"
}

.fa-bomb:before {
    content: "\f1e2"
}

.fa-futbol-o:before, .fa-soccer-ball-o:before {
    content: "\f1e3"
}

.fa-tty:before {
    content: "\f1e4"
}

.fa-binoculars:before {
    content: "\f1e5"
}

.fa-plug:before {
    content: "\f1e6"
}

.fa-slideshare:before {
    content: "\f1e7"
}

.fa-twitch:before {
    content: "\f1e8"
}

.fa-yelp:before {
    content: "\f1e9"
}

.fa-newspaper-o:before {
    content: "\f1ea"
}

.fa-wifi:before {
    content: "\f1eb"
}

.fa-calculator:before {
    content: "\f1ec"
}

.fa-paypal:before {
    content: "\f1ed"
}

.fa-google-wallet:before {
    content: "\f1ee"
}

.fa-cc-visa:before {
    content: "\f1f0"
}

.fa-cc-mastercard:before {
    content: "\f1f1"
}

.fa-cc-discover:before {
    content: "\f1f2"
}

.fa-cc-amex:before {
    content: "\f1f3"
}

.fa-cc-paypal:before {
    content: "\f1f4"
}

.fa-cc-stripe:before {
    content: "\f1f5"
}

.fa-bell-slash:before {
    content: "\f1f6"
}

.fa-bell-slash-o:before {
    content: "\f1f7"
}

.fa-trash:before {
    content: "\f1f8"
}

.fa-copyright:before {
    content: "\f1f9"
}

.fa-at:before {
    content: "\f1fa"
}

.fa-eyedropper:before {
    content: "\f1fb"
}

.fa-paint-brush:before {
    content: "\f1fc"
}

.fa-birthday-cake:before {
    content: "\f1fd"
}

.fa-area-chart:before {
    content: "\f1fe"
}

.fa-pie-chart:before {
    content: "\f200"
}

.fa-line-chart:before {
    content: "\f201"
}

.fa-lastfm:before {
    content: "\f202"
}

.fa-lastfm-square:before {
    content: "\f203"
}

.fa-toggle-off:before {
    content: "\f204"
}

.fa-toggle-on:before {
    content: "\f205"
}

.fa-bicycle:before {
    content: "\f206"
}

.fa-bus:before {
    content: "\f207"
}

.fa-ioxhost:before {
    content: "\f208"
}

.fa-angellist:before {
    content: "\f209"
}

.fa-cc:before {
    content: "\f20a"
}

.fa-ils:before, .fa-shekel:before, .fa-sheqel:before {
    content: "\f20b"
}

.fa-meanpath:before {
    content: "\f20c"
}

.fa-buysellads:before {
    content: "\f20d"
}

.fa-connectdevelop:before {
    content: "\f20e"
}

.fa-dashcube:before {
    content: "\f210"
}

.fa-forumbee:before {
    content: "\f211"
}

.fa-leanpub:before {
    content: "\f212"
}

.fa-sellsy:before {
    content: "\f213"
}

.fa-shirtsinbulk:before {
    content: "\f214"
}

.fa-simplybuilt:before {
    content: "\f215"
}

.fa-skyatlas:before {
    content: "\f216"
}

.fa-cart-plus:before {
    content: "\f217"
}

.fa-cart-arrow-down:before {
    content: "\f218"
}

.fa-diamond:before {
    content: "\f219"
}

.fa-ship:before {
    content: "\f21a"
}

.fa-user-secret:before {
    content: "\f21b"
}

.fa-motorcycle:before {
    content: "\f21c"
}

.fa-street-view:before {
    content: "\f21d"
}

.fa-heartbeat:before {
    content: "\f21e"
}

.fa-venus:before {
    content: "\f221"
}

.fa-mars:before {
    content: "\f222"
}

.fa-mercury:before {
    content: "\f223"
}

.fa-transgender:before {
    content: "\f224"
}

.fa-transgender-alt:before {
    content: "\f225"
}

.fa-venus-double:before {
    content: "\f226"
}

.fa-mars-double:before {
    content: "\f227"
}

.fa-venus-mars:before {
    content: "\f228"
}

.fa-mars-stroke:before {
    content: "\f229"
}

.fa-mars-stroke-v:before {
    content: "\f22a"
}

.fa-mars-stroke-h:before {
    content: "\f22b"
}

.fa-neuter:before {
    content: "\f22c"
}

.fa-facebook-official:before {
    content: "\f230"
}

.fa-pinterest-p:before {
    content: "\f231"
}

.fa-whatsapp:before {
    content: "\f232"
}

.fa-server:before {
    content: "\f233"
}

.fa-user-plus:before {
    content: "\f234"
}

.fa-user-times:before {
    content: "\f235"
}

.fa-bed:before, .fa-hotel:before {
    content: "\f236"
}

.fa-viacoin:before {
    content: "\f237"
}

.fa-train:before {
    content: "\f238"
}

.fa-subway:before {
    content: "\f239"
}

.fa-medium:before {
    content: "\f23a"
}

@font-face {
    font-family: StateFaceRegular;
    src: url(../fonts/stateface/stateface-regular-webfont.eot);
    src: url(../fonts/stateface/stateface-regular-webfont.eot?#iefix) format('embedded-opentype'), url(../fonts/stateface/stateface-regular-webfont.woff) format('woff'), url(../fonts/stateface/stateface-regular-webfont.ttf) format('truetype'), url(../fonts/stateface/stateface-regular-webfont.svg#StateFaceRegular) format('svg');
    font-weight: 400;
    font-style: normal;
}

.stateface {
    font-family: StateFaceRegular;
    display: inline-block;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.stateface-ak:before {
    content: "A"
}

.stateface-al:before {
    content: "B"
}

.stateface-ar:before {
    content: "C"
}

.stateface-az:before {
    content: "D"
}

.stateface-ca:before {
    content: "E"
}

.stateface-co:before {
    content: "F"
}

.stateface-ct:before {
    content: "G"
}

.stateface-dc:before {
    content: "y"
}

.stateface-de:before {
    content: "H"
}

.stateface-fl:before {
    content: "I"
}

.stateface-ga:before {
    content: "J"
}

.stateface-hi:before {
    content: "K"
}

.stateface-ia:before {
    content: "L"
}

.stateface-id:before {
    content: "M"
}

.stateface-il:before {
    content: "N"
}

.stateface-in:before {
    content: "O"
}

.stateface-ks:before {
    content: "P"
}

.stateface-ky:before {
    content: "Q"
}

.stateface-la:before {
    content: "R"
}

.stateface-ma:before {
    content: "S"
}

.stateface-md:before {
    content: "T"
}

.stateface-me:before {
    content: "U"
}

.stateface-mi:before {
    content: "V"
}

.stateface-mn:before {
    content: "W"
}

.stateface-mo:before {
    content: "X"
}

.stateface-ms:before {
    content: "Y"
}

.stateface-mt:before {
    content: "Z"
}

.stateface-nc:before {
    content: "a"
}

.stateface-nd:before {
    content: "b"
}

.stateface-ne:before {
    content: "c"
}

.stateface-nh:before {
    content: "d"
}

.stateface-nj:before {
    content: "e"
}

.stateface-nm:before {
    content: "f"
}

.stateface-nv:before {
    content: "g"
}

.stateface-ny:before {
    content: "h"
}

.stateface-oh:before {
    content: "i"
}

.stateface-ok:before {
    content: "j"
}

.stateface-or:before {
    content: "k"
}

.stateface-pa:before {
    content: "l"
}

.stateface-pr:before {
    content: "3"
}

.stateface-ri:before {
    content: "m"
}

.stateface-sc:before {
    content: "n"
}

.stateface-sd:before {
    content: "o"
}

.stateface-tn:before {
    content: "p"
}

.stateface-tx:before {
    content: "q"
}

.stateface-us:before {
    content: "z"
}

.stateface-ut:before {
    content: "r"
}

.stateface-va:before {
    content: "s"
}

.stateface-vt:before {
    content: "t"
}

.stateface-wa:before {
    content: "u"
}

.stateface-wi:before {
    content: "v"
}

.stateface-wv:before {
    content: "w"
}

.stateface-wy:before {
    content: "x"
}

@font-face {
    font-family: icomoon;
    src: url(../fonts/icomoon/icomoon.eot);
    src: url(../fonts/icomoon/icomoon.eot?#iefix) format("embedded-opentype"), url(../fonts/icomoon/icomoon.ttf) format("truetype"), url(../fonts/icomoon/icomoon.woff) format("woff"), url(../fonts/icomoon/icomoon.svg#icomoon) format("svg");
    font-weight: 400;
    font-style: normal;
}

[class*=" icon-"], [class^=icon-] {
    font-family: icomoon !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-add-to-list:before {
    content: "\e900"
}

.icon-classic-computer:before {
    content: "\e901"
}

.icon-controller-fast-backward:before {
    content: "\e902"
}

.icon-creative-commons-attribution:before {
    content: "\e903"
}

.icon-creative-commons-noderivs:before {
    content: "\e904"
}

.icon-creative-commons-noncommercial-eu:before {
    content: "\e905"
}

.icon-creative-commons-noncommercial-us:before {
    content: "\e906"
}

.icon-creative-commons-public-domain:before {
    content: "\e907"
}

.icon-creative-commons-remix:before {
    content: "\e908"
}

.icon-creative-commons-share:before {
    content: "\e909"
}

.icon-creative-commons-sharealike:before {
    content: "\e90a"
}

.icon-creative-commons:before {
    content: "\e90b"
}

.icon-document-landscape:before {
    content: "\e90c"
}

.icon-remove-user:before {
    content: "\e90d"
}

.icon-warning2:before {
    content: "\e90e"
}

.icon-arrow-bold-down:before {
    content: "\e90f"
}

.icon-arrow-bold-left:before {
    content: "\e910"
}

.icon-arrow-bold-right:before {
    content: "\e911"
}

.icon-arrow-bold-up:before {
    content: "\e912"
}

.icon-arrow-down3:before {
    content: "\e913"
}

.icon-arrow-left3:before {
    content: "\e914"
}

.icon-arrow-long-down:before {
    content: "\e915"
}

.icon-arrow-long-left:before {
    content: "\e916"
}

.icon-arrow-long-right:before {
    content: "\e917"
}

.icon-arrow-long-up:before {
    content: "\e918"
}

.icon-arrow-right3:before {
    content: "\e919"
}

.icon-arrow-up3:before {
    content: "\e91a"
}

.icon-arrow-with-circle-down:before {
    content: "\e91b"
}

.icon-arrow-with-circle-left:before {
    content: "\e91c"
}

.icon-arrow-with-circle-right:before {
    content: "\e91d"
}

.icon-arrow-with-circle-up:before {
    content: "\e91e"
}

.icon-bookmark2:before {
    content: "\e91f"
}

.icon-bookmarks2:before {
    content: "\e920"
}

.icon-chevron-down:before {
    content: "\e921"
}

.icon-chevron-left:before {
    content: "\e922"
}

.icon-chevron-right:before {
    content: "\e923"
}

.icon-chevron-small-down:before {
    content: "\e924"
}

.icon-chevron-small-left:before {
    content: "\e925"
}

.icon-chevron-small-right:before {
    content: "\e926"
}

.icon-chevron-small-up:before {
    content: "\e927"
}

.icon-chevron-thin-down:before {
    content: "\e928"
}

.icon-chevron-thin-left:before {
    content: "\e929"
}

.icon-chevron-thin-right:before {
    content: "\e92a"
}

.icon-chevron-thin-up:before {
    content: "\e92b"
}

.icon-chevron-up:before {
    content: "\e92c"
}

.icon-chevron-with-circle-down:before {
    content: "\e92d"
}

.icon-chevron-with-circle-left:before {
    content: "\e92e"
}

.icon-chevron-with-circle-right:before {
    content: "\e92f"
}

.icon-chevron-with-circle-up:before {
    content: "\e930"
}

.icon-cloud2:before {
    content: "\e931"
}

.icon-controller-fast-forward:before {
    content: "\e932"
}

.icon-controller-jump-to-start:before {
    content: "\e933"
}

.icon-controller-next:before {
    content: "\e934"
}

.icon-controller-paus:before {
    content: "\e935"
}

.icon-controller-play:before {
    content: "\e936"
}

.icon-controller-record:before {
    content: "\e937"
}

.icon-controller-stop:before {
    content: "\e938"
}

.icon-controller-volume:before {
    content: "\e939"
}

.icon-dot-single:before {
    content: "\e93a"
}

.icon-dots-three-horizontal:before {
    content: "\e93b"
}

.icon-dots-three-vertical:before {
    content: "\e93c"
}

.icon-dots-two-horizontal:before {
    content: "\e93d"
}

.icon-dots-two-vertical:before {
    content: "\e93e"
}

.icon-download4:before {
    content: "\e93f"
}

.icon-emoji-flirt:before {
    content: "\e940"
}

.icon-flow-branch:before {
    content: "\e941"
}

.icon-flow-cascade:before {
    content: "\e942"
}

.icon-flow-line:before {
    content: "\e943"
}

.icon-flow-parallel:before {
    content: "\e944"
}

.icon-flow-tree:before {
    content: "\e945"
}

.icon-install:before {
    content: "\e946"
}

.icon-layers:before {
    content: "\e947"
}

.icon-open-book:before {
    content: "\e948"
}

.icon-resize-100:before {
    content: "\e949"
}

.icon-resize-full-screen:before {
    content: "\e94a"
}

.icon-save:before {
    content: "\e94b"
}

.icon-select-arrows:before {
    content: "\e94c"
}

.icon-sound-mute:before {
    content: "\e94d"
}

.icon-sound:before {
    content: "\e94e"
}

.icon-trash:before {
    content: "\e94f"
}

.icon-triangle-down:before {
    content: "\e950"
}

.icon-triangle-left:before {
    content: "\e951"
}

.icon-triangle-right:before {
    content: "\e952"
}

.icon-triangle-up:before {
    content: "\e953"
}

.icon-uninstall:before {
    content: "\e954"
}

.icon-upload-to-cloud:before {
    content: "\e955"
}

.icon-upload4:before {
    content: "\e956"
}

.icon-add-user:before {
    content: "\e957"
}

.icon-address:before {
    content: "\e958"
}

.icon-adjust:before {
    content: "\e959"
}

.icon-air:before {
    content: "\e95a"
}

.icon-aircraft-landing:before {
    content: "\e95b"
}

.icon-aircraft-take-off:before {
    content: "\e95c"
}

.icon-aircraft:before {
    content: "\e95d"
}

.icon-align-bottom:before {
    content: "\e95e"
}

.icon-align-horizontal-middle:before {
    content: "\e95f"
}

.icon-align-left:before {
    content: "\e960"
}

.icon-align-right:before {
    content: "\e961"
}

.icon-align-top:before {
    content: "\e962"
}

.icon-align-vertical-middle:before {
    content: "\e963"
}

.icon-archive:before {
    content: "\e964"
}

.icon-area-graph:before {
    content: "\e965"
}

.icon-attachment2:before {
    content: "\e966"
}

.icon-awareness-ribbon:before {
    content: "\e967"
}

.icon-back-in-time:before {
    content: "\e968"
}

.icon-back:before {
    content: "\e969"
}

.icon-bar-graph:before {
    content: "\e96a"
}

.icon-battery:before {
    content: "\e96b"
}

.icon-beamed-note:before {
    content: "\e96c"
}

.icon-bell2:before {
    content: "\e96d"
}

.icon-blackboard:before {
    content: "\e96e"
}

.icon-block:before {
    content: "\e96f"
}

.icon-book2:before {
    content: "\e970"
}

.icon-bowl:before {
    content: "\e971"
}

.icon-box:before {
    content: "\e972"
}

.icon-briefcase2:before {
    content: "\e973"
}

.icon-browser:before {
    content: "\e974"
}

.icon-brush:before {
    content: "\e975"
}

.icon-bucket:before {
    content: "\e976"
}

.icon-cake:before {
    content: "\e977"
}

.icon-calculator2:before {
    content: "\e978"
}

.icon-calendar2:before {
    content: "\e979"
}

.icon-camera2:before {
    content: "\e97a"
}

.icon-ccw:before {
    content: "\e97b"
}

.icon-chat:before {
    content: "\e97c"
}

.icon-check:before {
    content: "\e97d"
}

.icon-circle-with-cross:before {
    content: "\e97e"
}

.icon-circle-with-minus:before {
    content: "\e97f"
}

.icon-circle-with-plus:before {
    content: "\e980"
}

.icon-circle:before {
    content: "\e981"
}

.icon-circular-graph:before {
    content: "\e982"
}

.icon-clapperboard:before {
    content: "\e983"
}

.icon-clipboard2:before {
    content: "\e984"
}

.icon-clock3:before {
    content: "\e985"
}

.icon-code:before {
    content: "\e986"
}

.icon-cog2:before {
    content: "\e987"
}

.icon-colours:before {
    content: "\e988"
}

.icon-compass3:before {
    content: "\e989"
}

.icon-copy2:before {
    content: "\e98a"
}

.icon-credit-card2:before {
    content: "\e98b"
}

.icon-credit:before {
    content: "\e98c"
}

.icon-cross2:before {
    content: "\e98d"
}

.icon-cup:before {
    content: "\e98e"
}

.icon-cw:before {
    content: "\e98f"
}

.icon-cycle:before {
    content: "\e990"
}

.icon-database2:before {
    content: "\e991"
}

.icon-dial-pad:before {
    content: "\e992"
}

.icon-direction:before {
    content: "\e993"
}

.icon-document:before {
    content: "\e994"
}

.icon-documents:before {
    content: "\e995"
}

.icon-drink:before {
    content: "\e996"
}

.icon-drive2:before {
    content: "\e997"
}

.icon-drop:before {
    content: "\e998"
}

.icon-edit:before {
    content: "\e999"
}

.icon-email:before {
    content: "\e99a"
}

.icon-emoji-happy:before {
    content: "\e99b"
}

.icon-emoji-neutral:before {
    content: "\e99c"
}

.icon-emoji-sad:before {
    content: "\e99d"
}

.icon-erase:before {
    content: "\e99e"
}

.icon-eraser:before {
    content: "\e99f"
}

.icon-export:before {
    content: "\e9a0"
}

.icon-eye2:before {
    content: "\e9a1"
}

.icon-feather:before {
    content: "\e9a2"
}

.icon-flag2:before {
    content: "\e9a3"
}

.icon-flash:before {
    content: "\e9a4"
}

.icon-flashlight:before {
    content: "\e9a5"
}

.icon-flat-brush:before {
    content: "\e9a6"
}

.icon-folder-images:before {
    content: "\e9a7"
}

.icon-folder-music:before {
    content: "\e9a8"
}

.icon-folder-video:before {
    content: "\e9a9"
}

.icon-folder2:before {
    content: "\e9aa"
}

.icon-forward4:before {
    content: "\e9ab"
}

.icon-funnel:before {
    content: "\e9ac"
}

.icon-game-controller:before {
    content: "\e9ad"
}

.icon-gauge:before {
    content: "\e9ae"
}

.icon-globe:before {
    content: "\e9af"
}

.icon-graduation-cap:before {
    content: "\e9b0"
}

.icon-grid:before {
    content: "\e9b1"
}

.icon-hair-cross:before {
    content: "\e9b2"
}

.icon-hand:before {
    content: "\e9b3"
}

.icon-heart-outlined:before {
    content: "\e9b4"
}

.icon-heart2:before {
    content: "\e9b5"
}

.icon-help-with-circle:before {
    content: "\e9b6"
}

.icon-help:before {
    content: "\e9b7"
}

.icon-home4:before {
    content: "\e9b8"
}

.icon-hour-glass2:before {
    content: "\e9b9"
}

.icon-image-inverted:before {
    content: "\e9ba"
}

.icon-image2:before {
    content: "\e9bb"
}

.icon-images2:before {
    content: "\e9bc"
}

.icon-inbox:before {
    content: "\e9bd"
}

.icon-infinity:before {
    content: "\e9be"
}

.icon-info-with-circle:before {
    content: "\e9bf"
}

.icon-info2:before {
    content: "\e9c0"
}

.icon-key3:before {
    content: "\e9c1"
}

.icon-keyboard2:before {
    content: "\e9c2"
}

.icon-lab-flask:before {
    content: "\e9c3"
}

.icon-landline:before {
    content: "\e9c4"
}

.icon-language:before {
    content: "\e9c5"
}

.icon-laptop2:before {
    content: "\e9c6"
}

.icon-leaf2:before {
    content: "\e9c7"
}

.icon-level-down:before {
    content: "\e9c8"
}

.icon-level-up:before {
    content: "\e9c9"
}

.icon-lifebuoy2:before {
    content: "\e9ca"
}

.icon-light-bulb:before {
    content: "\e9cb"
}

.icon-light-down:before {
    content: "\e9cc"
}

.icon-light-up:before {
    content: "\e9cd"
}

.icon-line-graph:before {
    content: "\e9ce"
}

.icon-link2:before {
    content: "\e9cf"
}

.icon-list3:before {
    content: "\e9d0"
}

.icon-location-pin:before {
    content: "\e9d1"
}

.icon-location3:before {
    content: "\e9d2"
}

.icon-lock-open:before {
    content: "\e9d3"
}

.icon-lock2:before {
    content: "\e9d4"
}

.icon-log-out:before {
    content: "\e9d5"
}

.icon-login:before {
    content: "\e9d6"
}

.icon-loop3:before {
    content: "\e9d7"
}

.icon-magnet2:before {
    content: "\e9d8"
}

.icon-magnifying-glass:before {
    content: "\e9d9"
}

.icon-mail5:before {
    content: "\e9da"
}

.icon-man2:before {
    content: "\e9db"
}

.icon-map3:before {
    content: "\e9dc"
}

.icon-mask:before {
    content: "\e9dd"
}

.icon-medal:before {
    content: "\e9de"
}

.icon-megaphone:before {
    content: "\e9df"
}

.icon-menu5:before {
    content: "\e9e0"
}

.icon-message:before {
    content: "\e9e1"
}

.icon-mic2:before {
    content: "\e9e2"
}

.icon-minus2:before {
    content: "\e9e3"
}

.icon-mobile3:before {
    content: "\e9e4"
}

.icon-modern-mic:before {
    content: "\e9e5"
}

.icon-moon:before {
    content: "\e9e6"
}

.icon-mouse:before {
    content: "\e9e7"
}

.icon-music2:before {
    content: "\e9e8"
}

.icon-network:before {
    content: "\e9e9"
}

.icon-new-message:before {
    content: "\e9ea"
}

.icon-new:before {
    content: "\e9eb"
}

.icon-news:before {
    content: "\e9ec"
}

.icon-note:before {
    content: "\e9ed"
}

.icon-notification2:before {
    content: "\e9ee"
}

.icon-old-mobile:before {
    content: "\e9ef"
}

.icon-old-phone:before {
    content: "\e9f0"
}

.icon-palette:before {
    content: "\e9f1"
}

.icon-paper-plane:before {
    content: "\e9f2"
}

.icon-pencil3:before {
    content: "\e9f3"
}

.icon-phone2:before {
    content: "\e9f4"
}

.icon-pie-chart2:before {
    content: "\e9f5"
}

.icon-pin:before {
    content: "\e9f6"
}

.icon-plus2:before {
    content: "\e9f7"
}

.icon-popup:before {
    content: "\e9f8"
}

.icon-power-plug:before {
    content: "\e9f9"
}

.icon-price-ribbon:before {
    content: "\e9fa"
}

.icon-price-tag2:before {
    content: "\e9fb"
}

.icon-print:before {
    content: "\e9fc"
}

.icon-progress-empty:before {
    content: "\e9fd"
}

.icon-progress-full:before {
    content: "\e9fe"
}

.icon-progress-one:before {
    content: "\e9ff"
}

.icon-progress-two:before {
    content: "\ea00"
}

.icon-publish:before {
    content: "\ea01"
}

.icon-quote:before {
    content: "\ea02"
}

.icon-radio:before {
    content: "\ea03"
}

.icon-reply-all:before {
    content: "\ea04"
}

.icon-reply2:before {
    content: "\ea05"
}

.icon-retweet:before {
    content: "\ea06"
}

.icon-rocket2:before {
    content: "\ea07"
}

.icon-round-brush:before {
    content: "\ea08"
}

.icon-rss3:before {
    content: "\ea09"
}

.icon-ruler:before {
    content: "\ea0a"
}

.icon-scissors2:before {
    content: "\ea0b"
}

.icon-share-alternitive:before {
    content: "\ea0c"
}

.icon-share3:before {
    content: "\ea0d"
}

.icon-shareable:before {
    content: "\ea0e"
}

.icon-shield2:before {
    content: "\ea0f"
}

.icon-shop:before {
    content: "\ea10"
}

.icon-shopping-bag:before {
    content: "\ea11"
}

.icon-shopping-basket:before {
    content: "\ea12"
}

.icon-shopping-cart:before {
    content: "\ea13"
}

.icon-shuffle2:before {
    content: "\ea14"
}

.icon-signal:before {
    content: "\ea15"
}

.icon-sound-mix:before {
    content: "\ea16"
}

.icon-sports-club:before {
    content: "\ea17"
}

.icon-spreadsheet:before {
    content: "\ea18"
}

.icon-squared-cross:before {
    content: "\ea19"
}

.icon-squared-minus:before {
    content: "\ea1a"
}

.icon-squared-plus:before {
    content: "\ea1b"
}

.icon-star-outlined:before {
    content: "\ea1c"
}

.icon-star:before {
    content: "\ea1d"
}

.icon-stopwatch2:before {
    content: "\ea1e"
}

.icon-suitcase:before {
    content: "\ea1f"
}

.icon-swap:before {
    content: "\ea20"
}

.icon-sweden:before {
    content: "\ea21"
}

.icon-switch2:before {
    content: "\ea22"
}

.icon-tablet2:before {
    content: "\ea23"
}

.icon-tag:before {
    content: "\ea24"
}

.icon-text-document-inverted:before {
    content: "\ea25"
}

.icon-text-document:before {
    content: "\ea26"
}

.icon-text:before {
    content: "\ea27"
}

.icon-thermometer:before {
    content: "\ea28"
}

.icon-thumbs-down:before {
    content: "\ea29"
}

.icon-thumbs-up:before {
    content: "\ea2a"
}

.icon-thunder-cloud:before {
    content: "\ea2b"
}

.icon-ticket2:before {
    content: "\ea2c"
}

.icon-time-slot:before {
    content: "\ea2d"
}

.icon-tools:before {
    content: "\ea2e"
}

.icon-traffic-cone:before {
    content: "\ea2f"
}

.icon-tree2:before {
    content: "\ea30"
}

.icon-trophy2:before {
    content: "\ea31"
}

.icon-tv2:before {
    content: "\ea32"
}

.icon-typing:before {
    content: "\ea33"
}

.icon-unread:before {
    content: "\ea34"
}

.icon-untag:before {
    content: "\ea35"
}

.icon-user2:before {
    content: "\ea36"
}

.icon-users2:before {
    content: "\ea37"
}

.icon-v-card:before {
    content: "\ea38"
}

.icon-video:before {
    content: "\ea39"
}

.icon-vinyl:before {
    content: "\ea3a"
}

.icon-voicemail:before {
    content: "\ea3b"
}

.icon-wallet:before {
    content: "\ea3c"
}

.icon-water:before {
    content: "\ea3d"
}

.icon-500px-with-circle:before {
    content: "\ea3e"
}

.icon-500px2:before {
    content: "\ea3f"
}

.icon-basecamp2:before {
    content: "\ea40"
}

.icon-behance3:before {
    content: "\ea41"
}

.icon-creative-cloud:before {
    content: "\ea42"
}

.icon-dropbox2:before {
    content: "\ea43"
}

.icon-evernote:before {
    content: "\ea44"
}

.icon-flattr2:before {
    content: "\ea45"
}

.icon-foursquare2:before {
    content: "\ea46"
}

.icon-google-drive2:before {
    content: "\ea47"
}

.icon-google-hangouts:before {
    content: "\ea48"
}

.icon-grooveshark:before {
    content: "\ea49"
}

.icon-icloud:before {
    content: "\ea4a"
}

.icon-mixi:before {
    content: "\ea4b"
}

.icon-onedrive2:before {
    content: "\ea4c"
}

.icon-paypal2:before {
    content: "\ea4d"
}

.icon-picasa:before {
    content: "\ea4e"
}

.icon-qq:before {
    content: "\ea4f"
}

.icon-rdio-with-circle:before {
    content: "\ea50"
}

.icon-renren2:before {
    content: "\ea51"
}

.icon-scribd:before {
    content: "\ea52"
}

.icon-sina-weibo2:before {
    content: "\ea53"
}

.icon-skype-with-circle:before {
    content: "\ea54"
}

.icon-skype2:before {
    content: "\ea55"
}

.icon-slideshare:before {
    content: "\ea56"
}

.icon-smashing:before {
    content: "\ea57"
}

.icon-soundcloud3:before {
    content: "\ea58"
}

.icon-spotify-with-circle:before {
    content: "\ea59"
}

.icon-spotify2:before {
    content: "\ea5a"
}

.icon-swarm:before {
    content: "\ea5b"
}

.icon-vine-with-circle:before {
    content: "\ea5c"
}

.icon-vine2:before {
    content: "\ea5d"
}

.icon-vk-alternitive:before {
    content: "\ea5e"
}

.icon-vk-with-circle:before {
    content: "\ea5f"
}

.icon-vk2:before {
    content: "\ea60"
}

.icon-xing-with-circle:before {
    content: "\ea61"
}

.icon-xing3:before {
    content: "\ea62"
}

.icon-yelp2:before {
    content: "\ea63"
}

.icon-dribbble-with-circle:before {
    content: "\ea64"
}

.icon-dribbble2:before {
    content: "\ea65"
}

.icon-facebook-with-circle:before {
    content: "\ea66"
}

.icon-facebook3:before {
    content: "\ea67"
}

.icon-flickr-with-circle:before {
    content: "\ea68"
}

.icon-flickr5:before {
    content: "\ea69"
}

.icon-github-with-circle:before {
    content: "\ea6a"
}

.icon-github2:before {
    content: "\ea6b"
}

.icon-google-with-circle:before {
    content: "\ea6c"
}

.icon-google4:before {
    content: "\ea6d"
}

.icon-instagram-with-circle:before {
    content: "\ea6e"
}

.icon-instagram2:before {
    content: "\ea6f"
}

.icon-lastfm-with-circle:before {
    content: "\ea70"
}

.icon-lastfm3:before {
    content: "\ea71"
}

.icon-linkedin-with-circle:before {
    content: "\ea72"
}

.icon-linkedin3:before {
    content: "\ea73"
}

.icon-pinterest-with-circle:before {
    content: "\ea74"
}

.icon-pinterest3:before {
    content: "\ea75"
}

.icon-rdio:before {
    content: "\ea76"
}

.icon-stumbleupon-with-circle:before {
    content: "\ea77"
}

.icon-stumbleupon3:before {
    content: "\ea78"
}

.icon-tumblr-with-circle:before {
    content: "\ea79"
}

.icon-tumblr3:before {
    content: "\ea7a"
}

.icon-twitter-with-circle:before {
    content: "\ea7b"
}

.icon-twitter2:before {
    content: "\ea7c"
}

.icon-vimeo-with-circle:before {
    content: "\ea7d"
}

.icon-vimeo3:before {
    content: "\ea7e"
}

.icon-youtube-with-circle:before {
    content: "\ea7f"
}

.icon-youtube3:before {
    content: "\ea80"
}

.icon-3d_rotation:before {
    content: "\e84d"
}

.icon-ac_unit:before {
    content: "\eb3b"
}

.icon-alarm2:before {
    content: "\e855"
}

.icon-access_alarms:before {
    content: "\e191"
}

.icon-schedule:before {
    content: "\e8b5"
}

.icon-accessibility2:before {
    content: "\e84e"
}

.icon-accessible:before {
    content: "\ea81"
}

.icon-account_balance:before {
    content: "\e84f"
}

.icon-account_balance_wallet:before {
    content: "\e850"
}

.icon-account_box:before {
    content: "\e851"
}

.icon-account_circle:before {
    content: "\e853"
}

.icon-adb:before {
    content: "\e60e"
}

.icon-add:before {
    content: "\e145"
}

.icon-add_a_photo:before {
    content: "\e439"
}

.icon-alarm_add:before {
    content: "\e856"
}

.icon-add_alert:before {
    content: "\e003"
}

.icon-add_box:before {
    content: "\e146"
}

.icon-add_circle:before {
    content: "\e147"
}

.icon-control_point:before {
    content: "\e3ba"
}

.icon-add_location:before {
    content: "\e567"
}

.icon-add_shopping_cart:before {
    content: "\e854"
}

.icon-queue:before {
    content: "\e03c"
}

.icon-add_to_queue:before {
    content: "\e05c"
}

.icon-adjust2:before {
    content: "\e39e"
}

.icon-airline_seat_flat:before {
    content: "\e630"
}

.icon-airline_seat_flat_angled:before {
    content: "\e631"
}

.icon-airline_seat_individual_suite:before {
    content: "\e632"
}

.icon-airline_seat_legroom_extra:before {
    content: "\e633"
}

.icon-airline_seat_legroom_normal:before {
    content: "\e634"
}

.icon-airline_seat_legroom_reduced:before {
    content: "\e635"
}

.icon-airline_seat_recline_extra:before {
    content: "\e636"
}

.icon-airline_seat_recline_normal:before {
    content: "\e637"
}

.icon-flight:before {
    content: "\e539"
}

.icon-airplanemode_inactive:before {
    content: "\e194"
}

.icon-airplay:before {
    content: "\e055"
}

.icon-airport_shuttle:before {
    content: "\eb3c"
}

.icon-alarm_off:before {
    content: "\e857"
}

.icon-alarm_on:before {
    content: "\e858"
}

.icon-album:before {
    content: "\e019"
}

.icon-all_inclusive:before {
    content: "\eb3d"
}

.icon-all_out:before {
    content: "\ea82"
}

.icon-android2:before {
    content: "\e859"
}

.icon-announcement:before {
    content: "\e85a"
}

.icon-apps:before {
    content: "\e5c3"
}

.icon-archive2:before {
    content: "\e149"
}

.icon-arrow_back:before {
    content: "\e5c4"
}

.icon-arrow_downward:before {
    content: "\e5db"
}

.icon-arrow_drop_down:before {
    content: "\e5c5"
}

.icon-arrow_drop_down_circle:before {
    content: "\e5c6"
}

.icon-arrow_drop_up:before {
    content: "\e5c7"
}

.icon-arrow_forward:before {
    content: "\e5c8"
}

.icon-arrow_upward:before {
    content: "\e5d8"
}

.icon-art_track:before {
    content: "\e060"
}

.icon-aspect_ratio:before {
    content: "\e85b"
}

.icon-poll:before {
    content: "\e801"
}

.icon-assignment:before {
    content: "\e85d"
}

.icon-assignment_ind:before {
    content: "\e85e"
}

.icon-assignment_late:before {
    content: "\e85f"
}

.icon-assignment_return:before {
    content: "\e860"
}

.icon-assignment_returned:before {
    content: "\e861"
}

.icon-assignment_turned_in:before {
    content: "\e862"
}

.icon-assistant:before {
    content: "\e39f"
}

.icon-flag3:before {
    content: "\e153"
}

.icon-attach_file:before {
    content: "\e226"
}

.icon-attach_money:before {
    content: "\e227"
}

.icon-attachment3:before {
    content: "\e2bc"
}

.icon-audiotrack:before {
    content: "\e3a1"
}

.icon-autorenew:before {
    content: "\e863"
}

.icon-av_timer:before {
    content: "\e01b"
}

.icon-backspace:before {
    content: "\e14a"
}

.icon-cloud_upload:before {
    content: "\e2c3"
}

.icon-battery_alert:before {
    content: "\e19c"
}

.icon-battery_charging_full:before {
    content: "\e1a3"
}

.icon-battery_std:before {
    content: "\e1a5"
}

.icon-battery_unknown:before {
    content: "\e1a6"
}

.icon-beach_access:before {
    content: "\eb3e"
}

.icon-beenhere:before {
    content: "\e52d"
}

.icon-block2:before {
    content: "\e14b"
}

.icon-bluetooth:before {
    content: "\e1a7"
}

.icon-bluetooth_searching:before {
    content: "\e1aa"
}

.icon-bluetooth_connected:before {
    content: "\e1a8"
}

.icon-bluetooth_disabled:before {
    content: "\e1a9"
}

.icon-blur_circular:before {
    content: "\e3a2"
}

.icon-blur_linear:before {
    content: "\e3a3"
}

.icon-blur_off:before {
    content: "\e3a4"
}

.icon-blur_on:before {
    content: "\e3a5"
}

.icon-class:before {
    content: "\e86e"
}

.icon-turned_in:before {
    content: "\e8e6"
}

.icon-turned_in_not:before {
    content: "\e8e7"
}

.icon-border_all:before {
    content: "\e228"
}

.icon-border_bottom:before {
    content: "\e229"
}

.icon-border_clear:before {
    content: "\e22a"
}

.icon-border_color:before {
    content: "\e22b"
}

.icon-border_horizontal:before {
    content: "\e22c"
}

.icon-border_inner:before {
    content: "\e22d"
}

.icon-border_left:before {
    content: "\e22e"
}

.icon-border_outer:before {
    content: "\e22f"
}

.icon-border_right:before {
    content: "\e230"
}

.icon-border_style:before {
    content: "\e231"
}

.icon-border_top:before {
    content: "\e232"
}

.icon-border_vertical:before {
    content: "\e233"
}

.icon-branding_watermark:before {
    content: "\e06b"
}

.icon-brightness_1:before {
    content: "\e3a6"
}

.icon-brightness_2:before {
    content: "\e3a7"
}

.icon-brightness_3:before {
    content: "\e3a8"
}

.icon-brightness_4:before {
    content: "\e3a9"
}

.icon-brightness_low:before {
    content: "\e1ad"
}

.icon-brightness_medium:before {
    content: "\e1ae"
}

.icon-brightness_high:before {
    content: "\e1ac"
}

.icon-brightness_auto:before {
    content: "\e1ab"
}

.icon-broken_image:before {
    content: "\e3ad"
}

.icon-brush2:before {
    content: "\e3ae"
}

.icon-bubble_chart:before {
    content: "\e6dd"
}

.icon-bug_report:before {
    content: "\e868"
}

.icon-build:before {
    content: "\e869"
}

.icon-burst_mode:before {
    content: "\e43c"
}

.icon-domain:before {
    content: "\e7ee"
}

.icon-business_center:before {
    content: "\eb3f"
}

.icon-cached:before {
    content: "\e86a"
}

.icon-cake2:before {
    content: "\e7e9"
}

.icon-phone3:before {
    content: "\e0cd"
}

.icon-call_end:before {
    content: "\e0b1"
}

.icon-call_made:before {
    content: "\e0b2"
}

.icon-merge_type:before {
    content: "\e252"
}

.icon-call_missed:before {
    content: "\e0b4"
}

.icon-call_missed_outgoing:before {
    content: "\e0e4"
}

.icon-call_received:before {
    content: "\e0b5"
}

.icon-call_split:before {
    content: "\e0b6"
}

.icon-call_to_action:before {
    content: "\e06c"
}

.icon-camera3:before {
    content: "\e3af"
}

.icon-photo_camera:before {
    content: "\e412"
}

.icon-camera_enhance:before {
    content: "\e8fc"
}

.icon-camera_front:before {
    content: "\e3b1"
}

.icon-camera_rear:before {
    content: "\e3b2"
}

.icon-camera_roll:before {
    content: "\e3b3"
}

.icon-cancel:before {
    content: "\e5c9"
}

.icon-redeem:before {
    content: "\e8b1"
}

.icon-card_membership:before {
    content: "\e8f7"
}

.icon-card_travel:before {
    content: "\e8f8"
}

.icon-casino:before {
    content: "\eb40"
}

.icon-cast:before {
    content: "\e307"
}

.icon-cast_connected:before {
    content: "\e308"
}

.icon-center_focus_strong:before {
    content: "\e3b4"
}

.icon-center_focus_weak:before {
    content: "\e3b5"
}

.icon-change_history:before {
    content: "\e86b"
}

.icon-chat2:before {
    content: "\e0b7"
}

.icon-chat_bubble:before {
    content: "\e0ca"
}

.icon-chat_bubble_outline:before {
    content: "\e0cb"
}

.icon-check2:before {
    content: "\e5ca"
}

.icon-check_box:before {
    content: "\e834"
}

.icon-check_box_outline_blank:before {
    content: "\e835"
}

.icon-check_circle:before {
    content: "\e86c"
}

.icon-navigate_before:before {
    content: "\e408"
}

.icon-navigate_next:before {
    content: "\e409"
}

.icon-child_care:before {
    content: "\eb41"
}

.icon-child_friendly:before {
    content: "\eb42"
}

.icon-chrome_reader_mode:before {
    content: "\e86d"
}

.icon-close:before {
    content: "\e5cd"
}

.icon-clear_all:before {
    content: "\e0b8"
}

.icon-closed_caption:before {
    content: "\e01c"
}

.icon-wb_cloudy:before {
    content: "\e42d"
}

.icon-cloud_circle:before {
    content: "\e2be"
}

.icon-cloud_done:before {
    content: "\e2bf"
}

.icon-cloud_download:before {
    content: "\e2c0"
}

.icon-cloud_off:before {
    content: "\e2c1"
}

.icon-cloud_queue:before {
    content: "\e2c2"
}

.icon-code2:before {
    content: "\e86f"
}

.icon-photo_library:before {
    content: "\e413"
}

.icon-collections_bookmark:before {
    content: "\e431"
}

.icon-palette2:before {
    content: "\e40a"
}

.icon-colorize:before {
    content: "\e3b8"
}

.icon-comment:before {
    content: "\e0b9"
}

.icon-compare:before {
    content: "\e3b9"
}

.icon-compare_arrows:before {
    content: "\ea83"
}

.icon-laptop3:before {
    content: "\e31e"
}

.icon-confirmation_number:before {
    content: "\e638"
}

.icon-contact_mail:before {
    content: "\e0d0"
}

.icon-contact_phone:before {
    content: "\e0cf"
}

.icon-contacts:before {
    content: "\e0ba"
}

.icon-content_copy:before {
    content: "\e14d"
}

.icon-content_cut:before {
    content: "\e14e"
}

.icon-content_paste:before {
    content: "\e14f"
}

.icon-control_point_duplicate:before {
    content: "\e3bb"
}

.icon-copyright:before {
    content: "\ea84"
}

.icon-mode_edit:before {
    content: "\e254"
}

.icon-create_new_folder:before {
    content: "\e2cc"
}

.icon-payment:before {
    content: "\e8a1"
}

.icon-crop2:before {
    content: "\e3be"
}

.icon-crop_16_9:before {
    content: "\e3bc"
}

.icon-crop_3_2:before {
    content: "\e3bd"
}

.icon-crop_landscape:before {
    content: "\e3c3"
}

.icon-crop_7_5:before {
    content: "\e3c0"
}

.icon-crop_din:before {
    content: "\e3c1"
}

.icon-crop_free:before {
    content: "\e3c2"
}

.icon-crop_original:before {
    content: "\e3c4"
}

.icon-crop_portrait:before {
    content: "\e3c5"
}

.icon-crop_rotate:before {
    content: "\e437"
}

.icon-crop_square:before {
    content: "\e3c6"
}

.icon-dashboard:before {
    content: "\e871"
}

.icon-data_usage:before {
    content: "\e1af"
}

.icon-date_range:before {
    content: "\ea85"
}

.icon-dehaze:before {
    content: "\e3c7"
}

.icon-delete:before {
    content: "\e872"
}

.icon-delete_forever:before {
    content: "\ea86"
}

.icon-delete_sweep:before {
    content: "\e16c"
}

.icon-description:before {
    content: "\e873"
}

.icon-desktop_mac:before {
    content: "\e30b"
}

.icon-desktop_windows:before {
    content: "\e30c"
}

.icon-details:before {
    content: "\e3c8"
}

.icon-developer_board:before {
    content: "\e30d"
}

.icon-developer_mode:before {
    content: "\e1b0"
}

.icon-device_hub:before {
    content: "\e335"
}

.icon-phonelink:before {
    content: "\e326"
}

.icon-devices_other:before {
    content: "\e337"
}

.icon-dialer_sip:before {
    content: "\e0bb"
}

.icon-dialpad:before {
    content: "\e0bc"
}

.icon-directions:before {
    content: "\e52e"
}

.icon-directions_bike:before {
    content: "\e52f"
}

.icon-directions_boat:before {
    content: "\e532"
}

.icon-directions_bus:before {
    content: "\e530"
}

.icon-directions_car:before {
    content: "\e531"
}

.icon-directions_railway:before {
    content: "\e534"
}

.icon-directions_run:before {
    content: "\e566"
}

.icon-directions_transit:before {
    content: "\e535"
}

.icon-directions_walk:before {
    content: "\e536"
}

.icon-disc_full:before {
    content: "\e610"
}

.icon-dns:before {
    content: "\e875"
}

.icon-not_interested:before {
    content: "\e033"
}

.icon-do_not_disturb_alt:before {
    content: "\e611"
}

.icon-do_not_disturb_off:before {
    content: "\e643"
}

.icon-remove_circle:before {
    content: "\e15c"
}

.icon-dock:before {
    content: "\e30e"
}

.icon-done:before {
    content: "\e876"
}

.icon-done_all:before {
    content: "\e877"
}

.icon-donut_large:before {
    content: "\ea87"
}

.icon-donut_small:before {
    content: "\ea88"
}

.icon-drafts:before {
    content: "\e151"
}

.icon-drag_handle:before {
    content: "\e25d"
}

.icon-time_to_leave:before {
    content: "\e62c"
}

.icon-dvr:before {
    content: "\e1b2"
}

.icon-edit_location:before {
    content: "\e568"
}

.icon-eject2:before {
    content: "\e8fb"
}

.icon-markunread:before {
    content: "\e159"
}

.icon-enhanced_encryption:before {
    content: "\e63f"
}

.icon-equalizer3:before {
    content: "\e01d"
}

.icon-error:before {
    content: "\e000"
}

.icon-error_outline:before {
    content: "\e001"
}

.icon-euro_symbol:before {
    content: "\ea89"
}

.icon-ev_station:before {
    content: "\e56d"
}

.icon-insert_invitation:before {
    content: "\e24f"
}

.icon-event_available:before {
    content: "\e614"
}

.icon-event_busy:before {
    content: "\e615"
}

.icon-event_note:before {
    content: "\e616"
}

.icon-event_seat:before {
    content: "\ea8a"
}

.icon-exit_to_app:before {
    content: "\e879"
}

.icon-expand_less:before {
    content: "\e5ce"
}

.icon-expand_more:before {
    content: "\e5cf"
}

.icon-explicit:before {
    content: "\e01e"
}

.icon-explore:before {
    content: "\e87a"
}

.icon-exposure:before {
    content: "\e3ca"
}

.icon-exposure_neg_1:before {
    content: "\e3cb"
}

.icon-exposure_neg_2:before {
    content: "\e3cc"
}

.icon-exposure_plus_1:before {
    content: "\e3cd"
}

.icon-exposure_plus_2:before {
    content: "\e3ce"
}

.icon-exposure_zero:before {
    content: "\e3cf"
}

.icon-extension:before {
    content: "\e87b"
}

.icon-face:before {
    content: "\e87c"
}

.icon-fast_forward:before {
    content: "\e01f"
}

.icon-fast_rewind:before {
    content: "\e020"
}

.icon-favorite:before {
    content: "\e87d"
}

.icon-favorite_border:before {
    content: "\e87e"
}

.icon-featured_play_list:before {
    content: "\e06d"
}

.icon-featured_video:before {
    content: "\e06e"
}

.icon-sms_failed:before {
    content: "\e626"
}

.icon-fiber_dvr:before {
    content: "\e05d"
}

.icon-fiber_manual_record:before {
    content: "\e061"
}

.icon-fiber_new:before {
    content: "\e05e"
}

.icon-fiber_pin:before {
    content: "\e06a"
}

.icon-fiber_smart_record:before {
    content: "\e062"
}

.icon-get_app:before {
    content: "\e884"
}

.icon-file_upload:before {
    content: "\e2c6"
}

.icon-filter2:before {
    content: "\e3d3"
}

.icon-filter_1:before {
    content: "\e3d0"
}

.icon-filter_2:before {
    content: "\e3d1"
}

.icon-filter_3:before {
    content: "\e3d2"
}

.icon-filter_4:before {
    content: "\e3d4"
}

.icon-filter_5:before {
    content: "\e3d5"
}

.icon-filter_6:before {
    content: "\e3d6"
}

.icon-filter_7:before {
    content: "\e3d7"
}

.icon-filter_8:before {
    content: "\e3d8"
}

.icon-filter_9:before {
    content: "\e3d9"
}

.icon-filter_9_plus:before {
    content: "\e3da"
}

.icon-filter_b_and_w:before {
    content: "\e3db"
}

.icon-filter_center_focus:before {
    content: "\e3dc"
}

.icon-filter_drama:before {
    content: "\e3dd"
}

.icon-filter_frames:before {
    content: "\e3de"
}

.icon-terrain:before {
    content: "\e564"
}

.icon-filter_list:before {
    content: "\e152"
}

.icon-filter_none:before {
    content: "\e3e0"
}

.icon-filter_tilt_shift:before {
    content: "\e3e2"
}

.icon-filter_vintage:before {
    content: "\e3e3"
}

.icon-find_in_page:before {
    content: "\e880"
}

.icon-find_replace:before {
    content: "\e881"
}

.icon-fingerprint:before {
    content: "\ea8b"
}

.icon-first_page:before {
    content: "\e5dc"
}

.icon-fitness_center:before {
    content: "\eb43"
}

.icon-flare:before {
    content: "\e3e4"
}

.icon-flash_auto:before {
    content: "\e3e5"
}

.icon-flash_off:before {
    content: "\e3e6"
}

.icon-flash_on:before {
    content: "\e3e7"
}

.icon-flight_land:before {
    content: "\ea8c"
}

.icon-flight_takeoff:before {
    content: "\ea8d"
}

.icon-flip:before {
    content: "\e3e8"
}

.icon-flip_to_back:before {
    content: "\e882"
}

.icon-flip_to_front:before {
    content: "\e883"
}

.icon-folder3:before {
    content: "\e2c7"
}

.icon-folder_open:before {
    content: "\e2c8"
}

.icon-folder_shared:before {
    content: "\e2c9"
}

.icon-folder_special:before {
    content: "\e617"
}

.icon-font_download:before {
    content: "\e167"
}

.icon-format_align_center:before {
    content: "\e234"
}

.icon-format_align_justify:before {
    content: "\e235"
}

.icon-format_align_left:before {
    content: "\e236"
}

.icon-format_align_right:before {
    content: "\e237"
}

.icon-format_bold:before {
    content: "\e238"
}

.icon-format_clear:before {
    content: "\e239"
}

.icon-format_color_fill:before {
    content: "\e23a"
}

.icon-format_color_reset:before {
    content: "\e23b"
}

.icon-format_color_text:before {
    content: "\e23c"
}

.icon-format_indent_decrease:before {
    content: "\e23d"
}

.icon-format_indent_increase:before {
    content: "\e23e"
}

.icon-format_italic:before {
    content: "\e23f"
}

.icon-format_line_spacing:before {
    content: "\e240"
}

.icon-format_list_bulleted:before {
    content: "\e241"
}

.icon-format_list_numbered:before {
    content: "\e242"
}

.icon-format_paint:before {
    content: "\e243"
}

.icon-format_quote:before {
    content: "\e244"
}

.icon-format_shapes:before {
    content: "\e25e"
}

.icon-format_size:before {
    content: "\e245"
}

.icon-format_strikethrough:before {
    content: "\e246"
}

.icon-format_textdirection_l_to_r:before {
    content: "\e247"
}

.icon-format_textdirection_r_to_l:before {
    content: "\e248"
}

.icon-format_underlined:before {
    content: "\e249"
}

.icon-question_answer:before {
    content: "\e8af"
}

.icon-forward5:before {
    content: "\e154"
}

.icon-forward_10:before {
    content: "\e056"
}

.icon-forward_30:before {
    content: "\e057"
}

.icon-forward_5:before {
    content: "\e058"
}

.icon-free_breakfast:before {
    content: "\eb44"
}

.icon-fullscreen:before {
    content: "\e5d0"
}

.icon-fullscreen_exit:before {
    content: "\e5d1"
}

.icon-functions:before {
    content: "\e24a"
}

.icon-g_translate:before {
    content: "\ea8e"
}

.icon-games:before {
    content: "\e021"
}

.icon-gavel:before {
    content: "\ea8f"
}

.icon-gesture:before {
    content: "\e155"
}

.icon-gif:before {
    content: "\ea90"
}

.icon-goat:before {
    content: "\ea91"
}

.icon-golf_course:before {
    content: "\eb45"
}

.icon-my_location:before {
    content: "\e55c"
}

.icon-location_searching:before {
    content: "\e1b7"
}

.icon-location_disabled:before {
    content: "\e1b6"
}

.icon-star2:before {
    content: "\e838"
}

.icon-gradient:before {
    content: "\e3e9"
}

.icon-grain:before {
    content: "\e3ea"
}

.icon-graphic_eq:before {
    content: "\e1b8"
}

.icon-grid_off:before {
    content: "\e3eb"
}

.icon-grid_on:before {
    content: "\e3ec"
}

.icon-people:before {
    content: "\e7fb"
}

.icon-group_add:before {
    content: "\e7f0"
}

.icon-group_work:before {
    content: "\e886"
}

.icon-hd:before {
    content: "\e052"
}

.icon-hdr_off:before {
    content: "\e3ed"
}

.icon-hdr_on:before {
    content: "\e3ee"
}

.icon-hdr_strong:before {
    content: "\e3f1"
}

.icon-hdr_weak:before {
    content: "\e3f2"
}

.icon-headset:before {
    content: "\e310"
}

.icon-headset_mic:before {
    content: "\e311"
}

.icon-healing:before {
    content: "\e3f3"
}

.icon-hearing:before {
    content: "\e023"
}

.icon-help2:before {
    content: "\e887"
}

.icon-help_outline:before {
    content: "\e8fd"
}

.icon-high_quality:before {
    content: "\e024"
}

.icon-highlight:before {
    content: "\e25f"
}

.icon-highlight_off:before {
    content: "\e888"
}

.icon-restore:before {
    content: "\e8b3"
}

.icon-home5:before {
    content: "\e88a"
}

.icon-hot_tub:before {
    content: "\eb46"
}

.icon-local_hotel:before {
    content: "\e549"
}

.icon-hourglass_empty:before {
    content: "\e88b"
}

.icon-hourglass_full:before {
    content: "\e88c"
}

.icon-http:before {
    content: "\ea92"
}

.icon-lock3:before {
    content: "\e897"
}

.icon-photo:before {
    content: "\e410"
}

.icon-image_aspect_ratio:before {
    content: "\e3f5"
}

.icon-import_contacts:before {
    content: "\e0e0"
}

.icon-import_export:before {
    content: "\e0c3"
}

.icon-important_devices:before {
    content: "\ea93"
}

.icon-inbox2:before {
    content: "\e156"
}

.icon-indeterminate_check_box:before {
    content: "\ea94"
}

.icon-info3:before {
    content: "\e88e"
}

.icon-info_outline:before {
    content: "\e88f"
}

.icon-input:before {
    content: "\e890"
}

.icon-insert_comment:before {
    content: "\e24c"
}

.icon-insert_drive_file:before {
    content: "\e24d"
}

.icon-tag_faces:before {
    content: "\e420"
}

.icon-link3:before {
    content: "\e157"
}

.icon-invert_colors:before {
    content: "\e891"
}

.icon-invert_colors_off:before {
    content: "\e0c4"
}

.icon-iso:before {
    content: "\e3f6"
}

.icon-keyboard3:before {
    content: "\e312"
}

.icon-keyboard_arrow_down:before {
    content: "\e313"
}

.icon-keyboard_arrow_left:before {
    content: "\e314"
}

.icon-keyboard_arrow_right:before {
    content: "\e315"
}

.icon-keyboard_arrow_up:before {
    content: "\e316"
}

.icon-keyboard_backspace:before {
    content: "\e317"
}

.icon-keyboard_capslock:before {
    content: "\e318"
}

.icon-keyboard_hide:before {
    content: "\e31a"
}

.icon-keyboard_return:before {
    content: "\e31b"
}

.icon-keyboard_tab:before {
    content: "\e31c"
}

.icon-keyboard_voice:before {
    content: "\e31d"
}

.icon-kitchen:before {
    content: "\eb47"
}

.icon-label:before {
    content: "\e892"
}

.icon-label_outline:before {
    content: "\e893"
}

.icon-language2:before {
    content: "\e894"
}

.icon-laptop_chromebook:before {
    content: "\e31f"
}

.icon-laptop_mac:before {
    content: "\e320"
}

.icon-laptop_windows:before {
    content: "\e321"
}

.icon-last_page:before {
    content: "\e5dd"
}

.icon-open_in_new:before {
    content: "\e89e"
}

.icon-layers2:before {
    content: "\e53b"
}

.icon-layers_clear:before {
    content: "\e53c"
}

.icon-leak_add:before {
    content: "\e3f8"
}

.icon-leak_remove:before {
    content: "\e3f9"
}

.icon-lens:before {
    content: "\e3fa"
}

.icon-library_books:before {
    content: "\e02f"
}

.icon-library_music:before {
    content: "\e030"
}

.icon-lightbulb_outline:before {
    content: "\ea95"
}

.icon-line_style:before {
    content: "\ea96"
}

.icon-line_weight:before {
    content: "\ea97"
}

.icon-linear_scale:before {
    content: "\e260"
}

.icon-linked_camera:before {
    content: "\e438"
}

.icon-list4:before {
    content: "\e896"
}

.icon-live_help:before {
    content: "\e0c6"
}

.icon-live_tv:before {
    content: "\e639"
}

.icon-local_play:before {
    content: "\e553"
}

.icon-local_airport:before {
    content: "\e53d"
}

.icon-local_atm:before {
    content: "\e53e"
}

.icon-local_bar:before {
    content: "\e540"
}

.icon-local_cafe:before {
    content: "\e541"
}

.icon-local_car_wash:before {
    content: "\e542"
}

.icon-local_convenience_store:before {
    content: "\e543"
}

.icon-restaurant_menu:before {
    content: "\e561"
}

.icon-local_drink:before {
    content: "\e544"
}

.icon-local_florist:before {
    content: "\e545"
}

.icon-local_gas_station:before {
    content: "\e546"
}

.icon-shopping_cart:before {
    content: "\e8cc"
}

.icon-local_hospital:before {
    content: "\e548"
}

.icon-local_laundry_service:before {
    content: "\e54a"
}

.icon-local_library:before {
    content: "\e54b"
}

.icon-local_mall:before {
    content: "\e54c"
}

.icon-theaters:before {
    content: "\e8da"
}

.icon-local_offer:before {
    content: "\e54e"
}

.icon-local_parking:before {
    content: "\e54f"
}

.icon-local_pharmacy:before {
    content: "\e550"
}

.icon-local_pizza:before {
    content: "\e552"
}

.icon-print2:before {
    content: "\e8ad"
}

.icon-local_shipping:before {
    content: "\e558"
}

.icon-local_taxi:before {
    content: "\e559"
}

.icon-location_city:before {
    content: "\e7f1"
}

.icon-location_off:before {
    content: "\e0c7"
}

.icon-room:before {
    content: "\e8b4"
}

.icon-lock_open:before {
    content: "\e898"
}

.icon-lock_outline:before {
    content: "\e899"
}

.icon-looks:before {
    content: "\e3fc"
}

.icon-looks_3:before {
    content: "\e3fb"
}

.icon-looks_4:before {
    content: "\e3fd"
}

.icon-looks_5:before {
    content: "\e3fe"
}

.icon-looks_6:before {
    content: "\e3ff"
}

.icon-looks_one:before {
    content: "\e400"
}

.icon-looks_two:before {
    content: "\e401"
}

.icon-sync:before {
    content: "\e627"
}

.icon-loupe:before {
    content: "\e402"
}

.icon-low_priority:before {
    content: "\e16d"
}

.icon-loyalty:before {
    content: "\e89a"
}

.icon-mail_outline:before {
    content: "\e0e1"
}

.icon-map4:before {
    content: "\e55b"
}

.icon-markunread_mailbox:before {
    content: "\e89b"
}

.icon-memory:before {
    content: "\e322"
}

.icon-menu6:before {
    content: "\e5d2"
}

.icon-message2:before {
    content: "\e0c9"
}

.icon-mic3:before {
    content: "\e029"
}

.icon-mic_none:before {
    content: "\e02a"
}

.icon-mic_off:before {
    content: "\e02b"
}

.icon-mms:before {
    content: "\e618"
}

.icon-mode_comment:before {
    content: "\e253"
}

.icon-monetization_on:before {
    content: "\e263"
}

.icon-money_off:before {
    content: "\e25c"
}

.icon-monochrome_photos:before {
    content: "\e403"
}

.icon-mood_bad:before {
    content: "\e7f3"
}

.icon-more:before {
    content: "\e619"
}

.icon-more_horiz:before {
    content: "\e5d3"
}

.icon-more_vert:before {
    content: "\e5d4"
}

.icon-motorcycle:before {
    content: "\ea98"
}

.icon-mouse2:before {
    content: "\e323"
}

.icon-move_to_inbox:before {
    content: "\e168"
}

.icon-movie_creation:before {
    content: "\e404"
}

.icon-movie_filter:before {
    content: "\e43a"
}

.icon-multiline_chart:before {
    content: "\e6df"
}

.icon-music_note:before {
    content: "\e405"
}

.icon-music_video:before {
    content: "\e063"
}

.icon-nature:before {
    content: "\e406"
}

.icon-nature_people:before {
    content: "\e407"
}

.icon-navigation:before {
    content: "\e55d"
}

.icon-near_me:before {
    content: "\e569"
}

.icon-network_cell:before {
    content: "\e1b9"
}

.icon-network_check:before {
    content: "\e640"
}

.icon-network_locked:before {
    content: "\e61a"
}

.icon-network_wifi:before {
    content: "\e1ba"
}

.icon-new_releases:before {
    content: "\e031"
}

.icon-next_week:before {
    content: "\e16a"
}

.icon-nfc:before {
    content: "\e1bb"
}

.icon-no_encryption:before {
    content: "\e641"
}

.icon-signal_cellular_no_sim:before {
    content: "\e1ce"
}

.icon-note2:before {
    content: "\e06f"
}

.icon-note_add:before {
    content: "\e89c"
}

.icon-notifications:before {
    content: "\e7f4"
}

.icon-notifications_active:before {
    content: "\e7f7"
}

.icon-notifications_none:before {
    content: "\e7f5"
}

.icon-notifications_off:before {
    content: "\e7f6"
}

.icon-notifications_paused:before {
    content: "\e7f8"
}

.icon-offline_pin:before {
    content: "\ea99"
}

.icon-ondemand_video:before {
    content: "\e63a"
}

.icon-opacity:before {
    content: "\ea9a"
}

.icon-open_in_browser:before {
    content: "\e89d"
}

.icon-open_with:before {
    content: "\e89f"
}

.icon-pages:before {
    content: "\e7f9"
}

.icon-pageview:before {
    content: "\e8a0"
}

.icon-pan_tool:before {
    content: "\ea9b"
}

.icon-panorama:before {
    content: "\e40b"
}

.icon-radio_button_unchecked:before {
    content: "\e836"
}

.icon-panorama_horizontal:before {
    content: "\e40d"
}

.icon-panorama_vertical:before {
    content: "\e40e"
}

.icon-panorama_wide_angle:before {
    content: "\e40f"
}

.icon-party_mode:before {
    content: "\e7fa"
}

.icon-pause3:before {
    content: "\e034"
}

.icon-pause_circle_filled:before {
    content: "\e035"
}

.icon-pause_circle_outline:before {
    content: "\e036"
}

.icon-people_outline:before {
    content: "\e7fc"
}

.icon-perm_camera_mic:before {
    content: "\e8a2"
}

.icon-perm_contact_calendar:before {
    content: "\e8a3"
}

.icon-perm_data_setting:before {
    content: "\e8a4"
}

.icon-perm_device_information:before {
    content: "\e8a5"
}

.icon-person_outline:before {
    content: "\e7ff"
}

.icon-perm_media:before {
    content: "\e8a7"
}

.icon-perm_phone_msg:before {
    content: "\e8a8"
}

.icon-perm_scan_wifi:before {
    content: "\e8a9"
}

.icon-person:before {
    content: "\e7fd"
}

.icon-person_add:before {
    content: "\e7fe"
}

.icon-person_pin:before {
    content: "\e55a"
}

.icon-person_pin_circle:before {
    content: "\e56a"
}

.icon-personal_video:before {
    content: "\e63b"
}

.icon-pets:before {
    content: "\ea9c"
}

.icon-phone_android:before {
    content: "\e324"
}

.icon-phone_bluetooth_speaker:before {
    content: "\e61b"
}

.icon-phone_forwarded:before {
    content: "\e61c"
}

.icon-phone_in_talk:before {
    content: "\e61d"
}

.icon-phone_iphone:before {
    content: "\e325"
}

.icon-phone_locked:before {
    content: "\e61e"
}

.icon-phone_missed:before {
    content: "\e61f"
}

.icon-phone_paused:before {
    content: "\e620"
}

.icon-phonelink_erase:before {
    content: "\e0db"
}

.icon-phonelink_lock:before {
    content: "\e0dc"
}

.icon-phonelink_off:before {
    content: "\e327"
}

.icon-phonelink_ring:before {
    content: "\e0dd"
}

.icon-phonelink_setup:before {
    content: "\e0de"
}

.icon-photo_album:before {
    content: "\e411"
}

.icon-photo_filter:before {
    content: "\e43b"
}

.icon-photo_size_select_actual:before {
    content: "\e432"
}

.icon-photo_size_select_large:before {
    content: "\e433"
}

.icon-photo_size_select_small:before {
    content: "\e434"
}

.icon-picture_as_pdf:before {
    content: "\e415"
}

.icon-picture_in_picture:before {
    content: "\e8aa"
}

.icon-picture_in_picture_alt:before {
    content: "\ea9d"
}

.icon-pie_chart:before {
    content: "\e6c4"
}

.icon-pie_chart_outlined:before {
    content: "\e6c5"
}

.icon-pin_drop:before {
    content: "\e55e"
}

.icon-play_arrow:before {
    content: "\e037"
}

.icon-play_circle_filled:before {
    content: "\e038"
}

.icon-play_circle_outline:before {
    content: "\e039"
}

.icon-play_for_work:before {
    content: "\ea9e"
}

.icon-playlist_add:before {
    content: "\e03b"
}

.icon-playlist_add_check:before {
    content: "\e065"
}

.icon-playlist_play:before {
    content: "\e05f"
}

.icon-plus_one:before {
    content: "\e800"
}

.icon-polymer:before {
    content: "\e8ab"
}

.icon-pool:before {
    content: "\eb48"
}

.icon-portable_wifi_off:before {
    content: "\e0ce"
}

.icon-portrait:before {
    content: "\e416"
}

.icon-power2:before {
    content: "\e63c"
}

.icon-power_input:before {
    content: "\e336"
}

.icon-power_settings_new:before {
    content: "\e8ac"
}

.icon-pregnant_woman:before {
    content: "\ea9f"
}

.icon-present_to_all:before {
    content: "\e0df"
}

.icon-priority_high:before {
    content: "\e645"
}

.icon-public:before {
    content: "\e80b"
}

.icon-publish2:before {
    content: "\e255"
}

.icon-queue_music:before {
    content: "\e03d"
}

.icon-queue_play_next:before {
    content: "\e066"
}

.icon-radio2:before {
    content: "\e03e"
}

.icon-radio_button_checked:before {
    content: "\e837"
}

.icon-rate_review:before {
    content: "\e560"
}

.icon-receipt:before {
    content: "\e8b0"
}

.icon-recent_actors:before {
    content: "\e03f"
}

.icon-record_voice_over:before {
    content: "\eaa0"
}

.icon-redo3:before {
    content: "\e15a"
}

.icon-refresh:before {
    content: "\e5d5"
}

.icon-remove:before {
    content: "\e15b"
}

.icon-remove_circle_outline:before {
    content: "\e15d"
}

.icon-remove_from_queue:before {
    content: "\e067"
}

.icon-visibility:before {
    content: "\e8f4"
}

.icon-remove_shopping_cart:before {
    content: "\eaa1"
}

.icon-reorder:before {
    content: "\e8fe"
}

.icon-repeat:before {
    content: "\e040"
}

.icon-repeat_one:before {
    content: "\e041"
}

.icon-replay:before {
    content: "\e042"
}

.icon-replay_10:before {
    content: "\e059"
}

.icon-replay_30:before {
    content: "\e05a"
}

.icon-replay_5:before {
    content: "\e05b"
}

.icon-reply3:before {
    content: "\e15e"
}

.icon-reply_all:before {
    content: "\e15f"
}

.icon-report:before {
    content: "\e160"
}

.icon-warning3:before {
    content: "\e002"
}

.icon-restaurant:before {
    content: "\e56c"
}

.icon-restore_page:before {
    content: "\eaa2"
}

.icon-ring_volume:before {
    content: "\e0d1"
}

.icon-room_service:before {
    content: "\eb49"
}

.icon-rotate_90_degrees_ccw:before {
    content: "\e418"
}

.icon-rotate_left:before {
    content: "\e419"
}

.icon-rotate_right:before {
    content: "\e41a"
}

.icon-rounded_corner:before {
    content: "\eaa3"
}

.icon-router:before {
    content: "\e328"
}

.icon-rowing:before {
    content: "\eaa4"
}

.icon-rss_feed:before {
    content: "\e0e5"
}

.icon-rv_hookup:before {
    content: "\e642"
}

.icon-satellite:before {
    content: "\e562"
}

.icon-save2:before {
    content: "\e161"
}

.icon-scanner:before {
    content: "\e329"
}

.icon-school:before {
    content: "\e80c"
}

.icon-screen_lock_landscape:before {
    content: "\e1be"
}

.icon-screen_lock_portrait:before {
    content: "\e1bf"
}

.icon-screen_lock_rotation:before {
    content: "\e1c0"
}

.icon-screen_rotation:before {
    content: "\e1c1"
}

.icon-screen_share:before {
    content: "\e0e2"
}

.icon-sd_storage:before {
    content: "\e1c2"
}

.icon-search2:before {
    content: "\e8b6"
}

.icon-security:before {
    content: "\e32a"
}

.icon-select_all:before {
    content: "\e162"
}

.icon-send:before {
    content: "\e163"
}

.icon-sentiment_dissatisfied:before {
    content: "\e811"
}

.icon-sentiment_neutral:before {
    content: "\e812"
}

.icon-sentiment_satisfied:before {
    content: "\e813"
}

.icon-sentiment_very_dissatisfied:before {
    content: "\e814"
}

.icon-sentiment_very_satisfied:before {
    content: "\e815"
}

.icon-settings:before {
    content: "\e8b8"
}

.icon-settings_applications:before {
    content: "\e8b9"
}

.icon-settings_backup_restore:before {
    content: "\e8ba"
}

.icon-settings_bluetooth:before {
    content: "\e8bb"
}

.icon-settings_brightness:before {
    content: "\e8bd"
}

.icon-settings_cell:before {
    content: "\e8bc"
}

.icon-settings_ethernet:before {
    content: "\e8be"
}

.icon-settings_input_antenna:before {
    content: "\e8bf"
}

.icon-settings_input_composite:before {
    content: "\e8c1"
}

.icon-settings_input_hdmi:before {
    content: "\e8c2"
}

.icon-settings_input_svideo:before {
    content: "\e8c3"
}

.icon-settings_overscan:before {
    content: "\e8c4"
}

.icon-settings_phone:before {
    content: "\e8c5"
}

.icon-settings_power:before {
    content: "\e8c6"
}

.icon-settings_remote:before {
    content: "\e8c7"
}

.icon-settings_system_daydream:before {
    content: "\e1c3"
}

.icon-settings_voice:before {
    content: "\e8c8"
}

.icon-share4:before {
    content: "\e80d"
}

.icon-shop2:before {
    content: "\e8c9"
}

.icon-shop_two:before {
    content: "\e8ca"
}

.icon-shopping_basket:before {
    content: "\e8cb"
}

.icon-short_text:before {
    content: "\e261"
}

.icon-show_chart:before {
    content: "\e6e1"
}

.icon-shuffle3:before {
    content: "\e043"
}

.icon-signal_cellular_4_bar:before {
    content: "\e1c8"
}

.icon-signal_cellular_connected_no_internet_4_bar:before {
    content: "\e1cd"
}

.icon-signal_cellular_null:before {
    content: "\e1cf"
}

.icon-signal_cellular_off:before {
    content: "\e1d0"
}

.icon-signal_wifi_4_bar:before {
    content: "\e1d8"
}

.icon-signal_wifi_4_bar_lock:before {
    content: "\e1d9"
}

.icon-signal_wifi_off:before {
    content: "\e1da"
}

.icon-sim_card:before {
    content: "\e32b"
}

.icon-sim_card_alert:before {
    content: "\e624"
}

.icon-skip_next:before {
    content: "\e044"
}

.icon-skip_previous:before {
    content: "\e045"
}

.icon-slideshow:before {
    content: "\e41b"
}

.icon-slow_motion_video:before {
    content: "\e068"
}

.icon-stay_primary_portrait:before {
    content: "\e0d6"
}

.icon-smoke_free:before {
    content: "\eb4a"
}

.icon-smoking_rooms:before {
    content: "\eb4b"
}

.icon-textsms:before {
    content: "\e0d8"
}

.icon-snooze:before {
    content: "\e046"
}

.icon-sort:before {
    content: "\e164"
}

.icon-sort_by_alpha:before {
    content: "\e053"
}

.icon-spa:before {
    content: "\eb4c"
}

.icon-space_bar:before {
    content: "\e256"
}

.icon-speaker:before {
    content: "\e32d"
}

.icon-speaker_group:before {
    content: "\e32e"
}

.icon-speaker_notes:before {
    content: "\e8cd"
}

.icon-speaker_notes_off:before {
    content: "\eaa5"
}

.icon-speaker_phone:before {
    content: "\e0d2"
}

.icon-spellcheck:before {
    content: "\e8ce"
}

.icon-star_border:before {
    content: "\e83a"
}

.icon-star_half:before {
    content: "\e839"
}

.icon-stars:before {
    content: "\e8d0"
}

.icon-stay_primary_landscape:before {
    content: "\e0d5"
}

.icon-stop3:before {
    content: "\e047"
}

.icon-stop_screen_share:before {
    content: "\e0e3"
}

.icon-storage:before {
    content: "\e1db"
}

.icon-store_mall_directory:before {
    content: "\e563"
}

.icon-straighten:before {
    content: "\e41c"
}

.icon-streetview:before {
    content: "\e56e"
}

.icon-strikethrough_s:before {
    content: "\e257"
}

.icon-style:before {
    content: "\e41d"
}

.icon-subdirectory_arrow_left:before {
    content: "\e5d9"
}

.icon-subdirectory_arrow_right:before {
    content: "\e5da"
}

.icon-subject:before {
    content: "\e8d2"
}

.icon-subscriptions:before {
    content: "\e064"
}

.icon-subtitles:before {
    content: "\e048"
}

.icon-subway:before {
    content: "\e56f"
}

.icon-supervisor_account:before {
    content: "\e8d3"
}

.icon-surround_sound:before {
    content: "\e049"
}

.icon-swap_calls:before {
    content: "\e0d7"
}

.icon-swap_horiz:before {
    content: "\e8d4"
}

.icon-swap_vert:before {
    content: "\e8d5"
}

.icon-swap_vertical_circle:before {
    content: "\e8d6"
}

.icon-switch_camera:before {
    content: "\e41e"
}

.icon-switch_video:before {
    content: "\e41f"
}

.icon-sync_disabled:before {
    content: "\e628"
}

.icon-sync_problem:before {
    content: "\e629"
}

.icon-system_update:before {
    content: "\e62a"
}

.icon-system_update_alt:before {
    content: "\e8d7"
}

.icon-tab2:before {
    content: "\e8d8"
}

.icon-tab_unselected:before {
    content: "\e8d9"
}

.icon-tablet3:before {
    content: "\e32f"
}

.icon-tablet_android:before {
    content: "\e330"
}

.icon-tablet_mac:before {
    content: "\e331"
}

.icon-tap_and_play:before {
    content: "\e62b"
}

.icon-text_fields:before {
    content: "\e262"
}

.icon-text_format:before {
    content: "\e165"
}

.icon-texture:before {
    content: "\e421"
}

.icon-thumb_down:before {
    content: "\e8db"
}

.icon-thumb_up:before {
    content: "\e8dc"
}

.icon-thumbs_up_down:before {
    content: "\e8dd"
}

.icon-timelapse:before {
    content: "\e422"
}

.icon-timeline:before {
    content: "\eaa6"
}

.icon-timer:before {
    content: "\e425"
}

.icon-timer_10:before {
    content: "\e423"
}

.icon-timer_3:before {
    content: "\e424"
}

.icon-timer_off:before {
    content: "\e426"
}

.icon-title:before {
    content: "\e264"
}

.icon-toc:before {
    content: "\e8de"
}

.icon-today:before {
    content: "\e8df"
}

.icon-toll:before {
    content: "\e8e0"
}

.icon-tonality:before {
    content: "\e427"
}

.icon-touch_app:before {
    content: "\eaa7"
}

.icon-toys:before {
    content: "\e332"
}

.icon-track_changes:before {
    content: "\e8e1"
}

.icon-traffic:before {
    content: "\e565"
}

.icon-train:before {
    content: "\e570"
}

.icon-tram:before {
    content: "\e571"
}

.icon-transfer_within_a_station:before {
    content: "\e572"
}

.icon-transform:before {
    content: "\e428"
}

.icon-translate:before {
    content: "\e8e2"
}

.icon-trending_down:before {
    content: "\e8e3"
}

.icon-trending_flat:before {
    content: "\e8e4"
}

.icon-trending_up:before {
    content: "\e8e5"
}

.icon-tune:before {
    content: "\e429"
}

.icon-tv3:before {
    content: "\e333"
}

.icon-unarchive:before {
    content: "\e169"
}

.icon-undo3:before {
    content: "\e166"
}

.icon-unfold_less:before {
    content: "\e5d6"
}

.icon-unfold_more:before {
    content: "\e5d7"
}

.icon-update:before {
    content: "\eaa8"
}

.icon-usb:before {
    content: "\e1e0"
}

.icon-verified_user:before {
    content: "\e8e8"
}

.icon-vertical_align_bottom:before {
    content: "\e258"
}

.icon-vertical_align_center:before {
    content: "\e259"
}

.icon-vertical_align_top:before {
    content: "\e25a"
}

.icon-vibration:before {
    content: "\e62d"
}

.icon-video_call:before {
    content: "\e070"
}

.icon-video_label:before {
    content: "\e071"
}

.icon-video_library:before {
    content: "\e04a"
}

.icon-videocam:before {
    content: "\e04b"
}

.icon-videocam_off:before {
    content: "\e04c"
}

.icon-videogame_asset:before {
    content: "\e338"
}

.icon-view_agenda:before {
    content: "\e8e9"
}

.icon-view_array:before {
    content: "\e8ea"
}

.icon-view_carousel:before {
    content: "\e8eb"
}

.icon-view_column:before {
    content: "\e8ec"
}

.icon-view_comfy:before {
    content: "\e42a"
}

.icon-view_compact:before {
    content: "\e42b"
}

.icon-view_day:before {
    content: "\e8ed"
}

.icon-view_headline:before {
    content: "\e8ee"
}

.icon-view_list:before {
    content: "\e8ef"
}

.icon-view_module:before {
    content: "\e8f0"
}

.icon-view_quilt:before {
    content: "\e8f1"
}

.icon-view_stream:before {
    content: "\e8f2"
}

.icon-view_week:before {
    content: "\e8f3"
}

.icon-vignette:before {
    content: "\e435"
}

.icon-visibility_off:before {
    content: "\e8f5"
}

.icon-voice_chat:before {
    content: "\e62e"
}

.icon-voicemail2:before {
    content: "\e0d9"
}

.icon-volume_down:before {
    content: "\e04d"
}

.icon-volume_mute:before {
    content: "\e04e"
}

.icon-volume_off:before {
    content: "\e04f"
}

.icon-volume_up:before {
    content: "\e050"
}

.icon-vpn_key:before {
    content: "\e0da"
}

.icon-vpn_lock:before {
    content: "\e62f"
}

.icon-wallpaper:before {
    content: "\e1bc"
}

.icon-watch:before {
    content: "\e334"
}

.icon-watch_later:before {
    content: "\eaa9"
}

.icon-wb_auto:before {
    content: "\e42c"
}

.icon-wb_incandescent:before {
    content: "\e42e"
}

.icon-wb_iridescent:before {
    content: "\e436"
}

.icon-wb_sunny:before {
    content: "\e430"
}

.icon-wc:before {
    content: "\e63d"
}

.icon-web:before {
    content: "\e051"
}

.icon-web_asset:before {
    content: "\e069"
}

.icon-weekend:before {
    content: "\e16b"
}

.icon-whatshot:before {
    content: "\e80e"
}

.icon-widgets:before {
    content: "\e1bd"
}

.icon-wifi:before {
    content: "\e63e"
}

.icon-wifi_lock:before {
    content: "\e1e1"
}

.icon-wifi_tethering:before {
    content: "\e1e2"
}

.icon-work:before {
    content: "\e8f9"
}

.icon-wrap_text:before {
    content: "\e25b"
}

.icon-youtube_searched_for:before {
    content: "\e8fa"
}

.icon-zoom_in:before {
    content: "\e8ff"
}

.icon-zoom_out:before {
    content: "\eaaa"
}

.icon-zoom_out_map:before {
    content: "\e56b"
}

.icon-heart3:before {
    content: "\eaab"
}

.icon-cloud3:before {
    content: "\eaac"
}

.icon-star3:before {
    content: "\eaad"
}

.icon-tv4:before {
    content: "\eaae"
}

.icon-sound2:before {
    content: "\eaaf"
}

.icon-video2:before {
    content: "\eab0"
}

.icon-trash2:before {
    content: "\eab1"
}

.icon-user3:before {
    content: "\eab2"
}

.icon-key4:before {
    content: "\eab3"
}

.icon-search3:before {
    content: "\eab4"
}

.icon-settings2:before {
    content: "\eab5"
}

.icon-camera4:before {
    content: "\eab6"
}

.icon-tag2:before {
    content: "\eab7"
}

.icon-lock4:before {
    content: "\eab8"
}

.icon-bulb:before {
    content: "\eab9"
}

.icon-pen2:before {
    content: "\eaba"
}

.icon-diamond:before {
    content: "\eabb"
}

.icon-display2:before {
    content: "\eabc"
}

.icon-location4:before {
    content: "\eabd"
}

.icon-eye3:before {
    content: "\eabe"
}

.icon-bubble3:before {
    content: "\eabf"
}

.icon-stack2:before {
    content: "\eac0"
}

.icon-cup2:before {
    content: "\eac1"
}

.icon-phone4:before {
    content: "\eac2"
}

.icon-news2:before {
    content: "\eac3"
}

.icon-mail6:before {
    content: "\eac4"
}

.icon-like:before {
    content: "\eac5"
}

.icon-photo2:before {
    content: "\eac6"
}

.icon-note3:before {
    content: "\eac7"
}

.icon-clock4:before {
    content: "\eac8"
}

.icon-paperplane:before {
    content: "\eac9"
}

.icon-params:before {
    content: "\eaca"
}

.icon-banknote:before {
    content: "\eacb"
}

.icon-data:before {
    content: "\eacc"
}

.icon-music3:before {
    content: "\eacd"
}

.icon-megaphone2:before {
    content: "\eace"
}

.icon-study:before {
    content: "\eacf"
}

.icon-lab2:before {
    content: "\ead0"
}

.icon-food:before {
    content: "\ead1"
}

.icon-t-shirt:before {
    content: "\ead2"
}

.icon-fire2:before {
    content: "\ead3"
}

.icon-clip:before {
    content: "\ead4"
}

.icon-shop3:before {
    content: "\ead5"
}

.icon-calendar3:before {
    content: "\ead6"
}

.icon-wallet2:before {
    content: "\ead7"
}

.icon-vynil:before {
    content: "\ead8"
}

.icon-truck2:before {
    content: "\ead9"
}

.icon-world:before {
    content: "\eada"
}

.icon-home:before {
    content: "\eadb"
}

.icon-home2:before {
    content: "\eadc"
}

.icon-home3:before {
    content: "\eadd"
}

.icon-office:before {
    content: "\eade"
}

.icon-newspaper:before {
    content: "\eadf"
}

.icon-pencil:before {
    content: "\eae0"
}

.icon-pencil2:before {
    content: "\eae1"
}

.icon-quill:before {
    content: "\eae2"
}

.icon-pen:before {
    content: "\eae3"
}

.icon-blog:before {
    content: "\eae4"
}

.icon-eyedropper:before {
    content: "\eae5"
}

.icon-droplet:before {
    content: "\eae6"
}

.icon-paint-format:before {
    content: "\eae7"
}

.icon-image:before {
    content: "\eae8"
}

.icon-images:before {
    content: "\eae9"
}

.icon-camera:before {
    content: "\eaea"
}

.icon-headphones:before {
    content: "\eaeb"
}

.icon-music:before {
    content: "\eaec"
}

.icon-play:before {
    content: "\eaed"
}

.icon-film:before {
    content: "\eaee"
}

.icon-video-camera:before {
    content: "\eaef"
}

.icon-dice:before {
    content: "\eaf0"
}

.icon-pacman:before {
    content: "\eaf1"
}

.icon-spades:before {
    content: "\eaf2"
}

.icon-clubs:before {
    content: "\eaf3"
}

.icon-diamonds:before {
    content: "\eaf4"
}

.icon-bullhorn:before {
    content: "\eaf5"
}

.icon-connection:before {
    content: "\eaf6"
}

.icon-podcast:before {
    content: "\eaf7"
}

.icon-feed:before {
    content: "\eaf8"
}

.icon-mic:before {
    content: "\eaf9"
}

.icon-book:before {
    content: "\eafa"
}

.icon-books:before {
    content: "\eafb"
}

.icon-library:before {
    content: "\eafc"
}

.icon-file-text:before {
    content: "\eafd"
}

.icon-profile:before {
    content: "\eafe"
}

.icon-file-empty:before {
    content: "\eaff"
}

.icon-files-empty:before {
    content: "\eb00"
}

.icon-file-text2:before {
    content: "\eb01"
}

.icon-file-picture:before {
    content: "\eb02"
}

.icon-file-music:before {
    content: "\eb03"
}

.icon-file-play:before {
    content: "\eb04"
}

.icon-file-video:before {
    content: "\eb05"
}

.icon-file-zip:before {
    content: "\eb06"
}

.icon-copy:before {
    content: "\eb07"
}

.icon-paste:before {
    content: "\eb08"
}

.icon-stack:before {
    content: "\eb09"
}

.icon-folder:before {
    content: "\eb0a"
}

.icon-folder-open:before {
    content: "\eb0b"
}

.icon-folder-plus:before {
    content: "\eb0c"
}

.icon-folder-minus:before {
    content: "\eb0d"
}

.icon-folder-download:before {
    content: "\eb0e"
}

.icon-folder-upload:before {
    content: "\eb0f"
}

.icon-price-tag:before {
    content: "\eb10"
}

.icon-price-tags:before {
    content: "\eb11"
}

.icon-barcode:before {
    content: "\eb12"
}

.icon-qrcode:before {
    content: "\eb13"
}

.icon-ticket:before {
    content: "\eb14"
}

.icon-cart:before {
    content: "\eb15"
}

.icon-coin-dollar:before {
    content: "\eb16"
}

.icon-coin-euro:before {
    content: "\eb17"
}

.icon-coin-pound:before {
    content: "\eb18"
}

.icon-coin-yen:before {
    content: "\eb19"
}

.icon-credit-card:before {
    content: "\eb1a"
}

.icon-calculator:before {
    content: "\eb1b"
}

.icon-lifebuoy:before {
    content: "\eb1c"
}

.icon-phone:before {
    content: "\eb1d"
}

.icon-phone-hang-up:before {
    content: "\eb1e"
}

.icon-address-book:before {
    content: "\eb1f"
}

.icon-envelop:before {
    content: "\eb20"
}

.icon-pushpin:before {
    content: "\eb21"
}

.icon-location:before {
    content: "\eb22"
}

.icon-location2:before {
    content: "\eb23"
}

.icon-compass:before {
    content: "\eb24"
}

.icon-compass2:before {
    content: "\eb25"
}

.icon-map:before {
    content: "\eb26"
}

.icon-map2:before {
    content: "\eb27"
}

.icon-history:before {
    content: "\eb28"
}

.icon-clock:before {
    content: "\eb29"
}

.icon-clock2:before {
    content: "\eb2a"
}

.icon-alarm:before {
    content: "\eb2b"
}

.icon-bell:before {
    content: "\eb2c"
}

.icon-stopwatch:before {
    content: "\eb2d"
}

.icon-calendar:before {
    content: "\eb2e"
}

.icon-printer:before {
    content: "\eb2f"
}

.icon-keyboard:before {
    content: "\eb30"
}

.icon-display:before {
    content: "\eb31"
}

.icon-laptop:before {
    content: "\eb32"
}

.icon-mobile:before {
    content: "\eb33"
}

.icon-mobile2:before {
    content: "\eb34"
}

.icon-tablet:before {
    content: "\eb35"
}

.icon-tv:before {
    content: "\eb36"
}

.icon-drawer:before {
    content: "\eb37"
}

.icon-drawer2:before {
    content: "\eb38"
}

.icon-box-add:before {
    content: "\eb39"
}

.icon-box-remove:before {
    content: "\eb3a"
}

.icon-download:before {
    content: "\eb4d"
}

.icon-upload:before {
    content: "\eb4e"
}

.icon-floppy-disk:before {
    content: "\eb4f"
}

.icon-drive:before {
    content: "\eb50"
}

.icon-database:before {
    content: "\eb51"
}

.icon-undo:before {
    content: "\eb52"
}

.icon-redo:before {
    content: "\eb53"
}

.icon-undo2:before {
    content: "\eb54"
}

.icon-redo2:before {
    content: "\eb55"
}

.icon-forward:before {
    content: "\eb56"
}

.icon-reply:before {
    content: "\eb57"
}

.icon-bubble:before {
    content: "\eb58"
}

.icon-bubbles:before {
    content: "\eb59"
}

.icon-bubbles2:before {
    content: "\eb5a"
}

.icon-bubble2:before {
    content: "\eb5b"
}

.icon-bubbles3:before {
    content: "\eb5c"
}

.icon-bubbles4:before {
    content: "\eb5d"
}

.icon-user:before {
    content: "\eb5e"
}

.icon-users:before {
    content: "\eb5f"
}

.icon-user-plus:before {
    content: "\eb60"
}

.icon-user-minus:before {
    content: "\eb61"
}

.icon-user-check:before {
    content: "\eb62"
}

.icon-user-tie:before {
    content: "\eb63"
}

.icon-quotes-left:before {
    content: "\eb64"
}

.icon-quotes-right:before {
    content: "\eb65"
}

.icon-hour-glass:before {
    content: "\eb66"
}

.icon-spinner:before {
    content: "\eb67"
}

.icon-spinner2:before {
    content: "\eb68"
}

.icon-spinner3:before {
    content: "\eb69"
}

.icon-spinner4:before {
    content: "\eb6a"
}

.icon-spinner5:before {
    content: "\eb6b"
}

.icon-spinner6:before {
    content: "\eb6c"
}

.icon-spinner7:before {
    content: "\eb6d"
}

.icon-spinner8:before {
    content: "\eb6e"
}

.icon-spinner9:before {
    content: "\eb6f"
}

.icon-spinner10:before {
    content: "\eb70"
}

.icon-spinner11:before {
    content: "\eb71"
}

.icon-binoculars:before {
    content: "\eb72"
}

.icon-search:before {
    content: "\eb73"
}

.icon-zoom-in:before {
    content: "\eb74"
}

.icon-zoom-out:before {
    content: "\eb75"
}

.icon-enlarge:before {
    content: "\eb76"
}

.icon-shrink:before {
    content: "\eb77"
}

.icon-enlarge2:before {
    content: "\eb78"
}

.icon-shrink2:before {
    content: "\eb79"
}

.icon-key:before {
    content: "\eb7a"
}

.icon-key2:before {
    content: "\eb7b"
}

.icon-lock:before {
    content: "\eb7c"
}

.icon-unlocked:before {
    content: "\eb7d"
}

.icon-wrench:before {
    content: "\eb7e"
}

.icon-equalizer:before {
    content: "\eb7f"
}

.icon-equalizer2:before {
    content: "\eb80"
}

.icon-cog:before {
    content: "\eb81"
}

.icon-cogs:before {
    content: "\eb82"
}

.icon-hammer:before {
    content: "\eb83"
}

.icon-magic-wand:before {
    content: "\eb84"
}

.icon-aid-kit:before {
    content: "\eb85"
}

.icon-bug:before {
    content: "\eb86"
}

.icon-pie-chart:before {
    content: "\eb87"
}

.icon-stats-dots:before {
    content: "\eb88"
}

.icon-stats-bars:before {
    content: "\eb89"
}

.icon-stats-bars2:before {
    content: "\eb8a"
}

.icon-trophy:before {
    content: "\eb8b"
}

.icon-gift:before {
    content: "\eb8c"
}

.icon-glass:before {
    content: "\eb8d"
}

.icon-glass2:before {
    content: "\eb8e"
}

.icon-mug:before {
    content: "\eb8f"
}

.icon-spoon-knife:before {
    content: "\eb90"
}

.icon-leaf:before {
    content: "\eb91"
}

.icon-rocket:before {
    content: "\eb92"
}

.icon-meter:before {
    content: "\eb93"
}

.icon-meter2:before {
    content: "\eb94"
}

.icon-hammer2:before {
    content: "\eb95"
}

.icon-fire:before {
    content: "\eb96"
}

.icon-lab:before {
    content: "\eb97"
}

.icon-magnet:before {
    content: "\eb98"
}

.icon-bin:before {
    content: "\eb99"
}

.icon-bin2:before {
    content: "\eb9a"
}

.icon-briefcase:before {
    content: "\eb9b"
}

.icon-airplane:before {
    content: "\eb9c"
}

.icon-truck:before {
    content: "\eb9d"
}

.icon-road:before {
    content: "\eb9e"
}

.icon-accessibility:before {
    content: "\eb9f"
}

.icon-target:before {
    content: "\eba0"
}

.icon-shield:before {
    content: "\eba1"
}

.icon-power:before {
    content: "\eba2"
}

.icon-switch:before {
    content: "\eba3"
}

.icon-power-cord:before {
    content: "\eba4"
}

.icon-clipboard:before {
    content: "\eba5"
}

.icon-list-numbered:before {
    content: "\eba6"
}

.icon-list:before {
    content: "\eba7"
}

.icon-list2:before {
    content: "\eba8"
}

.icon-tree:before {
    content: "\eba9"
}

.icon-menu:before {
    content: "\ebaa"
}

.icon-menu2:before {
    content: "\ebab"
}

.icon-menu3:before {
    content: "\ebac"
}

.icon-menu4:before {
    content: "\ebad"
}

.icon-cloud:before {
    content: "\ebae"
}

.icon-cloud-download:before {
    content: "\ebaf"
}

.icon-cloud-upload:before {
    content: "\ebb0"
}

.icon-cloud-check:before {
    content: "\ebb1"
}

.icon-download2:before {
    content: "\ebb2"
}

.icon-upload2:before {
    content: "\ebb3"
}

.icon-download3:before {
    content: "\ebb4"
}

.icon-upload3:before {
    content: "\ebb5"
}

.icon-sphere:before {
    content: "\ebb6"
}

.icon-earth:before {
    content: "\ebb7"
}

.icon-link:before {
    content: "\ebb8"
}

.icon-flag:before {
    content: "\ebb9"
}

.icon-attachment:before {
    content: "\ebba"
}

.icon-eye:before {
    content: "\ebbb"
}

.icon-eye-plus:before {
    content: "\ebbc"
}

.icon-eye-minus:before {
    content: "\ebbd"
}

.icon-eye-blocked:before {
    content: "\ebbe"
}

.icon-bookmark:before {
    content: "\ebbf"
}

.icon-bookmarks:before {
    content: "\ebc0"
}

.icon-sun:before {
    content: "\ebc1"
}

.icon-contrast:before {
    content: "\ebc2"
}

.icon-brightness-contrast:before {
    content: "\ebc3"
}

.icon-star-empty:before {
    content: "\ebc4"
}

.icon-star-half:before {
    content: "\ebc5"
}

.icon-star-full:before {
    content: "\ebc6"
}

.icon-heart:before {
    content: "\ebc7"
}

.icon-heart-broken:before {
    content: "\ebc8"
}

.icon-man:before {
    content: "\ebc9"
}

.icon-woman:before {
    content: "\ebca"
}

.icon-man-woman:before {
    content: "\ebcb"
}

.icon-happy:before {
    content: "\ebcc"
}

.icon-happy2:before {
    content: "\ebcd"
}

.icon-smile:before {
    content: "\ebce"
}

.icon-smile2:before {
    content: "\ebcf"
}

.icon-tongue:before {
    content: "\ebd0"
}

.icon-tongue2:before {
    content: "\ebd1"
}

.icon-sad:before {
    content: "\ebd2"
}

.icon-sad2:before {
    content: "\ebd3"
}

.icon-wink:before {
    content: "\ebd4"
}

.icon-wink2:before {
    content: "\ebd5"
}

.icon-grin:before {
    content: "\ebd6"
}

.icon-grin2:before {
    content: "\ebd7"
}

.icon-cool:before {
    content: "\ebd8"
}

.icon-cool2:before {
    content: "\ebd9"
}

.icon-angry:before {
    content: "\ebda"
}

.icon-angry2:before {
    content: "\ebdb"
}

.icon-evil:before {
    content: "\ebdc"
}

.icon-evil2:before {
    content: "\ebdd"
}

.icon-shocked:before {
    content: "\ebde"
}

.icon-shocked2:before {
    content: "\ebdf"
}

.icon-baffled:before {
    content: "\ebe0"
}

.icon-baffled2:before {
    content: "\ebe1"
}

.icon-confused:before {
    content: "\ebe2"
}

.icon-confused2:before {
    content: "\ebe3"
}

.icon-neutral:before {
    content: "\ebe4"
}

.icon-neutral2:before {
    content: "\ebe5"
}

.icon-hipster:before {
    content: "\ebe6"
}

.icon-hipster2:before {
    content: "\ebe7"
}

.icon-wondering:before {
    content: "\ebe8"
}

.icon-wondering2:before {
    content: "\ebe9"
}

.icon-sleepy:before {
    content: "\ebea"
}

.icon-sleepy2:before {
    content: "\ebeb"
}

.icon-frustrated:before {
    content: "\ebec"
}

.icon-frustrated2:before {
    content: "\ebed"
}

.icon-crying:before {
    content: "\ebee"
}

.icon-crying2:before {
    content: "\ebef"
}

.icon-point-up:before {
    content: "\ebf0"
}

.icon-point-right:before {
    content: "\ebf1"
}

.icon-point-down:before {
    content: "\ebf2"
}

.icon-point-left:before {
    content: "\ebf3"
}

.icon-warning:before {
    content: "\ebf4"
}

.icon-notification:before {
    content: "\ebf5"
}

.icon-question:before {
    content: "\ebf6"
}

.icon-plus:before {
    content: "\ebf7"
}

.icon-minus:before {
    content: "\ebf8"
}

.icon-info:before {
    content: "\ebf9"
}

.icon-cancel-circle:before {
    content: "\ebfa"
}

.icon-blocked:before {
    content: "\ebfb"
}

.icon-cross:before {
    content: "\ebfc"
}

.icon-checkmark:before {
    content: "\ebfd"
}

.icon-checkmark2:before {
    content: "\ebfe"
}

.icon-spell-check:before {
    content: "\ebff"
}

.icon-enter:before {
    content: "\ec00"
}

.icon-exit:before {
    content: "\ec01"
}

.icon-play2:before {
    content: "\ec02"
}

.icon-pause:before {
    content: "\ec03"
}

.icon-stop:before {
    content: "\ec04"
}

.icon-previous:before {
    content: "\ec05"
}

.icon-next:before {
    content: "\ec06"
}

.icon-backward:before {
    content: "\ec07"
}

.icon-forward2:before {
    content: "\ec08"
}

.icon-play3:before {
    content: "\ec09"
}

.icon-pause2:before {
    content: "\ec0a"
}

.icon-stop2:before {
    content: "\ec0b"
}

.icon-backward2:before {
    content: "\ec0c"
}

.icon-forward3:before {
    content: "\ec0d"
}

.icon-first:before {
    content: "\ec0e"
}

.icon-last:before {
    content: "\ec0f"
}

.icon-previous2:before {
    content: "\ec10"
}

.icon-next2:before {
    content: "\ec11"
}

.icon-eject:before {
    content: "\ec12"
}

.icon-volume-high:before {
    content: "\ec13"
}

.icon-volume-medium:before {
    content: "\ec14"
}

.icon-volume-low:before {
    content: "\ec15"
}

.icon-volume-mute:before {
    content: "\ec16"
}

.icon-volume-mute2:before {
    content: "\ec17"
}

.icon-volume-increase:before {
    content: "\ec18"
}

.icon-volume-decrease:before {
    content: "\ec19"
}

.icon-loop:before {
    content: "\ec1a"
}

.icon-loop2:before {
    content: "\ec1b"
}

.icon-infinite:before {
    content: "\ec1c"
}

.icon-shuffle:before {
    content: "\ec1d"
}

.icon-arrow-up-left:before {
    content: "\ec1e"
}

.icon-arrow-up:before {
    content: "\ec1f"
}

.icon-arrow-up-right:before {
    content: "\ec20"
}

.icon-arrow-right:before {
    content: "\ec21"
}

.icon-arrow-down-right:before {
    content: "\ec22"
}

.icon-arrow-down:before {
    content: "\ec23"
}

.icon-arrow-down-left:before {
    content: "\ec24"
}

.icon-arrow-left:before {
    content: "\ec25"
}

.icon-arrow-up-left2:before {
    content: "\ec26"
}

.icon-arrow-up2:before {
    content: "\ec27"
}

.icon-arrow-up-right2:before {
    content: "\ec28"
}

.icon-arrow-right2:before {
    content: "\ec29"
}

.icon-arrow-down-right2:before {
    content: "\ec2a"
}

.icon-arrow-down2:before {
    content: "\ec2b"
}

.icon-arrow-down-left2:before {
    content: "\ec2c"
}

.icon-arrow-left2:before {
    content: "\ec2d"
}

.icon-circle-up:before {
    content: "\ec2e"
}

.icon-circle-right:before {
    content: "\ec2f"
}

.icon-circle-down:before {
    content: "\ec30"
}

.icon-circle-left:before {
    content: "\ec31"
}

.icon-tab:before {
    content: "\ec32"
}

.icon-move-up:before {
    content: "\ec33"
}

.icon-move-down:before {
    content: "\ec34"
}

.icon-sort-alpha-asc:before {
    content: "\ec35"
}

.icon-sort-alpha-desc:before {
    content: "\ec36"
}

.icon-sort-numeric-asc:before {
    content: "\ec37"
}

.icon-sort-numberic-desc:before {
    content: "\ec38"
}

.icon-sort-amount-asc:before {
    content: "\ec39"
}

.icon-sort-amount-desc:before {
    content: "\ec3a"
}

.icon-command:before {
    content: "\ec3b"
}

.icon-shift:before {
    content: "\ec3c"
}

.icon-ctrl:before {
    content: "\ec3d"
}

.icon-opt:before {
    content: "\ec3e"
}

.icon-checkbox-checked:before {
    content: "\ec3f"
}

.icon-checkbox-unchecked:before {
    content: "\ec40"
}

.icon-radio-checked:before {
    content: "\ec41"
}

.icon-radio-checked2:before {
    content: "\ec42"
}

.icon-radio-unchecked:before {
    content: "\ec43"
}

.icon-crop:before {
    content: "\ec44"
}

.icon-make-group:before {
    content: "\ec45"
}

.icon-ungroup:before {
    content: "\ec46"
}

.icon-scissors:before {
    content: "\ec47"
}

.icon-filter:before {
    content: "\ec48"
}

.icon-font:before {
    content: "\ec49"
}

.icon-ligature:before {
    content: "\ec4a"
}

.icon-ligature2:before {
    content: "\ec4b"
}

.icon-text-height:before {
    content: "\ec4c"
}

.icon-text-width:before {
    content: "\ec4d"
}

.icon-font-size:before {
    content: "\ec4e"
}

.icon-bold:before {
    content: "\ec4f"
}

.icon-underline:before {
    content: "\ec50"
}

.icon-italic:before {
    content: "\ec51"
}

.icon-strikethrough:before {
    content: "\ec52"
}

.icon-omega:before {
    content: "\ec53"
}

.icon-sigma:before {
    content: "\ec54"
}

.icon-page-break:before {
    content: "\ec55"
}

.icon-superscript:before {
    content: "\ec56"
}

.icon-subscript:before {
    content: "\ec57"
}

.icon-superscript2:before {
    content: "\ec58"
}

.icon-subscript2:before {
    content: "\ec59"
}

.icon-text-color:before {
    content: "\ec5a"
}

.icon-pagebreak:before {
    content: "\ec5b"
}

.icon-clear-formatting:before {
    content: "\ec5c"
}

.icon-table:before {
    content: "\ec5d"
}

.icon-table2:before {
    content: "\ec5e"
}

.icon-insert-template:before {
    content: "\ec5f"
}

.icon-pilcrow:before {
    content: "\ec60"
}

.icon-ltr:before {
    content: "\ec61"
}

.icon-rtl:before {
    content: "\ec62"
}

.icon-section:before {
    content: "\ec63"
}

.icon-paragraph-left:before {
    content: "\ec64"
}

.icon-paragraph-center:before {
    content: "\ec65"
}

.icon-paragraph-right:before {
    content: "\ec66"
}

.icon-paragraph-justify:before {
    content: "\ec67"
}

.icon-indent-increase:before {
    content: "\ec68"
}

.icon-indent-decrease:before {
    content: "\ec69"
}

.icon-share:before {
    content: "\ec6a"
}

.icon-new-tab:before {
    content: "\ec6b"
}

.icon-embed:before {
    content: "\ec6c"
}

.icon-embed2:before {
    content: "\ec6d"
}

.icon-terminal:before {
    content: "\ec6e"
}

.icon-share2:before {
    content: "\ec6f"
}

.icon-mail:before {
    content: "\ec70"
}

.icon-mail2:before {
    content: "\ec71"
}

.icon-mail3:before {
    content: "\ec72"
}

.icon-mail4:before {
    content: "\ec73"
}

.icon-amazon:before {
    content: "\ec74"
}

.icon-google:before {
    content: "\ec75"
}

.icon-google2:before {
    content: "\ec76"
}

.icon-google3:before {
    content: "\ec77"
}

.icon-google-plus:before {
    content: "\ec78"
}

.icon-google-plus2:before {
    content: "\ec79"
}

.icon-google-plus3:before {
    content: "\ec7a"
}

.icon-hangouts:before {
    content: "\ec7b"
}

.icon-google-drive:before {
    content: "\ec7c"
}

.icon-facebook:before {
    content: "\ec7d"
}

.icon-facebook2:before {
    content: "\ec7e"
}

.icon-instagram:before {
    content: "\ec7f"
}

.icon-whatsapp:before {
    content: "\ec80"
}

.icon-spotify:before {
    content: "\ec81"
}

.icon-telegram:before {
    content: "\ec82"
}

.icon-twitter:before {
    content: "\ec83"
}

.icon-vine:before {
    content: "\ec84"
}

.icon-vk:before {
    content: "\ec85"
}

.icon-renren:before {
    content: "\ec86"
}

.icon-sina-weibo:before {
    content: "\ec87"
}

.icon-rss:before {
    content: "\ec88"
}

.icon-rss2:before {
    content: "\ec89"
}

.icon-youtube:before {
    content: "\ec8a"
}

.icon-youtube2:before {
    content: "\ec8b"
}

.icon-twitch:before {
    content: "\ec8c"
}

.icon-vimeo:before {
    content: "\ec8d"
}

.icon-vimeo2:before {
    content: "\ec8e"
}

.icon-lanyrd:before {
    content: "\ec8f"
}

.icon-flickr:before {
    content: "\ec90"
}

.icon-flickr2:before {
    content: "\ec91"
}

.icon-flickr3:before {
    content: "\ec92"
}

.icon-flickr4:before {
    content: "\ec93"
}

.icon-dribbble:before {
    content: "\ec94"
}

.icon-behance:before {
    content: "\ec95"
}

.icon-behance2:before {
    content: "\ec96"
}

.icon-deviantart:before {
    content: "\ec97"
}

.icon-500px:before {
    content: "\ec98"
}

.icon-steam:before {
    content: "\ec99"
}

.icon-steam2:before {
    content: "\ec9a"
}

.icon-dropbox:before {
    content: "\ec9b"
}

.icon-onedrive:before {
    content: "\ec9c"
}

.icon-github:before {
    content: "\ec9d"
}

.icon-npm:before {
    content: "\ec9e"
}

.icon-basecamp:before {
    content: "\ec9f"
}

.icon-trello:before {
    content: "\eca0"
}

.icon-wordpress:before {
    content: "\eca1"
}

.icon-joomla:before {
    content: "\eca2"
}

.icon-ello:before {
    content: "\eca3"
}

.icon-blogger:before {
    content: "\eca4"
}

.icon-blogger2:before {
    content: "\eca5"
}

.icon-tumblr:before {
    content: "\eca6"
}

.icon-tumblr2:before {
    content: "\eca7"
}

.icon-yahoo:before {
    content: "\eca8"
}

.icon-yahoo2:before {
    content: "\eca9"
}

.icon-tux:before {
    content: "\ecaa"
}

.icon-appleinc:before {
    content: "\ecab"
}

.icon-finder:before {
    content: "\ecac"
}

.icon-android:before {
    content: "\ecad"
}

.icon-windows:before {
    content: "\ecae"
}

.icon-windows8:before {
    content: "\ecaf"
}

.icon-soundcloud:before {
    content: "\ecb0"
}

.icon-soundcloud2:before {
    content: "\ecb1"
}

.icon-skype:before {
    content: "\ecb2"
}

.icon-reddit:before {
    content: "\ecb3"
}

.icon-hackernews:before {
    content: "\ecb4"
}

.icon-wikipedia:before {
    content: "\ecb5"
}

.icon-linkedin:before {
    content: "\ecb6"
}

.icon-linkedin2:before {
    content: "\ecb7"
}

.icon-lastfm:before {
    content: "\ecb8"
}

.icon-lastfm2:before {
    content: "\ecb9"
}

.icon-delicious:before {
    content: "\ecba"
}

.icon-stumbleupon:before {
    content: "\ecbb"
}

.icon-stumbleupon2:before {
    content: "\ecbc"
}

.icon-stackoverflow:before {
    content: "\ecbd"
}

.icon-pinterest:before {
    content: "\ecbe"
}

.icon-pinterest2:before {
    content: "\ecbf"
}

.icon-xing:before {
    content: "\ecc0"
}

.icon-xing2:before {
    content: "\ecc1"
}

.icon-flattr:before {
    content: "\ecc2"
}

.icon-foursquare:before {
    content: "\ecc3"
}

.icon-yelp:before {
    content: "\ecc4"
}

.icon-paypal:before {
    content: "\ecc5"
}

.icon-chrome:before {
    content: "\ecc6"
}

.icon-firefox:before {
    content: "\ecc7"
}

.icon-IE:before {
    content: "\ecc8"
}

.icon-edge:before {
    content: "\ecc9"
}

.icon-safari:before {
    content: "\ecca"
}

.icon-opera:before {
    content: "\eccb"
}

.icon-file-pdf:before {
    content: "\eccc"
}

.icon-file-openoffice:before {
    content: "\eccd"
}

.icon-file-word:before {
    content: "\ecce"
}

.icon-file-excel:before {
    content: "\eccf"
}

.icon-libreoffice:before {
    content: "\ecd0"
}

.icon-html-five:before {
    content: "\ecd1"
}

.icon-html-five2:before {
    content: "\ecd2"
}

.icon-css3:before {
    content: "\ecd3"
}

.icon-git:before {
    content: "\ecd4"
}

.icon-codepen:before {
    content: "\ecd5"
}

.icon-svg:before {
    content: "\ecd6"
}

.icon-IcoMoon:before {
    content: "\ecd7"
}

.circle-text {
    width: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

    .circle-text h2 {
        font-weight: 600;
        font-size: 24px;
        margin-top: 0;
        margin-bottom: 5px;
    }

    .circle-text p {
        font-weight: 600;
        font-size: 12px;
        color: #999;
    }

#counter {
    width: 100%;
    min-height: 200px;
    padding: 30px 20px;
    margin-bottom: 100px;
}

.countdown-rtl {
    direction: rtl;
}

.countdown-holding span {
    color: #888;
}

.countdown-row {
    clear: both;
    width: 100%;
    padding: 0 2px;
    text-align: center;
}

.countdown-show1 .countdown-section {
    width: 98%
}

.countdown-show2 .countdown-section {
    width: 48%
}

.countdown-show3 .countdown-section {
    width: 32.5%
}

.countdown-show4 .countdown-section {
    width: 24.5%
}

.countdown-show5 .countdown-section {
    width: 19.5%
}

.countdown-show6 .countdown-section {
    width: 16.25%
}

.countdown-show7 .countdown-section {
    width: 14%
}

.countdown-section {
    position: relative;
    display: block;
    float: left;
    font-size: 75%;
    text-align: center;
}

    .countdown-section:after {
        content: "";
        position: absolute;
        width: 5px;
        height: 45%;
        margin-top: 18%;
        top: 0;
        right: 0;
        background: rgba(255, 255, 255, .5);
    }

    .countdown-section:last-child:after {
        display: none;
    }

.countdown-amount {
    color: #FFF;
    font-weight: 200;
    font-size: 90px;
}

.countdown-period {
    display: block;
    color: #FFF;
    font-weight: 200;
    font-size: 24px;
}

.countdown-descr {
    display: block;
    width: 100%
}

table.dataTable {
    margin: 0 !important;
}

    table.dataTable thead th {
        padding: 10px;
    }

    table.dataTable tfoot th {
        border-top: 1px solid #ddd;
        padding: 4px 18px 4px 10px;
        font-weight: 600;
        background: #f2f2f2;
    }

.dt-panelmenu {
    padding: 10px 14px;
}

.dt-panelfooter {
    padding: 6px 14px;
    background: #fbfbfb;
    border-top: 1px solid #e5e5e5;
}

.dataTables_length {
    float: left;
}

    .dataTables_length select {
        margin: 0 5px;
    }

.dataTables_filter {
    float: right;
}

    .dataTables_filter label, .dataTables_length label {
        margin: 0;
    }

table.dataTable .form-control {
    width: 100%
}

div.dataTables_info {
    float: left;
    padding-top: 27px;
    width: 225px;
}

table.dataTable td.dataTables_empty {
    padding: 50px !important;
    background: #f6f6f6 !important;
}

.dt-abc-filter {
    padding: 4px 0;
}

    .dt-abc-filter .sort-option i, .dt-abc-filter .sort-option span {
        padding-right: 0;
        cursor: pointer;
    }

    .dt-abc-filter span {
        cursor: pointer;
        padding: 0 9px;
        font-size: 12px;
        font-weight: 600;
        color: rgba(0, 0, 0, .87);
        display: inline-block;
    }

    .dt-abc-filter .abc-label {
        color: #999;
        padding: 0 3px;
    }

table.dataTable tr.row-label td {
    background: #f6f6f6;
    color: #333;
    font-weight: 600;
    cursor: pointer;
}

.table.dataTable tbody tr.active td, .table.dataTable tbody tr.active th {
    color: #555;
    border-color: #EEE;
    background-color: #FFFEF0 !important;
}

.table.dataTable tbody tr.active:hover td, .table.dataTable tbody tr.active:hover th {
    color: #555;
    border-color: #EEE;
    background-color: #FAF9DF !important;
}

.DTE .DTE_Header {
    background-color: #fafafa;
}

    .DTE .DTE_Header h3 {
        margin-top: 5px;
        margin-bottom: 5px;
        padding-left: 10px;
    }

.DTE .DTE_Body {
    min-height: 100px;
}

    .DTE .DTE_Body:after, .DTE .DTE_Body:before {
        content: " ";
        display: table;
    }

    .DTE .DTE_Body:after {
        clear: both;
    }

.fchild-checkbox.dataTable thead th.sorting_disabled {
    background: #FFF;
}

.fchild-checkbox.dataTable tr td:first-child {
    text-align: center;
}

    .fchild-checkbox.dataTable tr td:first-child:before {
        content: "\f096";
        font-family: FontAwesome;
        color: #BBB;
    }

.fchild-checkbox.dataTable tr.active td:first-child:before {
    content: "\f046";
    color: #555;
}

.fchild-checkbox.dataTable tr td.dataTables_empty:first-child:before {
    content: ""
}

div.DTE_Inline div.DTE_Field input {
    background-color: #FFFEF0;
}

.DTTT_Print #content_wrapper {
    margin: 0 !important;
    padding: 0 !important;
    left: 0 !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
}

.DTTT_print_info {
    position: fixed;
    top: 10%;
    left: 50%;
    width: 400px;
    height: 150px;
    margin-left: -200px;
    margin-top: -75px;
    text-align: center;
    color: #333;
    padding: 10px 30px;
    background: #fff;
    background: -webkit-linear-gradient(top, #fff 0, #f3f3f3 89%, #f9f9f9 100%);
    background: -moz-linear-gradient(top, #fff 0, #f3f3f3 89%, #f9f9f9 100%);
    background: -ms-linear-gradient(top, #fff 0, #f3f3f3 89%, #f9f9f9 100%);
    background: -o-linear-gradient(top, #fff 0, #f3f3f3 89%, #f9f9f9 100%);
    background: linear-gradient(top, #fff 0, #f3f3f3 89%, #f9f9f9 100%);
    opacity: .95;
    border: 1px solid #000;
    border: 1px solid rgba(0, 0, 0, .5);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, .5);
    -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, .5);
    -ms-box-shadow: 0 3px 7px rgba(0, 0, 0, .5);
    -o-box-shadow: 0 3px 7px rgba(0, 0, 0, .5);
    box-shadow: 0 3px 7px rgba(0, 0, 0, .5);
}

    .DTTT_print_info h6 {
        font-weight: 400;
        font-size: 28px;
        line-height: 28px;
        margin: 1em;
    }

    .DTTT_print_info p {
        font-size: 14px;
        line-height: 20px;
    }

tr.shown + tr {
    background-color: #f7f7f7;
}

td.details-control {
    background: url(../img/plugins/details_open.png) center center no-repeat;
    cursor: pointer;
}

tr.shown td.details-control {
    background: url(../img/plugins/details_close.png) center center no-repeat;
}

.dropzone {
    min-height: 200px;
    background: 0 0;
    border: 0;
    outline: 0;
    padding: 15px;
}

    .dropzone .dz-default.dz-message {
        cursor: pointer;
        background-image: none;
        width: 100%;
        height: 100%;
        top: 23%;
        margin-left: 0;
        margin-top: -23px;
        text-align: center;
        left: 0;
    }

        .dropzone .dz-default.dz-message span {
            display: inline-block;
            text-align: center;
        }

            .dropzone .dz-default.dz-message span.main-text {
                cursor: pointer;
                font-size: 28px;
                font-weight: 400;
                color: #666;
            }

                .dropzone .dz-default.dz-message span.main-text b {
                    cursor: pointer;
                    font-size: 40px;
                    color: #555;
                }

            .dropzone .dz-default.dz-message span.sub-text {
                font-size: 20px;
                color: #888;
            }

        .dropzone .dz-default.dz-message i.fa {
            cursor: pointer;
            color: #707ac0;
            font-size: 100px;
            display: block;
            margin-bottom: 15px;
        }

    .dropzone a.dz-remove, .dropzone-previews a.dz-remove {
        cursor: pointer;
    }

    .dropzone .dz-preview, .dropzone-previews .dz-preview {
        box-shadow: none;
        border-color: #DDD;
    }

        .dropzone .dz-preview .dz-details .dz-size, .dropzone-previews .dz-preview .dz-details .dz-size {
            font-size: 13px;
        }

        .dropzone .dz-preview .dz-details, .dropzone .dz-preview .dz-details img, .dropzone-previews .dz-preview .dz-details, .dropzone-previews .dz-preview .dz-details img {
            width: 115px;
        }

    .dropzone a.dz-remove, .dropzone-previews a.dz-remove {
        margin-top: 30px;
        border-radius: 0;
    }

    .dropzone .dz-preview.dz-error .dz-error-mark, .dropzone .dz-preview.dz-error .dz-success-mark, .dropzone-previews .dz-preview.dz-error .dz-error-mark, .dropzone-previews .dz-preview.dz-error .dz-success-mark {
        -webkit-transform: scale(.7);
        transform: scale(.7);
    }

    .dropzone.dropzone-sm .dz-default.dz-message i.fa {
        color: #BBB;
        font-size: 70px;
        margin-bottom: 6px;
    }

    .dropzone.dropzone-sm .dz-default.dz-message span.main-text {
        font-size: 22px;
    }

        .dropzone.dropzone-sm .dz-default.dz-message span.main-text b {
            font-size: 32px;
        }

    .dropzone.dropzone-sm .dz-default.dz-message span.sub-text {
        font-size: 16px;
    }

    .dropzone .dz-preview .dz-error-message, .dropzone-previews .dz-preview .dz-error-message {
        display: none !important;
    }

.expose-overlay {
    display: none;
    background: rgba(0, 0, 0, .6);
    z-index: 9999;
}

.btn-file {
    overflow: hidden;
    position: relative;
    vertical-align: middle;
}

    .btn-file > input {
        position: absolute;
        top: 0;
        right: 0;
        margin: 0;
        opacity: 0;
        filter: alpha(opacity=0);
        transform: translate(-300px, 0) scale(4);
        font-size: 23px;
        direction: ltr;
        cursor: pointer;
    }

.fileupload .uneditable-input {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
    cursor: text;
}

.fileupload .thumbnail, .fileupload-preview .thumbnail {
    cursor: pointer;
    overflow: hidden;
    vertical-align: middle;
    text-align: center;
    padding: 5px;
    outline: #d9d9d9 dashed 2px;
    border: 0;
    background: 0 0;
    position: relative;
    height: 226px;
}

    .fileupload .thumbnail > img {
        display: inline-block;
        vertical-align: middle;
        max-height: 100%
    }

.fileupload .btn {
    vertical-align: middle;
}

.fileupload-exists .fileupload-new, .fileupload-new .fileupload-exists {
    display: none !important;
}

.fileupload-inline .fileupload-controls {
    display: inline;
}

.fileupload-new .input-group .btn-file {
    -webkit-border-radius: 0 3px 3px 0;
    -moz-border-radius: 0 3px 3px 0;
    border-radius: 0 3px 3px 0;
}

.thumbnail-borderless .thumbnail {
    cursor: pointer;
    border: none;
    padding: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.fileupload-new.thumbnail-borderless .thumbnail {
    border: 1px solid #ddd;
}

.control-group.warning .fileupload .uneditable-input {
    color: #a47e3c;
    border-color: #a47e3c;
}

.control-group.warning .fileupload .fileupload-preview {
    color: #a47e3c;
}

.control-group.warning .fileupload .thumbnail {
    border-color: #a47e3c;
}

.control-group.error .fileupload .uneditable-input {
    color: #b94a48;
    border-color: #b94a48;
}

.control-group.error .fileupload .fileupload-preview {
    color: #b94a48;
}

.control-group.error .fileupload .thumbnail {
    border-color: #b94a48;
}

.control-group.success .fileupload .uneditable-input {
    color: #468847;
    border-color: #468847;
}

.control-group.success .fileupload .fileupload-preview {
    color: #468847;
}

.control-group.success .fileupload .thumbnail {
    border-color: #468847;
}

#flotTip, .jqstooltip {
    color: #fff;
    width: auto !important;
    height: auto !important;
    padding: 2px 6px !important;
    background-color: rgba(0, 0, 0, .7) !important;
    border: 0 !important;
    border-radius: 3px;
}

.flot-x-axis .flot-tick-label.tickLabel {
    color: #AAA;
}

.flot-y-axis .flot-tick-label.tickLabel {
    color: #AAA;
    padding-top: 6px;
    padding-left: 14px;
}

td.legendColorBox {
    padding: 5px;
}

.legend-item {
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all 2s;
}

.highcharts-container .highcharts-axis-labels text {
    color: #AAA !important;
    fill: #AAA !important;
}

.ui-spinner-input {
    color: inherit;
    min-height: 36px;
}

.ui-spinner-button {
    z-index: 3;
    cursor: pointer;
    display: block;
    overflow: hidden;
    position: absolute;
    right: 0;
    width: 16px;
    height: 50%;
    padding: 0;
    margin: 0;
    font-size: .5em;
    text-align: center;
}

.input-group .ui-spinner .form-control:first-child {
    border-radius: 0 2px 2px 0;
}

.ui-spinner .ui-icon {
    position: absolute;
    margin-top: -2px;
    top: 50%;
    left: 0;
    text-indent: 0;
}

.ui-spinner-up .ui-icon {
    margin-top: -6px;
}

.ui-spinner-up {
    top: 0;
}

.ui-spinner-down {
    bottom: 0;
}

.ui-spinner .ui-icon-triangle-1-s {
    background-position: -65px -16px;
}

.modal-basic {
    max-width: 600px;
    margin: 40px auto;
    position: relative;
}

.modal-basic-bg {
    background: #fff;
    padding: 20px 30px;
    text-align: left;
    max-width: 600px;
    margin: 40px auto;
    position: relative;
}

.popup-basic {
    position: relative;
    background: #FFF;
    width: auto;
    max-width: 450px;
    margin: 40px auto;
}

    .popup-basic .help-block {
        margin-bottom: 0;
    }

.popup-sm {
    max-width: 300px;
}

.popup-lg {
    max-width: 700px;
}

.popup-xl {
    max-width: 1000px;
}

.popup-full {
    max-width: 90%
}

.mfp-no-margins img.mfp-img {
    padding: 0;
}

.mfp-no-margins .mfp-figure:after {
    top: 0;
    bottom: 0;
}

.mfp-no-margins .mfp-container {
    padding: 0;
}

.mfp-fade.mfp-bg {
    opacity: 0;
    -webkit-transition: all .15s ease-out;
    -moz-transition: all .15s ease-out;
    transition: all .15s ease-out;
}

    .mfp-fade.mfp-bg.mfp-ready {
        opacity: .8;
    }

    .mfp-fade.mfp-bg.mfp-removing {
        opacity: 0;
    }

.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    -webkit-transition: all .15s ease-out;
    -moz-transition: all .15s ease-out;
    transition: all .15s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}

@media (max-width:991px) {
    .mapplic-sidebar {
        display: none;
    }

    .mapplic-container {
        width: 100%
    }
}

.nano {
    position: relative;
    width: 100%;
    overflow: hidden;
}

    .nano.affix {
        height: 100%
    }

    .nano.has-scrollbar > .nano-content {
        height: 100%;
        overflow-y: scroll;
        overflow-x: hidden;
    }

    .nano.affix > .nano-content:focus {
        outline: 0;
    }

    .nano.affix > .nano-content::-webkit-scrollbar {
        display: none;
    }

.affix.has-scrollbar > .nano-content::-webkit-scrollbar {
    display: block;
}

.nano.affix > .nano-pane {
    background: rgba(0, 0, 0, .18);
    position: absolute;
    width: 5px;
    right: 0;
    top: 0;
    bottom: 0;
    visibility: hidden\9;
    opacity: .01;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
}

    .nano.affix > .nano-pane > .nano-slider {
        background: #999;
        position: relative;
        margin: 0;
        -moz-border-radius: 0;
        -webkit-border-radius: 0;
        border-radius: 0;
    }

.nano-pane.active, .nano-pane.flashed, .nano.affix:hover > .nano-pane {
    visibility: visible\9;
    opacity: .99;
}

.nano.affix.nano-primary > .nano-pane > .nano-slider {
    background: #707ac0;
}

.nano.affix.nano-success > .nano-pane > .nano-slider {
    background: #70ca63;
}

.nano.affix.nano-info > .nano-pane > .nano-slider {
    background: #3bafda;
}

.nano.affix.nano-warning > .nano-pane > .nano-slider {
    background: #f6bb42;
}

.nano.affix.nano-danger > .nano-pane > .nano-slider {
    background: #e9573f;
}

.nano.affix.nano-alert > .nano-pane > .nano-slider, .nano.affix.nano-system > .nano-pane > .nano-slider {
    background: #707ac0;
}

.nano.affix.nano-dark > .nano-pane > .nano-slider {
    background: #3b3f4f;
}

body.mfp-bg-open .bootstrap-datetimepicker-widget, body.mfp-bg-open .colorpicker.dropdown-menu, body.mfp-bg-open .datepicker, body.mfp-bg-open .daterangepicker.dropdown-menu, body.mfp-bg-open .ui-datepicker {
    z-index: 9999 !important;
}

body.mfp-bg-open .ui-datepicker-inline {
    z-index: inherit !important;
}

.colorpicker.dropdown-menu {
    z-index: 1025;
    top: 0;
    left: 0;
    min-width: 130px;
    padding: 4px;
    margin-top: 1px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    border-color: 1px solid rgba(0, 0, 0, .1);
}

.datepicker {
    padding: 6px;
}

.daterangepicker.opensleft .calendar.left {
    margin-right: 2px;
}

.daterangepicker .ranges li {
    margin-bottom: 6px;
}

.bootstrap-datetimepicker-widget td span.glyphicon, .bootstrap-datetimepicker-widget td span.glyphicons {
    line-height: 54px;
}

.bootstrap-datetimepicker-widget .picker-switch .btn {
    padding: 4px 12px;
}

.timepicker-sm .bootstrap-datetimepicker-widget td, .timepicker-sm .bootstrap-datetimepicker-widget td span, .timepicker-sm .bootstrap-datetimepicker-widget td span.glyphicons {
    height: 28px;
    line-height: 28px;
}

.datewidget-inline {
    z-index: 1020 !important;
    display: block !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    right: auto !important;
    bottom: auto !important;
}

.ui-pnotify {
    position: absolute;
    height: auto;
    z-index: 9999;
}

    .ui-pnotify .alert {
        border-radius: 0;
    }

html > body > .ui-pnotify {
    position: fixed;
}

.ui-pnotify .ui-pnotify-shadow {
    -webkit-box-shadow: 0 2px 10px rgba(50, 50, 50, .5);
    -moz-box-shadow: 0 2px 10px rgba(50, 50, 50, .5);
    box-shadow: 0 2px 10px rgba(50, 50, 50, .5);
}

.ui-pnotify-container {
    background-position: 0 0;
    padding: .8em;
    height: 100%;
    margin: 0;
}

.ui-pnotify-sharp {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.ui-pnotify-title {
    display: block;
    margin-bottom: .4em;
    margin-top: 0;
}

.ui-pnotify-text {
    display: block;
    text-align: center;
    margin-top: 17px;
    padding-top: 10px;
}

.ui-pnotify.stack_bottom_left, .ui-pnotify.stack_top_left {
    left: 15px;
    right: auto;
}

.ui-pnotify.stack_bottom_left, .ui-pnotify.stack_bottom_right {
    bottom: 25px;
    right: 8px;
    top: auto;
}

.ui-pnotify.stack_bottom_right {
    right: 12px;
}

.ui-pnotify-closer {
    float: none;
    margin-left: .2em;
    position: absolute;
    right: 10px;
    top: 10px;
}

.ui-pnotify-sticker {
    float: none;
    margin-left: .2em;
    position: absolute;
    right: 30px;
    top: 10px;
}

.ui-pnotify.stack_bar_top {
    right: 0;
    top: 0;
    width: 100%;
    border-radius: 0;
}

    .ui-pnotify.stack_bar_top .alert {
        border-left-width: 0;
        border-right-width: 0;
        border-top-width: 0;
    }

.ui-pnotify.stack_bar_bottom {
    right: auto;
    top: auto;
    left: auto;
    margin-left: 15%;
    bottom: 0;
    border-radius: 0;
}

.ui-pnotify {
    top: 70px;
    right: 8px;
}

.ui-pnotify-icon, .ui-pnotify-icon span {
    display: block;
    float: none;
    margin-right: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 9px;
    font-size: 28px;
}

.ui-rangeSlider .ui-rangeSlider-bar {
    margin: 5px 0;
    height: 20px;
    background-color: #6390a7;
}

.ui-rangeSlider .ui-rangeSlider-innerBar {
    height: 24px;
    margin: 3px 0;
    background-color: #FFF;
    border: 1px solid #CCC;
    border-radius: 3px;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .1) inset, 0 -1px 0 rgba(255, 255, 255, .65) inset;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .1) inset, 0 -1px 0 rgba(255, 255, 255, .65) inset;
}

.ui-rangeSlider-label {
    border: 0;
    box-shadow: none;
    background: 0 0;
}

.ui-rangeSlider-label-value {
    position: relative;
    top: -8px;
    min-width: 40px;
    min-height: 25px;
    text-align: center;
    line-height: 25px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    background: #fafafa;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .25);
    box-shadow: 0 1px 2px rgba(0, 0, 0, .25);
}

.ui-rangeSlider-label:after {
    content: "\f0d7";
    width: 100%;
    position: absolute;
    bottom: 0;
    margin: 0 -6px;
    color: #f8f8f8;
    font-family: FontAwesome;
    font-size: 18px;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .25);
}

input.ui-editRangeSlider-inputValue {
    border: 1px solid #DDD;
    width: 2.2em;
}

.ui-rangeSlider .ui-rangeSlider-handle {
    background: 0 0;
}

.ui-rangeSlider .ui-rangeSlider-handle-inner {
    background: url(../img/plugins/slider-knob.png) center top no-repeat;
    width: 22px;
    height: 24px;
}

.ui-rangeSlider-leftHandle .ui-rangeSlider-handle-inner {
    margin-left: -10px;
}

.ui-rangeSlider-rightHandle .ui-rangeSlider-handle-inner {
    margin-left: -4px;
}

.ui-rangeSlider-arrow {
    margin: 6px 0;
}

    .ui-rangeSlider-arrow.ui-rangeSlider-leftArrow {
        left: -13px !important;
    }

    .ui-rangeSlider-arrow.ui-rangeSlider-rightArrow {
        right: -13px !important;
    }

.note-editor .note-toolbar {
    background: #fafafa;
    border: none;
    border-bottom: 1px solid #e7e7e7;
    padding: 0 10px 9px;
    margin: 0;
}

    .note-editor .note-toolbar > .btn-group {
        margin-top: 8px;
    }

.note-editor .btn-group-sm > .btn, .note-editor .btn-sm {
    padding: 3px 8px 4px;
}

.note-editor .btn-default {
    background-color: #9c9c9c;
    box-shadow: none;
    color: #fff;
}

    .note-editor .btn-default:hover {
        background-color: #b3b3b3;
        box-shadow: none;
    }

.note-editor .note-editable {
    overflow: auto;
}

.note-editor .note-statusbar {
    background: #c9c9c9;
}

    .note-editor .note-statusbar .note-resizebar {
        border: none;
    }

.note-dialog .modal-dialog {
    padding-top: 50px;
}

.tag-container {
    margin-top: 10px;
}

.tm-tag {
    margin-right: 8px;
    padding: 4px 8px;
    color: #FFF;
    font-size: 13px;
    font-weight: 600;
    border: 0;
    border-radius: 1px;
    box-shadow: none;
    background: #AAA;
}

    .tm-tag .tm-tag-remove {
        color: #FFF;
        opacity: .6;
        font-size: 13px;
        font-weight: 400;
        padding: 0 3px;
    }

        .tm-tag .tm-tag-remove:hover {
            color: #FFF;
            opacity: 1;
        }

    .tm-tag.tm-tag-primary {
        color: #FFF;
        background-color: #8c94cc;
    }

    .tm-tag.tm-tag-info {
        color: #FFF;
        background-color: #5dbde0;
    }

    .tm-tag.tm-tag-success {
        color: #FFF;
        background-color: #8cd481;
    }

    .tm-tag.tm-tag-warning {
        color: #FFF;
        background-color: #f8c969;
    }

    .tm-tag.tm-tag-danger {
        color: #FFF;
        background-color: #ed7764;
    }

    .tm-tag.tm-tag-alert, .tm-tag.tm-tag-system {
        color: #FFF;
        background-color: #8c94cc;
    }

.bootstrap-tagsinput {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    height: auto;
    min-height: 42px;
    outline: 0;
    padding: 3px 8px;
    margin: 0;
    cursor: text;
    color: #626262;
    font-size: 14px;
    font-weight: 400;
    border: 1px solid #E5E5E5;
    border-radius: 0;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

    .bootstrap-tagsinput:focus, .bootstrap-tagsinput:hover {
        border-color: #DDD;
        background-color: #FFF !important;
    }

    .bootstrap-tagsinput input {
        border: none;
        box-shadow: none;
        outline: 0;
        background-color: transparent;
        padding: 0;
        margin: 0;
        width: auto !important;
        max-width: inherit;
    }

        .bootstrap-tagsinput input:focus {
            border: none;
            box-shadow: none;
        }

    .bootstrap-tagsinput .tag {
        color: #fff;
        margin-right: 5px;
        line-height: 36px;
        padding: .6em .7em .7em;
        border-radius: 2px;
    }

        .bootstrap-tagsinput .tag.label-default {
            color: #AAA;
            font-weight: 500;
            background-color: #fff;
            border: 1px solid #eee;
            padding: .5em .7em .6em;
        }

        .bootstrap-tagsinput .tag [data-role=remove] {
            margin-left: 8px;
            cursor: pointer;
        }

            .bootstrap-tagsinput .tag [data-role=remove]:after {
                content: "x";
                padding: 0 2px;
            }

            .bootstrap-tagsinput .tag [data-role=remove]:hover {
                box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px rgba(0, 0, 0, .05);
            }

                .bootstrap-tagsinput .tag [data-role=remove]:hover:active {
                    box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
                }

.bootstrap-datetimepicker-widget td.today:before {
    border-bottom: 7px solid #707ac0;
}

.bootstrap-datetimepicker-widget td span.active, .bootstrap-datetimepicker-widget td.active, .bootstrap-datetimepicker-widget td.active:hover {
    background-color: #428bca;
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, .25);
}

span.twitter-typeahead {
    width: 100%
}

.tt-dropdown-menu {
    width: 100%;
    max-height: 250px;
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: auto;
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
}

.tt-suggestion {
    padding: 2px 12px;
    font-size: 14px;
    line-height: 20px;
}

    .tt-suggestion.tt-cursor {
        cursor: pointer;
        color: #fff;
        background-color: #707ac0;
    }

    .tt-suggestion p {
        margin: 2px 0;
    }

.bootstrap-duallistbox-container .buttons {
    width: 100%;
    margin-bottom: -1px;
}

.bootstrap-duallistbox-container label {
    display: block;
}

form.hide-list-label .bootstrap-duallistbox-container label {
    display: none !important;
}

.bootstrap-duallistbox-container .info {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 11px;
}

.bootstrap-duallistbox-container .clear1, .bootstrap-duallistbox-container .clear2 {
    display: none;
    position: relative;
    top: 2px;
    font-size: 11px;
}

.bootstrap-duallistbox-container .box1.filtered .clear1, .bootstrap-duallistbox-container .box2.filtered .clear2 {
    display: inline-block;
}

.bootstrap-duallistbox-container .move, .bootstrap-duallistbox-container .remove {
    width: 50%;
    padding: 6px 12px;
}

.bootstrap-duallistbox-container .btn-group .btn {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.bootstrap-duallistbox-container select {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.bootstrap-duallistbox-container .moveall, .bootstrap-duallistbox-container .removeall {
    width: 50%;
    padding: 6px 12px;
}

.bootstrap-duallistbox-container.bs2compatible .btn-group > .btn + .btn {
    margin-left: 0;
}

.bootstrap-duallistbox-container select {
    width: 100%;
    height: 300px;
    padding: 4px 5px;
}

.bootstrap-duallistbox-container.moveonselect select option {
    cursor: pointer;
}

.bootstrap-duallistbox-container .filter {
    display: inline-block;
    width: 100%;
    margin: 0 0 -1px;
}

    .bootstrap-duallistbox-container .filter.placeholder {
        color: #aaa;
    }

.bootstrap-duallistbox-container.moveonselect .move, .bootstrap-duallistbox-container.moveonselect .remove {
    display: none;
}

.bootstrap-duallistbox-container.moveonselect .moveall, .bootstrap-duallistbox-container.moveonselect .removeall {
    width: 100%;
    margin: 0 !important;
}

.cropper-container {
    position: relative;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

    .cropper-container img {
        display: block;
        width: 100%;
        min-width: 0 !important;
        max-width: none !important;
        height: 100%;
        min-height: 0 !important;
        max-height: none !important;
        image-orientation: 0deg !important;
    }

.cropper-canvas, .cropper-crop-box, .cropper-drag-box, .cropper-modal {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.cropper-drag-box {
    background-color: #fff;
    filter: alpha(opacity=0);
    opacity: 0;
}

.cropper-modal {
    background-color: #000;
    filter: alpha(opacity=50);
    opacity: .5;
}

.cropper-view-box {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: #69f solid 1px;
    outline-color: rgba(102, 153, 255, .75);
}

.cropper-dashed {
    position: absolute;
    display: block;
    filter: alpha(opacity=50);
    border: 0 dashed #fff;
    opacity: .5;
}

    .cropper-dashed.dashed-h {
        top: 33.33333333%;
        left: 0;
        width: 100%;
        height: 33.33333333%;
        border-top-width: 1px;
        border-bottom-width: 1px;
    }

    .cropper-dashed.dashed-v {
        top: 0;
        left: 33.33333333%;
        width: 33.33333333%;
        height: 100%;
        border-right-width: 1px;
        border-left-width: 1px;
    }

.cropper-face, .cropper-line, .cropper-point {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    filter: alpha(opacity=10);
    opacity: .1;
}

.cropper-face {
    top: 0;
    left: 0;
    cursor: move;
    background-color: #fff;
}

.cropper-line {
    background-color: #69f;
}

    .cropper-line.line-e {
        top: 0;
        right: -3px;
        width: 5px;
        cursor: e-resize;
    }

    .cropper-line.line-n {
        top: -3px;
        left: 0;
        height: 5px;
        cursor: n-resize;
    }

    .cropper-line.line-w {
        top: 0;
        left: -3px;
        width: 5px;
        cursor: w-resize;
    }

    .cropper-line.line-s {
        bottom: -3px;
        left: 0;
        height: 5px;
        cursor: s-resize;
    }

.cropper-point {
    width: 5px;
    height: 5px;
    background-color: #69f;
    filter: alpha(opacity=75);
    opacity: .75;
}

    .cropper-point.point-e {
        top: 50%;
        right: -3px;
        margin-top: -3px;
        cursor: e-resize;
    }

    .cropper-point.point-n {
        top: -3px;
        left: 50%;
        margin-left: -3px;
        cursor: n-resize;
    }

    .cropper-point.point-w {
        top: 50%;
        left: -3px;
        margin-top: -3px;
        cursor: w-resize;
    }

    .cropper-point.point-s {
        bottom: -3px;
        left: 50%;
        margin-left: -3px;
        cursor: s-resize;
    }

    .cropper-point.point-ne {
        top: -3px;
        right: -3px;
        cursor: ne-resize;
    }

    .cropper-point.point-nw {
        top: -3px;
        left: -3px;
        cursor: nw-resize;
    }

    .cropper-point.point-sw {
        bottom: -3px;
        left: -3px;
        cursor: sw-resize;
    }

    .cropper-point.point-se {
        right: -3px;
        bottom: -3px;
        width: 20px;
        height: 20px;
        cursor: se-resize;
        filter: alpha(opacity=100);
        opacity: 1;
    }

        .cropper-point.point-se:before {
            position: absolute;
            right: -50%;
            bottom: -50%;
            display: block;
            width: 200%;
            height: 200%;
            content: " ";
            background-color: #69f;
            filter: alpha(opacity=0);
            opacity: 0;
        }

@media (min-width:768px) {
    .cropper-point.point-se {
        width: 15px;
        height: 15px;
    }
}

@media (min-width:992px) {
    .cropper-point.point-se {
        width: 10px;
        height: 10px;
    }
}

@media (min-width:1200px) {
    .cropper-point.point-se {
        width: 5px;
        height: 5px;
        filter: alpha(opacity=75);
        opacity: .75;
    }
}

.cropper-bg {
    background-image: url(data:image/png;base64, iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC);
}

.cropper-invisible {
    filter: alpha(opacity=0);
    opacity: 0;
}

.cropper-hide {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    filter: alpha(opacity=0);
    opacity: 0;
}

.cropper-hidden {
    display: none !important;
}

.cropper-move {
    cursor: move;
}

.cropper-crop {
    cursor: crosshair;
}

.cropper-disabled .cropper-canvas, .cropper-disabled .cropper-face, .cropper-disabled .cropper-line, .cropper-disabled .cropper-point {
    cursor: not-allowed;
}

.img-container, .img-preview {
    background-color: #f7f7f7;
    overflow: hidden;
    width: 100%;
    text-align: center;
}

.img-container {
    min-height: 200px;
    max-height: 466px;
    margin-bottom: 20px;
}

@media (min-width:768px) {
    .img-container {
        min-height: 466px;
    }
}

.img-container > img {
    max-width: 100%
}

.img-preview {
    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
}

    .img-preview > img {
        max-width: 100%
    }

.preview-lg {
    width: 263px;
    height: 148px;
}

.preview-md {
    width: 139px;
    height: 78px;
}

.preview-sm {
    width: 69px;
    height: 39px;
}

.preview-xs {
    width: 35px;
    height: 20px;
    margin-right: 0;
}

.docs-data > .input-group {
    margin-bottom: 10px;
}

    .docs-data > .input-group > label {
        min-width: 80px;
    }

    .docs-data > .input-group > span {
        min-width: 50px;
    }

.docs-buttons > .btn, .docs-buttons > .btn-group, .docs-buttons > .form-control {
    margin-right: 5px;
    margin-bottom: 10px;
}

.docs-toggles > .btn, .docs-toggles > .btn-group, .docs-toggles > .dropdown {
    margin-bottom: 10px;
}

.docs-tooltip {
    display: block;
    margin: -6px -12px;
    padding: 6px 12px;
}

    .docs-tooltip > .icon {
        margin: 0 -3px;
        vertical-align: top;
    }

.tooltip-inner {
    white-space: normal;
}

.btn-upload .tooltip-inner {
    white-space: nowrap;
}

@media (max-width:400px) {
    .btn-group-crop {
        margin-right: -15px !important;
    }

        .btn-group-crop > .btn {
            padding-left: 5px;
            padding-right: 5px;
        }

        .btn-group-crop .docs-tooltip {
            margin-left: -5px;
            margin-right: -5px;
            padding-left: 5px;
            padding-right: 5px;
        }
}

.docs-options .dropdown-menu {
    width: 100%
}

    .docs-options .dropdown-menu > li {
        padding: 3px 20px;
    }

        .docs-options .dropdown-menu > li:hover {
            background-color: #f7f7f7;
        }

        .docs-options .dropdown-menu > li > label {
            display: block;
        }

.docs-cropped .modal-body {
    text-align: center;
}

    .docs-cropped .modal-body > canvas, .docs-cropped .modal-body > img {
        max-width: 100%
    }

#nprogress {
    pointer-events: none;
}

    #nprogress .bar {
        background-color: #f6bb42;
        position: fixed;
        z-index: 1031;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
    }

    #nprogress .peg {
        opacity: 1;
        display: block;
        position: absolute;
        right: 0;
        width: 100px;
        height: 100%;
        box-shadow: none !important;
        -webkit-transform: rotate(3deg) translate(0, -4px);
        -ms-transform: rotate(3deg) translate(0, -4px);
        transform: rotate(3deg) translate(0, -4px);
    }

    #nprogress .spinner {
        display: block;
        position: fixed;
        z-index: 1031;
        top: 20px;
        right: 48%
    }

    #nprogress .spinner-icon {
        opacity: 1;
        width: 18px;
        height: 18px;
        box-sizing: border-box;
        border: 2px solid transparent;
        border-radius: 50%;
        border-top-color: #707ac0;
        border-left-color: #707ac0;
        -webkit-animation: nprogress-spinner 400ms linear infinite;
        animation: nprogress-spinner 400ms linear infinite;
    }

.nprogress-custom-parent {
    overflow: hidden;
    position: relative;
}

    .nprogress-custom-parent #nprogress .bar, .nprogress-custom-parent #nprogress .spinner {
        position: absolute;
    }

@-webkit-keyframes nprogress-spinner {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes nprogress-spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#nprogress.npr-header .bar {
    top: 60px;
    height: 2px;
}

#nprogress.npr-bottom .bar {
    top: auto;
    bottom: 0;
    height: 4px;
}

#nprogress.npr-primary .bar {
    background-color: #707ac0;
}

#nprogress.npr-success .bar {
    background-color: #70ca63;
}

#nprogress.npr-info .bar {
    background-color: #3bafda;
}

#nprogress.npr-warning .bar {
    background-color: #f6bb42;
}

#nprogress.npr-danger .bar {
    background-color: #e9573f;
}

#nprogress.npr-alert .bar {
    background-color: #707ac0;
}

#nprogress.npr-system .bar {
    background-color: #707ac0;
}

#nprogress.npr-dark .bar {
    background-color: #3b3f4f;
}

#nprogress.npr-light .bar {
    background-color: #fafafa;
}

#nprogress.npr-muted .bar {
    background-color: #999;
}

.scroller {
    height: 100%;
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: hidden;
    position: relative;
}

    .scroller, .scroller * {
        -webkit-user-select: none !important;
        -moz-user-select: none !important;
        -ms-user-select: none !important;
        user-select: none !important;
    }

.scroller, .scroller-bar, .scroller-content, .scroller-handle, .scroller-track {
    box-sizing: border-box;
}

.scroller-content {
    position: relative;
    z-index: 1;
    height: 100%;
    overflow: auto;
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

    .scroller-content::-webkit-resizer, .scroller-content::-webkit-scrollbar, .scroller-content::-webkit-scrollbar-button, .scroller-content::-webkit-scrollbar-corner, .scroller-content::-webkit-scrollbar-thumb, .scroller-content::-webkit-scrollbar-track, .scroller-content::-webkit-scrollbar-track-piece {
        background: 0 0;
        opacity: 0;
    }

.scroller-bar {
    width: 6px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    display: none;
    opacity: 0;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
}

.scroller-active .scroller-bar {
    opacity: 1;
}

.scroller-track {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.scroller-handle {
    z-index: 2;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 20px;
    background: #ccc;
    background: rgba(0, 0, 0, .2);
    -webkit-transition: height .3s ease;
    transition: height .3s ease;
}

.scroller-horizontal .scroller-content {
    overflow: auto;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 16px;
}

.scroller-horizontal .scroller-bar {
    width: 100%;
    height: 5px;
    top: auto;
    bottom: 0;
    border-width: 1px 0 0;
}

.scroller-horizontal .scroller-handle {
    width: 20px;
    height: 5px;
    top: auto;
    right: auto;
    bottom: 3px;
}

.scroller-active .scroller-content, .scroller-setup .scroller-content {
    padding: 0;
}

.scroller-active .scroller-bar, .scroller-setup .scroller-bar {
    display: block;
}

.panel-scroller {
    padding: 0;
    height: 600px;
    max-height: 600px;
    overflow: hidden;
}

    .panel-scroller .scroller-content {
        padding: 12px;
    }

    .panel-scroller .scroller-bar {
        width: 14px;
        background: #f7f7f7;
        border-left: 1px solid #e7e7e7;
    }

    .panel-scroller .scroller-handle {
        right: 4px;
        width: 5px;
        height: 20px;
        border-radius: 4px;
    }

.scroller-xs {
    height: 125px;
    max-height: 125px;
}

.scroller-sm {
    height: 200px;
    max-height: 200px;
}

.scroller-md {
    height: 300px;
    max-height: 300px;
}

.scroller-lg {
    height: 400px;
    max-height: 400px;
}

.scroller-thick .scroller-bar {
    width: 12px;
}

.scroller-thick .scroller-handle {
    width: 12px;
    right: 0;
    border-radius: 0;
}

.panel-scroller.scroller-overlay .scroller-bar {
    background: 0 0;
    border: 0;
}

.panel-scroller.scroller-overlay .scroller-handle {
    opacity: 0;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
}

.panel-scroller.scroller-overlay:hover .scroller-handle {
    opacity: 1;
}

.panel-scroller.scroller-overlay .scroller-content {
    padding: 0;
    margin-right: -17px;
}

.scroller.scroller-pn .scroller-content {
    padding: 0 !important;
}

.scroller-primary .scroller-handle {
    background: #707ac0;
}

.scroller-success .scroller-handle {
    background: #70ca63;
}

.scroller-info .scroller-handle {
    background: #3bafda;
}

.scroller-warning .scroller-handle {
    background: #f6bb42;
}

.scroller-danger .scroller-handle {
    background: #e9573f;
}

.scroller-alert .scroller-handle, .scroller-system .scroller-handle {
    background: #707ac0;
}

.scroller-dark .scroller-handle {
    background: #3b3f4f;
}

.scroller-light .scroller-handle, .scroller-white .scroller-handle {
    background: #fafafa;
}

.scroller-light .scroller-bar, .scroller-white .scroller-bar {
    border-left: 0;
    background: 0 0;
}

.select2-primary + .select2-container .select2-selection--single, .select2-primary + .select2-container .select2-selection--single .select2-selection__rendered {
    color: #FFF;
    border-color: #707ac0;
    background-color: #707ac0;
}

.select2-primary + .select2-container .select2-selection__arrow b {
    border-top-color: #FFF;
}

.select2-primary + .select2-container.select2-container--open .select2-selection__arrow b {
    border-bottom-color: #FFF;
}

.select2-success + .select2-container .select2-selection--single, .select2-success + .select2-container .select2-selection--single .select2-selection__rendered {
    color: #FFF;
    border-color: #70ca63;
    background-color: #70ca63;
}

.select2-success + .select2-container .select2-selection__arrow b {
    border-top-color: #FFF;
}

.select2-success + .select2-container.select2-container--open .select2-selection__arrow b {
    border-bottom-color: #FFF;
}

.select2-info + .select2-container .select2-selection--single, .select2-info + .select2-container .select2-selection--single .select2-selection__rendered {
    color: #FFF;
    border-color: #3bafda;
    background-color: #3bafda;
}

.select2-info + .select2-container .select2-selection__arrow b {
    border-top-color: #FFF;
}

.select2-info + .select2-container.select2-container--open .select2-selection__arrow b {
    border-bottom-color: #FFF;
}

.select2-warning + .select2-container .select2-selection--single, .select2-warning + .select2-container .select2-selection--single .select2-selection__rendered {
    color: #FFF;
    border-color: #f6bb42;
    background-color: #f6bb42;
}

.select2-warning + .select2-container .select2-selection__arrow b {
    border-top-color: #FFF;
}

.select2-warning + .select2-container.select2-container--open .select2-selection__arrow b {
    border-bottom-color: #FFF;
}

.select2-danger + .select2-container .select2-selection--single, .select2-danger + .select2-container .select2-selection--single .select2-selection__rendered {
    color: #FFF;
    border-color: #e9573f;
    background-color: #e9573f;
}

.select2-danger + .select2-container .select2-selection__arrow b {
    border-top-color: #FFF;
}

.select2-danger + .select2-container.select2-container--open .select2-selection__arrow b {
    border-bottom-color: #FFF;
}

.select2-alert + .select2-container .select2-selection--single, .select2-alert + .select2-container .select2-selection--single .select2-selection__rendered {
    color: #FFF;
    border-color: #707ac0;
    background-color: #707ac0;
}

.select2-alert + .select2-container .select2-selection__arrow b {
    border-top-color: #FFF;
}

.select2-alert + .select2-container.select2-container--open .select2-selection__arrow b {
    border-bottom-color: #FFF;
}

.select2-system + .select2-container .select2-selection--single, .select2-system + .select2-container .select2-selection--single .select2-selection__rendered {
    color: #FFF;
    border-color: #707ac0;
    background-color: #707ac0;
}

.select2-system + .select2-container .select2-selection__arrow b {
    border-top-color: #FFF;
}

.select2-system + .select2-container.select2-container--open .select2-selection__arrow b {
    border-bottom-color: #FFF;
}

.select2-dark + .select2-container .select2-selection--single, .select2-dark + .select2-container .select2-selection--single .select2-selection__rendered {
    color: #FFF;
    border-color: #3b3f4f;
    background-color: #3b3f4f;
}

.select2-dark + .select2-container .select2-selection__arrow b {
    border-top-color: #FFF;
}

.select2-dark + .select2-container.select2-container--open .select2-selection__arrow b {
    border-bottom-color: #FFF;
}

.dockmodal, .dockmodal *, .dockmodal :after, .dockmodal :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.modal-placeholder {
    display: none;
    visibility: hidden;
    height: 0;
    width: 0;
}

.dockmodal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1050;
    background: #000;
    opacity: .7;
    display: none;
}

.dockmodal {
    position: fixed;
    right: 20px;
    bottom: 0;
    top: auto;
    z-index: 1000;
    height: 0;
    background: transparent;
    border-bottom: 0;
    box-shadow: 0 1px 0px #000;
    overflow: hidden;
    border: 0;
}

.dockmodal-header {
    height: 36px;
    padding: 5px 5px 5px 10px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #30363e;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
}

.dockmodal-body {
    background: #FFF;
    position: absolute;
    top: 36px;
    bottom: 40px;
    left: 0;
    right: 0;
    overflow: auto;
    padding: 10px 15px;
}

.dockmodal-footer {
    padding: 5px 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #CCC;
    overflow: hidden;
    text-align: right;
}

.dockmodal-footer-buttonset {
    height: 30px;
    line-height: 30px;
}

.dockmodal.no-footer .dockmodal-body {
    bottom: 0;
}

.dockmodal-header .title-text {
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    vertical-align: top;
    white-space: nowrap;
    max-width: 100%;
    margin-right: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dockmodal-header .header-action {
    padding: 5px;
    float: right;
    margin-right: 1px;
    line-height: 16px;
}

    .dockmodal-header .header-action:hover {
        background: #555;
    }

    .dockmodal-header .header-action i {
        background: url(../img/plugins/admindock-sprite.png) top left no-repeat;
        vertical-align: top;
        display: inline-block;
        *display: inline;
        zoom: 1;
        width: 16px;
        height: 16px;
    }

    .dockmodal-header .header-action .icon-dockmodal-close {
        background-position: 0 0;
    }

    .dockmodal-header .header-action .icon-dockmodal-popin {
        background-position: 0 -40px;
    }

    .dockmodal-header .header-action .icon-dockmodal-popout {
        background-position: 0 -60px;
    }

.dockmodal.popped-out .header-action .icon-dockmodal-popout {
    background-position: 0 -40px;
}

.dockmodal-header .header-action .icon-dockmodal-minimize {
    background-position: 0 -75px;
}

.dockmodal-header .header-action .icon-dockmodal-restore {
    background-position: 0 -80px;
}

.dockmodal.minimized .header-action .icon-dockmodal-minimize {
    background-position: 0 -25px;
}

.dockmodal.popped-out {
    width: auto;
    height: auto;
    border: 0;
    z-index: 1501;
}

.dockmodal.minimized {
    height: 36px;
    top: auto;
    left: auto;
    right: 20px;
    bottom: 0;
    z-index: 1000;
}

    .dockmodal.minimized .dockmodal-header {
        /*position: relative;*/
    }

    .dockmodal.minimized .dockmodal-body {
        /*display: none;*/
    }

    .dockmodal.minimized .dockmodal-footer {
        /*display: none;*/
    }

.dockmodal .dockmodal-footer-buttonset > a {
    min-width: 60px;
}

    .dockmodal .dockmodal-footer-buttonset > a + a {
        margin-left: 5px;
    }

.md-perspective, .md-perspective body {
    height: 100%;
    overflow: hidden;
}

    .md-perspective body {
        background: #222;
        -webkit-perspective: 600px;
        perspective: 600px;
    }

.md-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 50%;
    max-width: 630px;
    min-width: 320px;
    height: auto;
    z-index: 2000;
    visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.md-show {
    visibility: visible;
}

.md-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    visibility: hidden;
    top: 0;
    left: 0;
    z-index: 1000;
    opacity: 0;
    background: rgba(0, 0, 0, .8);
    -webkit-transition: all .3s;
    transition: all .3s;
}

.md-show ~ .md-overlay {
    opacity: 1;
    visibility: visible;
}

.md-content {
    color: #666;
    background: #FFF;
    position: relative;
    border-radius: 3px;
    margin: 0 auto;
}

    .md-content h3 {
        margin: 0;
        padding: 15px;
        text-align: center;
        font-size: 2.4em;
        font-weight: 300;
        background: #eee;
        border-radius: 3px 3px 0 0;
        border-bottom: 1px solid #ddd;
    }

    .md-content > div {
        padding: 15px 40px 30px;
        margin: 0;
        font-weight: 300;
        font-size: 1.15em;
    }

        .md-content > div p {
            margin: 0;
            padding: 10px 0;
        }

        .md-content > div ul {
            margin: 0;
            padding: 0 0 30px 20px;
        }

            .md-content > div ul li {
                padding: 5px 0;
            }

.admin-form .mfp-close, .admin-form .mfp-close-btn-in {
    font-size: 26px;
    color: #999;
    text-shadow: none;
    font-weight: 400;
    padding-top: 5px;
}

.mfp-with-fade .mfp-content, .mfp-with-fade.mfp-bg {
    opacity: 0;
    -webkit-transition: opacity .5s ease-out;
    transition: opacity .5s ease-out;
}

.mfp-with-fade.mfp-ready .mfp-content {
    opacity: 1;
}

.mfp-with-fade.mfp-ready.mfp-bg {
    opacity: .8;
}

.mfp-with-fade.mfp-removing .mfp-with-anim, .mfp-with-fade.mfp-removing.mfp-bg {
    opacity: 0;
}

.mfp-zoomIn .mfp-with-anim {
    opacity: 0;
    transition: all .2s ease-in-out;
    transform: scale(.8);
}

.mfp-zoomIn.mfp-bg {
    opacity: 0;
    transition: all .3s ease-out;
}

.mfp-zoomIn.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: scale(1);
}

.mfp-zoomIn.mfp-ready.mfp-bg {
    opacity: .8;
}

.mfp-zoomIn.mfp-removing .mfp-with-anim {
    transform: scale(.8);
    opacity: 0;
}

.mfp-zoomIn.mfp-removing.mfp-bg {
    opacity: 0;
}

.mfp-zoomOut .mfp-with-anim {
    opacity: 0;
    transition: all .3s ease-in-out;
    transform: scale(1.3);
}

.mfp-zoomOut.mfp-bg {
    opacity: 0;
    transition: all .3s ease-out;
}

.mfp-zoomOut.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: scale(1);
}

.mfp-zoomOut.mfp-ready.mfp-bg {
    opacity: .8;
}

.mfp-zoomOut.mfp-removing .mfp-with-anim {
    transform: scale(1.3);
    opacity: 0;
}

.mfp-zoomOut.mfp-removing.mfp-bg {
    opacity: 0;
}

.mfp-slideLeft .mfp-with-anim {
    opacity: 0;
    transition: all .3s;
    transform: translateX(-50px);
}

.mfp-slideLeft.mfp-bg {
    opacity: 0;
    transition: all .3s;
}

.mfp-slideLeft.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: translateX(0);
}

.mfp-slideLeft.mfp-ready.mfp-bg {
    opacity: .8;
}

.mfp-slideLeft.mfp-removing .mfp-with-anim {
    transform: translateX(50px);
    opacity: 0;
}

.mfp-slideLeft.mfp-removing.mfp-bg {
    opacity: 0;
}

.mfp-slideRight .mfp-with-anim {
    opacity: 0;
    transition: all .3s;
    transform: translateX(50px);
}

.mfp-slideRight.mfp-bg {
    opacity: 0;
    transition: all .3s;
}

.mfp-slideRight.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: translateX(0);
}

.mfp-slideRight.mfp-ready.mfp-bg {
    opacity: .8;
}

.mfp-slideRight.mfp-removing .mfp-with-anim {
    transform: translateX(-50px);
    opacity: 0;
}

.mfp-slideRight.mfp-removing.mfp-bg {
    opacity: 0;
}

.mfp-slideDown .mfp-content {
    vertical-align: middle;
}

.mfp-slideDown .mfp-with-anim {
    opacity: 0;
    transition: all .2s;
    transform: translateY(-100px);
}

.mfp-slideDown.mfp-bg {
    opacity: 0;
    transition: all .2s;
}

.mfp-slideDown.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: translateY(0);
}

.mfp-slideDown.mfp-ready.mfp-bg {
    opacity: .8;
}

.mfp-slideDown.mfp-removing .mfp-with-anim {
    transform: translateY(-50px);
    opacity: 0;
}

.mfp-slideDown.mfp-removing.mfp-bg {
    opacity: 0;
}

.mfp-slideUp .mfp-content {
    vertical-align: middle;
}

.mfp-slideUp .mfp-with-anim {
    opacity: 0;
    transition: all .2s;
    transform: translateY(100px);
}

.mfp-slideUp.mfp-bg {
    opacity: 0;
    transition: all .2s;
}

.mfp-slideUp.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: translateY(0);
}

.mfp-slideUp.mfp-ready.mfp-bg {
    opacity: .8;
}

.mfp-slideUp.mfp-removing .mfp-with-anim {
    transform: translateY(50px);
    opacity: 0;
}

.mfp-slideUp.mfp-removing.mfp-bg {
    opacity: 0;
}

.mfp-flipInX .mfp-content {
    perspective: 2000px;
}

.mfp-flipInX .mfp-with-anim {
    opacity: 0;
    transition: all .3s ease-in-out;
    transform-style: preserve-3d;
    transform: rotateX(-60deg);
}

.mfp-flipInX.mfp-bg {
    opacity: 0;
    transition: all .5s;
}

.mfp-flipInX.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: rotateX(0deg);
}

.mfp-flipInX.mfp-ready.mfp-bg {
    opacity: .8;
}

.mfp-flipInX.mfp-removing .mfp-with-anim {
    transform: rotateX(60deg);
    opacity: 0;
}

.mfp-flipInX.mfp-removing.mfp-bg {
    opacity: 0;
}

.mfp-flipInY .mfp-content {
    perspective: 2000px;
}

.mfp-flipInY .mfp-with-anim {
    opacity: 0;
    transition: all .3s ease-in-out;
    transform-style: preserve-3d;
    transform: rotateY(-60deg);
}

.mfp-flipInY.mfp-bg {
    opacity: 0;
    transition: all .5s;
}

.mfp-flipInY.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: rotateY(0deg);
}

.mfp-flipInY.mfp-ready.mfp-bg {
    opacity: .8;
}

.mfp-flipInY.mfp-removing .mfp-with-anim {
    transform: rotateY(60deg);
    opacity: 0;
}

.mfp-flipInY.mfp-removing.mfp-bg {
    opacity: 0;
}

.mfp-rotateDown .mfp-content {
    -webkit-perspective: 1300px;
    perspective: 1300px;
}

.mfp-rotateDown .mfp-with-anim {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: translateY(-100%) rotateX(-90deg);
    transform: translateY(-100%) rotateX(-90deg);
    -webkit-transform-origin: 0 -100%;
    transform-origin: 0 -100%;
    opacity: 0;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.mfp-rotateDown.mfp-bg {
    opacity: 0;
    transition: all .5s;
}

.mfp-rotateDown.mfp-ready .mfp-with-anim {
    -webkit-transform: translateY(0) rotateX(0deg);
    transform: translateY(0) rotateX(0deg);
    opacity: 1;
}

.mfp-rotateDown.mfp-ready.mfp-bg {
    opacity: .8;
}

.mfp-rotateDown.mfp-removing .mfp-with-anim {
    -webkit-transform: translateY(-100%) rotateX(-90deg);
    transform: translateY(-100%) rotateX(-90deg);
    -webkit-transform-origin: 0 -100%;
    transform-origin: 0 -100%;
    opacity: 0;
}

.mfp-rotateDown.mfp-removing.mfp-bg {
    opacity: 0;
}

.mfp-rotateUp .mfp-content {
    -webkit-perspective: 1300px;
    perspective: 1300px;
}

.mfp-rotateUp .mfp-with-anim {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: translateY(100%) rotateX(90deg);
    transform: translateY(100%) rotateX(90deg);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
    opacity: 0;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.mfp-rotateUp.mfp-bg {
    opacity: 0;
    transition: all .5s;
}

.mfp-rotateUp.mfp-ready .mfp-with-anim {
    -webkit-transform: translateY(0) rotateX(0deg);
    transform: translateY(0) rotateX(0deg);
    opacity: 1;
}

.mfp-rotateUp.mfp-ready.mfp-bg {
    opacity: .8;
}

.mfp-rotateUp.mfp-removing .mfp-with-anim {
    -webkit-transform: translateY(100%) rotateX(90deg);
    transform: translateY(100%) rotateX(90deg);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
    opacity: 0;
}

.mfp-rotateUp.mfp-removing.mfp-bg {
    opacity: 0;
}

.mfp-rotateRight .mfp-content {
    -webkit-perspective: 1300px;
    perspective: 1300px;
}

.mfp-rotateRight .mfp-with-anim {
    opacity: 0;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: translateX(100%) rotateY(90deg);
    transform: translateX(100%) rotateY(90deg);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.mfp-rotateRight.mfp-bg {
    opacity: 0;
    transition: all .5s;
}

.mfp-rotateRight.mfp-ready .mfp-with-anim {
    -webkit-transform: translateX(0) rotateY(0deg);
    transform: translateX(0) rotateY(0deg);
    opacity: 1;
}

.mfp-rotateRight.mfp-ready.mfp-bg {
    opacity: .8;
}

.mfp-rotateRight.mfp-removing .mfp-with-anim {
    -webkit-transform: translateX(-100%) rotateY(-90deg);
    transform: translateX(-100%) rotateY(-90deg);
    -webkit-transform-origin: -100% 0;
    transform-origin: -100% 0;
    opacity: 0;
}

.mfp-rotateRight.mfp-removing.mfp-bg {
    opacity: 0;
}

.mfp-rotateLeft .mfp-content {
    -webkit-perspective: 1300px;
    perspective: 1300px;
}

.mfp-rotateLeft .mfp-with-anim {
    opacity: 0;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: translateX(-100%) rotateY(-90deg);
    transform: translateX(-100%) rotateY(-90deg);
    -webkit-transform-origin: -100% 0;
    transform-origin: -100% 0;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.mfp-rotateLeft.mfp-bg {
    opacity: 0;
    transition: all .5s;
}

.mfp-rotateLeft.mfp-ready .mfp-with-anim {
    -webkit-transform: translateX(0) rotateY(0deg);
    transform: translateX(0) rotateY(0deg);
    opacity: 1;
}

.mfp-rotateLeft.mfp-ready.mfp-bg {
    opacity: .8;
}

.mfp-rotateLeft.mfp-removing .mfp-with-anim {
    -webkit-transform: translateX(100%) rotateY(90deg);
    transform: translateX(100%) rotateY(90deg);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
    opacity: 0;
}

.mfp-rotateLeft.mfp-removing.mfp-bg {
    opacity: 0;
}

.mfp-fullscale .mfp-with-anim {
    -webkit-transform: scale(.8);
    transform: scale(.8);
    opacity: 0;
    -webkit-transition: all .6s;
    transition: all .6s;
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
}

.mfp-fullscale.mfp-bg {
    background: #000;
    opacity: 0;
    transition: all .35s;
}

.mfp-fullscale.mfp-ready .mfp-with-anim {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.mfp-fullscale.mfp-ready.mfp-bg {
    background: #000;
    opacity: 1;
}

.mfp-fullscale.mfp-removing .mfp-with-anim {
    opacity: 0;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.mfp-fullscale.mfp-removing.mfp-bg {
    background: 0 0;
    opacity: 0;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.mfp-sign .mfp-content {
    perspective: 1300px;
}

.mfp-sign .mfp-with-anim {
    transform-style: preserve-3d;
    transform: rotateX(-60deg);
    transform-origin: 50% 0;
    opacity: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.mfp-sign.mfp-bg {
    opacity: 0;
    transition: all .5s;
}

.mfp-sign.mfp-ready .mfp-with-anim {
    transform: rotateX(0deg);
    opacity: 1;
}

.mfp-sign.mfp-ready.mfp-bg {
    opacity: .8;
}

.mfp-sign.mfp-removing .mfp-with-anim {
    transform: rotateX(-60deg);
    opacity: 0;
}

.mfp-sign.mfp-removing.mfp-bg {
    opacity: 0;
}

.mfp-newspaper .mfp-with-anim {
    opacity: 0;
    -webkit-transition: all .2s ease-in-out;
    transition: all .5s;
    transform: scale(0) rotate(500deg);
}

.mfp-newspaper.mfp-bg {
    opacity: 0;
    transition: all .5s;
}

.mfp-newspaper.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.mfp-newspaper.mfp-ready.mfp-bg {
    opacity: .8;
}

.mfp-newspaper.mfp-removing .mfp-with-anim {
    transform: scale(0) rotate(500deg);
    opacity: 0;
}

.admin-panels.fade-onload, .mfp-newspaper.mfp-removing.mfp-bg {
    opacity: 0;
}

.preserve-grid {
    padding: 10px;
    background: 0 0 !important;
    border: 0 !important;
    margin: 0 !important;
    outline: 0 !important;
}

.panel + .preserve-grid {
    padding: 0;
}

body.ui-drag-active .preserve-grid {
    visibility: hidden;
    padding: 0;
}

.ui-sortable-handle {
    cursor: pointer;
}

.panel-placeholder {
    border-radius: 3px;
    margin-bottom: 20px;
    padding: 0;
    background-color: #eee;
    border: 2px dashed #ccc;
}

.ui-sortable-helper.panel {
    box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, .1);
}

.panel-sortable .panel-heading {
    cursor: move;
}

.sortable-grid {
    min-height: 200px;
}

    .sortable-grid.col-lg-12, .sortable-grid.col-md-12, .sortable-grid.col-sm-12, .sortable-grid.col-xs-12 {
        min-height: 0;
    }

.panel-colorbox, .panel-editbox {
    position: relative;
    display: none;
    text-align: center;
    background: #f1f1f1;
    color: #AAA;
    border-left: 2px dashed #d9d9d9;
    border-right: 2px dashed #d9d9d9;
    border-bottom: 1px solid #ddd;
}

.panel-editbox {
    padding: 12px 16px;
}

    .panel-editbox input {
        height: 40px;
        background-color: #fff;
        border-radius: 2px;
        text-align: center;
        color: #AAA;
        font-size: 16px;
    }

        .panel-editbox input:focus {
            border-color: #DDD;
            color: #666;
        }

.panel-colorbox {
    padding: 12px 9px;
}

    .panel-colorbox > span {
        cursor: pointer;
        display: inline-block;
        width: 23px;
        height: 23px;
        margin: 4px 5px 0;
        border: 2px solid rgba(0, 0, 0, .2);
    }

        .panel-colorbox > span:hover {
            border-color: rgba(0, 0, 0, .4);
        }

.panel-heading + div + .panel-body, .panel-heading + div + .panel-menu, .panel-heading + div + div + .panel-body, .panel-heading + div + div + .panel-menu {
    border-top: 0;
}

body.panel-fullscreen-active {
    overflow: hidden;
    position: fixed;
}

    body.panel-fullscreen-active #sidebar_left, body.panel-fullscreen-active #sidebar_right, body.panel-fullscreen-active #topbar, body.panel-fullscreen-active .navbar {
        z-index: -1;
        display: none !important;
    }

    body.panel-fullscreen-active #content_wrapper {
        position: relative;
        z-index: 9999;
    }

.panel-fullscreen {
    display: block !important;
    z-index: 9999 !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
}

    .panel-fullscreen .panel-controls > .panel-control-collapse, .panel-fullscreen .panel-controls > .panel-control-remove {
        display: none !important;
    }

.panel-controls {
    float: right;
    display: block;
    cursor: pointer;
}

    .panel-controls > a {
        padding-top: 1px;
        display: inline-block;
        opacity: .7;
        width: 30px;
        font-size: 14px;
        font-weight: 400;
        text-align: center;
    }

        .panel-controls > a:hover {
            text-decoration: none;
            opacity: 1;
        }

.panel-alert .panel-controls > a, .panel-danger .panel-controls > a, .panel-dark .panel-controls > a, .panel-info .panel-controls > a, .panel-primary .panel-controls > a, .panel-success .panel-controls > a, .panel-system .panel-controls > a, .panel-warning .panel-controls > a {
    color: #FFF;
}

.panel-controls > a:after {
    font-family: FontAwesome;
}

.panel-control-title:after {
    content: "\f040"
}

.panel-editbox-open .panel-control-title:after {
    content: "\f0c7"
}

.panel-control-color:after {
    content: "\f043"
}

.panel-colorbox-open .panel-control-color:after {
    content: "\f0c7"
}

.panel-control-collapse:after {
    content: "\f068"
}

.panel-collapsed .panel-control-collapse:after {
    content: "\f067"
}

.panel-control-fullscreen:after {
    content: "\f066"
}

.panel-control-remove:after {
    content: "\f00d"
}

.panel-control-callback:after {
    content: "\f121"
}

.panel-control-expose:after {
    content: "\f06e"
}

.panel-exposed .panel-control-expose:after {
    content: "\f070"
}

.panel-control-dockable:after {
    content: "\f187"
}

.panel-controls > a.panel-control-loader {
    opacity: 1;
    display: none;
}

.panel-loader-active .panel-controls > a.panel-control-loader {
    display: inline-block !important;
}

.panel-control-loader:after {
    content: "\f110";
    -webkit-animation: fa-spin 2s infinite linear;
    -moz-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}

.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

.panel.mobile-controls .panel-heading > .panel-controls {
    width: 28px;
    height: 28px;
    margin-top: 5px;
    position: relative;
    overflow: hidden;
    background: #F4F4F4;
    border-radius: 2px;
    border: 1px solid #EEE;
}

    .panel.mobile-controls .panel-heading > .panel-controls:after {
        position: absolute;
        content: "\f0c9";
        font-family: FontAwesome;
        top: 0;
        left: 7px;
        line-height: 28px;
        font-weight: 400;
        font-size: 14px;
        color: #AAA;
        -webkit-transition: color .3s ease;
        transition: color .3s ease;
    }

    .panel.mobile-controls .panel-heading > .panel-controls.panel-controls-open, .panel.mobile-controls .panel-heading > .panel-controls:hover {
        background: #F0F0F0;
        border-color: #E6E6E6;
    }

        .panel.mobile-controls .panel-heading > .panel-controls.panel-controls-open:after, .panel.mobile-controls .panel-heading > .panel-controls:hover:after {
            color: #777;
        }

.panel.mobile-controls .panel-controls a {
    color: #999 !important;
}

.panel.mobile-controls .panel-heading > .panel-controls > a {
    display: none;
}

.panel.mobile-controls .panel-heading .panel-controls a.panel-control-loader, .panel.mobile-controls .panel-heading .panel-controls a.panel-control-loader:after {
    display: none !important;
    opacity: 0 !important;
    width: 0;
    height: 0;
}

.panel.mobile-controls.panel-loader-active .panel-heading > .panel-controls:after {
    display: block;
    content: "\f110" !important;
    -webkit-animation: fa-spin 2s infinite linear;
    -moz-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}

.panel.mobile-controls .popover-content:after {
    display: none;
}

.panel.mobile-controls .panel-controls + .popover {
    border: 1px solid #ddd;
}

    .panel.mobile-controls .panel-controls + .popover > .arrow {
        border-left-color: #ccc;
    }

    .panel.mobile-controls .panel-controls + .popover > .popover-content {
        padding: 2px 5px;
    }

.panel.mobile-controls .popover-content {
    float: none;
    margin: 0;
    width: auto;
    height: auto;
    background: 0 0;
    border: 0;
}

    .panel.mobile-controls .popover-content .panel-controls > a {
        display: inline-block;
    }

.panel.mobile-controls.panel-fullscreen .panel-heading > .panel-controls {
    width: auto;
    height: auto;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    background: 0 0;
    border-radius: 0;
    border: 0;
}

    .panel.mobile-controls.panel-fullscreen .panel-heading > .panel-controls:after {
        display: none !important;
    }

.panel.mobile-controls.panel-fullscreen .panel-controls a {
    color: inherit !important;
}

.panel.mobile-controls.panel-fullscreen .panel-heading > .panel-controls > a {
    display: inline-block;
}

.panel.mobile-controls.panel-fullscreen .popover {
    display: none !important;
}

table.footable > tbody > tr > td.footable-first-column {
    border-left: 4px solid transparent;
}

table.footable > tbody > tr.footable-detail-show > td.footable-first-column, table.footable > tbody > tr:hover > td.footable-first-column {
    border-left-color: #AAA;
}

table.footable > tbody > tr.footable-detail-show.row-primary > td.footable-first-column, table.footable > tbody > tr.row-primary:hover > td.footable-first-column {
    border-left-color: #707ac0;
}

table.footable > tbody > tr.footable-detail-show.row-info > td.footable-first-column, table.footable > tbody > tr.row-info:hover > td.footable-first-column {
    border-left-color: #3bafda;
}

table.footable > tbody > tr.footable-detail-show.row-success > td.footable-first-column, table.footable > tbody > tr.row-success:hover > td.footable-first-column {
    border-left-color: #70ca63;
}

table.footable > tbody > tr.footable-detail-show.row-warning > td.footable-first-column, table.footable > tbody > tr.row-warning:hover > td.footable-first-column {
    border-left-color: #f6bb42;
}

table.footable > tbody > tr.footable-detail-show.row-danger > td.footable-first-column, table.footable > tbody > tr.row-danger:hover > td.footable-first-column {
    border-left-color: #e9573f;
}

table.footable > tbody > tr.footable-detail-show.row-moved > td.footable-first-column, table.footable > tbody > tr.footable-detail-show.row-system > td.footable-first-column, table.footable > tbody > tr.row-alert:hover > td.footable-first-column, table.footable > tbody > tr.row-system:hover > td.footable-first-column {
    border-left-color: #707ac0;
}

table.footable > tbody > tr.footable-detail-show.row-dark > td.footable-first-column, table.footable > tbody > tr.row-dark:hover > td.footable-first-column {
    border-left-color: #3b3f4f;
}

table.footable.fw-labels > tbody > tr > td:first-child {
    width: 90px;
    vertical-align: middle;
    padding: 11px 12px 11px 8px;
}

    table.footable.fw-labels > tbody > tr > td:first-child .label {
        width: 100%;
        display: inline-block;
        padding: 4px 4px 6px;
        font-size: 11px;
        text-align: center;
        font-weight: 600;
        line-height: 1;
    }

.footable-row-detail-name, .footable-row-detail-value {
    padding: 7px 9px 9px;
}

table.footable .footable-odd {
    background-color: #FFF;
}

table.footable .footable-even {
    background-color: #fafafa;
}

table.footable > tbody > tr.footable-row-detail {
    background-color: #FFF !important;
}

table.footable.breakpoint > tbody > tr > td > span.footable-toggle {
    float: right;
    font-size: 10px;
    padding-top: 2px;
}

.foo-header > tr > th {
    background-color: #f6f6f6;
    border: 1px solid #DDD !important;
}

.foo-footer > tr > td {
    background-color: #f6f6f6;
}

.footable-page-arrow a[data-page=first], .footable-page-arrow a[data-page=last] {
    display: none;
}

.footable > tfoot.footer-menu, .footable > tfoot.footer-menu > tr {
    background-color: #f7f7f7;
}

.footable > tfoot .pagination {
    margin-top: 5px;
}

.pagination {
    white-space: nowrap;
    text-align: right;
}

    .pagination .prev {
        margin-left: 0;
    }

    .pagination a, .pagination span {
        color: #444;
        float: left;
        line-height: 1.5;
        margin-left: -1px;
        padding: 5px 3px;
        position: relative;
        text-decoration: none;
        font-family: "Open Sans", Helvetica, Arial, sans-serif;
        font-size: 13px;
        font-weight: 400;
    }

        .pagination .current, .pagination a.active, .pagination a:hover {
            background-color: #707ac0;
            color: #fff;
            cursor: default;
            z-index: 2;
        }

            .pagination .current.next, .pagination .current.prev {
                color: #ddd;
                background-color: #fff;
                border-color: #ddd;
            }

a.active.next, a.active.prev, a.next:hover, a.prev:hover {
    background: 0 0;
    color: #999;
}

.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: .8;
    filter: alpha(opacity=80);
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: 0 !important;
    -webkit-backface-visibility: hidden;
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    .mfp-container:before {
        content: '';
        display: inline-block;
        height: 100%;
        vertical-align: middle;
    }

.mfp-align-top .mfp-container:before {
    display: none;
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
}

.mfp-ajax-holder .mfp-content, .mfp-inline-holder .mfp-content {
    width: 100%;
    cursor: auto;
}

.mfp-ajax-cur {
    cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
    cursor: auto;
}

.mfp-arrow, .mfp-close, .mfp-counter, .mfp-preloader {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.mfp-loading.mfp-figure {
    display: none;
}

.mfp-hide {
    display: none !important;
}

.mfp-preloader {
    color: #ccc;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
}

    .mfp-preloader a {
        color: #ccc;
    }

        .mfp-preloader a:hover {
            color: #fff;
        }

.mfp-s-error .mfp-content, .mfp-s-ready .mfp-preloader {
    display: none;
}

.mfp-s-error .mfp-content {
    display: none;
}

button.mfp-close,
button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: 0;
    padding: 0;
    z-index: 1046;
    -webkit-box-shadow: none;
    box-shadow: none;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: .65;
    filter: alpha(opacity=65);
    padding: 0 0 18px 10px;
    color: #fff;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace;
}

    .mfp-close:focus, .mfp-close:hover {
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .mfp-close:active {
        top: 1px;
    }

.mfp-close-btn-in .mfp-close {
    color: #333;
}

.mfp-iframe-holder .mfp-close, .mfp-image-holder .mfp-close {
    color: #fff;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #ccc;
    font-size: 12px;
    line-height: 18px;
}

.mfp-arrow {
    position: absolute;
    opacity: .65;
    filter: alpha(opacity=65);
    margin: -55px 0 0;
    top: 50%;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

    .mfp-arrow:active {
        margin-top: -54px;
    }

    .mfp-arrow:focus, .mfp-arrow:hover {
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .mfp-arrow .mfp-a, .mfp-arrow .mfp-b, .mfp-arrow:after, .mfp-arrow:before {
        content: '';
        display: block;
        width: 0;
        height: 0;
        position: absolute;
        left: 0;
        top: 0;
        margin-top: 35px;
        margin-left: 35px;
        border: inset transparent;
    }

    .mfp-arrow .mfp-a, .mfp-arrow:after {
        border-top-width: 13px;
        border-bottom-width: 13px;
        top: 8px;
    }

    .mfp-arrow .mfp-b, .mfp-arrow:before {
        border-top-width: 21px;
        border-bottom-width: 21px;
        opacity: .7;
    }

.mfp-arrow-left {
    left: 0;
}

    .mfp-arrow-left .mfp-a, .mfp-arrow-left:after {
        border-right: 17px solid #fff;
        margin-left: 31px;
    }

    .mfp-arrow-left .mfp-b, .mfp-arrow-left:before {
        margin-left: 25px;
        border-right: 27px solid #3f3f3f;
    }

.mfp-arrow-right {
    right: 0;
}

    .mfp-arrow-right .mfp-a, .mfp-arrow-right:after {
        border-left: 17px solid #fff;
        margin-left: 39px;
    }

    .mfp-arrow-right .mfp-b, .mfp-arrow-right:before {
        border-left: 27px solid #3f3f3f;
    }

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
}

    .mfp-iframe-holder .mfp-content {
        line-height: 0;
        width: 100%;
        max-width: 900px;
    }

    .mfp-iframe-holder .mfp-close {
        top: -40px;
    }

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%
}

    .mfp-iframe-scaler iframe {
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        box-shadow: 0 0 8px rgba(0, 0, 0, .6);
        background: #000;
    }

img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 40px 0;
    margin: 0 auto;
}

.mfp-figure {
    line-height: 0;
}

    .mfp-figure:after {
        content: '';
        position: absolute;
        left: 0;
        top: 40px;
        bottom: 40px;
        display: block;
        right: 0;
        width: auto;
        height: auto;
        z-index: -1;
        box-shadow: 0 0 8px rgba(0, 0, 0, .6);
        background: #444;
    }

    .mfp-figure small {
        color: #bdbdbd;
        display: block;
        font-size: 12px;
        line-height: 14px;
    }

    .mfp-figure figure {
        margin: 0;
    }

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #f3f3f3;
    word-wrap: break-word;
    padding-right: 36px;
}

.mfp-image-holder .mfp-content {
    max-width: 100%
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
}

@media screen and (max-width:800px) and (orientation:landscape), screen and (max-height:300px) {
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0;
    }

    .mfp-img-mobile img.mfp-img {
        padding: 0;
    }

    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0;
    }

    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px;
    }

    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, .6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

        .mfp-img-mobile .mfp-bottom-bar:empty {
            padding: 0;
        }

    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px;
    }

    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, .6);
        position: fixed;
        text-align: center;
        padding: 0;
    }
}

@media all and (max-width:900px) {
    .mfp-arrow {
        -webkit-transform: scale(.75);
        transform: scale(.75);
    }

    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0;
    }

    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%
    }

    .mfp-container {
        padding-left: 6px;
        padding-right: 6px;
    }
}

.mfp-ie7 .mfp-img {
    padding: 0;
}

.mfp-ie7 .mfp-bottom-bar {
    width: 600px;
    left: 50%;
    margin-left: -300px;
    margin-top: 5px;
    padding-bottom: 5px;
}

.mfp-ie7 .mfp-container {
    padding: 0;
}

.mfp-ie7 .mfp-content {
    padding-top: 44px;
}

.mfp-ie7 .mfp-close {
    top: 0;
    right: 0;
    padding-top: 0;
}

html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
    display: block;
}

audio, canvas, progress, video {
    display: inline-block;
    vertical-align: baseline;
}

    audio:not([controls]) {
        display: none;
        height: 0;
    }

[hidden], template {
    display: none;
}

a {
    background: 0 0;
}

    a:active, a:hover {
        outline: 0;
        text-decoration: none;
    }

b, strong {
    font-weight: 600;
}

dfn {
    font-style: italic;
}

h1 {
    margin: .67em 0;
}

mark {
    background: #ff0;
    color: #000;
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -.5em;
}

sub {
    bottom: -.25em;
}

img {
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

hr {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
}

pre {
    overflow: auto;
}

code, kbd, pre, samp {
    font-size: 1em;
}

button, input, optgroup, select, textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

button {
    overflow: visible;
}

button, select {
    text-transform: none;
}

button, html input[type=button], input[type=reset], input[type=submit] {
    -webkit-appearance: button;
    cursor: pointer;
}

    button[disabled], html input[disabled] {
        cursor: default;
    }

    button::-moz-focus-inner, input::-moz-focus-inner {
        border: 0;
        padding: 0;
    }

input[type=checkbox], input[type=radio] {
    box-sizing: border-box;
    padding: 0;
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
    height: auto;
}

input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: 700;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td, th {
    padding: 0;
}

@media print {
    * {
        text-shadow: none !important;
        color: #000 !important;
        background: 0 0 !important;
        box-shadow: none !important;
    }

    a, a:visited {
        text-decoration: underline;
    }

        a[href]:after {
            content: " (" attr(href) ")"
        }

    abbr[title]:after {
        content: " (" attr(title) ")"
    }

    a[href^="javascript:"]:after, a[href^="#"]:after {
        content: ""
    }

    blockquote, pre {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    img, tr {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    h2, h3, p {
        orphans: 3;
        widows: 3;
    }

    h2, h3 {
        page-break-after: avoid;
    }

    select {
        background: #fff !important;
    }

    .navbar {
        display: none;
    }

    .table td, .table th {
        background-color: #fff !important;
    }

    .btn > .caret, .dropup > .btn > .caret {
        border-top-color: #000 !important;
    }

    .label {
        border: 1px solid #000;
    }

    .table {
        border-collapse: collapse !important;
    }

    .table-bordered td, .table-bordered th {
        border: 1px solid #ddd !important;
    }
}

*, :after, :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: 10px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.49;
    color: #666;
    background-color: #fff;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

a {
    color: #707ac0;
    text-decoration: none;
}

    a:focus, a:hover {
        color: #46519e;
        text-decoration: none;
    }

    a:focus {
        outline: 0;
        outline-offset: -2px;
    }

figure {
    margin: 0;
}

img {
    vertical-align: middle;
}

.carousel-inner > .item > a > img, .carousel-inner > .item > img, .img-responsive, .thumbnail a > img, .thumbnail > img {
    display: block;
    width: 100% \9;
    max-width: 100%;
    height: auto;
}

.img-rounded {
    border-radius: 3px;
}

.img-thumbnail {
    padding: 4px;
    line-height: 1.49;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 1px;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    display: inline-block;
    width: 100% \9;
    max-width: 100%;
    height: auto;
}

.img-circle {
    border-radius: 50%
}

hr {
    border: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
}

a.link-unstyled {
    color: #666;
}

    a.link-unstyled:active, a.link-unstyled:focus, a.link-unstyled:hover {
        color: #222;
        text-decoration: none;
    }

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-family: inherit;
    font-weight: 600;
    line-height: 1.1;
    color: inherit;
    text-rendering: optimizelegibility;
}

    .h1 .small, .h1 small, .h2 .small, .h2 small, .h3 .small, .h3 small, .h4 .small, .h4 small, .h5 .small, .h5 small, .h6 .small, .h6 small, h1 .small, h1 small, h2 .small, h2 small, h3 .small, h3 small, h4 .small, h4 small, h5 .small, h5 small, h6 .small, h6 small {
        font-weight: 400;
        line-height: 1;
        color: #999;
    }

.h1, .h2, .h3, h1, h2, h3 {
    margin-top: 19px;
    margin-bottom: 9.5px;
}

    .h1 .small, .h1 small, .h2 .small, .h2 small, .h3 .small, .h3 small, h1 .small, h1 small, h2 .small, h2 small, h3 .small, h3 small {
        font-size: 75%
    }

.h4, .h5, .h6, h4, h5, h6 {
    margin-top: 9.5px;
    margin-bottom: 9.5px;
}

    .h4 .small, .h4 small, .h5 .small, .h5 small, .h6 .small, .h6 small, h4 .small, h4 small, h5 .small, h5 small, h6 .small, h6 small {
        font-size: 88%
    }

.h1 .small, h1 small {
    font-size: 70%
}

.h1, h1 {
    font-size: 30px;
}

.h2, h2 {
    font-size: 24px;
}

.h3, h3 {
    font-size: 18px;
}

.h4, h4 {
    font-size: 15px;
}

.h5, h5 {
    font-size: 13px;
}

.h6, h6 {
    font-size: 11px;
    color: #999;
}

p {
    margin: 0 0 9.5px;
}

.lead {
    margin-bottom: 19px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4;
}

@media (min-width:768px) {
    .lead {
        font-size: 19.5px;
    }
}

.small, small {
    font-size: 92%
}

cite {
    font-style: normal;
}

.mark, mark {
    background-color: #f8cd73;
    padding: .2em;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

.text-justify {
    text-align: justify !important;
}

.text-nowrap {
    white-space: nowrap !important;
}

.text-lowercase {
    text-transform: lowercase;
}

.text-capitalize {
    text-transform: capitalize;
}

.page-header {
    padding-bottom: 16.5px;
    margin: 38px 0 19px;
    border-bottom: 1px solid #ddd;
}

.content-header {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 40px;
}

    .content-header h1, .content-header h2, .content-header h3, .content-header h4 {
        line-height: 30px;
    }

.micro-header {
    color: #999;
    text-align: center;
    font-weight: 400;
    margin-bottom: 20px;
}

ol, ul {
    margin-top: 0;
    margin-bottom: 9.5px;
}

    ol ol, ol ul, ul ol, ul ul {
        margin-bottom: 0;
    }

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.list-inline {
    padding-left: 0;
    list-style: none;
    margin-left: -5px;
}

    .list-inline > li {
        display: inline-block;
        padding-left: 5px;
        padding-right: 5px;
    }

dl {
    margin-top: 0;
    margin-bottom: 19px;
}

dd, dt {
    line-height: 1.49;
}

dt {
    font-weight: 700;
}

dd {
    margin-left: 0;
}

@media (min-width:480px) {
    .dl-horizontal dt {
        float: left;
        width: 160px;
        clear: left;
        text-align: right;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .dl-horizontal dd {
        margin-left: 180px;
    }
}

abbr[data-original-title], abbr[title] {
    cursor: help;
    border-bottom: 1px dotted #777;
}

.initialism {
    font-size: 90%;
    text-transform: uppercase;
}

blockquote {
    padding: 9.5px 19px;
    margin: 0 0 19px;
    font-size: 16.25px;
    border-left: 5px solid #eee;
}

    blockquote ol:last-child, blockquote p:last-child, blockquote ul:last-child {
        margin-bottom: 0;
    }

    blockquote.blockquote-rounded {
        border-radius: 11px;
    }

    blockquote.blockquote-thin {
        border-width: 3px;
    }

    blockquote .small, blockquote footer, blockquote small {
        display: block;
        font-size: 80%;
        line-height: 1.49;
        color: #777;
    }

        blockquote .small:before, blockquote footer:before, blockquote small:before {
            content: '\2014 \00A0'
        }

    .blockquote-reverse, blockquote.pull-right {
        padding-right: 15px;
        padding-left: 0;
        border-right: 5px solid #eee;
        border-left: 0;
        text-align: right;
    }

        .blockquote-reverse .small:before, .blockquote-reverse footer:before, .blockquote-reverse small:before, blockquote.pull-right .small:before, blockquote.pull-right footer:before, blockquote.pull-right small:before {
            content: ''
        }

        .blockquote-reverse .small:after, .blockquote-reverse footer:after, .blockquote-reverse small:after, blockquote.pull-right .small:after, blockquote.pull-right footer:after, blockquote.pull-right small:after {
            content: '\00A0 \2014'
        }

    blockquote:after, blockquote:before {
        content: ""
    }

address {
    margin-bottom: 19px;
    font-style: normal;
    line-height: 1.49;
}

.dropcap {
    min-height: 75px;
}

    .dropcap:first-letter {
        font-family: 'Droid Serif', serif;
        float: left;
        color: #555;
        font-size: 60px;
        font-weight: 600;
        line-height: 45px;
        padding: 5px;
        margin: 0 5px 0 0;
    }

    .dropcap.lead:first-letter {
        font-size: 90px;
        line-height: 25px;
    }

    .dropcap.dropcap-fill:first-letter {
        border-radius: 6px;
        margin: 0 10px 0 0;
    }

    .dropcap.lead.dropcap-fill:first-letter {
        border-radius: 6px;
        color: #FFF;
        margin: 0 10px 0 0;
        padding-bottom: 26px;
    }

hr {
    margin: 35px 0;
    border-top: 1px solid #DDD;
}

    hr.alt {
        border-top: 1px dashed #ccc;
    }

    hr.short {
        margin: 20px 0;
        display: none;
    }

    hr.tall {
        margin: 55px 0;
    }

    hr.dotted {
        border-style: dotted;
    }

.divider {
    height: 1px;
    margin: 25px 0;
    background: #e2e2e2;
}

code, kbd, pre, samp {
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

code {
    padding: 2px 4px;
    font-size: 90%;
    color: #c7254e;
    background-color: #f9f2f4;
    border-radius: 1px;
}

kbd {
    padding: 2px 4px;
    font-size: 90%;
    color: #fff;
    background-color: #333;
    border-radius: 0;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
}

    kbd kbd {
        padding: 0;
        font-size: 100%;
        box-shadow: none;
    }

pre {
    display: block;
    padding: 9px;
    margin: 0 0 9.5px;
    font-size: 12px;
    line-height: 1.49;
    word-break: break-all;
    word-wrap: break-word;
    color: #333;
    background-color: #eaeef0;
    border: 1px solid #cbd6d6;
    border-radius: 1px;
}

    pre code {
        padding: 0;
        font-size: inherit;
        color: inherit;
        white-space: pre-wrap;
        background-color: transparent;
        border-radius: 0;
    }

.pre-scrollable {
    max-height: 340px;
    overflow-y: scroll;
}

.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 11px;
    padding-right: 11px;
}

@media (min-width:768px) {
    .container {
        width: 742px;
    }
}

@media (min-width:992px) {
    .container {
        width: 962px;
    }
}

@media (min-width:1140px) {
    .container {
        width: 1062px;
    }
}

@media (min-width:1400px) {
    .container {
        width: 1302px;
    }
}

.container-sm {
    max-width: 640px;
}

.container-md {
    max-width: 860px;
}

.container-lg {
    max-width: 1000px;
}

.container-xl {
    max-width: 1200px;
}

.container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 11px;
    padding-right: 11px;
}

.row {
    margin-left: -11px;
    margin-right: -11px;
}

.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
    position: relative;
    min-height: 1px;
    padding-left: 11px;
    padding-right: 11px;
}

.col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
    float: left;
}

.col-xs-12 {
    width: 100%
}

.col-xs-11 {
    width: 91.66666667%
}

.col-xs-10 {
    width: 83.33333333%
}

.col-xs-9 {
    width: 75%
}

.col-xs-8 {
    width: 66.66666667%
}

.col-xs-7 {
    width: 58.33333333%
}

.col-xs-6 {
    width: 50%
}

.col-xs-5 {
    width: 41.66666667%
}

.col-xs-4 {
    width: 33.33333333%
}

.col-xs-3 {
    width: 25%
}

.col-xs-2 {
    width: 16.66666667%
}

.col-xs-1 {
    width: 8.33333333%
}

.col-xs-pull-12 {
    right: 100%
}

.col-xs-pull-11 {
    right: 91.66666667%
}

.col-xs-pull-10 {
    right: 83.33333333%
}

.col-xs-pull-9 {
    right: 75%
}

.col-xs-pull-8 {
    right: 66.66666667%
}

.col-xs-pull-7 {
    right: 58.33333333%
}

.col-xs-pull-6 {
    right: 50%
}

.col-xs-pull-5 {
    right: 41.66666667%
}

.col-xs-pull-4 {
    right: 33.33333333%
}

.col-xs-pull-3 {
    right: 25%
}

.col-xs-pull-2 {
    right: 16.66666667%
}

.col-xs-pull-1 {
    right: 8.33333333%
}

.col-xs-pull-0 {
    right: auto;
}

.col-xs-push-12 {
    left: 100%
}

.col-xs-push-11 {
    left: 91.66666667%
}

.col-xs-push-10 {
    left: 83.33333333%
}

.col-xs-push-9 {
    left: 75%
}

.col-xs-push-8 {
    left: 66.66666667%
}

.col-xs-push-7 {
    left: 58.33333333%
}

.col-xs-push-6 {
    left: 50%
}

.col-xs-push-5 {
    left: 41.66666667%
}

.col-xs-push-4 {
    left: 33.33333333%
}

.col-xs-push-3 {
    left: 25%
}

.col-xs-push-2 {
    left: 16.66666667%
}

.col-xs-push-1 {
    left: 8.33333333%
}

.col-xs-push-0 {
    left: auto;
}

.col-xs-offset-12 {
    margin-left: 100%
}

.col-xs-offset-11 {
    margin-left: 91.66666667%
}

.col-xs-offset-10 {
    margin-left: 83.33333333%
}

.col-xs-offset-9 {
    margin-left: 75%
}

.col-xs-offset-8 {
    margin-left: 66.66666667%
}

.col-xs-offset-7 {
    margin-left: 58.33333333%
}

.col-xs-offset-6 {
    margin-left: 50%
}

.col-xs-offset-5 {
    margin-left: 41.66666667%
}

.col-xs-offset-4 {
    margin-left: 33.33333333%
}

.col-xs-offset-3 {
    margin-left: 25%
}

.col-xs-offset-2 {
    margin-left: 16.66666667%
}

.col-xs-offset-1 {
    margin-left: 8.33333333%
}

.col-xs-offset-0 {
    margin-left: 0;
}

@media (min-width:768px) {
    .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9 {
        float: left;
    }

    .col-sm-12 {
        width: 100%
    }

    .col-sm-11 {
        width: 91.66666667%
    }

    .col-sm-10 {
        width: 83.33333333%
    }

    .col-sm-9 {
        width: 75%
    }

    .col-sm-8 {
        width: 66.66666667%
    }

    .col-sm-7 {
        width: 58.33333333%
    }

    .col-sm-6 {
        width: 50%
    }

    .col-sm-5 {
        width: 41.66666667%
    }

    .col-sm-4 {
        width: 33.33333333%
    }

    .col-sm-3 {
        width: 25%
    }

    .col-sm-2 {
        width: 16.66666667%
    }

    .col-sm-1 {
        width: 8.33333333%
    }

    .col-sm-pull-12 {
        right: 100%
    }

    .col-sm-pull-11 {
        right: 91.66666667%
    }

    .col-sm-pull-10 {
        right: 83.33333333%
    }

    .col-sm-pull-9 {
        right: 75%
    }

    .col-sm-pull-8 {
        right: 66.66666667%
    }

    .col-sm-pull-7 {
        right: 58.33333333%
    }

    .col-sm-pull-6 {
        right: 50%
    }

    .col-sm-pull-5 {
        right: 41.66666667%
    }

    .col-sm-pull-4 {
        right: 33.33333333%
    }

    .col-sm-pull-3 {
        right: 25%
    }

    .col-sm-pull-2 {
        right: 16.66666667%
    }

    .col-sm-pull-1 {
        right: 8.33333333%
    }

    .col-sm-pull-0 {
        right: auto;
    }

    .col-sm-push-12 {
        left: 100%
    }

    .col-sm-push-11 {
        left: 91.66666667%
    }

    .col-sm-push-10 {
        left: 83.33333333%
    }

    .col-sm-push-9 {
        left: 75%
    }

    .col-sm-push-8 {
        left: 66.66666667%
    }

    .col-sm-push-7 {
        left: 58.33333333%
    }

    .col-sm-push-6 {
        left: 50%
    }

    .col-sm-push-5 {
        left: 41.66666667%
    }

    .col-sm-push-4 {
        left: 33.33333333%
    }

    .col-sm-push-3 {
        left: 25%
    }

    .col-sm-push-2 {
        left: 16.66666667%
    }

    .col-sm-push-1 {
        left: 8.33333333%
    }

    .col-sm-push-0 {
        left: auto;
    }

    .col-sm-offset-12 {
        margin-left: 100%
    }

    .col-sm-offset-11 {
        margin-left: 91.66666667%
    }

    .col-sm-offset-10 {
        margin-left: 83.33333333%
    }

    .col-sm-offset-9 {
        margin-left: 75%
    }

    .col-sm-offset-8 {
        margin-left: 66.66666667%
    }

    .col-sm-offset-7 {
        margin-left: 58.33333333%
    }

    .col-sm-offset-6 {
        margin-left: 50%
    }

    .col-sm-offset-5 {
        margin-left: 41.66666667%
    }

    .col-sm-offset-4 {
        margin-left: 33.33333333%
    }

    .col-sm-offset-3 {
        margin-left: 25%
    }

    .col-sm-offset-2 {
        margin-left: 16.66666667%
    }

    .col-sm-offset-1 {
        margin-left: 8.33333333%
    }

    .col-sm-offset-0 {
        margin-left: 0;
    }
}

@media (min-width:992px) {
    .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9 {
        float: left;
    }

    .col-md-12 {
        width: 100%
    }

    .col-md-11 {
        width: 91.66666667%
    }

    .col-md-10 {
        width: 83.33333333%
    }

    .col-md-9 {
        width: 75%
    }

    .col-md-8 {
        width: 66.66666667%
    }

    .col-md-7 {
        width: 58.33333333%
    }

    .col-md-6 {
        width: 50%
    }

    .col-md-5 {
        width: 41.66666667%
    }

    .col-md-4 {
        width: 33.33333333%
    }

    .col-md-3 {
        width: 25%
    }

    .col-md-2 {
        width: 16.66666667%
    }

    .col-md-1 {
        width: 8.33333333%
    }

    .col-md-pull-12 {
        right: 100%
    }

    .col-md-pull-11 {
        right: 91.66666667%
    }

    .col-md-pull-10 {
        right: 83.33333333%
    }

    .col-md-pull-9 {
        right: 75%
    }

    .col-md-pull-8 {
        right: 66.66666667%
    }

    .col-md-pull-7 {
        right: 58.33333333%
    }

    .col-md-pull-6 {
        right: 50%
    }

    .col-md-pull-5 {
        right: 41.66666667%
    }

    .col-md-pull-4 {
        right: 33.33333333%
    }

    .col-md-pull-3 {
        right: 25%
    }

    .col-md-pull-2 {
        right: 16.66666667%
    }

    .col-md-pull-1 {
        right: 8.33333333%
    }

    .col-md-pull-0 {
        right: auto;
    }

    .col-md-push-12 {
        left: 100%
    }

    .col-md-push-11 {
        left: 91.66666667%
    }

    .col-md-push-10 {
        left: 83.33333333%
    }

    .col-md-push-9 {
        left: 75%
    }

    .col-md-push-8 {
        left: 66.66666667%
    }

    .col-md-push-7 {
        left: 58.33333333%
    }

    .col-md-push-6 {
        left: 50%
    }

    .col-md-push-5 {
        left: 41.66666667%
    }

    .col-md-push-4 {
        left: 33.33333333%
    }

    .col-md-push-3 {
        left: 25%
    }

    .col-md-push-2 {
        left: 16.66666667%
    }

    .col-md-push-1 {
        left: 8.33333333%
    }

    .col-md-push-0 {
        left: auto;
    }

    .col-md-offset-12 {
        margin-left: 100%
    }

    .col-md-offset-11 {
        margin-left: 91.66666667%
    }

    .col-md-offset-10 {
        margin-left: 83.33333333%
    }

    .col-md-offset-9 {
        margin-left: 75%
    }

    .col-md-offset-8 {
        margin-left: 66.66666667%
    }

    .col-md-offset-7 {
        margin-left: 58.33333333%
    }

    .col-md-offset-6 {
        margin-left: 50%
    }

    .col-md-offset-5 {
        margin-left: 41.66666667%
    }

    .col-md-offset-4 {
        margin-left: 33.33333333%
    }

    .col-md-offset-3 {
        margin-left: 25%
    }

    .col-md-offset-2 {
        margin-left: 16.66666667%
    }

    .col-md-offset-1 {
        margin-left: 8.33333333%
    }

    .col-md-offset-0 {
        margin-left: 0;
    }
}

@media (min-width:1140px) {
    .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9 {
        float: left;
    }

    .col-lg-12 {
        width: 100%
    }

    .col-lg-11 {
        width: 91.66666667%
    }

    .col-lg-10 {
        width: 83.33333333%
    }

    .col-lg-9 {
        width: 75%
    }

    .col-lg-8 {
        width: 66.66666667%
    }

    .col-lg-7 {
        width: 58.33333333%
    }

    .col-lg-6 {
        width: 50%
    }

    .col-lg-5 {
        width: 41.66666667%
    }

    .col-lg-4 {
        width: 33.33333333%
    }

    .col-lg-3 {
        width: 25%
    }

    .col-lg-2 {
        width: 16.66666667%
    }

    .col-lg-1 {
        width: 8.33333333%
    }

    .col-lg-pull-12 {
        right: 100%
    }

    .col-lg-pull-11 {
        right: 91.66666667%
    }

    .col-lg-pull-10 {
        right: 83.33333333%
    }

    .col-lg-pull-9 {
        right: 75%
    }

    .col-lg-pull-8 {
        right: 66.66666667%
    }

    .col-lg-pull-7 {
        right: 58.33333333%
    }

    .col-lg-pull-6 {
        right: 50%
    }

    .col-lg-pull-5 {
        right: 41.66666667%
    }

    .col-lg-pull-4 {
        right: 33.33333333%
    }

    .col-lg-pull-3 {
        right: 25%
    }

    .col-lg-pull-2 {
        right: 16.66666667%
    }

    .col-lg-pull-1 {
        right: 8.33333333%
    }

    .col-lg-pull-0 {
        right: auto;
    }

    .col-lg-push-12 {
        left: 100%
    }

    .col-lg-push-11 {
        left: 91.66666667%
    }

    .col-lg-push-10 {
        left: 83.33333333%
    }

    .col-lg-push-9 {
        left: 75%
    }

    .col-lg-push-8 {
        left: 66.66666667%
    }

    .col-lg-push-7 {
        left: 58.33333333%
    }

    .col-lg-push-6 {
        left: 50%
    }

    .col-lg-push-5 {
        left: 41.66666667%
    }

    .col-lg-push-4 {
        left: 33.33333333%
    }

    .col-lg-push-3 {
        left: 25%
    }

    .col-lg-push-2 {
        left: 16.66666667%
    }

    .col-lg-push-1 {
        left: 8.33333333%
    }

    .col-lg-push-0 {
        left: auto;
    }

    .col-lg-offset-12 {
        margin-left: 100%
    }

    .col-lg-offset-11 {
        margin-left: 91.66666667%
    }

    .col-lg-offset-10 {
        margin-left: 83.33333333%
    }

    .col-lg-offset-9 {
        margin-left: 75%
    }

    .col-lg-offset-8 {
        margin-left: 66.66666667%
    }

    .col-lg-offset-7 {
        margin-left: 58.33333333%
    }

    .col-lg-offset-6 {
        margin-left: 50%
    }

    .col-lg-offset-5 {
        margin-left: 41.66666667%
    }

    .col-lg-offset-4 {
        margin-left: 33.33333333%
    }

    .col-lg-offset-3 {
        margin-left: 25%
    }

    .col-lg-offset-2 {
        margin-left: 16.66666667%
    }

    .col-lg-offset-1 {
        margin-left: 8.33333333%
    }

    .col-lg-offset-0 {
        margin-left: 0;
    }
}

@media (min-width:1400px) {
    .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9 {
        float: left;
    }

    .col-xl-12 {
        width: 100%
    }

    .col-xl-11 {
        width: 91.66666667%
    }

    .col-xl-10 {
        width: 83.33333333%
    }

    .col-xl-9 {
        width: 75%
    }

    .col-xl-8 {
        width: 66.66666667%
    }

    .col-xl-7 {
        width: 58.33333333%
    }

    .col-xl-6 {
        width: 50%
    }

    .col-xl-5 {
        width: 41.66666667%
    }

    .col-xl-4 {
        width: 33.33333333%
    }

    .col-xl-3 {
        width: 25%
    }

    .col-xl-2 {
        width: 16.66666667%
    }

    .col-xl-1 {
        width: 8.33333333%
    }

    .col-xl-pull-12 {
        right: 100%
    }

    .col-xl-pull-11 {
        right: 91.66666667%
    }

    .col-xl-pull-10 {
        right: 83.33333333%
    }

    .col-xl-pull-9 {
        right: 75%
    }

    .col-xl-pull-8 {
        right: 66.66666667%
    }

    .col-xl-pull-7 {
        right: 58.33333333%
    }

    .col-xl-pull-6 {
        right: 50%
    }

    .col-xl-pull-5 {
        right: 41.66666667%
    }

    .col-xl-pull-4 {
        right: 33.33333333%
    }

    .col-xl-pull-3 {
        right: 25%
    }

    .col-xl-pull-2 {
        right: 16.66666667%
    }

    .col-xl-pull-1 {
        right: 8.33333333%
    }

    .col-xl-pull-0 {
        right: auto;
    }

    .col-xl-push-12 {
        left: 100%
    }

    .col-xl-push-11 {
        left: 91.66666667%
    }

    .col-xl-push-10 {
        left: 83.33333333%
    }

    .col-xl-push-9 {
        left: 75%
    }

    .col-xl-push-8 {
        left: 66.66666667%
    }

    .col-xl-push-7 {
        left: 58.33333333%
    }

    .col-xl-push-6 {
        left: 50%
    }

    .col-xl-push-5 {
        left: 41.66666667%
    }

    .col-xl-push-4 {
        left: 33.33333333%
    }

    .col-xl-push-3 {
        left: 25%
    }

    .col-xl-push-2 {
        left: 16.66666667%
    }

    .col-xl-push-1 {
        left: 8.33333333%
    }

    .col-xl-push-0 {
        left: auto;
    }

    .col-xl-offset-12 {
        margin-left: 100%
    }

    .col-xl-offset-11 {
        margin-left: 91.66666667%
    }

    .col-xl-offset-10 {
        margin-left: 83.33333333%
    }

    .col-xl-offset-9 {
        margin-left: 75%
    }

    .col-xl-offset-8 {
        margin-left: 66.66666667%
    }

    .col-xl-offset-7 {
        margin-left: 58.33333333%
    }

    .col-xl-offset-6 {
        margin-left: 50%
    }

    .col-xl-offset-5 {
        margin-left: 41.66666667%
    }

    .col-xl-offset-4 {
        margin-left: 33.33333333%
    }

    .col-xl-offset-3 {
        margin-left: 25%
    }

    .col-xl-offset-2 {
        margin-left: 16.66666667%
    }

    .col-xl-offset-1 {
        margin-left: 8.33333333%
    }

    .col-xl-offset-0 {
        margin-left: 0;
    }
}

table {
    background-color: transparent;
}

th {
    text-align: left;
}

.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
}

    .table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th {
        padding: 9px;
        line-height: 1.49;
        vertical-align: middle;
        border-top: 1px solid #eee;
    }

    .table > thead > tr > th {
        font-weight: 600;
        vertical-align: bottom;
        border-bottom: 1px solid #eee;
    }

    .table > caption + thead > tr:first-child > td, .table > caption + thead > tr:first-child > th, .table > colgroup + thead > tr:first-child > td, .table > colgroup + thead > tr:first-child > th, .table > thead:first-child > tr:first-child > td, .table > thead:first-child > tr:first-child > th {
        border-top: 0;
    }

    .table > tbody + tbody {
        border-top: 2px solid #eee;
    }

    .table tbody > tr:first-child > td {
        border-top: 0;
    }

    .table .table {
        margin-bottom: 0;
        background-color: #fff;
    }

.table-condensed > tbody > tr > td, .table-condensed > tbody > tr > th, .table-condensed > tfoot > tr > td, .table-condensed > tfoot > tr > th, .table-condensed > thead > tr > td, .table-condensed > thead > tr > th {
    padding: 5px;
}

.table-bordered, .table-bordered > tbody > tr > td, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > td, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > thead > tr > th {
    border: 1px solid #eee;
}

    .table-bordered > thead > tr > td, .table-bordered > thead > tr > th {
        border-bottom-width: 2px;
    }

.table-striped > tbody > tr:nth-child(odd) > td, .table-striped > tbody > tr:nth-child(odd) > th {
    background-color: #f9f9f9;
}

.table-hover > tbody > tr:hover > td, .table-hover > tbody > tr:hover > th {
    background-color: #f5f5f5;
}

.table-curved > tbody > tr > td:first-child {
    border-radius: 4px 0 0 4px;
}

.table-curved > tbody > tr > td:last-child {
    border-radius: 0 4px 4px 0;
}

table col[class*=col-] {
    position: static;
    float: none;
    display: table-column;
}

table td[class*=col-], table th[class*=col-] {
    position: static;
    float: none;
    display: table-cell;
}

@media screen and (max-width:767px) {
    .table-responsive {
        width: 100%;
        margin-bottom: 14.25px;
        overflow-y: hidden;
        overflow-x: auto;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #eee;
        -webkit-overflow-scrolling: touch;
    }

        .table-responsive > .table {
            margin-bottom: 0;
        }

            .table-responsive > .table > tbody > tr > td, .table-responsive > .table > tbody > tr > th, .table-responsive > .table > tfoot > tr > td, .table-responsive > .table > tfoot > tr > th, .table-responsive > .table > thead > tr > td, .table-responsive > .table > thead > tr > th {
                white-space: nowrap;
            }

        .table-responsive > .table-bordered {
            border: 0;
        }

            .table-responsive > .table-bordered > tbody > tr > td:first-child, .table-responsive > .table-bordered > tbody > tr > th:first-child, .table-responsive > .table-bordered > tfoot > tr > td:first-child, .table-responsive > .table-bordered > tfoot > tr > th:first-child, .table-responsive > .table-bordered > thead > tr > td:first-child, .table-responsive > .table-bordered > thead > tr > th:first-child {
                border-left: 0;
            }

            .table-responsive > .table-bordered > tbody > tr > td:last-child, .table-responsive > .table-bordered > tbody > tr > th:last-child, .table-responsive > .table-bordered > tfoot > tr > td:last-child, .table-responsive > .table-bordered > tfoot > tr > th:last-child, .table-responsive > .table-bordered > thead > tr > td:last-child, .table-responsive > .table-bordered > thead > tr > th:last-child {
                border-right: 0;
            }

            .table-responsive > .table-bordered > tbody > tr:last-child > td, .table-responsive > .table-bordered > tbody > tr:last-child > th, .table-responsive > .table-bordered > tfoot > tr:last-child > td, .table-responsive > .table-bordered > tfoot > tr:last-child > th {
                border-bottom: 0;
            }
}

fieldset {
    padding: 0;
    margin: 0;
    border: 0;
    min-width: 0;
}

legend {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 19px;
    font-size: 19.5px;
    line-height: inherit;
    color: #333;
    border: 0;
    border-bottom: 1px solid #e5e5e5;
}

label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 600;
}

input[type=search] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

input[type=checkbox], input[type=radio] {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
}

input[type=file] {
    display: block;
}

input[type=range] {
    display: block;
    width: 100%
}

select[multiple], select[size] {
    height: auto;
}

input[type=checkbox]:focus, input[type=radio]:focus, input[type=file]:focus {
    outline: 0;
    outline-offset: -2px;
}

output {
    display: block;
    padding-top: 10px;
    font-size: 13px;
    line-height: 1.49;
    color: #555;
}

.form-control {
    display: block;
    width: 100%;
    line-height: 1.49;
    color: #555;
    background-color: #fff;
    background-image: none;
}

    .form-control:focus {
        border-color: #939bd0;
        outline: 0;
    }

    .form-control::-moz-placeholder {
        color: #777;
        opacity: 1;
    }

    .form-control:-ms-input-placeholder {
        color: #777;
    }

    .form-control::-webkit-input-placeholder {
        color: #777;
    }

    .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
        cursor: not-allowed;
        background-color: #fafafa;
        opacity: 1;
    }

textarea.form-control {
    resize: vertical;
    height: 96px !important;
}

textarea.textarea-grow {
    height: 39px;
    resize: none;
}

    textarea.textarea-grow:focus {
        height: auto;
        resize: vertical;
    }

.input-hero .form-control {
    padding: 14px 25px;
    height: 60px;
    background: #f9f9f9;
    border: 1px solid #DDD;
    font-size: 16px;
    border-radius: 3px;
}

input[type=search] {
    -webkit-appearance: none;
}

input[type=date], input[type=time], input[type=datetime-local], input[type=month] {
    line-height: 39px;
    line-height: 1.49 \0;
}

    input[type=date].input-sm, input[type=time].input-sm, input[type=datetime-local].input-sm, input[type=month].input-sm {
        line-height: 30px;
    }

    input[type=date].input-lg, input[type=time].input-lg, input[type=datetime-local].input-lg, input[type=month].input-lg {
        line-height: 45px;
    }

.form-group {
    margin-bottom: 15px;
}

.checkbox, .radio {
    position: relative;
    display: block;
    min-height: 19px;
}

    .checkbox label, .radio label {
        padding-left: 20px;
        margin-bottom: 0;
        font-weight: 400;
        cursor: pointer;
    }

    .checkbox input[type=checkbox], .checkbox-inline input[type=checkbox], .radio input[type=radio], .radio-inline input[type=radio] {
        position: absolute;
        margin-left: -20px;
        margin-top: 4px \9;
    }

    .checkbox + .checkbox, .radio + .radio {
        margin-top: -5px;
    }

.checkbox-inline, .radio-inline {
    display: inline-block;
    padding-left: 20px;
    margin-bottom: 0;
    vertical-align: middle;
    font-weight: 400;
    cursor: pointer;
}

    .checkbox-inline + .checkbox-inline, .radio-inline + .radio-inline {
        margin-top: 0;
        margin-left: 10px;
    }

    .checkbox-inline.disabled, .checkbox.disabled label, .radio-inline.disabled, .radio.disabled label, fieldset[disabled] .checkbox label, fieldset[disabled] .checkbox-inline, fieldset[disabled] .radio label, fieldset[disabled] .radio-inline, fieldset[disabled] input[type=checkbox], fieldset[disabled] input[type=radio], input[type=checkbox].disabled, input[type=checkbox][disabled], input[type=radio].disabled, input[type=radio][disabled] {
        cursor: not-allowed;
    }

.form-control-static {
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 0;
}

    .form-control-static.input-lg, .form-control-static.input-sm {
        padding-left: 0;
        padding-right: 0;
    }

.form-horizontal .form-group-sm .form-control, .input-sm {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 0;
}

select.input-sm {
    height: 30px;
    line-height: 30px;
}

select[multiple].input-sm, textarea.input-sm {
    height: auto;
}

.form-horizontal .form-group-lg .form-control, .input-lg {
    height: 45px;
    padding: 10px 16px;
    font-size: 17px;
    line-height: 1.33;
    border-radius: 3px;
}

select.input-lg {
    height: 45px;
    line-height: 45px;
}

select[multiple].input-lg, textarea.input-lg {
    height: auto;
}

.has-feedback {
    position: relative;
}

    .has-feedback .form-control {
        padding-right: 48.75px;
    }

.form-control-feedback {
    position: absolute;
    top: 24px;
    right: 0;
    z-index: 2;
    display: block;
    width: 39px;
    height: 39px;
    line-height: 39px;
    text-align: center;
}

.input-lg + .form-control-feedback {
    width: 45px;
    height: 45px;
    line-height: 45px;
}

.input-sm + .form-control-feedback {
    width: 30px;
    height: 30px;
    line-height: 30px;
}

.has-primary .append-icon, .has-primary .checkbox, .has-primary .checkbox-inline, .has-primary .control-label, .has-primary .help-block, .has-primary .radio, .has-primary .radio-inline {
    color: #707ac0;
}

.has-primary .form-control {
    border-color: #939bd0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

    .has-primary .form-control:focus {
        border-color: #4d5ab0;
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .025), 0 0 3px #b7bcdf;
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, .025), 0 0 3px #b7bcdf;
    }

.has-primary .input-group-addon {
    color: #3e488c;
    border-color: #707ac0;
    background-color: #daddef;
}

.has-primary .form-control-feedback {
    color: #707ac0;
}

.has-success .append-icon, .has-success .checkbox, .has-success .checkbox-inline, .has-success .control-label, .has-success .help-block, .has-success .radio, .has-success .radio-inline {
    color: #70ca63;
}

.has-success .form-control {
    border-color: #93d789;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

    .has-success .form-control:focus {
        border-color: #4fbb3f;
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .025), 0 0 3px #b6e4af;
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, .025), 0 0 3px #b6e4af;
    }

.has-success .input-group-addon {
    color: #3f9532;
    border-color: #70ca63;
    background-color: #d9f1d5;
}

.has-success .form-control-feedback {
    color: #70ca63;
}

.has-info .append-icon, .has-info .checkbox, .has-info .checkbox-inline, .has-info .control-label, .has-info .help-block, .has-info .radio, .has-info .radio-inline {
    color: #3bafda;
}

.has-info .form-control {
    border-color: #66c1e2;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

    .has-info .form-control:focus {
        border-color: #2494be;
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .025), 0 0 3px #91d2ea;
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, .025), 0 0 3px #91d2ea;
    }

.has-info .input-group-addon {
    color: #1c7393;
    border-color: #3bafda;
    background-color: #bce4f2;
}

.has-info .form-control-feedback {
    color: #3bafda;
}

.has-warning .append-icon, .has-warning .checkbox, .has-warning .checkbox-inline, .has-warning .control-label, .has-warning .help-block, .has-warning .radio, .has-warning .radio-inline {
    color: #f6bb42;
}

.has-warning .form-control {
    border-color: #f8cd73;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

    .has-warning .form-control:focus {
        border-color: #f4a911;
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .025), 0 0 3px #fbdea3;
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, .025), 0 0 3px #fbdea3;
    }

.has-warning .input-group-addon {
    color: #c88a0a;
    border-color: #f6bb42;
    background-color: #fdf0d4;
}

.has-warning .form-control-feedback {
    color: #f6bb42;
}

.has-error .append-icon, .has-error .checkbox, .has-error .checkbox-inline, .has-error .control-label, .has-error .help-block, .has-error .radio, .has-error .radio-inline {
    color: #e9573f;
}

.has-error .form-control {
    border-color: #ee7f6d;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

    .has-error .form-control:focus {
        border-color: #dc3519;
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .025), 0 0 3px #f3a79b;
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, .025), 0 0 3px #f3a79b;
    }

.has-error .input-group-addon {
    color: #bc2d16;
    border-color: #e9573f;
    background-color: #fadbd6;
}

.has-error .form-control-feedback {
    color: #e9573f;
}

.has-alert .append-icon, .has-alert .checkbox, .has-alert .checkbox-inline, .has-alert .control-label, .has-alert .help-block, .has-alert .radio, .has-alert .radio-inline {
    color: #707ac0;
}

.has-alert .form-control {
    border-color: #939bd0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

    .has-alert .form-control:focus {
        border-color: #4d5ab0;
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .025), 0 0 3px #b7bcdf;
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, .025), 0 0 3px #b7bcdf;
    }

.has-alert .input-group-addon {
    color: #394282;
    border-color: #707ac0;
    background-color: #d0d3ea;
}

.has-alert .form-control-feedback, .has-system .append-icon, .has-system .checkbox, .has-system .checkbox-inline, .has-system .control-label, .has-system .help-block, .has-system .radio, .has-system .radio-inline {
    color: #707ac0;
}

.has-system .form-control {
    border-color: #939bd0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

    .has-system .form-control:focus {
        border-color: #4d5ab0;
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .025), 0 0 3px #b7bcdf;
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, .025), 0 0 3px #b7bcdf;
    }

.has-system .input-group-addon {
    color: #3e488c;
    border-color: #707ac0;
    background-color: #daddef;
}

.has-system .form-control-feedback {
    color: #707ac0;
}

.has-feedback label.sr-only ~ .form-control-feedback {
    top: 0;
}

.help-block {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #a6a6a6;
}

@media (min-width:768px) {
    .form-inline .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle;
    }

    .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle;
    }

    .form-inline .input-group {
        display: inline-table;
        vertical-align: middle;
    }

        .form-inline .input-group .form-control, .form-inline .input-group .input-group-addon, .form-inline .input-group .input-group-btn {
            width: auto;
        }

        .form-inline .input-group > .form-control {
            width: 100%
        }

    .form-inline .control-label {
        margin-bottom: 0;
        vertical-align: middle;
    }

    .form-inline .checkbox, .form-inline .radio {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle;
    }

        .form-inline .checkbox label, .form-inline .radio label {
            padding-left: 0;
        }

        .form-inline .checkbox input[type=checkbox], .form-inline .radio input[type=radio] {
            position: relative;
            margin-left: 0;
        }

    .form-inline .has-feedback .form-control-feedback {
        top: 0;
    }
}

.form-horizontal .checkbox, .form-horizontal .checkbox-inline, .form-horizontal .radio, .form-horizontal .radio-inline {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 10px;
}

.form-horizontal .checkbox, .form-horizontal .radio {
    min-height: 29px;
}

.form-horizontal .file-manager-card .checkbox {
    min-height: 0;
}

.form-horizontal .form-group {
    margin-left: -11px;
    margin-right: -11px;
}

@media (min-width:768px) {
    .form-horizontal .control-label {
        text-align: right;
        margin-bottom: 0;
        padding-top: 10px;
    }
}

.form-horizontal .has-feedback .form-control-feedback {
    top: 0;
    right: 11px;
}

@media (min-width:768px) {
    .form-horizontal .form-group-lg .control-label {
        padding-top: 14.3px;
    }
}

@media (min-width:768px) {
    .form-horizontal .form-group-sm .control-label {
        padding-top: 6px;
    }
}

.form-bordered .form-group {
    border-bottom: 1px solid #f2f2f2;
    padding-bottom: 18px;
    margin-bottom: 18px;
}

    .form-bordered .form-group:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }

.append-icon {
    position: absolute;
    left: 23px;
    top: 8px;
    font-size: 14px;
}

    .append-icon.right {
        left: auto;
        right: 23px;
    }

    .append-icon + input.form-control {
        padding-right: 40px;
    }

.input-group.input-hero {
    display: block;
}

    .input-group.input-hero .input-group-addon {
        position: absolute;
        top: 10px;
        left: 13px;
        border: 0;
        background: 0 0;
        z-index: 3;
        font-size: 18px;
    }

        .input-group.input-hero .input-group-addon + input.form-control {
            border-left: 3px solid #707ac0;
            display: block;
            float: none;
            padding-left: 60px;
            z-index: 0 !important;
        }

.input-hero.input-hero-sm .form-control {
    height: 54px;
    background: #FFF;
}

.input-hero.input-hero-sm .input-group-addon {
    top: 8px;
    left: 10px;
}

.input-group.input-hero-sm .input-group-addon + input.form-control {
    padding-left: 54px;
}

.bootstrap-maxlength {
    opacity: .6;
    padding: 0 15px;
    border-radius: 0;
}

    .bootstrap-maxlength.maxlength-right {
        padding: 7px 12px;
        margin-top: -8px;
        margin-left: 7px;
    }

.btn.active:focus, .btn:active:focus, .btn:focus {
    outline: 0;
    outline-offset: -2px;
}

.btn:focus, .btn:hover {
    color: #666;
    text-decoration: none;
}

.btn.active, .btn:active {
    outline: 0;
    background-image: none;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}

.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
    cursor: not-allowed;
    pointer-events: none;
    opacity: .65;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn.btn-gradient {
    text-shadow: 0 -1px 0 rgba(0, 0, 0, .4);
    border-color: rgba(0, 0, 0, .07) rgba(0, 0, 0, .1) rgba(0, 0, 0, .18);
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2);
    background-repeat: repeat-x;
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, .3) 1%, rgba(255, 255, 255, .15) 100%);
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, .3) 1%, rgba(255, 255, 255, .15) 100%);
}

.btn.btn-rounded {
    border-radius: 20px;
}

.btn-link {
    color: #707ac0;
    font-weight: 400;
    cursor: pointer;
    border-radius: 0;
}

    .btn-link, .btn-link:active, .btn-link[disabled], fieldset[disabled] .btn-link {
        background-color: transparent;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

        .btn-link, .btn-link:active, .btn-link:focus, .btn-link:hover {
            border-color: transparent;
        }

            .btn-link:focus, .btn-link:hover {
                color: #46519e;
                background-color: transparent;
            }

            .btn-link[disabled]:focus, .btn-link[disabled]:hover, fieldset[disabled] .btn-link:focus, fieldset[disabled] .btn-link:hover {
                color: #777;
                text-decoration: none;
            }

.btn-group-lg > .btn, .btn-lg {
    padding: 10px 16px;
    font-size: 17px;
    line-height: 1.33;
    border-radius: 3px;
}

.btn-group-sm > .btn, .btn-sm {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 0;
}

.btn-group-xs > .btn, .btn-xs {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 0;
}

.btn-block {
    display: block;
    width: 100%
}

    .btn-block + .btn-block {
        margin-top: 5px;
    }

input[type=button].btn-block, input[type=reset].btn-block, input[type=submit].btn-block {
    width: 100%
}

.btn.btn-alt {
    position: relative;
    padding: 7px 11px;
    margin: 5px 3px;
    color: #999;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    background-color: #fbfbfb;
    border-radius: 1px;
    border: 1px solid #EEE;
    border-left: 4px solid #EEE;
    -webkit-transition: opacity .1s ease;
    transition: opacity .1s ease;
}

    .btn.btn-alt.item-active, .btn.btn-alt:focus, .btn.btn-alt:hover {
        color: #666 !important;
        background-color: #fefefe !important;
    }

    .btn.btn-alt.btn-gradient {
        background-color: #f0f0f0;
        text-shadow: 0 -1px 0 rgba(255, 255, 255, .4);
        -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2);
        background-repeat: repeat-x;
        background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, .9) 10%, rgba(255, 255, 255, .3) 100%);
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, .9) 10%, rgba(255, 255, 255, .3) 100%);
        border-color: rgba(0, 0, 0, .07) rgba(0, 0, 0, .08) rgba(0, 0, 0, .14);
        border-left: 4px solid #DDD;
    }

        .btn.btn-alt.btn-gradient:focus, .btn.btn-alt.btn-gradient:hover {
            background-color: #eee;
        }

    .btn.btn-alt.item-checked {
        opacity: 1;
        color: #666;
        border-left-color: #70ca63 !important;
        transition: all .2s ease;
    }

.holder-style {
    display: block;
    padding: 9px 16px;
    color: #AAA;
    background-color: #f1f1f1;
    outline: #d9d9d9 dashed 2px;
    border: 0;
    -webkit-transition: all .15s ease;
    -moz-transition: all .15s ease;
    transition: all .15s ease;
}

    .holder-style:focus, .holder-style:hover {
        cursor: pointer;
        color: #777;
        background-color: #EEE;
        outline: #aaa dashed 2px;
        border: 0;
        text-decoration: none;
    }

    .holder-style.holder-active {
        background-color: #FFF;
        outline-color: #70ca63;
    }

    .holder-style .holder-icon {
        color: #AAA;
        font-size: 30px;
        padding-bottom: 10px;
    }

    .holder-style.holder-active .holder-icon, .holder-style:focus .holder-icon, .holder-style:hover .holder-icon {
        color: #70ca63;
    }

.btn-dimmer .btn, .btn-dimmer.btn {
    opacity: .5;
}

    .btn-dimmer .btn.item-active, .btn-dimmer .btn:hover, .btn-dimmer.btn.item-active, .btn-dimmer.btn:hover {
        opacity: 1;
    }

.fade {
    opacity: 0;
    -webkit-transition: opacity .15s linear;
    -o-transition: opacity .15s linear;
    transition: opacity .15s linear;
}

    .fade.in {
        opacity: 1;
    }

.collapse {
    display: none;
}

    .collapse.in {
        display: block;
    }

tr.collapse.in {
    display: table-row;
}

tbody.collapse.in {
    display: table-row-group;
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition: height .35s ease;
    -o-transition: height .35s ease;
    transition: height .35s ease;
}

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

    .caret.caret-tp {
        border-top-color: rgba(0, 0, 0, .2);
    }

    .caret.caret-xs {
        border-width: 2px;
    }

    .caret.caret-sm {
        border-width: 3px;
    }

    .caret.caret-lg {
        border-width: 5px;
    }

.dropdown {
    position: relative;
}

.dropdown-menu.dropdown-sm {
    min-width: 120px;
}

    .dropdown-menu.dropdown-sm li {
        margin-bottom: 0;
    }

        .dropdown-menu.dropdown-sm li a {
            font-size: 13px;
            padding: 2px 12px;
        }

.dropdown-toggle:focus {
    outline: 0;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 13px;
    text-align: left;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 1px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    background-clip: padding-box;
}

    .dropdown-menu.pull-right {
        right: 0;
        left: auto;
    }

    .dropdown-menu .divider {
        height: 1px;
        margin: 8.5px 0;
        overflow: hidden;
        background-color: #e5e5e5;
    }

    .dropdown-menu > li > a {
        display: block;
        padding: 5px 15px;
        clear: both;
        color: #666;
        font-weight: 400;
        line-height: 1.49;
        white-space: nowrap;
    }

        .dropdown-menu > li > a:focus, .dropdown-menu > li > a:hover {
            text-decoration: none;
            color: #595959;
            background-color: #f5f5f5;
        }

    .dropdown-menu > .active > a, .dropdown-menu > .active > a:focus, .dropdown-menu > .active > a:hover {
        color: #fff;
        text-decoration: none;
        outline: 0;
        background-color: #707ac0;
    }

    .dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:focus, .dropdown-menu > .disabled > a:hover {
        color: #777;
    }

        .dropdown-menu > .disabled > a:focus, .dropdown-menu > .disabled > a:hover {
            text-decoration: none;
            background-color: transparent;
            background-image: none;
            filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
            cursor: not-allowed;
        }

.open > .dropdown-menu {
    display: block;
}

.open > a {
    outline: 0;
}

.dropdown-menu-right {
    left: auto;
    right: 0;
}

.dropdown-menu-left {
    left: 0;
    right: auto;
}

.dropdown-header {
    display: block;
    padding: 3px 20px;
    font-size: 12px;
    line-height: 1.49;
    color: #777;
    white-space: nowrap;
}

.dropdown-backdrop {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 990;
}

.dropup .caret, .navbar-fixed-bottom .dropdown .caret {
    border-top: 0;
    border-bottom: 4px solid;
    content: ""
}

.dropup .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-bottom: 1px;
}

@media (min-width:480px) {
    .navbar-right .dropdown-menu {
        left: auto;
        right: 0;
    }

    .navbar-right .dropdown-menu-left {
        left: 0;
        right: auto;
    }
}

.btn-group, .btn-group-vertical {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

    .btn-group-vertical > .btn, .btn-group > .btn {
        position: relative;
        float: left;
    }

        .btn-group-vertical > .btn.active, .btn-group-vertical > .btn:active, .btn-group-vertical > .btn:focus, .btn-group-vertical > .btn:hover, .btn-group > .btn.active, .btn-group > .btn:active, .btn-group > .btn:focus, .btn-group > .btn:hover {
            z-index: 2;
        }

        .btn-group-vertical > .btn:focus, .btn-group > .btn:focus {
            outline: 0;
        }

    .btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group {
        margin-left: -1px;
    }

.btn-toolbar {
    margin-left: -5px;
}

    .btn-toolbar .btn-group, .btn-toolbar .input-group {
        float: left;
    }

    .btn-toolbar > .btn, .btn-toolbar > .btn-group, .btn-toolbar > .input-group {
        margin-left: 5px;
    }

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
    border-radius: 0;
}

.btn-group > .btn:first-child {
    margin-left: 0;
}

    .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
        border-bottom-right-radius: 0;
        border-top-right-radius: 0;
    }

.btn-group > .btn:last-child:not(:first-child), .btn-group > .dropdown-toggle:not(:first-child) {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.btn-group > .btn-group {
    float: left;
}

    .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
        border-radius: 0;
    }

    .btn-group > .btn-group:first-child > .btn:last-child, .btn-group > .btn-group:first-child > .dropdown-toggle {
        border-bottom-right-radius: 0;
        border-top-right-radius: 0;
    }

    .btn-group > .btn-group:last-child > .btn:first-child {
        border-bottom-left-radius: 0;
        border-top-left-radius: 0;
    }

.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
    outline: 0;
}

.btn-group > .btn + .dropdown-toggle {
    padding-left: 8px;
    padding-right: 8px;
    border-left: 1px solid rgba(0, 0, 0, .12);
}

.btn-group > .btn-lg + .dropdown-toggle {
    padding-left: 12px;
    padding-right: 12px;
}

.btn-group.open .dropdown-toggle {
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}

    .btn-group.open .dropdown-toggle.btn-link {
        -webkit-box-shadow: none;
        box-shadow: none;
    }

.btn .caret {
    margin-left: 0;
}

.btn-lg .caret {
    border-width: 5px 5px 0;
}

.dropup .btn-lg .caret {
    border-width: 0 5px 5px;
}

.btn-group-vertical > .btn, .btn-group-vertical > .btn-group, .btn-group-vertical > .btn-group > .btn {
    display: block;
    float: none;
    width: 100%;
    max-width: 100%
}

    .btn-group-vertical > .btn-group > .btn {
        float: none;
    }

    .btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group, .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group + .btn-group {
        margin-top: -1px;
        margin-left: 0;
    }

    .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
        border-radius: 0;
    }

    .btn-group-vertical > .btn:first-child:not(:last-child) {
        border-top-right-radius: 1px;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }

    .btn-group-vertical > .btn:last-child:not(:first-child) {
        border-bottom-left-radius: 1px;
        border-top-right-radius: 0;
        border-top-left-radius: 0;
    }

    .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
        border-radius: 0;
    }

    .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }

    .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
        border-top-right-radius: 0;
        border-top-left-radius: 0;
    }

.btn-group-justified {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
}

    .btn-group-justified > .btn, .btn-group-justified > .btn-group {
        float: none;
        display: table-cell;
        width: 1%
    }

        .btn-group-justified > .btn-group .btn {
            width: 100%
        }

        .btn-group-justified > .btn-group .dropdown-menu {
            left: auto;
        }

[data-toggle=buttons] > .btn > input[type=checkbox], [data-toggle=buttons] > .btn > input[type=radio] {
    position: absolute;
    z-index: -1;
    opacity: 0;
    filter: alpha(opacity=0);
}

.input-group {
    position: relative;
    display: table;
    border-collapse: separate;
}

    .input-group[class*=col-] {
        float: none;
        padding-left: 0;
        padding-right: 0;
    }

    .input-group .form-control {
        position: relative;
        z-index: 2;
        float: left;
        width: 100%;
        margin-bottom: 0;
    }

.input-group-lg > .form-control, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .btn {
    height: 45px;
    padding: 10px 16px;
    font-size: 17px;
    line-height: 1.33;
    border-radius: 3px;
}

select.input-group-lg > .form-control, select.input-group-lg > .input-group-addon, select.input-group-lg > .input-group-btn > .btn {
    height: 45px;
    line-height: 45px;
}

select[multiple].input-group-lg > .form-control, select[multiple].input-group-lg > .input-group-addon, select[multiple].input-group-lg > .input-group-btn > .btn, textarea.input-group-lg > .form-control, textarea.input-group-lg > .input-group-addon, textarea.input-group-lg > .input-group-btn > .btn {
    height: auto;
}

.input-group-sm > .form-control, .input-group-sm > .input-group-addon, .input-group-sm > .input-group-btn > .btn {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 0;
}

select.input-group-sm > .form-control, select.input-group-sm > .input-group-addon, select.input-group-sm > .input-group-btn > .btn {
    height: 30px;
    line-height: 30px;
}

select[multiple].input-group-sm > .form-control, select[multiple].input-group-sm > .input-group-addon, select[multiple].input-group-sm > .input-group-btn > .btn, textarea.input-group-sm > .form-control, textarea.input-group-sm > .input-group-addon, textarea.input-group-sm > .input-group-btn > .btn {
    height: auto;
}

.input-group .form-control, .input-group-addon, .input-group-btn {
    display: table-cell;
}

    .input-group .form-control:not(:first-child):not(:last-child), .input-group-addon:not(:first-child):not(:last-child), .input-group-btn:not(:first-child):not(:last-child) {
        border-radius: 0;
    }

.input-group-addon, .input-group-btn {
    width: 1%;
    white-space: nowrap;
    vertical-align: middle;
}

.input-group-addon {
    min-width: 40px;
    padding: 9px 12px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    color: #707ac0;
    text-align: center;
    background-color: #fafafa;
    border: 1px solid #ddd;
    border-radius: 0;
}

    .input-group-addon.input-sm {
        padding: 5px 10px;
        font-size: 12px;
        border-radius: 0;
    }

    .input-group-addon.input-lg {
        padding: 10px 16px;
        font-size: 17px;
        border-radius: 3px;
    }

    .input-group-addon input[type=checkbox], .input-group-addon input[type=radio] {
        margin-top: 0;
    }

    .input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group > .btn, .input-group-btn:first-child > .dropdown-toggle, .input-group-btn:last-child > .btn-group:not(:last-child) > .btn, .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
        border-bottom-right-radius: 0;
        border-top-right-radius: 0;
    }

    .input-group-addon:first-child {
        border-right: 0;
    }

    .input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:first-child > .btn-group:not(:first-child) > .btn, .input-group-btn:first-child > .btn:not(:first-child), .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group > .btn, .input-group-btn:last-child > .dropdown-toggle {
        border-bottom-left-radius: 0;
        border-top-left-radius: 0;
    }

    .input-group-addon:last-child {
        border-left: 0;
    }

.input-group-btn {
    position: relative;
    font-size: 0;
    white-space: nowrap;
}

    .input-group-btn > .btn {
        position: relative;
    }

        .input-group-btn > .btn + .btn {
            margin-left: -1px;
        }

        .input-group-btn > .btn:active, .input-group-btn > .btn:focus, .input-group-btn > .btn:hover {
            z-index: 2;
        }

    .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group {
        margin-right: -1px;
    }

    .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group {
        margin-left: -1px;
    }

.nav {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}

    .nav > li {
        position: relative;
        display: block;
    }

        .nav > li > a {
            position: relative;
            display: block;
            padding: 10px 15px;
        }

            .nav > li > a:focus, .nav > li > a:hover {
                text-decoration: none;
                background-color: #eee;
            }

        .nav > li.disabled > a {
            color: #777;
        }

            .nav > li.disabled > a:focus, .nav > li.disabled > a:hover {
                color: #777;
                text-decoration: none;
                background-color: transparent;
                cursor: not-allowed;
            }

    .nav .open > a, .nav .open > a:focus, .nav .open > a:hover {
        background-color: #eee;
        border-color: #CCC;
    }

    .nav .nav-divider {
        height: 1px;
        margin: 8.5px 0;
        overflow: hidden;
        background-color: #e5e5e5;
    }

    .nav > li > a > img {
        max-width: none;
    }

.nav-tabs {
    border-bottom: 1px solid #ddd;
}

    .nav-tabs > li {
        float: left;
        margin-bottom: -1px;
    }

        .nav-tabs > li > a {
            margin-right: 2px;
            line-height: 1.49;
            border: 1px solid transparent;
            border-radius: 1px 1px 0 0;
        }

            .nav-tabs > li > a:hover {
                border-color: #eee #eee #ddd;
            }

        .nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover {
            color: #555;
            background-color: transparent;
            border: 1px solid #ddd;
            border-bottom-color: transparent;
            cursor: default;
        }

    .nav-tabs.nav-justified {
        width: 100%;
        border-bottom: 0;
    }

        .nav-tabs.nav-justified > li {
            float: none;
        }

            .nav-tabs.nav-justified > li > a {
                text-align: center;
                margin-bottom: 5px;
            }

        .nav-tabs.nav-justified > .dropdown .dropdown-menu {
            top: auto;
            left: auto;
        }

@media (min-width:768px) {
    .nav-tabs.nav-justified > li {
        display: table-cell;
        width: 1%
    }

        .nav-tabs.nav-justified > li > a {
            margin-bottom: 0;
        }
}

.nav-tabs.nav-justified > li > a {
    margin-right: 0;
    border-radius: 1px;
}

.nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:focus, .nav-tabs.nav-justified > .active > a:hover {
    border: 1px solid #ddd;
}

@media (min-width:768px) {
    .nav-tabs.nav-justified > li > a {
        border-bottom: 1px solid #ddd;
        border-radius: 1px 1px 0 0;
    }

    .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:focus, .nav-tabs.nav-justified > .active > a:hover {
        border-bottom-color: #fff;
    }
}

.nav-pills.nav-pills-sm > li > a {
    font-size: 12px;
    padding: 4px 8px;
}

.nav-pills.nav-pills-lg > li > a {
    font-size: 14px;
    padding: 12px 18px;
}

.nav-pills > li {
    float: left;
}

    .nav-pills > li > a {
        color: #888;
        padding: 8px 14px;
        border-radius: 1px;
    }

    .nav-pills > li + li {
        margin-left: 7px;
    }

    .nav-pills > li.active > a, .nav-pills > li.active > a:focus, .nav-pills > li.active > a:hover {
        color: #FFF;
        background-color: #707ac0;
    }

.nav-stacked > li {
    float: none;
}

    .nav-stacked > li + li {
        margin-top: 2px;
        margin-left: 0;
    }

.page-heading {
    position: relative;
    padding: 30px 40px;
    margin: -25px -20px 25px;
    border-bottom: 1px solid #d9d9d9;
    background-color: #f2f2f2;
}

.page-tabs {
    margin: -25px -20px 30px;
    padding: 15px 25px 0;
    border-bottom: 1px solid #ddd;
    background: #e9e9e9;
}

    .page-tabs .nav-tabs {
        border-bottom: 0;
    }

        .page-tabs .nav-tabs > li > a {
            color: #AAA;
            padding: 10px 20px;
        }

        .page-tabs .nav-tabs > li:focus > a, .page-tabs .nav-tabs > li:hover > a {
            border-color: transparent;
        }

        .page-tabs .nav-tabs > li.active > a, .page-tabs .nav-tabs > li.active > a:focus, .page-tabs .nav-tabs > li.active > a:hover {
            color: #666;
            font-weight: 600;
            background-color: #eee;
            border-bottom-color: transparent;
        }

@media (max-width:800px) {
    .page-tabs {
        padding: 25px 20px 0;
    }

        .page-tabs .nav-tabs li {
            float: none;
            margin-bottom: 5px;
        }

            .page-tabs .nav-tabs li.active:last-child, .page-tabs .nav-tabs li:last-child {
                margin-bottom: 10px;
            }

        .page-tabs .nav-tabs > li > a:focus, .page-tabs .nav-tabs > li > a:hover {
            border: 1px solid #DDD;
        }

        .page-tabs .nav-tabs > li.active > a, .page-tabs .nav-tabs > li.active > a:focus, .page-tabs .nav-tabs > li.active > a:hover {
            border-bottom-color: #ddd;
        }
}

.nav-justified {
    width: 100%
}

    .nav-justified > li {
        float: none;
    }

        .nav-justified > li > a {
            text-align: center;
            margin-bottom: 5px;
        }

    .nav-justified > .dropdown .dropdown-menu {
        top: auto;
        left: auto;
    }

@media (min-width:768px) {
    .nav-justified > li {
        display: table-cell;
        width: 1%
    }

        .nav-justified > li > a {
            margin-bottom: 0;
        }
}

.nav-tabs-justified {
    border-bottom: 0;
}

    .nav-tabs-justified > li > a {
        margin-right: 0;
        border-radius: 1px;
    }

    .nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:focus, .nav-tabs-justified > .active > a:hover {
        border: 1px solid #ddd;
    }

@media (min-width:768px) {
    .nav-tabs-justified > li > a {
        border-bottom: 1px solid #ddd;
        border-radius: 1px 1px 0 0;
    }

    .nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:focus, .nav-tabs-justified > .active > a:hover {
        border-bottom-color: #fff;
    }
}

.tab-content > .tab-pane {
    display: none;
}

.tab-content > .active {
    display: block;
}

.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.nav-list {
    margin-bottom: 20px;
}

    .nav-list li {
        display: inline-block;
    }

        .nav-list li.active a {
            color: rgba(255, 255, 255, .7);
        }

        .nav-list li a {
            color: #fff;
            font-weight: 600;
            -webkit-transition: color .2s ease;
            transition: color .2s ease;
        }

            .nav-list li a:focus, .nav-list li a:hover {
                color: rgba(255, 255, 255, .7);
                background-color: transparent;
            }

    .nav-list.nav-list-sm li a {
        padding: 10px 8px;
    }

.navbar {
    position: relative;
    min-height: 50px;
    margin-bottom: 19px;
}

@media (min-width:480px) {
    .navbar {
        border-radius: 1px;
    }
}

@media (min-width:480px) {
    .navbar-header {
        float: left;
    }
}

.navbar-collapse {
    overflow-x: visible;
    padding-right: 11px;
    padding-left: 11px;
    border-top: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
    -webkit-overflow-scrolling: touch;
}

    .navbar-collapse.in {
        overflow-y: auto;
    }

@media (min-width:480px) {
    .navbar-collapse {
        width: auto;
        border-top: 0;
        box-shadow: none;
    }

        .navbar-collapse.collapse {
            display: block !important;
            height: auto !important;
            padding-bottom: 0;
            overflow: visible !important;
        }

        .navbar-collapse.in {
            overflow-y: visible;
        }

    .navbar-fixed-bottom .navbar-collapse, .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse {
        padding-left: 0;
        padding-right: 0;
    }
}

.navbar-fixed-bottom .navbar-collapse, .navbar-fixed-top .navbar-collapse {
    max-height: 340px;
}

@media (max-width:480px) and (orientation:landscape) {
    .navbar-fixed-bottom .navbar-collapse, .navbar-fixed-top .navbar-collapse {
        max-height: 200px;
    }
}

.container-fluid > .navbar-collapse, .container-fluid > .navbar-header, .container > .navbar-collapse, .container > .navbar-header {
    margin-right: -11px;
    margin-left: -11px;
}

@media (min-width:480px) {
    .container-fluid > .navbar-collapse, .container-fluid > .navbar-header, .container > .navbar-collapse, .container > .navbar-header {
        margin-right: 0;
        margin-left: 0;
    }
}

.navbar-static-top {
    z-index: 1000;
    border-width: 0 0 1px;
}

@media (min-width:480px) {
    .navbar-static-top {
        border-radius: 0;
    }
}

.navbar-fixed-bottom, .navbar-fixed-top {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

@media (min-width:480px) {
    .navbar-fixed-bottom, .navbar-fixed-top {
        border-radius: 0;
    }
}

.navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px;
}

.navbar-fixed-bottom {
    bottom: 0;
    margin-bottom: 0;
    border-width: 1px 0 0;
}

.navbar-brand {
    float: left;
    padding: 15.5px 11px;
    font-size: 17px;
    line-height: 19px;
    height: 50px;
}

    .navbar-brand:focus, .navbar-brand:hover {
        text-decoration: none;
    }

@media (min-width:480px) {
    .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
        margin-left: -11px;
    }
}

.navbar-branding a.navbar-brand {
    width: 229px;
    background: url(../img/logos/store4.png) center center no-repeat;
    padding: 0 0 0 18px;
    color: #fff;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: .5px;
}

body.sb-l-m .navbar-branding a.navbar-brand {
    width: 60px;
    background: url(../img/logos/store4-s.png) center center no-repeat;
}

.navbar-toggle {
    position: relative;
    float: right;
    margin-right: 11px;
    padding: 9px 10px;
    margin-top: 8px;
    margin-bottom: 8px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 1px;
}

    .navbar-toggle:focus {
        outline: 0;
    }

    .navbar-toggle .icon-bar {
        display: block;
        width: 22px;
        height: 2px;
        border-radius: 1px;
    }

        .navbar-toggle .icon-bar + .icon-bar {
            margin-top: 4px;
        }

@media (min-width:480px) {
    .navbar-toggle {
        display: none;
    }
}

.navbar-nav {
    margin: 7.75px -11px;
}

    .navbar-nav > li > a {
        padding-top: 10px;
        padding-bottom: 10px;
        line-height: 19px;
    }

@media (max-width:479px) {
    .navbar-nav .open .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        box-shadow: none;
    }

        .navbar-nav .open .dropdown-menu .dropdown-header, .navbar-nav .open .dropdown-menu > li > a {
            padding: 5px 15px 5px 25px;
        }

        .navbar-nav .open .dropdown-menu > li > a {
            line-height: 19px;
        }

            .navbar-nav .open .dropdown-menu > li > a:focus, .navbar-nav .open .dropdown-menu > li > a:hover {
                background-image: none;
            }
}

@media (min-width:480px) {
    .navbar-nav {
        float: left;
        margin: 0;
    }

        .navbar-nav > li {
            float: left;
        }

            .navbar-nav > li > a {
                padding-top: 15.5px;
                padding-bottom: 15.5px;
            }

        .navbar-nav.navbar-right:last-child {
            margin-right: -11px;
        }
}

@media (min-width:480px) {
    .navbar-left {
        float: left;
        float: left !important;
    }

    .navbar-right {
        float: right;
        float: right !important;
    }
}

.navbar-form {
    margin: 5.5px -11px;
    padding: 10px 11px;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
}

@media (min-width:768px) {
    .navbar-form .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle;
    }

    .navbar-form .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle;
    }

    .navbar-form .input-group {
        display: inline-table;
        vertical-align: middle;
    }

        .navbar-form .input-group .form-control, .navbar-form .input-group .input-group-addon, .navbar-form .input-group .input-group-btn {
            width: auto;
        }

        .navbar-form .input-group > .form-control {
            width: 100%
        }

    .navbar-form .control-label {
        margin-bottom: 0;
        vertical-align: middle;
    }

    .navbar-form .checkbox, .navbar-form .radio {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle;
    }

        .navbar-form .checkbox label, .navbar-form .radio label {
            padding-left: 0;
        }

        .navbar-form .checkbox input[type=checkbox], .navbar-form .radio input[type=radio] {
            position: relative;
            margin-left: 0;
        }

    .navbar-form .has-feedback .form-control-feedback {
        top: 0;
    }
}

@media (max-width:479px) {
    .navbar-form .form-group {
        margin-bottom: 5px;
    }
}

@media (min-width:480px) {
    .navbar-form {
        width: auto;
        border: 0;
        margin-left: 0;
        margin-right: 0;
        padding-top: 0;
        padding-bottom: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

        .navbar-form.navbar-right:last-child {
            margin-right: -11px;
        }
}

.navbar-nav > li > .dropdown-menu {
    margin-top: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.navbar-btn {
    margin-top: 15px;
    margin-bottom: 15px;
}

    .navbar-btn.btn-sm {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .navbar-btn.btn-xs {
        margin-top: 14px;
        margin-bottom: 14px;
    }

.navbar-text {
    margin-top: 15.5px;
    margin-bottom: 15.5px;
}

@media (min-width:480px) {
    .navbar-text {
        float: left;
        margin-left: 11px;
        margin-right: 11px;
    }

        .navbar-text.navbar-right:last-child {
            margin-right: 0;
        }
}

.navbar-default {
    background-color: #f8f8f8;
    border-color: #e7e7e7;
}

    .navbar-default .navbar-brand {
        color: #777;
    }

        .navbar-default .navbar-brand:focus, .navbar-default .navbar-brand:hover {
            color: #5e5e5e;
            background-color: transparent;
        }

    .navbar-default .navbar-nav > li > a, .navbar-default .navbar-text {
        color: #777;
    }

        .navbar-default .navbar-nav > li > a:focus, .navbar-default .navbar-nav > li > a:hover {
            color: #333;
            background-color: transparent;
        }

    .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:focus, .navbar-default .navbar-nav > .active > a:hover {
        color: #555;
        background-color: #e7e7e7;
    }

    .navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:focus, .navbar-default .navbar-nav > .disabled > a:hover {
        color: #ccc;
        background-color: transparent;
    }

    .navbar-default .navbar-toggle {
        border-color: #ddd;
    }

        .navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
            background-color: #ddd;
        }

        .navbar-default .navbar-toggle .icon-bar {
            background-color: #888;
        }

    .navbar-default .navbar-collapse, .navbar-default .navbar-form {
        border-color: #e7e7e7;
    }

    .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:focus, .navbar-default .navbar-nav > .open > a:hover {
        background-color: #e7e7e7;
        color: #555;
    }

@media (max-width:479px) {
    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
        color: #777;
    }

        .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus, .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {
            color: #333;
            background-color: transparent;
        }

    .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {
        color: #555;
        background-color: #e7e7e7;
    }

    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {
        color: #ccc;
        background-color: transparent;
    }
}

.navbar-default .navbar-link {
    color: #777;
}

    .navbar-default .navbar-link:hover {
        color: #333;
    }

.navbar-default .btn-link {
    color: #777;
}

    .navbar-default .btn-link:focus, .navbar-default .btn-link:hover {
        color: #333;
    }

    .navbar-default .btn-link[disabled]:focus, .navbar-default .btn-link[disabled]:hover, fieldset[disabled] .navbar-default .btn-link:focus, fieldset[disabled] .navbar-default .btn-link:hover {
        color: #ccc;
    }

.navbar-inverse {
    background-color: #222;
    border-color: #080808;
}

    .navbar-inverse .navbar-brand {
        color: #777;
    }

        .navbar-inverse .navbar-brand:focus, .navbar-inverse .navbar-brand:hover {
            color: #fff;
            background-color: transparent;
        }

    .navbar-inverse .navbar-nav > li > a, .navbar-inverse .navbar-text {
        color: #777;
    }

        .navbar-inverse .navbar-nav > li > a:focus, .navbar-inverse .navbar-nav > li > a:hover {
            color: #fff;
            background-color: transparent;
        }

    .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:focus, .navbar-inverse .navbar-nav > .active > a:hover {
        color: #fff;
        background-color: #080808;
    }

    .navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:focus, .navbar-inverse .navbar-nav > .disabled > a:hover {
        color: #444;
        background-color: transparent;
    }

    .navbar-inverse .navbar-toggle {
        border-color: #333;
    }

        .navbar-inverse .navbar-toggle:focus, .navbar-inverse .navbar-toggle:hover {
            background-color: #333;
        }

        .navbar-inverse .navbar-toggle .icon-bar {
            background-color: #fff;
        }

    .navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form {
        border-color: #101010;
    }

    .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:focus, .navbar-inverse .navbar-nav > .open > a:hover {
        background-color: #080808;
        color: #fff;
    }

@media (max-width:479px) {
    .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
        border-color: #080808;
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
        background-color: #080808;
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
        color: #777;
    }

        .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {
            color: #fff;
            background-color: transparent;
        }

    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {
        color: #fff;
        background-color: #080808;
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {
        color: #444;
        background-color: transparent;
    }
}

.navbar-inverse .navbar-link {
    color: #777;
}

    .navbar-inverse .navbar-link:hover {
        color: #fff;
    }

.navbar-inverse .btn-link {
    color: #777;
}

    .navbar-inverse .btn-link:focus, .navbar-inverse .btn-link:hover {
        color: #fff;
    }

    .navbar-inverse .btn-link[disabled]:focus, .navbar-inverse .btn-link[disabled]:hover, fieldset[disabled] .navbar-inverse .btn-link:focus, fieldset[disabled] .navbar-inverse .btn-link:hover {
        color: #444;
    }

.breadcrumb {
    list-style: none;
}

    .breadcrumb > li {
        display: inline-block;
    }

        .breadcrumb > li + li:before {
            content: "/\00a0";
            padding: 0 5px;
            color: #ccc;
        }

    .breadcrumb > .active {
        color: #777;
    }

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 19px 0;
    border-radius: 1px;
}

    .pagination > li {
        padding: 0 2px;
        float: left;
    }

        .pagination > li:hover {
            cursor: pointer;
        }

        .pagination > li > a, .pagination > li > span {
            position: relative;
            float: left;
            padding: 5px 12px;
            line-height: 1.49;
            text-decoration: none;
            color: #707ac0;
            margin-left: -1px;
            height: 32px;
        }

        .pagination > li:first-child > a, .pagination > li:first-child > span {
            margin-left: 0;
            border-bottom-left-radius: 1px;
            border-top-left-radius: 1px;
        }

        .pagination > li:last-child > a, .pagination > li:last-child > span {
            border-bottom-right-radius: 1px;
            border-top-right-radius: 1px;
        }

        .pagination > li > a:focus, .pagination > li > a:hover, .pagination > li > span:focus, .pagination > li > span:hover {
            cursor: pointer;
        }

    .pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
        z-index: 2;
        color: #fff;
        background-color: #707ac0;
        border-color: #707ac0;
        cursor: default;
    }

    .pagination > .disabled > a, .pagination > .disabled > a:focus, .pagination > .disabled > a:hover, .pagination > .disabled > span, .pagination > .disabled > span:focus, .pagination > .disabled > span:hover {
        color: #777;
        background-color: #fff;
        border-color: #ddd;
        cursor: not-allowed;
    }

.pagination-lg > li > a, .pagination-lg > li > span {
    padding: 10px 16px;
    font-size: 17px;
}

.pagination-lg > li:first-child > a, .pagination-lg > li:first-child > span {
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px;
}

.pagination-lg > li:last-child > a, .pagination-lg > li:last-child > span {
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
}

.pagination-sm > li > a, .pagination-sm > li > span {
    padding: 5px 10px;
    font-size: 12px;
}

.pagination-sm > li:first-child > a, .pagination-sm > li:first-child > span {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.pagination-sm > li:last-child > a, .pagination-sm > li:last-child > span {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

.items-per-page {
    float: right;
    display: inline-block;
    margin-left: 5px;
}

    .items-per-page span.caret {
        padding: 0;
        margin-right: 5px;
    }

    .items-per-page .select-wrapper {
        margin: 0;
        position: relative;
    }

        .items-per-page .select-wrapper input.select-dropdown {
            border: 1px solid #ddd;
            padding: 5px;
            width: 50px;
        }

.pager {
    padding-left: 0;
    margin: 19px 0;
    list-style: none;
    text-align: center;
}

    .pager li {
        display: inline;
    }

        .pager li > a, .pager li > span {
            display: inline-block;
            padding: 5px 14px;
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 15px;
        }

            .pager li > a:focus, .pager li > a:hover {
                text-decoration: none;
                background-color: #eee;
            }

    .pager .next > a, .pager .next > span {
        float: right;
    }

    .pager .previous > a, .pager .previous > span {
        float: left;
    }

    .pager .disabled > a, .pager .disabled > a:focus, .pager .disabled > a:hover, .pager .disabled > span {
        color: #777;
        background-color: #fff;
        cursor: not-allowed;
    }

.label {
    display: inline;
    padding: .3em .7em .4em;
    font-size: 84%;
    font-weight: 600;
    line-height: 24px;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
}

    .label.label-xs {
        padding: 0 .35em .1em;
        font-size: 75%
    }

    .label.label-sm {
        padding: .1em .65em .2em;
        font-size: 75%
    }

    .label.label-lg {
        padding: .4em .9em .5em;
        font-size: 95%
    }

    .label.label-rounded {
        padding: .2em .85em .3em;
        border-radius: 1em;
    }

        .label.label-rounded.label-xs {
            padding: 0 .35em .1em;
        }

        .label.label-rounded.label-sm {
            padding: .1em .65em .2em;
        }

        .label.label-rounded.label-lg {
            padding: .4em .9em .5em;
        }

a.label:focus, a.label:hover {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.label:empty {
    display: none;
}

.btn .label {
    position: relative;
    top: -1px;
}

.btn .badge {
    position: relative;
    top: -1px;
}

.btn-xs .badge {
    top: 0;
    padding: 1px 5px;
}

a.badge:focus, a.badge:hover {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.nav-pills > .active > a > .badge, a.list-group-item.active > .badge {
    color: #707ac0;
    background-color: #fff;
}

.nav-pills > li > a > .badge {
    margin-left: 3px;
}

.jumbotron {
    padding: 30px;
    margin-bottom: 30px;
    color: inherit;
    background-color: #eee;
}

    .jumbotron .h1, .jumbotron h1 {
        color: inherit;
    }

    .jumbotron p {
        margin-bottom: 15px;
        font-size: 20px;
        font-weight: 200;
    }

    .jumbotron > hr {
        border-top-color: #d5d5d5;
    }

.container .jumbotron {
    border-radius: 3px;
}

.jumbotron .container {
    max-width: 100%
}

@media screen and (min-width:768px) {
    .jumbotron {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .container .jumbotron {
        padding-left: 60px;
        padding-right: 60px;
    }

    .jumbotron .h1, .jumbotron h1 {
        font-size: 58.5px;
    }
}

.thumbnail {
    display: block;
    padding: 4px;
    margin-bottom: 19px;
    line-height: 1.49;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 1px;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

    .thumbnail a > img, .thumbnail > img {
        margin-left: auto;
        margin-right: auto;
    }

a.thumbnail.active, a.thumbnail:focus, a.thumbnail:hover {
    border-color: #707ac0;
}

.thumbnail .caption {
    padding: 9px;
    color: #666;
}

.alert {
    color: #fff;
    font-size: 14px;
    padding: 15px;
    margin-bottom: 19px;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 1px;
    position: relative;
}

    .alert .close, .alert .close:hover {
        color: #666;
    }

    .alert hr {
        border-top-color: rgba(0, 0, 0, .1);
    }

    .alert h4 {
        margin-top: 0;
        color: inherit;
    }

    .alert .alert-link {
        color: #fff;
        font-weight: 700;
    }

    .alert > p, .alert > ul {
        margin-bottom: 0;
    }

        .alert > p + p {
            margin-top: 5px;
        }

    .alert .alert-sm, .alert.alert-micro {
        font-size: 13px;
        padding: 9px 35px 9px 9px;
        border-radius: 0;
    }

    .alert.alert-sm {
        padding: 12px 35px 12px 12px;
    }

    .alert.alert-border {
        border: 1px solid transparent;
    }

    .alert.alert-border-right {
        border-right-width: 6px;
    }

    .alert.alert-border-top {
        border-top-width: 3px;
    }

    .alert.alert-border-bottom {
        border-bottom-width: 3px;
    }

    .alert.alert-border-left {
        padding-left: 15px;
        border-left-width: 6px;
    }

.alert-dismissable, .alert-dismissible {
    padding-right: 35px;
}

    .alert-dismissable .close, .alert-dismissible .close {
        position: relative;
        right: -21px;
        color: #FFF;
        opacity: .3;
    }

        .alert-dismissable .close:hover, .alert-dismissible .close:hover {
            color: #FFF;
            opacity: 1;
        }

@-webkit-keyframes progress-bar-stripes {
    from {
        background-position: 40px 0;
    }

    to {
        background-position: 0 0;
    }
}

@keyframes progress-bar-stripes {
    from {
        background-position: 40px 0;
    }

    to {
        background-position: 0 0;
    }
}

.progress {
    overflow: hidden;
    background-color: #ececec;
    box-shadow: none;
}

.progress-bar {
    float: left;
    width: 0;
    height: 100%;
    font-size: 12px;
    font-weight: 600;
    line-height: 19px;
    color: #fff;
    text-align: center;
    background-color: #999;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    -webkit-transition: width .6s ease;
    -o-transition: width .6s ease;
    transition: width .6s ease;
}

.progress-bar-striped, .progress-striped .progress-bar {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-size: 40px 40px;
}

.progress-bar.active, .progress.active .progress-bar {
    -webkit-animation: progress-bar-stripes 2s linear infinite;
    -o-animation: progress-bar-stripes 2s linear infinite;
    animation: progress-bar-stripes 2s linear infinite;
}

.progress-bar[aria-valuenow="1"], .progress-bar[aria-valuenow="2"] {
    min-width: 30px;
}

.progress-bar[aria-valuenow="0"] {
    color: #777;
    min-width: 30px;
    background-color: transparent;
    background-image: none;
    box-shadow: none;
}

.progress {
    height: 18px;
    border-radius: 2px;
}

.progress.progress-bar-xxs {
    height: 3px;
    border-radius: 2px;
}

    .progress.progress-bar-xxs .progress-bar {
        line-height: 3px;
    }

.progress.progress-bar-xs {
    height: 6px;
    border-radius: 2px;
}

    .progress.progress-bar-xs .progress-bar {
        line-height: 6px;
    }

.progress.progress-bar-sm {
    height: 10px;
    border-radius: 2px;
}

    .progress.progress-bar-sm .progress-bar {
        line-height: 10px;
    }

.progress.progress-bar-lg {
    height: 20px;
}

    .progress.progress-bar-lg .progress-bar {
        line-height: 20px;
    }

.progress.progress-bar-xl {
    height: 24px;
}

    .progress.progress-bar-xl .progress-bar {
        line-height: 24px;
    }

.progress.right .progress-bar {
    float: right;
}

.progress.vertical {
    height: 100%;
    min-height: 200px;
    width: 22px;
    position: relative;
}

    .progress.vertical .progress-bar {
        width: 100%;
        position: absolute;
        font-size: 11px;
        line-height: 20px;
    }

    .progress.vertical.bottom .progress-bar {
        bottom: 0;
    }

.progress {
    height: 18px;
    border-radius: 2px;
}

    .progress.vertical.progress-bar-sm {
        width: 16px;
    }

    .progress.vertical.progress-bar-lg {
        width: 30px;
    }

    .progress.vertical.progress-bar-xl {
        width: 40px;
    }

.media {
    color: #999;
    font-weight: 600;
    margin-top: 15px;
}

    .media:first-child {
        margin-top: 0;
    }

    .media-right, .media > .pull-right {
        padding-left: 10px;
    }

    .media-left, .media > .pull-left {
        padding-right: 10px;
    }

.media-body, .media-left, .media-right {
    display: table-cell;
    vertical-align: top;
}

.media-middle {
    vertical-align: middle;
}

.media-bottom {
    vertical-align: bottom;
}

.media-heading {
    color: #555;
    margin-top: 0;
    margin-bottom: 5px;
}

.media-list {
    padding-left: 0;
    list-style: none;
}

.list-group {
    margin-bottom: 20px;
    padding-left: 0;
}

.list-group-item {
    position: relative;
    display: block;
    padding: 10px 15px;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid #e7e7e7;
}

    .list-group-item:first-child {
        border-top-right-radius: 2px;
        border-top-left-radius: 2px;
    }

    .list-group-item:last-child {
        margin-bottom: 0;
        border-bottom-right-radius: 2px;
        border-bottom-left-radius: 2px;
    }

    .list-group-item > .badge {
        float: right;
    }

        .list-group-item > .badge + .badge {
            margin-right: 5px;
        }

a.list-group-item {
    color: #707ac0;
}

    a.list-group-item .list-group-item-heading {
        color: #333;
    }

    a.list-group-item:focus, a.list-group-item:hover {
        text-decoration: none;
        color: #707ac0;
        background-color: #f5f5f5;
    }

.list-group-item.disabled, .list-group-item.disabled:focus, .list-group-item.disabled:hover {
    background-color: #eee;
    color: #777;
}

    .list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading {
        color: inherit;
    }

    .list-group-item.disabled .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text {
        color: #777;
    }

.list-group-item.active, .list-group-item.active:focus, .list-group-item.active:hover {
    z-index: 2;
    color: #fff;
    background-color: #707ac0;
    border-color: #707ac0;
}

    .list-group-item.active .list-group-item-heading, .list-group-item.active .list-group-item-heading > .small, .list-group-item.active .list-group-item-heading > small, .list-group-item.active:focus .list-group-item-heading, .list-group-item.active:focus .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading > small, .list-group-item.active:hover .list-group-item-heading, .list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading > small {
        color: inherit;
    }

    .list-group-item.active .list-group-item-text, .list-group-item.active:focus .list-group-item-text, .list-group-item.active:hover .list-group-item-text {
        color: #fefefe;
    }

.list-group.list-group-links .list-group-header {
    list-style: none;
    font-size: 15px;
    font-weight: 600;
    padding-left: 7px;
    margin-bottom: 5px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e5e5;
}

.list-group.list-group-links .list-group-item {
    color: #AAA;
    font-weight: 600;
    background: transparent;
    border: 0;
    padding: 8px 9px;
}

    .list-group.list-group-links .list-group-item .label {
        float: right;
        line-height: inherit;
        padding: .1em .6em .2em;
    }

    .list-group.list-group-links .list-group-item i.fa {
        padding-right: 5px;
    }

    .list-group.list-group-links .list-group-item .fa-circle {
        float: right;
        font-size: 14px;
    }

.list-group.list-group-links.list-group-spacing-sm > a {
    padding: 6px 9px;
}

.list-group.list-group-links.list-group-spacing-xs > a {
    padding: 4px 9px;
}

.list-group.list-group-links .list-group-divider {
    border-bottom: 1px dashed #DDD;
    padding-bottom: 6px;
    margin-bottom: 6px;
}

.list-group-item-heading {
    margin-top: 0;
    margin-bottom: 5px;
}

.list-group-item-text {
    margin-bottom: 0;
    line-height: 1.3;
}

.panel {
    position: relative;
    margin-bottom: 20px;
    border-radius: 2px;
}

    .panel.panel-transparent {
        background: 0 0;
        border: 0;
        margin: 0;
        padding: 0;
    }

    .panel.panel-border {
        border-style: solid;
        border-width: 0;
    }

        .panel.panel-border.top {
            border-top-width: 5px;
        }

        .panel.panel-border.right {
            border-right-width: 5px;
        }

        .panel.panel-border.bottom {
            border-bottom-width: 5px;
        }

        .panel.panel-border.left {
            border-left-width: 5px;
        }

        .panel.panel-border > .panel-heading {
            background-color: #fafafa;
            border-color: #e5e5e5;
            border-top: 1px solid transparent;
        }

            .panel.panel-border > .panel-heading > .panel-title {
                color: #666;
            }

        .panel.panel-border.panel-default {
            border-color: #DDD;
        }

            .panel.panel-border.panel-default > .panel-heading {
                border-top: 1px solid transparent;
            }

.panel-menu {
    background-color: #fafafa;
    padding: 12px;
    border: 1px solid #e5e5e5;
}

    .panel-menu.dark {
        background-color: #f8f8f8;
    }

.panel-body .panel-menu {
    border-left: 0;
    border-right: 0;
}

.panel-body + .panel-body, .panel-body + .panel-menu, .panel-heading + .panel-menu, .panel-menu + .panel-body {
    border-top: 0;
}

.panel-body {
    position: relative;
    padding: 15px;
}

    .panel-body + .panel-footer {
        border-top: 0;
    }

.panel-heading {
    position: relative;
    background: #fafafa;
    font-weight: 600;
    border-top-right-radius: 1px;
    border-top-left-radius: 1px;
}

    .panel-heading + .panel-body {
        border-top: 0;
    }

    .panel-heading > .dropdown .dropdown-toggle {
        color: inherit;
    }

    .panel-heading .widget-menu .btn-group {
        margin-top: -3px;
    }

    .panel-heading .widget-menu .form-control {
        margin-top: 6px;
        font-size: 11px;
        height: 27px;
        padding: 2px 10px;
        border-radius: 1px;
    }

        .panel-heading .widget-menu .form-control.input-sm {
            margin-top: 9px;
            height: 22px;
        }

    .panel-heading .widget-menu .progress {
        margin-top: 11px;
        margin-bottom: 0;
    }

    .panel-heading .widget-menu .progress-bar-lg {
        margin-top: 10px;
    }

    .panel-heading .widget-menu .progress-bar-sm {
        margin-top: 15px;
    }

    .panel-heading .widget-menu .progress-bar-xs {
        margin-top: 17px;
    }

.panel-icon {
    padding-left: 5px;
}

.panel-title {
    padding-left: 6px;
    margin-top: 0;
    margin-bottom: 0;
}

    .panel-title > .fa, .panel-title > .glyphicon, .panel-title > .glyphicons, .panel-title > .imoon {
        top: 2px;
        min-width: 22px;
        color: inherit;
        font-size: 14px;
    }

    .panel-title > a {
        color: inherit;
    }

.panel-footer {
    padding: 10px 15px;
    background-color: #fafafa;
    border: 1px solid #e5e5e5;
    border-bottom-right-radius: 1px;
    border-bottom-left-radius: 1px;
}

.panel > .list-group {
    margin-bottom: 0;
}

    .panel > .list-group .list-group-item {
        border-radius: 0;
    }

    .panel > .list-group:first-child .list-group-item:first-child {
        border-top-right-radius: 1px;
        border-top-left-radius: 1px;
    }

    .panel > .list-group:last-child .list-group-item:last-child {
        border-bottom-right-radius: 1px;
        border-bottom-left-radius: 1px;
    }

.list-group + .panel-footer, .panel-body + .list-group .list-group-item:first-child, .panel-heading + .list-group .list-group-item:first-child {
    border-top-width: 0;
}

.panel > .panel-collapse > .table, .panel > .table, .panel > .table-responsive > .table {
    margin-bottom: 0;
}

    .panel > .table-responsive:first-child > .table:first-child, .panel > .table:first-child {
        border-top-right-radius: 1px;
        border-top-left-radius: 1px;
    }

        .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, .panel > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table:first-child > thead:first-child > tr:first-child th:first-child {
            border-top-left-radius: 1px;
        }

        .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, .panel > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table:first-child > thead:first-child > tr:first-child th:last-child {
            border-top-right-radius: 1px;
        }

    .panel > .table-responsive:last-child > .table:last-child, .panel > .table:last-child {
        border-bottom-right-radius: 1px;
        border-bottom-left-radius: 1px;
    }

        .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child, .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
            border-bottom-left-radius: 1px;
        }

        .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child, .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
            border-bottom-right-radius: 1px;
        }

.panel > .panel-body + .table, .panel > .panel-body + .table-responsive {
    border-top: 1px solid #eee;
}

.panel > .table > tbody:first-child > tr:first-child td, .panel > .table > tbody:first-child > tr:first-child th {
    border-top: 0;
}

.panel > .table-bordered, .panel > .table-responsive > .table-bordered {
    border: 0;
}

    .panel > .table-bordered > tbody > tr > td:first-child, .panel > .table-bordered > tbody > tr > th:first-child, .panel > .table-bordered > tfoot > tr > td:first-child, .panel > .table-bordered > tfoot > tr > th:first-child, .panel > .table-bordered > thead > tr > td:first-child, .panel > .table-bordered > thead > tr > th:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, .panel > .table-responsive > .table-bordered > thead > tr > td:first-child, .panel > .table-responsive > .table-bordered > thead > tr > th:first-child {
        border-left: 0;
    }

    .panel > .table-bordered > tbody > tr > td:last-child, .panel > .table-bordered > tbody > tr > th:last-child, .panel > .table-bordered > tfoot > tr > td:last-child, .panel > .table-bordered > tfoot > tr > th:last-child, .panel > .table-bordered > thead > tr > td:last-child, .panel > .table-bordered > thead > tr > th:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, .panel > .table-responsive > .table-bordered > thead > tr > td:last-child, .panel > .table-responsive > .table-bordered > thead > tr > th:last-child {
        border-right: 0;
    }

    .panel > .table-bordered > tbody > tr:first-child > td, .panel > .table-bordered > tbody > tr:first-child > th, .panel > .table-bordered > thead > tr:first-child > td, .panel > .table-bordered > thead > tr:first-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th, .panel > .table-responsive > .table-bordered > thead > tr:first-child > td, .panel > .table-responsive > .table-bordered > thead > tr:first-child > th {
        border-bottom: 0;
    }

    .panel > .table-bordered > tbody > tr:last-child > td, .panel > .table-bordered > tbody > tr:last-child > th, .panel > .table-bordered > tfoot > tr:last-child > td, .panel > .table-bordered > tfoot > tr:last-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
        border-bottom: 0;
    }

.panel > .table-responsive {
    border: 0;
    margin-bottom: 0;
}

.panel-group {
    margin-bottom: 19px;
}

    .panel-group .panel-title {
        padding-left: 0;
    }

    .panel-group .panel-heading, .panel-group .panel-heading a {
        position: relative;
        display: block;
        width: 100%
    }

    .panel-group.accordion-lg .panel + .panel {
        margin-top: 12px;
    }

    .panel-group.accordion-lg .panel-heading {
        font-size: 14px;
        height: 54px;
        line-height: 52px;
    }

    .panel-group .accordion-icon {
        padding-left: 35px;
    }

        .panel-group .accordion-icon:after {
            position: absolute;
            content: "\f068";
            font-family: FontAwesome;
            font-size: 12px;
            font-style: normal;
            font-weight: 400;
            -webkit-font-smoothing: antialiased;
            color: #555;
            left: 10px;
            top: 0;
        }

        .panel-group .accordion-icon.collapsed:after {
            content: "\f067"
        }

        .panel-group .accordion-icon.icon-right {
            padding-left: 10px;
            padding-right: 30px;
        }

            .panel-group .accordion-icon.icon-right:after {
                left: auto;
                right: 5px;
            }

    .panel-group .panel {
        margin-bottom: 0;
        border-radius: 2px;
    }

        .panel-group .panel + .panel {
            margin-top: 5px;
        }

    .panel-group .panel-footer, .panel-group .panel-heading + .panel-collapse > .panel-body {
        border-top: 0;
    }

        .panel-group .panel-footer + .panel-collapse .panel-body {
            border-bottom: 1px solid #eee;
        }

.embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
}

    .embed-responsive .embed-responsive-item, .embed-responsive embed, .embed-responsive iframe, .embed-responsive object {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        height: 100%;
        width: 100%;
        border: 0;
    }

    .embed-responsive.embed-responsive-16by9 {
        padding-bottom: 56.25%
    }

    .embed-responsive.embed-responsive-4by3 {
        padding-bottom: 75%
    }

.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 1px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
}

    .well blockquote {
        border-color: #ddd;
        border-color: rgba(0, 0, 0, .15);
    }

.well-lg {
    padding: 24px;
    border-radius: 3px;
}

.well-sm {
    padding: 9px;
    border-radius: 0;
}

.well.well-xs {
    padding: 6px;
    border-radius: 0;
}

.well.well-clean {
    border-radius: 0;
    border-color: #DDD;
    box-shadow: none;
}

.close {
    float: right;
    font-size: 19.5px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .2;
    filter: alpha(opacity=20);
}

    .close:focus, .close:hover {
        color: #000;
        text-decoration: none;
        cursor: pointer;
        opacity: .5;
        filter: alpha(opacity=50);
    }

button.close {
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
    -webkit-appearance: none;
}

.bg-tp {
    background-color: rgba(0, 0, 0, .5) !important;
}

.bg-gradient {
    border-color: rgba(0, 0, 0, .07) rgba(0, 0, 0, .1) rgba(0, 0, 0, .18);
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2);
    background-repeat: repeat-x;
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, .3) 1%, rgba(255, 255, 255, .15) 100%);
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, .3) 1%, rgba(255, 255, 255, .15) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80ffffff', endColorstr='#00ffffff', GradientType=0);
}

.bg-background {
    z-index: 0;
    color: #FFF;
    position: relative;
}

    .bg-background.bg-topbar {
        background: url(../img/patterns/topbar-bg.jpg) center left no-repeat;
    }

    .bg-background.bg-topbar2 {
        background: url(../img/patterns/topbar-bg2.jpg) center left no-repeat;
    }

    .bg-background.bg-topbar3 {
        background: url(../img/patterns/topbar-bg3.jpg) center left no-repeat;
    }

    .bg-background.bg-psuedo-tp-dark:before, .bg-background.bg-psuedo-tp-light:before, .bg-background.bg-psuedo-tp:before {
        z-index: -1;
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        background: rgba(0, 0, 0, .4);
    }

    .bg-background.bg-psuedo-tp-dark:before {
        background: rgba(0, 0, 0, .6);
    }

    .bg-background.bg-psuedo-tp-light:before {
        background: rgba(0, 0, 0, .2);
    }

.tab-block {
    position: relative;
}

    .tab-block .tab-content {
        overflow: auto;
        position: relative;
        z-index: 10;
        min-height: 125px;
        padding: 16px 12px;
        border: 1px solid #e5e5e5;
        background-color: #FFF;
    }

    .tab-block .nav-tabs {
        position: relative;
        border: 0;
    }

        .tab-block .nav-tabs > li {
            float: left;
            margin-bottom: -1px;
        }

            .tab-block .nav-tabs > li > a {
                position: relative;
                z-index: 9;
                padding: 9px 16px;
                margin-right: -1px;
                font-weight: 600;
                color: #777;
                border-color: #e5e5e5;
                border-radius: 0;
                background: #fafafa;
            }

            .tab-block .nav-tabs > li:first-child > a {
                margin-left: 0;
            }

            .tab-block .nav-tabs > li > a:hover {
                background-color: #eee;
            }

            .tab-block .nav-tabs > li.active > a, .tab-block .nav-tabs > li.active > a:focus, .tab-block .nav-tabs > li.active > a:hover {
                cursor: default;
                position: relative;
                z-index: 12;
                color: #555;
                background: #FFF;
                border-color: #e5e5e5;
                border-bottom: 1px solid #FFF;
            }

.tabs-left {
    float: left;
}

    .tabs-left > li {
        float: none;
        margin: 0 -1px -1px 0;
    }

        .tabs-left > li > a {
            padding: 12px 16px;
            color: #777;
            font-weight: 600;
            border: 1px solid transparent;
            border-color: #DDD;
            background: #fafafa;
        }

.tab-block .tabs-left > li.active > a, .tab-block .tabs-left > li.active > a:focus, .tab-block .tabs-left > li.active > a:hover {
    color: #555;
    border-color: #DDD #FFF #DDD #DDD;
    cursor: default;
    position: relative;
    z-index: 12;
    background: #FFF;
}

.tabs-right {
    float: right;
}

    .tabs-right > li {
        float: none;
        margin: 0 0 -1px -1px;
    }

        .tabs-right > li > a {
            padding: 12px 16px;
            color: #777;
            font-weight: 600;
            border: 1px solid transparent;
            border-color: #DDD;
            background: #fafafa;
        }

.tab-block .tabs-right > li.active > a, .tab-block .tabs-right > li.active > a:focus, .tab-block .tabs-right > li.active > a:hover {
    color: #555;
    border-color: #DDD #DDD #DDD #FFF;
    cursor: default;
    position: relative;
    z-index: 12;
    background: #FFF;
}

.tabs-below {
    position: relative;
}

    .tabs-below > li {
        float: left;
        margin-top: -1px;
    }

        .tabs-below > li > a {
            position: relative;
            z-index: 9;
            margin-right: -1px;
            padding: 11px 16px;
            color: #777;
            font-weight: 600;
            border: 1px solid #DDD;
            background: #fafafa;
        }

.tab-block .tabs-below > li.active > a, .tab-block .tabs-below > li.active > a:focus, .tab-block .tabs-below > li.active > a:hover {
    cursor: default;
    position: relative;
    z-index: 12;
    color: #555;
    background: #FFF;
    border-color: #DDD;
    border-top: 1px solid #FFF;
}

.panel-tabs {
    position: absolute;
    bottom: 0;
    right: 0;
}

    .panel-tabs > li {
        position: relative;
        float: left;
        margin-bottom: -1px;
    }

        .panel-tabs > li > a {
            line-height: 18px;
            border-radius: 0;
            padding: 10px 18px;
            border-left: 1px solid #DDD;
            font-size: 12px;
            color: #777;
        }

        .panel-tabs > li.active > a, .panel-tabs > li.active > a:focus, .panel-tabs > li.active > a:hover {
            color: #555;
            cursor: default;
            background: #fff;
        }

.panel-tabs-left {
    left: 0;
}

    .panel-tabs-left > li > a {
        border-right: 1px solid #DDD;
        border-left: 1px solid transparent;
    }

.tab-block .nav-tabs.nav-justified {
    top: 1px;
    margin-top: -1px;
}

    .tab-block .nav-tabs.nav-justified > li {
        float: none;
    }

        .tab-block .nav-tabs.nav-justified > li > a {
            padding: 11px;
        }

.tab-block .tab-content + .nav-tabs.nav-justified {
    top: -1px;
    margin-top: 0;
}

    .tab-block .tab-content + .nav-tabs.nav-justified > li.active > a {
        border-top-color: #fff;
        border-bottom-color: #DDD;
    }

.nav-tabs.nav-tabs-right > li {
    float: right;
}

    .nav-tabs.nav-tabs-right > li:first-child > a {
        margin-right: 0;
    }

.tab-block .tabs-border.nav-tabs > li.active > a {
    margin-top: -1px;
    border-top: 2px solid #707ac0;
}

.tab-block .tabs-border.tabs-left > li.active > a {
    margin-left: -1px;
    border-left: 2px solid #707ac0;
}

.tab-block .tabs-border.tabs-right > li.active > a {
    margin-right: -1px;
    border-right: 2px solid #707ac0;
}

.tab-block .tabs-border.tabs-below > li.active > a {
    margin-bottom: -1px;
    border-bottom: 2px solid #707ac0;
}

.panel-tabs.panel-tabs-border > li.active > a {
    margin-top: -1px;
    border-top: 2px solid #707ac0;
}

.tab-block .tab-content + .tabs-border.nav-justified > li.active > a {
    border-bottom: 2px solid #707ac0;
}

.tab-block .tabs-border-bottom .nav-tabs > li.active > a, .tab-block .tabs-border-bottom.nav-tabs > li.active > a {
    color: #555;
    font-weight: 600;
    margin-bottom: -1px;
    background: #f7f7f7;
    border-color: #DDD;
    border-bottom: 2px solid #707ac0;
}

.tabs-bg.nav-tabs {
    background: #f5f5f5;
    border: 1px solid #DDD;
    border-bottom: none;
    padding: 10px 10px 0;
}

.tabs-bg.tabs-below {
    background: #f5f5f5;
    border: 1px solid #DDD;
    border-top: none;
    padding: 0 10px 6px;
}

.tab-block.sidebar-block .nav-tabs > li > a {
    background: #f0f0f0;
    padding: 16px 8px;
}

.tab-block.sidebar-block .nav-tabs > li:first-child > a {
    border-left: 0;
}

.tab-block.sidebar-block .nav-tabs > li:last-child > a {
    border-right: 0;
}

.tab-block.sidebar-block .tabs-border.nav-tabs > li.active > a {
    background: #f8f8f8;
    border-bottom-color: #f8f8f8;
}

.tab-block.sidebar-block .tab-content {
    border: 0;
    background: 0 0;
}

.panel-tabs.panel-tabs-merge > li.active > a, .panel-tabs.panel-tabs-merge > li.active > a:focus, .panel-tabs.panel-tabs-merge > li.active > a:hover {
    background: #FAFAFA;
}

.pricing-table .pricing-plan {
    margin: 30px -16px 20px;
    border: 1px solid #DDD;
    background-color: #fafafa;
    text-align: center;
}

.plan-header {
    height: 76px;
    background: #f4f4f4;
    padding: 25px 5px 20px;
}

    .plan-header h2 {
        margin-bottom: 5px;
        font-weight: 200;
    }

.plan-pricing {
    height: 124px;
    padding: 23px 0 24px;
    border-top: 1px solid #e7e7e7;
}

    .plan-pricing span {
        color: #333;
        font-size: 26px;
        font-weight: 200;
        display: inline-block;
        vertical-align: top;
        margin-left: -20px;
        padding-left: 5px;
        padding-top: 6px;
    }

    .plan-pricing h2 {
        display: inline-block;
        margin: 0;
        color: #555;
        font-size: 54px;
        font-weight: 600;
    }

    .plan-pricing h6 {
        color: #888;
        font-size: 12px;
        font-weight: 200;
        margin: 4px 0 0;
    }

.plan-features ul {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid #e7e7e7;
}

.plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid #e7e7e7;
    background-color: #FFF;
    color: #999;
    margin: 0;
}

    .plan-features li:last-child {
        border-bottom: 0;
    }

    .plan-features li b {
        font-weight: 600;
    }

    .plan-features li i.fa {
        font-size: 15px;
        color: #777;
        padding-right: 8px;
    }

.plan-icons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-icons li {
    padding: 10px 0;
    border-bottom: 1px solid #e7e7e7;
    background-color: #FFF;
    font-size: 18px;
    margin: 0;
}

    .plan-icons li:last-child {
        border-bottom: 0;
    }

.plan-footer {
    border-top: 1px solid #e7e7e7;
}

    .plan-footer .btn {
        margin: 20px 0;
        padding: 8px 26px;
    }

.hero-plan {
    z-index: 10;
}

    .hero-plan .pricing-plan {
        background-color: #f6f6f6;
        padding: 0 0 20px;
        margin: 0 -17px 20px;
        border-bottom: 1px solid #BBB;
        -webkit-box-shadow: 0 0 20px rgba(100, 100, 100, .2);
        box-shadow: 0 0 20px rgba(100, 100, 100, .2);
    }

        .hero-plan .pricing-plan .pricing-title {
            color: #FFF;
            margin: -1px -1px 0;
        }

            .hero-plan .pricing-plan .pricing-title h2 {
                color: #FFF;
                font-weight: 600;
            }

        .hero-plan .pricing-plan .pricing-subtitle {
            text-transform: uppercase;
            font-size: 12px;
            margin-top: 4px;
            font-weight: 600;
        }

        .hero-plan .pricing-plan a.btn {
            margin: 40px 0 20px;
        }

.pricing-compare .plan-desc {
    height: 200px;
    text-align: center;
    padding: 25px 15px 10px;
}

    .pricing-compare .plan-desc h2, .pricing-compare .plan-desc h6 {
        font-weight: 400;
    }

    .pricing-compare .plan-desc span {
        color: #3078d7;
        font-size: 24px;
        padding: 13px 0 24px;
    }

div.switch label {
    display: block;
    position: relative;
    text-indent: 100%;
    cursor: pointer;
    transition: left .15s ease-out;
}

div.switch input {
    display: none;
}

    div.switch input + label {
        margin-left: 0;
        margin-right: 0;
    }

div.switch label:after {
    content: "";
    display: block;
    position: absolute;
    top: 3px;
    left: 3px;
    -webkit-transition: left .15s ease-out;
    -moz-transition: left .15s ease-out;
    transition: left .15s ease-out;
}

div.switch label {
    width: 52px;
    height: 26px;
}

    div.switch label:after {
        width: 19px;
        height: 19px;
    }

div.switch input:checked + label:after {
    left: 29px;
}

div.switch label {
    color: transparent;
    background: #ddd;
}

    div.switch label:after {
        background: #fff;
    }

div.switch input:checked + label {
    background: #2ba6cb;
}

div.switch.switch-lg label {
    width: 65px;
    height: 32px;
}

    div.switch.switch-lg label:after {
        width: 26px;
        height: 26px;
    }

div.switch.switch-lg input:checked + label:after {
    left: 35px;
}

div.switch.switch-sm label {
    width: 45px;
    height: 22px;
}

    div.switch.switch-sm label:after {
        width: 16px;
        height: 16px;
    }

div.switch.switch-sm input:checked + label:after {
    left: 26px;
}

div.switch.switch-xs label {
    width: 39px;
    height: 19px;
}

    div.switch.switch-xs label:after {
        width: 13px;
        height: 13px;
    }

div.switch.switch-xs input:checked + label:after {
    left: 22px;
}

div.switch.radius label {
    border-radius: 4px;
}

    div.switch.radius label:after {
        border-radius: 3px;
    }

div.switch.round {
    border-radius: 1000px;
}

    div.switch.round label, div.switch.round label:after {
        border-radius: 26px;
    }

.switch.switch-inline {
    display: inline-block;
}

    .switch.switch-inline + .switch.switch-inline {
        margin-left: 15px;
    }

.checkbox-custom, .radio-custom {
    background-color: transparent;
    color: inherit;
}

    .checkbox-custom input, .radio-custom input {
        display: none;
    }

    .checkbox-custom label:empty, .radio-custom label:empty {
        padding-left: 10px;
    }

    .radio-custom label {
        cursor: pointer;
        position: relative;
        padding-left: 32px;
        margin-right: 15px;
        margin-bottom: 5px;
    }

        .radio-custom label:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            border-radius: 64px;
            width: 20px;
            height: 20px;
            border: 2px solid #666;
        }

    .radio-custom input[type=checkbox]:checked + label:after, .radio-custom input[type=radio]:checked + label:after {
        content: "";
        position: absolute;
        top: 5px;
        left: 5px;
        border-radius: 64px;
        width: 10px;
        height: 10px;
        color: #666;
        background-color: #666;
    }

    .radio-custom.square label:before {
        border-radius: 2px;
    }

    .radio-custom.square input[type=checkbox]:checked + label:after, .radio-custom.square input[type=radio]:checked + label:after {
        border-radius: 2px;
    }

    .checkbox-custom label {
        cursor: pointer;
        position: relative;
        padding-left: 32px;
        margin-right: 15px;
        margin-bottom: 5px;
    }

        .checkbox-custom label:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 20px;
            height: 20px;
            background-color: #FFF;
            border: 1px solid #666;
            border-width: 2px;
            border-radius: 1px;
        }

    .checkbox-custom input[type=checkbox]:checked + label:after, .checkbox-custom input[type=radio]:checked + label:after {
        position: absolute;
        font-family: FontAwesome;
        content: "\f00c";
        font-size: 12px;
        top: 4px;
        left: 4px;
        width: 0;
        height: 0;
        transform: rotate(-13deg);
    }

    .checkbox-custom.fill label {
        cursor: pointer;
        position: relative;
        padding-left: 32px;
        margin-right: 15px;
        margin-bottom: 5px;
    }

        .checkbox-custom.fill label:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            border-radius: 2px;
            width: 22px;
            height: 21px;
            background-color: #666;
        }

    .checkbox-custom.fill input[type=checkbox]:checked + label:after, .checkbox-custom.fill input[type=radio]:checked + label:after {
        position: absolute;
        font-family: FontAwesome;
        content: "\f00c";
        font-size: 12px;
        top: 3px;
        left: 3px;
        width: 0;
        height: 0;
        color: #fff !important;
        transform: rotate(-13deg);
    }

.wf-loading .fa, .wf-loading .glyphicon, .wf-loading .glyphicons, .wf-loading .iconsweets, .wf-loading .imoon {
    opacity: 0 !important;
}

.fs15.fa-fw {
    width: 35px;
}

.fs16.fa-fw {
    width: 40px;
}

.fs17.fa-fw {
    width: 43px;
}

.fs18.fa-fw {
    width: 46px;
}

.fa, .glyphicon, .glyphicons, .iconsweets, .imoon {
    opacity: 1;
    transition: opacity .1s ease-in;
    -moz-transition: opacity .1s ease-in;
    -webkit-transition: opacity .1s ease-in;
}

.glyphicon-2x, .glyphicons-2x {
    font-size: 2em;
}

.glyphicon-3x, .glyphicons-3x {
    font-size: 3em;
}

.glyphicon-4x, .glyphicons-4x {
    font-size: 4em;
}

.glyphicon-5x, .glyphicons-5x {
    font-size: 5em;
}

.imoon-2x {
    font-size: 2em;
}

.imoon-3x {
    font-size: 3em;
}

.imoon-4x {
    font-size: 4em;
}

.imoon-5x {
    font-size: 5em;
}

.iconsweets-2x {
    font-size: 2em;
}

.iconsweets-3x {
    font-size: 3em;
}

.iconsweets-4x {
    font-size: 4em;
}

.iconsweets-5x {
    font-size: 5em;
}

.btn .glyphicon, .btn .glyphicons {
    top: -1px;
    vertical-align: middle;
    line-height: 0;
    font-size: 1.1em;
}

i.field-icon-right, span.field-icon-right {
    position: absolute;
    right: 10px;
    top: 8px;
}

.icon-circle {
    top: 0;
    padding: 9px;
    position: relative;
    overflow: visible;
    border-radius: 64px;
}

.icon-square {
    top: 0;
    padding: 9px;
    border-radius: 4px;
}

.icon-circle.glyphicon-2x, .icon-circle.glyphicons-2x {
    padding: 12px;
}

.icon-circle.glyphicon-3x, .icon-circle.glyphicons-3x {
    padding: 20px;
}

.icon-circle.glyphicon-4x, .icon-circle.glyphicons-4x {
    padding: 35px;
}

.icon-square.glyphicon-2x, .icon-square.glyphicons-2x {
    padding: 12px;
}

.icon-square.glyphicon-3x, .icon-square.glyphicons-3x {
    padding: 20px;
}

.icon-square.glyphicon-4x, .icon-square.glyphicons-4x {
    padding: 35px;
}

.navbar-menus > div > button > i, .navbar-menus > div > button > span {
    font-size: 15px;
    vertical-align: middle;
}

.user-menu ul.dropdown-items > li:hover .glyphicon {
    color: #d9534f;
}

.user-menu ul.dropdown-items > li:last-child:hover .glyphicon {
    color: #888;
}

.user-menu ul.dropdown-items > li:last-child > div:hover .glyphicon {
    color: #d9534f;
}

.breadcrumb .glyphicon, .breadcrumb .glyphicons {
    color: #777;
    font-size: 11px;
    margin-left: 1px;
    top: 0;
}

.panel-sidemenu ul.nav li.active .fa {
    color: #707ac0;
}

.panel-sidemenu ul.nav li a:hover {
    background: 0 0;
}

.panel-sidemenu ul.nav li .fa {
    width: 28px;
    color: #BBB;
    font-size: 18px;
}

.panel-tabs li .fa, .panel-tabs li .glyphicon, .panel-tabs li .glyphicons {
    font-size: 14px;
}

.panel-tabs .iconsweets, .panel-tabs .imoon {
    font-size: 14px;
    vertical-align: middle;
}

.mini-action-icons .fa {
    position: relative;
    top: 2px;
    padding-right: 10px;
    color: #777;
    font-size: 16px;
    cursor: pointer;
}

.pricing-tables .pricing-icons li .fa-times {
    color: #e74a4a;
}

.pricing-tables .pricing-icons li .fa-ellipsis-h {
    color: #555;
}

.nav-tabs li .fa {
    font-size: 14px;
}

    .nav-tabs li .fa.fa-caret-down {
        font-size: 12px;
    }

.timeline-widget span.glyphicons {
    z-index: 11;
    position: relative;
    top: 2px;
    width: auto;
    padding: 6px;
    font-size: 18px;
    border-radius: 50%;
    -webkit-box-shadow: 1px 1px 2px #AAA;
    box-shadow: 1px 1px 2px #AAA;
}

.favicons {
    background: url(../img/sprites/favicons.png) no-repeat;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    display: inline-block;
}

.google {
    background-position: 0 0;
}

.yahoo {
    background-position: 0 -15px;
}

.bing {
    background-position: 0 -30px;
}

.chrome {
    background-position: 0 -45px;
}

.firefox {
    background-position: 0 -61px;
}

.ie {
    background-position: 0 -78px;
}

.safari {
    background-position: 0 -96px;
}

.news-sprite {
    width: 25px;
    height: 26px;
    vertical-align: middle;
    display: inline-block;
    background: url(../img/sprites/news-logo_sprite.png) no-repeat;
}

    .news-sprite.cnn {
        background-position: 0 0;
    }

    .news-sprite.yahoo {
        background-position: 0 -26px;
    }

    .news-sprite.google {
        background-position: 0 -50px;
    }

    .news-sprite.fb {
        background-position: 0 -75px;
    }

.flag, .flag-lg, .flag-sm, .flag-xs {
    display: inline-block;
    vertical-align: middle;
}

.flag-xs {
    width: 16px;
    height: 16px;
    background: url(../img/sprites/flag-xs.png) top left no-repeat;
}

.flag-sm {
    width: 32px;
    height: 32px;
    background: url(../img/sprites/flag-sm.png) top left no-repeat;
}

    .flag-sm.flag-fr {
        background-position: 0 0;
    }

    .flag-sm.flag-de {
        background-position: 0 -33px;
    }

    .flag-sm.flag-in {
        background-position: 0 -66px;
    }

    .flag-sm.flag-es {
        background-position: 0 -99px;
    }

    .flag-sm.flag-tr {
        background-position: 0 -132px;
    }

    .flag-sm.flag-us {
        background-position: 0 -165px;
    }

.flag-xs.flag-fr {
    background-position: 0 -1px;
}

.flag-xs.flag-de {
    background-position: 0 -18px;
}

.flag-xs.flag-es {
    background-position: 0 -35px;
}

.flag-xs.flag-tr {
    background-position: 0 -52px;
}

.flag-xs.flag-us {
    background-position: 0 -69px;
}

.flag-xs.flag-in {
    background-position: 0 -86px;
}

.panel-tile {
    position: relative;
    overflow: hidden;
}

    .panel-tile .panel-body, .panel-tile .panel-footer {
        border: 0;
    }

.icon-bg {
    position: absolute;
    opacity: .8;
    right: 0;
    top: 0;
    line-height: 100px;
    font-size: 100px;
}

    .icon-bg.left {
        right: auto;
        left: 0;
    }

ol.timeline-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    color: #AAA;
}

    ol.timeline-list li.timeline-item {
        position: relative;
        padding: 15px 120px 15px 50px;
    }

        ol.timeline-list li.timeline-item:focus .timeline-icon, ol.timeline-list li.timeline-item:hover .timeline-icon {
            opacity: 1;
        }

        ol.timeline-list li.timeline-item:after {
            content: "";
            position: absolute;
            display: block;
            left: 25px;
            top: 0;
            height: 100%;
            width: 1px;
            background: rgba(0, 0, 0, .07);
        }

        ol.timeline-list li.timeline-item .timeline-desc {
            letter-spacing: .2px;
        }

            ol.timeline-list li.timeline-item .timeline-desc b, ol.timeline-list li.timeline-item .timeline-desc strong {
                color: #333;
                font-weight: 600;
            }

            ol.timeline-list li.timeline-item .timeline-desc .timeline-user {
                font-size: 14px;
                font-weight: 600;
                color: #333;
            }

            ol.timeline-list li.timeline-item .timeline-desc .timeline-date {
                position: relative;
                right: 0;
                top: 0;
                color: #bbb;
                font-size: 11px;
            }

                ol.timeline-list li.timeline-item .timeline-desc .timeline-date i {
                    font-size: 11px;
                    top: 1px;
                    position: relative;
                }

            ol.timeline-list li.timeline-item .timeline-desc .timeline-description a {
                font-size: 14px;
                font-weight: 600;
                color: #333;
                display: block;
            }

            ol.timeline-list li.timeline-item .timeline-desc p {
                margin: 2px 0;
            }

            ol.timeline-list li.timeline-item .timeline-desc a {
                padding: 0 2px;
                color: #707ac0;
            }

        ol.timeline-list li.timeline-item .timeline-icon {
            opacity: .85;
            z-index: 2;
            position: absolute;
            left: 10px;
            top: 10px;
            background: #BBB;
            width: 30px;
            height: 30px;
            line-height: 26px;
            color: #FFF;
            text-align: center;
            border-radius: 26px;
            border: 2px solid #FFF;
        }

            ol.timeline-list li.timeline-item .timeline-icon i.material-icons {
                font-size: 16px;
                line-height: 26px;
            }

            ol.timeline-list li.timeline-item .timeline-icon.nobg {
                top: 12px;
            }

        ol.timeline-list li.timeline-item .timeline-date {
            position: absolute;
            right: 15px;
            top: 15px;
        }

.tray-left ol.timeline-list li.timeline-item, .tray-right ol.timeline-list li.timeline-item {
    position: relative;
    padding: 15px 80px 15px 50px;
}

.task-widget .panel-body {
    padding: 0;
}

.task-widget ul.task-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #FFFEF0;
}

    .task-widget ul.task-list + .task-list {
        border-top: 1px solid #DDD;
    }

    .task-widget ul.task-list .task-label {
        font-size: 13px;
        font-weight: 600;
        padding: 8px 10px;
        border-bottom: 1px solid #DDD;
        background-color: #fff;
    }

    .task-widget ul.task-list .task-item {
        position: relative;
        background-color: #f8f8f8;
    }

        .task-widget ul.task-list .task-item .task-handle {
            position: absolute;
            padding: 11px 12px 9px 15px;
            width: 45px;
        }

            .task-widget ul.task-list .task-item .task-handle:after {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 3px;
                height: 100%;
                background-color: transparent;
            }

            .task-widget ul.task-list .task-item .task-handle .checkbox-custom label {
                display: inline;
            }

        .task-widget ul.task-list .task-item .task-desc {
            padding: 11px 11px 11px 0;
            margin-left: 45px;
            margin-right: 40px;
        }

        .task-widget ul.task-list .task-item .task-menu {
            z-index: 1;
            position: absolute;
            width: 40px;
            height: 100%;
            right: 0;
            top: 0;
            font-weight: 400;
            color: #CCC;
        }

            .task-widget ul.task-list .task-item .task-menu:hover {
                cursor: pointer;
                color: #777;
            }

        .task-widget ul.task-list .task-item.item-checked .task-desc {
            color: #AAA;
            text-decoration: line-through;
        }

    .task-widget ul.task-list .checkbox-custom label:before {
        width: 18px;
        height: 18px;
        border-radius: 3px;
        border-width: 1px;
        border-color: #CCC;
    }

    .task-widget ul.task-list .checkbox-custom input[type=checkbox]:checked + label:after, .task-widget ul.task-list .checkbox-custom input[type=radio]:checked + label:after {
        top: 4px;
        left: 2px;
        font-size: 11px;
    }

    .task-widget ul.task-list .task-item.primary .task-handle:after {
        background-color: #707ac0;
    }

    .task-widget ul.task-list .task-item.success .task-handle:after {
        background-color: #70ca63;
    }

    .task-widget ul.task-list .task-item.info .task-handle:after {
        background-color: #3bafda;
    }

    .task-widget ul.task-list .task-item.warning .task-handle:after {
        background-color: #f6bb42;
    }

    .task-widget ul.task-list .task-item.danger .task-handle:after {
        background-color: #e9573f;
    }

    .task-widget ul.task-list .task-item.item-alert .task-handle:after, .task-widget ul.task-list .task-item.system .task-handle:after {
        background-color: #707ac0;
    }

    .task-widget ul.task-list .task-item.dark .task-handle:after {
        background-color: #3b3f4f;
    }

.task-widget.task-alt ul.task-list {
    border: 1px solid #e9e9e9;
    border-left: 0;
    background-color: #fcfcfc;
}

.task-widget.task-alt h5 {
    font-weight: 400;
    color: #AAA;
    font-size: 13px;
}

.task-widget.task-alt ul.task-list .task-item .task-handle:after {
    width: 4px;
    left: -1px;
}

.task-widget ul.task-current .task-item .task-menu {
    cursor: move !important;
}

    .task-widget ul.task-current .task-item .task-menu:before {
        content: "";
        position: absolute;
        background: url(../img/plugins/grippy_large.png) top left no-repeat;
        width: 6px;
        height: 20px;
        top: 10px;
        right: 15px;
    }

.task-widget ul.task-completed .task-item .task-menu:before {
    content: "\f00d";
    font-family: FontAwesome;
    display: block;
    position: absolute;
    background-image: none;
    top: 10px;
    right: 15px;
}

.task-widget ul.task-completed .task-item .task-menu:hover:before {
    color: #333;
}

.calendar-widget .panel-body {
    padding: 0;
    overflow: hidden;
}

.calendar-widget .fc-view-container {
    margin-right: -2px;
    margin-left: -2px;
    overflow: hidden;
}

.calendar-widget .fc-toolbar {
    padding: 9px 10px;
    margin: 0;
    background: #f4f4f4;
}

    .calendar-widget .fc-toolbar h2 {
        padding-left: 3px;
        padding-top: 4px;
        font-size: 17px;
    }

.calendar-widget .fc button {
    padding: 4px 8px;
    box-shadow: none;
}

    .calendar-widget .fc button .fc-icon {
        top: 0;
        font-size: 1.5em;
        height: .2em;
        line-height: .2em;
    }

.calendar-widget .fc-bg {
    background-color: #fcfcfc;
}

    .calendar-widget .fc-bg .fc-other-month {
        background-color: #f9f9f9;
    }

.calendar-widget .fc-basic-view td.fc-day-number {
    font-size: 11px;
    color: #BBB;
}

.calendar-widget th.fc-day-header {
    color: #999;
    font-size: 11px;
    font-weight: 400;
    padding: 2px;
    background-color: #f5f5f5;
}

.calendar-widget .fc-view-container .fc-event {
    line-height: 1.2;
    margin: 0 5px;
    padding: 5px;
    border-radius: 0;
    background-color: #fefefe;
}

.calendar-widget.calendar-alt .fc-toolbar {
    background: 0 0;
    margin-bottom: 15px;
    padding: 0;
}

    .calendar-widget.calendar-alt .fc-toolbar h2 {
        color: #AAA;
        font-size: 18px;
        font-weight: 400;
    }

.calendar-widget.calendar-alt th.fc-day-header {
    padding: 4px 2px;
}

.calendar-widget.calendar-alt .fc-view-container .fc-event {
    padding: 6px 5px;
    margin: 2px 5px 3px;
    border-radius: 2px;
    background-color: #FFF;
    border-top-color: #EEE;
    border-right-color: #EEE;
    border-bottom-color: #EEE;
}

.chat-widget .media-left {
    padding-right: 20px;
}

.chat-widget .media-right {
    padding-left: 20px;
}

    .chat-widget .media-left img, .chat-widget .media-right img {
        max-width: 55px;
        border-radius: 3px;
        border: 2px solid #FFF;
    }

.chat-widget .media-body {
    position: relative;
    padding: 7px;
    border-radius: 2px;
    border: 1px solid #e4e4e4;
    background-color: #fefefe;
    font-weight: 400;
}

    .chat-widget .media-body:after, .chat-widget .media-body:before {
        content: "";
        position: absolute;
        right: -9px;
        top: 12px;
        width: 0;
        height: 0;
        border-color: transparent;
        border-style: solid;
        border-width: 8px 0 8px 9px;
        border-left-color: #777;
    }

    .chat-widget .media-body:after {
        border-left-color: #FFF;
    }

.chat-widget .media-left + .media-body:after, .chat-widget .media-left + .media-body:before {
    content: "";
    position: absolute;
    left: -9px;
    top: 12px;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 8px 9px 8px 0;
    border-right-color: #777;
}

.chat-widget .media-left + .media-body:after {
    border-right-color: #FFF;
}

.chat-widget .media-status {
    position: relative;
}

    .chat-widget .media-status + .media-heading {
        padding-left: 20px;
    }

    .chat-widget .media-status:after {
        position: absolute;
        top: 0;
        left: 3px;
        font-family: FontAwesome;
        content: "\f111";
        font-size: 10px;
        color: #AAA;
    }

    .chat-widget .media-status.online:after {
        color: #70ca63;
    }

    .chat-widget .media-status.offline:after {
        color: #e9573f;
    }

.chat-widget .panel-footer .input-group .form-control {
    z-index: 0;
}

.compose-widget .panel-body {
    padding: 0;
}

.compose-widget .panel-footer {
    padding: 8px;
}

.compose-widget .note-editor .note-editable {
    background: #f5f5f5;
}

    .compose-widget .note-editor .note-editable:focus {
        background: #fff;
    }

.compose-widget .note-editor .note-resizebar {
    display: none;
}

.user-group-widget .user-avatar {
    border: 3px solid #CCC;
    display: block;
    width: 100% \9;
    max-width: 100%;
    height: auto;
}

.user-group-widget .panel-menu {
    padding: 8px;
}

.tagcloud-widget .panel-body .label {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 8px;
    line-height: 15px;
}

.modal-open {
    overflow: hidden;
}

.modal {
    display: none;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

    .modal.fade .modal-dialog {
        -webkit-transform: translate3d(0, -25%, 0);
        transform: translate3d(0, -25%, 0);
        -webkit-transition: -webkit-transform .3s ease-out;
        -moz-transition: -moz-transform .3s ease-out;
        -o-transition: -o-transform .3s ease-out;
        transition: transform .3s ease-out;
    }

    .modal.in .modal-dialog {
        z-index: 1050;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
}

.modal-content {
    position: relative;
    background-color: #fff;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 3px;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    background-clip: padding-box;
    outline: 0;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
}

    .modal-backdrop.fade {
        opacity: 0;
        filter: alpha(opacity=0);
    }

    .modal-backdrop.in {
        opacity: .5;
        filter: alpha(opacity=50);
    }

.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
    min-height: 16.49px;
}

    .modal-header .close {
        margin-top: -2px;
    }

.modal-title {
    margin: 0;
    line-height: 1.49;
}

.modal-body {
    position: relative;
    padding: 15px;
}

.modal-footer {
    padding: 10px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
    background: #f2f2f2;
}

    .modal-footer .btn + .btn {
        margin-left: 5px;
        margin-bottom: 0;
    }

    .modal-footer .btn-group .btn + .btn {
        margin-left: -1px;
    }

    .modal-footer .btn-block + .btn-block {
        margin-left: 0;
    }

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

@media (min-width:768px) {
    .modal-dialog {
        width: 600px;
        margin: 30px auto;
    }

    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
        box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
    }

    .modal-sm {
        width: 300px;
    }
}

@media (min-width:992px) {
    .modal-lg {
        width: 900px;
    }
}
span#tooltiptext {
    display: none;
}
.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    visibility: visible;
    font-size: 12px;
    line-height: 1.4;
    opacity: 0;
    filter: alpha(opacity=0);
}

    .tooltip.in {
        opacity: .9;
        filter: alpha(opacity=90);
    }

    .tooltip.top {
        margin-top: -3px;
        padding: 5px 0;
    }

    .tooltip.right {
        margin-left: 3px;
        padding: 0 5px;
    }

    .tooltip.bottom {
        margin-top: 3px;
        padding: 5px 0;
    }

    .tooltip.left {
        margin-left: -3px;
        padding: 0 5px;
    }

.tooltip-inner {
    max-width: 200px;
    padding: 3px 8px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    background-color: #000;
    border-radius: 1px;
}

.tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}

.tooltip.top .tooltip-arrow {
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000;
}

.tooltip.top-left .tooltip-arrow {
    bottom: 0;
    left: 5px;
    border-width: 5px 5px 0;
    border-top-color: #000;
}

.tooltip.top-right .tooltip-arrow {
    bottom: 0;
    right: 5px;
    border-width: 5px 5px 0;
    border-top-color: #000;
}

.tooltip.right .tooltip-arrow {
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-right-color: #000;
}

.tooltip.left .tooltip-arrow {
    top: 50%;
    right: 0;
    margin-top: -5px;
    border-width: 5px 0 5px 5px;
}

.tooltip.bottom .tooltip-arrow {
    top: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000;
}

.tooltip.bottom-left .tooltip-arrow {
    top: 0;
    left: 5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000;
}

.tooltip.bottom-right .tooltip-arrow {
    top: 0;
    right: 5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000;
}

.tooltip-white.in {
    opacity: 1;
}

.tooltip-white {
    min-width: 60px;
    transition: opacity .3s ease;
}

    .tooltip-white .tooltip-inner {
        background-color: #FFF;
        color: #555;
        font-weight: 600;
        border-radius: 2px;
    }

    .tooltip-white.top .tooltip-arrow {
        border-top-color: #FFF;
    }

    .tooltip-white.bottom .tooltip-arrow {
        border-bottom-color: #FFF;
    }

    .tooltip-white.right .tooltip-arrow {
        border-right-color: #FFF;
    }

.tooltip.left .tooltip-arrow {
    border-left-color: #FFF;
}

.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1060;
    display: none;
    max-width: 276px;
    padding: 1px;
    text-align: left;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 3px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    white-space: normal;
}

    .popover.top {
        margin-top: -10px;
    }

    .popover.right {
        margin-left: 10px;
    }

    .popover.bottom {
        margin-top: 10px;
    }

    .popover.left {
        margin-left: -10px;
    }

.popover-title {
    margin: 0;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-radius: 2px 2px 0 0;
}

.popover-content {
    padding: 9px 14px;
}

.popover > .arrow, .popover > .arrow:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}

.popover > .arrow {
    border-width: 11px;
}

    .popover > .arrow:after {
        border-width: 10px;
        content: ""
    }

.popover.top > .arrow {
    left: 50%;
    margin-left: -11px;
    border-bottom-width: 0;
    border-top-color: #999;
    border-top-color: rgba(0, 0, 0, .25);
    bottom: -11px;
}

    .popover.top > .arrow:after {
        content: " ";
        bottom: 1px;
        margin-left: -10px;
        border-bottom-width: 0;
        border-top-color: #fff;
    }

.popover.right > .arrow {
    top: 50%;
    left: -11px;
    margin-top: -11px;
    border-left-width: 0;
    border-right-color: #999;
    border-right-color: rgba(0, 0, 0, .25);
}

    .popover.right > .arrow:after {
        content: " ";
        left: 1px;
        bottom: -10px;
        border-left-width: 0;
        border-right-color: #fff;
    }

.popover.bottom > .arrow {
    left: 50%;
    margin-left: -11px;
    border-top-width: 0;
    border-bottom-color: #999;
    border-bottom-color: rgba(0, 0, 0, .25);
    top: -11px;
}

    .popover.bottom > .arrow:after {
        content: " ";
        top: 1px;
        margin-left: -10px;
        border-top-width: 0;
        border-bottom-color: #fff;
    }

.popover.left > .arrow {
    top: 50%;
    right: -11px;
    margin-top: -11px;
    border-right-width: 0;
    border-left-color: #999;
    border-left-color: rgba(0, 0, 0, .25);
}

    .popover.left > .arrow:after {
        content: " ";
        right: 1px;
        border-right-width: 0;
        border-left-color: #fff;
        bottom: -10px;
    }

.carousel {
    position: relative;
}

.carousel-inner {
    position: relative;
    overflow: hidden;
    width: 100%
}

    .carousel-inner > .item {
        display: none;
        position: relative;
        -webkit-transition: .6s ease-in-out left;
        -o-transition: .6s ease-in-out left;
        transition: .6s ease-in-out left;
    }

        .carousel-inner > .item > a > img, .carousel-inner > .item > img {
            line-height: 1;
        }

    .carousel-inner > .active, .carousel-inner > .next, .carousel-inner > .prev {
        display: block;
    }

    .carousel-inner > .active {
        left: 0;
    }

    .carousel-inner > .next, .carousel-inner > .prev {
        position: absolute;
        top: 0;
        width: 100%
    }

    .carousel-inner > .next {
        left: 100%
    }

    .carousel-inner > .prev {
        left: -100%
    }

        .carousel-inner > .next.left, .carousel-inner > .prev.right {
            left: 0;
        }

    .carousel-inner > .active.left {
        left: -100%
    }

    .carousel-inner > .active.right {
        left: 100%
    }

.carousel-control {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 15%;
    opacity: .5;
    filter: alpha(opacity=50);
    font-size: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
}

    .carousel-control.left {
        background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0, rgba(0, 0, 0, .0001) 100%);
        background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5) 0, rgba(0, 0, 0, .0001) 100%);
        background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0, rgba(0, 0, 0, .0001) 100%);
        background-repeat: repeat-x;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
    }

    .carousel-control.right {
        left: auto;
        right: 0;
        background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0, rgba(0, 0, 0, .5) 100%);
        background-image: -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0, rgba(0, 0, 0, .5) 100%);
        background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0, rgba(0, 0, 0, .5) 100%);
        background-repeat: repeat-x;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
    }

    .carousel-control:focus, .carousel-control:hover {
        outline: 0;
        color: #fff;
        text-decoration: none;
        opacity: .9;
        filter: alpha(opacity=90);
    }

    .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next, .carousel-control .icon-prev {
        position: absolute;
        top: 50%;
        z-index: 5;
        display: inline-block;
    }

    .carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev {
        left: 50%;
        margin-left: -10px;
    }

    .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next {
        right: 50%;
        margin-right: -10px;
    }

    .carousel-control .icon-next, .carousel-control .icon-prev {
        width: 20px;
        height: 20px;
        margin-top: -10px;
        font-family: serif;
    }

        .carousel-control .icon-prev:before {
            content: '\2039'
        }

        .carousel-control .icon-next:before {
            content: '\203a'
        }

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 15;
    width: 60%;
    margin-left: -30%;
    padding-left: 0;
    list-style: none;
    text-align: center;
}

    .carousel-indicators li {
        display: inline-block;
        width: 10px;
        height: 10px;
        margin: 1px;
        text-indent: -999px;
        border: 1px solid #fff;
        border-radius: 10px;
        cursor: pointer;
        background-color: #000 \9;
        background-color: rgba(0, 0, 0, 0);
    }

    .carousel-indicators .active {
        margin: 0;
        width: 12px;
        height: 12px;
        background-color: #fff;
    }

.carousel-caption {
    position: absolute;
    left: 15%;
    right: 15%;
    bottom: 20px;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
}

    .carousel-caption .btn {
        text-shadow: none;
    }

@media screen and (min-width:768px) {
    .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next, .carousel-control .icon-prev {
        width: 30px;
        height: 30px;
        margin-top: -15px;
        font-size: 30px;
    }

    .carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev {
        margin-left: -15px;
    }

    .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next {
        margin-right: -15px;
    }

    .carousel-caption {
        left: 20%;
        right: 20%;
        padding-bottom: 30px;
    }

    .carousel-indicators {
        bottom: 20px;
    }
}

#topbar:after, #topbar:before, .btn-group-vertical > .btn-group:after, .btn-group-vertical > .btn-group:before, .btn-toolbar:after, .btn-toolbar:before, .clearfix:after, .clearfix:before, .container-fluid:after, .container-fluid:before, .container:after, .container:before, .dl-horizontal dd:after, .dl-horizontal dd:before, .form-horizontal .form-group:after, .form-horizontal .form-group:before, .modal-footer:after, .modal-footer:before, .nav:after, .nav:before, .navbar-collapse:after, .navbar-collapse:before, .navbar-header:after, .navbar-header:before, .navbar:after, .navbar:before, .pager:after, .pager:before, .panel-body:after, .panel-body:before, .row:after, .row:before {
    content: " ";
    display: table;
}

.center-block, .center-children > div {
    float: none;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.pull-right {
    float: right !important;
}

.pull-left {
    float: left !important;
}

.hide {
    display: none !important;
}

.show {
    display: block !important;
}

.invisible {
    visibility: hidden;
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.hidden {
    display: none !important;
    visibility: hidden !important;
}

.affix {
    position: fixed;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

@-ms-viewport {
    width: device-width;
}

@media (max-width:768px) {
    h1 {
        font-size: 25px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 16px;
    }

    .fs16-xs {
        font-size: 16px !important
    }

    .panel .price-switcher {
        max-width: 300px;
        min-width: 285px !important
    }

    
}

.visible-lg, .visible-lg-block, .visible-lg-inline, .visible-lg-inline-block, .visible-md, .visible-md-block, .visible-md-inline, .visible-md-inline-block, .visible-print, .visible-print-block, .visible-print-inline, .visible-print-inline-block, .visible-sm, .visible-sm-block, .visible-sm-inline, .visible-sm-inline-block, .visible-xl, .visible-xl-block, .visible-xl-inline, .visible-xl-inline-block, .visible-xs, .visible-xs-block, .visible-xs-inline, .visible-xs-inline-block {
    display: none !important;
}

@media (max-width:767px) {
    .visible-xs {
        display: block !important;
    }

    table.visible-xs {
        display: table;
    }

    tr.visible-xs {
        display: table-row !important;
    }

    td.visible-xs, th.visible-xs {
        display: table-cell !important;
    }
}

@media (max-width:767px) {
    .visible-xs-block {
        display: block !important;
    }
}

@media (max-width:767px) {
    .visible-xs-inline {
        display: inline !important;
    }
}

@media (max-width:767px) {
    .visible-xs-inline-block {
        display: inline-block !important;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .visible-sm {
        display: block !important;
    }

    table.visible-sm {
        display: table;
    }

    tr.visible-sm {
        display: table-row !important;
    }

    td.visible-sm, th.visible-sm {
        display: table-cell !important;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .visible-sm-block {
        display: block !important;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .visible-sm-inline {
        display: inline !important;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .visible-sm-inline-block {
        display: inline-block !important;
    }
}

@media (min-width:992px) and (max-width:1139px) {
    .visible-md {
        display: block !important;
    }

    table.visible-md {
        display: table;
    }

    tr.visible-md {
        display: table-row !important;
    }

    td.visible-md, th.visible-md {
        display: table-cell !important;
    }
}

@media (min-width:992px) and (max-width:1139px) {
    .visible-md-block {
        display: block !important;
    }
}

@media (min-width:992px) and (max-width:1139px) {
    .visible-md-inline {
        display: inline !important;
    }
}

@media (min-width:992px) and (max-width:1139px) {
    .visible-md-inline-block {
        display: inline-block !important;
    }
}

@media (min-width:1140px) {
    .visible-lg {
        display: block !important;
    }

    table.visible-lg {
        display: table;
    }

    tr.visible-lg {
        display: table-row !important;
    }

    td.visible-lg, th.visible-lg {
        display: table-cell !important;
    }
}

@media (min-width:1140px) {
    .visible-lg-block {
        display: block !important;
    }
}

@media (min-width:1140px) {
    .visible-lg-inline {
        display: inline !important;
    }
}

@media (min-width:1140px) {
    .visible-lg-inline-block {
        display: inline-block !important;
    }
}

@media (min-width:1400px) {
    .visible-xl {
        display: block !important;
    }

    table.visible-xl {
        display: table;
    }

    tr.visible-xl {
        display: table-row !important;
    }

    td.visible-xl, th.visible-xl {
        display: table-cell !important;
    }
}

@media (min-width:1400px) {
    .visible-xl-block {
        display: block !important;
    }
}

@media (min-width:1400px) {
    .visible-xl-inline {
        display: inline !important;
    }
}

@media (min-width:1400px) {
    .visible-xl-inline-block {
        display: inline-block !important;
    }
}

@media (max-width:767px) {
    .hidden-xs {
        display: none !important;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .hidden-sm {
        display: none !important;
    }
}

@media (min-width:992px) and (max-width:1139px) {
    .hidden-md {
        display: none !important;
    }
}

@media (min-width:1140px) {
    .hidden-lg {
        display: none !important;
    }
}

@media (min-width:1400px) {
    .hidden-xl {
        display: none !important;
    }
}

@media print {
    .visible-print {
        display: block !important;
    }

    table.visible-print {
        display: table;
    }

    tr.visible-print {
        display: table-row !important;
    }

    td.visible-print, th.visible-print {
        display: table-cell !important;
    }
}

@media print {
    .visible-print-block {
        display: block !important;
    }
}

@media print {
    .visible-print-inline {
        display: inline !important;
    }
}

@media print {
    .visible-print-inline-block {
        display: inline-block !important;
    }
}

@media print {
    .hidden-print {
        display: none !important;
    }
}

.list-spacing-3 li + li {
    padding-top: 3px;
}

.list-spacing-5 li + li {
    padding-top: 5px;
}

.list-spacing-8 li + li {
    padding-top: 8px;
}

.list-spacing-10 li + li {
    padding-top: 10px;
}

.list-spacing-15 li + li {
    padding-top: 15px;
}

.list-divide-items {
    margin: 0;
    padding-left: 10px;
    list-style: none;
}

    .list-divide-items li + li {
        margin-top: 13px;
        padding-top: 13px;
        border-top: 1px solid #EEE;
    }

.fixed-height .panel-body {
    overflow: auto;
}

.hover-height {
    overflow: hidden;
    transition: all .2s ease;
}

.mh-20 {
    max-height: 20px !important;
}

.mh-25 {
    max-height: 25px !important;
}

.mh-30 {
    max-height: 30px !important;
}

.mh-35 {
    max-height: 35px !important;
}

.mh-40 {
    max-height: 40px !important;
}

.mh-50 {
    max-height: 50px !important;
}

.mh-100 {
    max-height: 100px !important;
}

.mh-200 {
    max-height: 200px !important;
}

.mh-300 {
    max-height: 300px !important;
}

.mh-400 {
    max-height: 400px !important;
}

.mh-500 {
    max-height: 500px !important;
}

.mh-600 {
    max-height: 600px !important;
}

.mh-700 {
    max-height: 700px !important;
}

.mh-800 {
    max-height: 800px !important;
}

.mh-900 {
    max-height: 900px !important;
}

.mh-1000 {
    max-height: 1000px !important;
}

.h-20 {
    height: 20px !important;
}

.h-25 {
    height: 25px !important;
}

.h-30 {
    height: 30px !important;
}

.h-35 {
    height: 35px !important;
}

.h-40 {
    height: 40px !important;
}

.h-50 {
    height: 50px !important;
}

.h-80 {
    height: 80px !important;
}

.h-100 {
    height: 100px !important;
}

.h-120 {
    height: 120px !important;
}

.h-150 {
    height: 150px !important;
}

.h-170 {
    height: 170px !important;
}

.h-200 {
    height: 200px !important;
}

.h-300 {
    height: 300px !important;
}

.h-400 {
    height: 400px !important;
}

.h-500 {
    height: 500px !important;
}

.h-600 {
    height: 600px !important;
}

.h-700 {
    height: 700px !important;
}

.h-800 {
    height: 800px !important;
}

.h-900 {
    height: 900px !important;
}

.h-1000 {
    height: 1000px !important;
}

.t-center {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bg-none {
    background-color: transparent !important;
}

.no-boxshadow {
    box-shadow: none !important;
}

.h-a {
    height: auto !important;
}

.of-a {
    overflow: auto !important;
}

.of-h {
    overflow: hidden !important;
}

.of-v {
    overflow: visible !important;
}

.of-x-a {
    overflow-x: auto !important;
}

.of-x-h {
    overflow-x: hidden !important;
}

.of-x-v {
    overflow-x: visible !important;
}

.of-y-a {
    overflow-y: auto !important;
}

.of-y-h {
    overflow-y: hidden !important;
}

.of-y-v {
    overflow-y: visible !important;
}

.center-column {
    float: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
}

.va-t {
    vertical-align: top !important;
}

.va-m {
    vertical-align: middle !important;
}

.va-b {
    vertical-align: bottom !important;
}

.va-s {
    vertical-align: super !important;
}

.posr {
    position: relative !important;
}

.ib, .inline-object {
    display: inline-block !important;
}

.cursor {
    cursor: pointer !important;
}

.option-disabled {
    opacity: .6 !important;
}

.input-unstyled, .input-unstyled:focus, .input-unstyled:hover {
    border: none !important;
    background: 0 0 !important;
    box-shadow: none !important;
    outline: 0 !important;
}

.panel-group.table-layout > .panel + .panel {
    border-left: 0;
}

.panel-group.table-layout + .panel-group.table-layout > .panel {
    border-top: 0;
}

.row.table-layout {
    margin-left: 0;
    margin-right: 0;
}

.table-layout {
    display: table;
    table-layout: fixed;
    width: 100%;
    margin: 0;
}

    .table-layout > aside, .table-layout > div, .table-layout > section {
        vertical-align: middle;
        display: table-cell;
        float: none;
    }

@media (max-width:1300px) {
    .table-layout.table-clear-md, .table-layout.table-clear-md > aside, .table-layout.table-clear-md > div, .table-layout.table-clear-md > section {
        display: block;
        float: none;
    }

    .cell-1300-hide {
        display: none !important;
    }
}

@media (max-width:1200px) {
    .cell-1200-hide {
        display: none !important;
    }
}

@media (max-width:992px) {
    .table-layout.table-clear-sm, .table-layout.table-clear-sm > aside, .table-layout.table-clear-sm > div, .table-layout.table-clear-sm > section {
        display: block;
        float: none;
    }
}

@media (max-width:767px) {
    .table-layout.table-clear-xs, .table-layout.table-clear-xs > aside, .table-layout.table-clear-xs > div, .table-layout.table-clear-xs > section {
        display: block;
        float: none;
    }

    div.dataTables_info {
        float: none;
        margin: 0 auto;
        text-align: center;
    }

    .pagination > li > a, .pagination > li > span {
        padding: 0;
        width: 20px;
        height: 20px;
    }

    div.dataTables_paginate .pagination {
        text-align: center;
    }

    .login-wrap .col-xs-12 {
        text-align: center !important;
    }
}

@media (max-width:480px) {
    .w400 {
        width: 100% !important;
    }

    .table.equal td a {
        max-width: 100px;
        word-wrap: break-word;
        display: block;
    }

    .login-wrap .button.btn-primary, .login-wrap .button.btn-social {
        width: 100% !important;
    }

    .payment-info, .profile-background .user-heading.round > a {
        display: none !important;
    }

    .profile-background .user-profile-info {
        margin: 0 !important;
    }

    .info-row.members-row {
        min-width: 190px;
    }

    .w400 .row.bbottom {
        border: none !important;
    }

    .pl15 {
        padding-left: 7px !important;
    }

    div#generate-send-password {
        font-size: 11px;
    }

    button.waves-effect.btn.data-entry-cancel, button.waves-effect.btn.data-entry-save {
        margin-top: 10px;
    }
}

@media (max-width:320px) {
    .navbar > .navbar-right {
        display: none !important;
    }

    .sort-option .dropdown-content {
        top: 25px !important;
        left: -35px !important;
    }
}

.text-uppercase {
    text-transform: uppercase !important;
}

.fw200 {
    font-weight: 200 !important;
}

.fw300 {
    font-weight: 300 !important;
}

.fw400 {
    font-weight: 400 !important;
}

.fw600 {
    font-weight: 600 !important;
}

.fs3 {
    font-size: 4px !important;
}

.fs4 {
    font-size: 4px !important;
}

.fs5 {
    font-size: 5px !important;
}

.fs6 {
    font-size: 6px !important;
}

.fs7 {
    font-size: 7px !important;
}

.fs8 {
    font-size: 8px !important;
}

.fs9 {
    font-size: 9px !important;
}

.fs10 {
    font-size: 10px !important;
}

.fs11 {
    font-size: 11px !important;
}

.fs12 {
    font-size: 12px !important;
}

.fs13 {
    font-size: 13px !important;
}

.fs14 {
    font-size: 14px !important;
}

.fs15 {
    font-size: 15px !important;
}

.fs16 {
    font-size: 16px !important;
}

.fs17 {
    font-size: 17px !important;
}

.fs18 {
    font-size: 18px !important;
}

.fs20 {
    font-size: 20px !important;
}

.fs22 {
    font-size: 22px !important;
}

.fs24 {
    font-size: 24px !important;
}

.fs26 {
    font-size: 26px !important;
}

.fs28 {
    font-size: 28px !important;
}

.fs30 {
    font-size: 30px !important;
}

.fs35 {
    font-size: 35px !important;
}

.fs40 {
    font-size: 40px !important;
}

.fs45 {
    font-size: 45px !important;
}

.fs50 {
    font-size: 50px !important;
}

.fs60 {
    font-size: 60px !important;
}

.fs70 {
    font-size: 70px !important;
}

.fs80 {
    font-size: 80px !important;
}

.fs90 {
    font-size: 90px !important;
}

.fs100 {
    font-size: 100px !important;
}

.pn {
    padding: 0 !important;
}

.p1 {
    padding: 1px !important;
}

.p2 {
    padding: 2px !important;
}

.p3 {
    padding: 3px !important;
}

.p4 {
    padding: 4px !important;
}

.p5 {
    padding: 5px !important;
}

.p6 {
    padding: 6px !important;
}

.p7 {
    padding: 7px !important;
}

.p8 {
    padding: 8px !important;
}

.p10 {
    padding: 10px !important;
}

.p12 {
    padding: 12px !important;
}

.p15 {
    padding: 15px !important;
}

.p20 {
    padding: 20px !important;
}

.p25 {
    padding: 25px !important;
}

.p30 {
    padding: 30px !important;
}

.p35 {
    padding: 35px !important;
}

.p40 {
    padding: 40px !important;
}

.p50 {
    padding: 50px !important;
}

.ptn {
    padding-top: 0 !important;
}

.pt5 {
    padding-top: 5px !important;
}

.pt10 {
    padding-top: 10px !important;
}

.pt15 {
    padding-top: 15px !important;
}

.pt20 {
    padding-top: 20px !important;
}

.pt25 {
    padding-top: 25px !important;
}

.pt30 {
    padding-top: 30px !important;
}

.pt35 {
    padding-top: 35px !important;
}

.pt40 {
    padding-top: 40px !important;
}

.pt50 {
    padding-top: 50px !important;
}

.prn {
    padding-right: 0 !important;
}

.pr5 {
    padding-right: 5px !important;
}

.pr10 {
    padding-right: 10px !important;
}

.pr15 {
    padding-right: 15px !important;
}

.pr20 {
    padding-right: 20px !important;
}

.pr25 {
    padding-right: 25px !important;
}

.pr30 {
    padding-right: 30px !important;
}

.pr35 {
    padding-right: 35px !important;
}

.pr40 {
    padding-right: 40px !important;
}

.pr50 {
    padding-right: 50px !important;
}

.pbn {
    padding-bottom: 0 !important;
}

.pb5 {
    padding-bottom: 5px !important;
}

.pb10 {
    padding-bottom: 10px !important;
}

.pb15 {
    padding-bottom: 15px !important;
}

.pb20 {
    padding-bottom: 20px !important;
}

.pb25 {
    padding-bottom: 25px !important;
}

.pb30 {
    padding-bottom: 30px !important;
}

.pb35 {
    padding-bottom: 35px !important;
}

.pb40 {
    padding-bottom: 40px !important;
}

.pb50 {
    padding-bottom: 50px !important;
}

.pln {
    padding-left: 0 !important;
}

.pl5 {
    padding-left: 5px !important;
}

.pl10 {
    padding-left: 10px !important;
}

.pl15 {
    padding-left: 15px;
}

.pl20 {
    padding-left: 20px !important;
}

.pl25 {
    padding-left: 25px !important;
}

.pl30 {
    padding-left: 30px !important;
}

.pl35 {
    padding-left: 35px !important;
}

.pl40 {
    padding-left: 40px !important;
}

.pl50 {
    padding-left: 50px !important;
}

.pv5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

.pv8 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}

.pv10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.pv15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

.pv20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.pv25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
}

.pv30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

.pv40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

.pv50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}

.ph {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.ph5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
}

.ph8 {
    padding-left: 8px !important;
    padding-right: 8px !important;
}

.ph10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.ph15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.ph20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.ph25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
}

.ph30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
}

.ph40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
}

.ph50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
}

@media (min-width:1140px) {
    .ptn-lg {
        padding-top: 0 !important;
    }

    .prn-lg {
        padding-right: 0 !important;
    }

    .pbn-lg {
        padding-bottom: 0 !important;
    }

    .pln-lg {
        padding-left: 0 !important;
    }

    .pt5-lg {
        padding-top: 5px !important;
    }

    .pr5-lg {
        padding-right: 5px !important;
    }

    .pb5-lg {
        padding-bottom: 5px !important;
    }

    .pl5-lg {
        padding-left: 5px !important;
    }
}

@media (min-width:992px) {
    .ptn-md {
        padding-top: 0 !important;
    }

    .prn-md {
        padding-right: 0 !important;
    }

    .pbn-md {
        padding-bottom: 0 !important;
    }

    .pln-md {
        padding-left: 0 !important;
    }

    .pt5-md {
        padding-top: 5px !important;
    }

    .pr5-md {
        padding-right: 5px !important;
    }

    .pb5-md {
        padding-bottom: 5px !important;
    }

    .pl5-md {
        padding-left: 5px !important;
    }
}

.mauto {
    margin-left: auto;
    margin-right: auto;
}

.mn {
    margin: 0 !important;
}
/*.m1 {
    margin: 1px !important
}
.m2 {
    margin: 2px !important
}
.m3 {
    margin: 3px !important
}
.m4 {
    margin: 4px !important
}
.m5 {
    margin: 5px !important
}
.m8 {
    margin: 8px !important
}
.m10 {
    margin: 10px !important
}*/
.m15 {
    margin: 15px !important;
}

.m20 {
    margin: 20px !important;
}

.m25 {
    margin: 25px !important;
}

.m30 {
    margin: 30px !important;
}

.m35 {
    margin: 35px !important;
}

.m40 {
    margin: 40px !important;
}

.m50 {
    margin: 50px !important;
}

.mtn {
    margin-top: 0 !important;
}

.mt5 {
    margin-top: 5px !important;
}

.mt10 {
    margin-top: 10px !important;
}

.mt15 {
    margin-top: 15px !important;
}

.mt20 {
    margin-top: 20px !important;
}

.mt25 {
    margin-top: 25px !important;
}

.mt30 {
    margin-top: 30px !important;
}

.mt35 {
    margin-top: 35px !important;
}

.mt40 {
    margin-top: 40px !important;
}

.mt50 {
    margin-top: 50px !important;
}

.mt70 {
    margin-top: 70px !important;
}

.mrn {
    margin-right: 0 !important;
}

.mr5 {
    margin-right: 5px !important;
}

.mr10 {
    margin-right: 10px !important;
}

.mr15 {
    margin-right: 15px !important;
}

.mr20 {
    margin-right: 20px !important;
}

.mr25 {
    margin-right: 25px !important;
}

.mr30 {
    margin-right: 30px !important;
}

.mr35 {
    margin-right: 35px !important;
}

.mr40 {
    margin-right: 40px !important;
}

.mr50 {
    margin-right: 50px !important;
}

.mbn {
    margin-bottom: 0 !important;
}

.mb5 {
    margin-bottom: 5px !important;
}

.mb10 {
    margin-bottom: 10px !important;
}

.mb15 {
    margin-bottom: 15px !important;
}

.mb20 {
    margin-bottom: 20px !important;
}

.mb25 {
    margin-bottom: 25px !important;
}

.mb30 {
    margin-bottom: 30px !important;
}

.mb35 {
    margin-bottom: 35px !important;
}

.mb40 {
    margin-bottom: 40px !important;
}

.mb50 {
    margin-bottom: 50px !important;
}

.mb70 {
    margin-bottom: 70px !important;
}

.mln {
    margin-left: 0 !important;
}

.ml5 {
    margin-left: 5px !important;
}

.ml10 {
    margin-left: 10px !important;
}

.ml15 {
    margin-left: 15px !important;
}

.ml20 {
    margin-left: 20px !important;
}

.ml25 {
    margin-left: 25px !important;
}

.ml30 {
    margin-left: 30px !important;
}

.ml35 {
    margin-left: 35px !important;
}

.ml40 {
    margin-left: 40px !important;
}

.ml50 {
    margin-left: 50px !important;
}
.ml-auto {
    margin-left: auto!important;
}
/* Axis Margins (both top/bottom or left/right) */
.mv5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
}

.mv10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.mv15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
}

.mv20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

.mv25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
}

.mv30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
}

.mv40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
}

.mv50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
}

.mv70 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
}

.mh5 {
    margin-left: 5px !important;
    margin-right: 5px !important;
}

.mh10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
}

.mh15 {
    margin-left: 15px !important;
    margin-right: 15px !important;
}

.mh20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
}

.mh25 {
    margin-left: 25px !important;
    margin-right: 25px !important;
}

.mh30 {
    margin-left: 30px !important;
    margin-right: 30px !important;
}

.mh40 {
    margin-left: 40px !important;
    margin-right: 40px !important;
}

.mh50 {
    margin-left: 50px !important;
    margin-right: 50px !important;
}

.mh70 {
    margin-left: 70px !important;
    margin-right: 70px !important;
}

.mtn5 {
    margin-top: -5px !important;
}

.mtn10 {
    margin-top: -10px !important;
}

.mtn15 {
    margin-top: -15px !important;
}

.mtn20 {
    margin-top: -20px !important;
}

.mtn30 {
    margin-top: -30px !important;
}

.mrn5 {
    margin-right: -5px !important;
}

.mrn10 {
    margin-right: -10px !important;
}

.mrn15 {
    margin-right: -15px !important;
}

.mrn20 {
    margin-right: -20px !important;
}

.mrn30 {
    margin-right: -30px !important;
}

.mbn5 {
    margin-bottom: -5px !important;
}

.mbn10 {
    margin-bottom: -10px !important;
}

.mbn15 {
    margin-bottom: -15px !important;
}

.mbn20 {
    margin-bottom: -20px !important;
}

.mbn30 {
    margin-bottom: -30px !important;
}

.mln5 {
    margin-left: -5px !important;
}

.mln10 {
    margin-left: -10px !important;
}

.mln15 {
    margin-left: -15px !important;
}

.mln20 {
    margin-left: -20px !important;
}

.mln30 {
    margin-left: -30px !important;
}

.mvn5 {
    margin-top: -5px !important;
    margin-bottom: -5px !important;
}

.mvn10 {
    margin-top: -10px !important;
    margin-bottom: -10px !important;
}

.mvn15 {
    margin-top: -15px !important;
    margin-bottom: -15px !important;
}

.mvn20 {
    margin-top: -20px !important;
    margin-bottom: -20px !important;
}

.mvn30 {
    margin-top: -30px !important;
    margin-bottom: -30px !important;
}

.mhn5 {
    margin-left: -5px !important;
    margin-right: -5px !important;
}

.mhn10 {
    margin-left: -10px !important;
    margin-right: -10px !important;
}

.mhn15 {
    margin-left: -15px !important;
    margin-right: -15px !important;
}

.mhn20 {
    margin-left: -20px !important;
    margin-right: -20px !important;
}

.mhn30 {
    margin-left: -30px !important;
    margin-right: -30px !important;
}

.lh0 {
    line-height: 0 !important;
}

.lh5 {
    line-height: 5px !important;
}

.lh10 {
    line-height: 10px !important;
}

.lh15 {
    line-height: 15px !important;
}

.lh20 {
    line-height: 20px !important;
}

.lh25 {
    line-height: 25px !important;
}

.lh30 {
    line-height: 30px !important;
}

.lh35 {
    line-height: 35px !important;
}

.lh40 {
    line-height: 40px !important;
}

.br-l-n {
    border-left: none !important;
}

.br-r-n {
    border-right: none !important;
}

.br-t-n {
    border-top: none !important;
}

.br-b-n {
    border-bottom: none !important;
}

.br-n {
    border: none !important;
}

.br-v-n {
    border-top: none !important;
    border-bottom: none !important;
}

.br-h-n {
    border-left: none !important;
    border-right: none !important;
}

.br-a {
    border: 1px solid #eee !important;
}

.br-l {
    border-left: 1px solid #eee !important;
}

.br-r {
    border-right: 1px solid #eee !important;
}

.br-t {
    border-top: 1px solid #eee !important;
}

.br-b {
    border-bottom: 1px solid #eee !important;
}

.br-dashed {
    border-style: dotted !important;
}

.br0 {
    border-radius: 0 !important;
}

.br1 {
    border-radius: 1px !important;
}

.br2 {
    border-radius: 2px !important;
}

.br3 {
    border-radius: 3px !important;
}

.br4 {
    border-radius: 4px !important;
}

.br6 {
    border-radius: 6px !important;
}

.br8 {
    border-radius: 8px !important;
}

.br12 {
    border-radius: 12px !important;
}

.br24 {
    border-radius: 24px !important;
}

.br64 {
    border-radius: 64px !important;
}

.bw1 {
    border-width: 1px !important;
}

.bw2 {
    border-width: 2px !important;
}

.bw3 {
    border-width: 3px !important;
}

.bw4 {
    border-width: 4px !important;
}

.bw5 {
    border-width: 5px !important;
}

.bw8 {
    border-width: 8px !important;
}

.bw10 {
    border-width: 10px !important;
}

.bw15 {
    border-width: 15px !important;
}

.br-white {
    border-color: #fff !important;
}

.br-lighter {
    border-color: #eee !important;
}

.br-light {
    border-color: #e7e7e7 !important;
}

.br-grey {
    border-color: #d9d9d9 !important;
}

.br-greyer {
    border-color: #ccc !important;
}

.br-dark {
    border-color: #3b3f4f !important;
}

.br-dark-light {
    border-color: #51566c !important;
}

.br-primary {
    border-color: #707ac0 !important;
}

.br-primary-light {
    border-color: #939bd0 !important;
}

.br-info {
    border-color: #3bafda !important;
}

.br-info-light {
    border-color: #66c1e2 !important;
}

.br-success {
    border-color: #70ca63 !important;
}

.br-success-light {
    border-color: #93d789 !important;
}

.br-warning {
    border-color: #f6bb42 !important;
}

.br-warning-light {
    border-color: #f8cd73 !important;
}

.br-danger {
    border-color: #e9573f !important;
}

.br-danger-light {
    border-color: #ee7f6d !important;
}

.br-alert {
    border-color: #707ac0 !important;
}

.br-alert-light {
    border-color: #939bd0 !important;
}

.br-system {
    border-color: #707ac0 !important;
}

.br-system-light {
    border-color: #939bd0 !important;
}

.br-tp-top {
    border-top-color: rgba(0, 0, 0, .1);
}

.br-tp-right {
    border-right-color: rgba(0, 0, 0, .1);
}

.br-tp-left {
    border-left-color: rgba(0, 0, 0, .1);
}

.fluid-width {
    width: 100% !important;
}

.mw10 {
    max-width: 10px !important;
}

.mw20 {
    max-width: 20px !important;
}

.mw30 {
    max-width: 30px !important;
}

.mw35 {
    max-width: 35px !important;
}

.mw40 {
    max-width: 40px !important;
}

.mw45 {
    max-width: 45px !important;
}

.mw50 {
    max-width: 50px !important;
}

.mw60 {
    max-width: 60px !important;
}

.mw80 {
    max-width: 80px !important;
}

.mw100 {
    max-width: 100px !important;
}

.mw140 {
    max-width: 140px !important;
}

.mw160 {
    max-width: 160px !important;
}

.mw180 {
    max-width: 180px !important;
}

.mw200 {
    max-width: 200px !important;
}

.mw240 {
    max-width: 240px !important;
}

.mw280 {
    max-width: 280px !important;
}

.mw320 {
    max-width: 320px !important;
}

.mw400 {
    max-width: 400px !important;
}

.mw450 {
    max-width: 450px !important;
}

.mw500 {
    max-width: 500px !important;
}

.mw600 {
    max-width: 600px !important;
}

.mw700 {
    max-width: 700px !important;
}

.mw800 {
    max-width: 800px !important;
}

.mw900 {
    max-width: 900px !important;
}

.mw1000 {
    max-width: 1000px !important;
}

.mw1100 {
    max-width: 1100px !important;
}

.mw1200 {
    max-width: 1200px !important;
}

.w20 {
    width: 20px !important;
}

.w30 {
    width: 30px !important;
}

.w40 {
    width: 40px !important;
}

.w50 {
    width: 50px !important;
}

.w75 {
    width: 75px !important;
}

.w100 {
    width: 100px !important;
}

.w125 {
    width: 125px !important;
}

.w140 {
    width: 140px !important;
}

.w150 {
    width: 150px !important;
}

.w175 {
    width: 175px !important;
}

.w200 {
    width: 200px !important;
}

.w225 {
    width: 225px !important;
}

.w250 {
    width: 250px !important;
}

.w300 {
    width: 300px !important;
}

.w320 {
    width: 320px !important;
}

.w350 {
    width: 350px !important;
}

.w400 {
    width: 400px;
}

.w450 {
    width: 450px !important;
}

.mnw20 {
    min-width: 20px !important;
}

.mnw30 {
    min-width: 30px !important;
}

.mnw40 {
    min-width: 40px !important;
}

.mnw50 {
    min-width: 50px !important;
}

.mnw75 {
    min-width: 75px !important;
}

.mnw100 {
    min-width: 100px !important;
}

.mnw125 {
    min-width: 125px !important;
}

.mnw150 {
    min-width: 150px !important;
}

.mnw175 {
    min-width: 175px !important;
}

.mnw200 {
    min-width: 200px !important;
}

.mnw250 {
    min-width: 250px !important;
}

.mnw300 {
    min-width: 300px !important;
}

.mnw500 {
    min-width: 500px !important;
}

.mnw700 {
    min-width: 700px !important;
}

.mnw1000 {
    min-width: 1000px !important;
}

.text-black {
    color: rgba(0, 0, 0, .87);
}

table tbody tr.message-read td {
    color: #999;
    background-color: #fbfbfb;
}

table tbody tr.message-unread td {
    background-color: #fff;
}

table.tc-text-center-head tfoot th, table.tc-text-center-head thead th {
    text-align: center;
}

table.tc-fs11-head tfoot th, table.tc-fs11-head thead th, table.tc-fs12-head tfoot th, table.tc-fs12-head thead th {
    font-size: 12px;
}

table.tc-checkbox-1 tbody td:first-child, table.tc-checkbox-2 tbody td:nth-child(2), table.tc-checkbox-3 tbody td:nth-child(3), table.tc-checkbox-last tbody td:last-child {
    text-align: center;
    padding: 11px;
}

table.tc-list-1 tbody td:first-child, table.tc-list-2 tbody td:nth-child(2), table.tc-list-3 tbody td:nth-child(3), table.tc-list-last tbody td:last-child {
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    width: 45px;
    padding: 0 10px;
    border-right: 1px solid #e5e5e5;
    background: #fdfdfd;
}

table.tc-bold-1 tbody td:first-child, table.tc-bold-2 tbody td:nth-child(2), table.tc-bold-3 tbody td:nth-child(3), table.tc-bold-last tbody td:last-child {
    font-weight: 600;
    text-align: right;
    font-size: 14px;
}

table.tc-med-1 tbody td:first-child, table.tc-med-2 tbody td:nth-child(2), table.tc-med-3 tbody td:nth-child(3), table.tc-med-last tbody td:last-child {
    font-weight: 400;
    color: #999;
}

table.tc-icon-1 tbody td:first-child, table.tc-icon-2 tbody td:nth-child(2), table.tc-icon-3 tbody td:nth-child(3), table.tc-icon-last tbody td:last-child {
    font-size: 18px;
    text-align: center;
    color: #999;
}

table.tc-text-muted-1 tbody td:first-child, table.tc-text-muted-2 tbody td:nth-child(2), table.tc-text-muted-3 tbody td:nth-child(3), table.tc-text-muted-last tbody td:last-child {
    color: #999;
}

table.tc-text-primary-1 tbody td:first-child, table.tc-text-primary-2 tbody td:nth-child(2), table.tc-text-primary-3 tbody td:nth-child(3), table.tc-text-primary-last tbody td:last-child {
    color: #707ac0;
}

table.tc-fw600-1 tbody td:first-child, table.tc-fw600-2 tbody td:nth-child(2), table.tc-fw600-3 tbody td:nth-child(3), table.tc-fw600-last tbody td:last-child {
    font-weight: 600;
}

table.tc-fs13-1 tbody td:first-child, table.tc-fs13-2 tbody td:nth-child(2), table.tc-fs13-3 tbody td:nth-child(3), table.tc-fs13-last tbody td:last-child {
    font-size: 13px;
}

table.tc-text-left-1 tbody td:first-child, table.tc-text-left-2 tbody td:nth-child(2), table.tc-text-left-3 tbody td:nth-child(3), table.tc-text-left-last tbody td:last-child {
    text-align: right;
}

table.tc-text-center-1 tbody td:first-child, table.tc-text-center-2 tbody td:nth-child(2), table.tc-text-center-3 tbody td:nth-child(3), table.tc-text-center-last tbody td:last-child {
    text-align: center;
}

table.tc-text-right-1 tbody td:first-child, table.tc-text-right-2 tbody td:nth-child(2), table.tc-text-right-3 tbody td:nth-child(3), table.tc-text-right-last tbody td:last-child {
    text-align: right;
}

table.tc-va-t-1 tbody td:first-child, table.tc-va-t-2 tbody td:nth-child(2), table.tc-va-t-3 tbody td:nth-child(3), table.tc-va-t-last tbody td:last-child {
    vertical-align: top;
}

table.tc-va-m-1 tbody td:first-child, table.tc-va-m-2 tbody td:nth-child(2), table.tc-va-m-3 tbody td:nth-child(3), table.tc-va-m-last tbody td:last-child {
    vertical-align: middle;
}

table.tc-va-b-1 tbody td:first-child, table.tc-va-b-2 tbody td:nth-child(2), table.tc-va-b-3 tbody td:nth-child(3), table.tc-va-b-last tbody td:last-child {
    vertical-align: bottom;
}

.table-checklist td {
    cursor: pointer;
}

.table-widget .tab-content {
    padding: 0;
    border: 0;
    overflow: hidden;
}

.table-widget .progress {
    width: 80%;
    height: 13px;
    margin: 0;
}

.table-widget .badge, .table-widget .label {
    margin-right: 7px;
}

.table-checklist tr.task-checked {
    color: #bbb;
}

    .table-checklist tr.task-checked .text-slash {
        text-decoration: line-through;
    }

    .table-checklist tr.task-checked .label, .table-checklist tr.task-checked .progress {
        opacity: .3;
    }

html {
    height: 100%;
    background: #fff;
}

body {
    width: 100%;
    height: 100%;
    min-height: 900px;
    margin: 0;
    padding: 0;
    background: #e9e9e9;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    font-size-adjust: 100%
}

#main {
    position: relative;
    min-height: 100%;
    background: #eee;
}

    #main:before {
        content: "";
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: #eee;
    }

#content_wrapper {
    position: relative;
    left: 0;
    margin-left: 230px;
}

body.onload-check #content_wrapper, body.onload-check #sidebar_left, body.onload-check #sidebar_right, body.onload-check #topbar, body.onload-check .navbar, body.onload-check .navbar-branding {
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

.navbar.navbar-fixed-top + #sidebar_left + #content_wrapper {
    padding-top: 60px;
}

#sidebar_left.affix {
    position: fixed;
}

    #sidebar_left.affix > .sidebar-menu {
        overflow-x: hidden;
        position: absolute;
        width: 100%;
        top: 85px;
        bottom: 52px;
        transition: top .2s ease-in-out;
    }

    #sidebar_left.affix > .email-menu + .sidebar-menu {
        overflow-x: hidden;
        position: absolute;
        width: 100%;
        top: 485px;
        bottom: 52px;
        transition: top .2s ease-in-out;
    }

    #sidebar_left.affix:before {
        left: 0;
    }

body.sidebar-hidden #sidebar_left.affix:before, body.sidebar-rtl #sidebar_left.affix:before {
    left: -230px;
}

.user-info.hidden, .user-info.hidden + .user-divider, body.usermenu-hidden .user-info, body.usermenu-hidden .user-info + .user-divider {
    display: none;
}

body.usermenu-hidden #sidebar_left.affix .user-info + .user-divider + .menu-widget + .sidebar-menu, body.usermenu-hidden #sidebar_left.affix .user-info + .user-divider + .sidebar-menu {
    top: 0;
}

#sidebar_left.affix > .menu-widget.menu-widget-open + .sidebar-menu {
    top: 250px;
}

#topbar.affix {
    z-index: 1027;
    width: auto;
    left: 0;
    right: 0;
    margin-left: 230px;
    position: fixed;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

    #topbar.affix + #content {
        margin-top: 51px;
    }

    #topbar.affix.alt + #content {
        margin-top: 71px;
    }

body.sb-l-o #topbar.affix {
    margin-left: 230px;
}

body.sb-l-m #topbar.affix {
    margin-left: 60px;
}

body.sb-l-c #topbar.affix {
    margin-left: 0;
}

@media (max-width:900px) {
    body.sb-l-o #topbar.affix {
        width: 100%;
        margin-left: 230px;
    }

    body.sb-l-m #topbar.affix {
        width: auto;
        margin-left: 45px;
    }

    body.sb-l-c #topbar.affix {
        width: 100%;
        margin-left: 0;
    }
}

#topbar.affix.hidden + #content {
    margin-top: 0;
}

body.hidden-breadcrumbs #topbar {
    display: none;
}

body.sidebar-collapsed #sidebar:before {
    width: 40px;
}

.navbar {
    z-index: 1030;
    margin-bottom: 0;
    height: 60px;
    color: #666;
    background-color: #FFF;
    border-radius: 0;
    border: 0;
    border-bottom: 0;
    box-shadow: 0 1px 0 0 #e0e0e0;
}

    .navbar.navbar-shadow {
        -webkit-box-shadow: 0 1px 0 0 rgba(0, 0, 0, .08), 0 2px 0 0 rgba(0, 0, 0, .02);
        box-shadow: 0 1px 0 0 rgba(0, 0, 0, .08), 0 2px 0 0 rgba(0, 0, 0, .02);
    }

    .navbar .nav {
        margin: 0;
    }

        .navbar .nav > li {
            float: left;
        }

            .navbar .nav > li > a {
                color: #666;
                font-size: 14px;
                font-weight: 900;
                padding-top: 20px;
                padding-bottom: 20px;
                height: 60px;
                max-height: 60px;
                min-width: 69px;
                text-align: center;
            }

                .navbar .nav > li.active > a, .navbar .nav > li.open > a, .navbar .nav > li:focus > a, .navbar .nav > li:hover > a, .navbar .nav > li > a:focus, .navbar .nav > li > a:hover {
                    color: #222;
                    background-color: #f7f7f7;
                }

            .navbar .nav > li.dropdown.open .dropdown-menu {
                padding: 0;
                margin-top: 10px;
                border-radius: 2px;
                border-top: 3px solid transparent;
            }

                .navbar .nav > li.dropdown.open .dropdown-menu > a {
                    font-weight: 600;
                }

                .navbar .nav > li.dropdown.open .dropdown-menu:after {
                    content: "";
                    position: absolute;
                    width: 0;
                    height: 0;
                    border-color: transparent transparent #707ac0;
                    border-style: solid;
                    right: 11px;
                    bottom: 100%;
                    border-width: 0 10px 10px;
                }

        .navbar .nav .menu-divider {
            color: rgba(0, 0, 0, .15);
            font-size: 8px;
            padding: 25px 10px;
        }

    .navbar .dropdown-menu .menu-divider {
        color: rgba(0, 0, 0, .2);
        font-size: 8px;
        padding: 25px 10px;
    }

    .navbar .dropdown-menu > li.dropdown-header {
        padding: 8px;
        background: #fafafa;
        border-bottom: 1px solid #e5e5e5;
    }

        .navbar .dropdown-menu > li.dropdown-header .dropdown-title {
            color: #666;
            font-size: 13px;
            font-weight: 600;
            padding-left: 5px;
            line-height: 30px;
        }

        .navbar .dropdown-menu > li.dropdown-header .label {
            font-size: 75%;
            padding: .1em .6em .2em;
            float: right;
            height: 20px;
            line-height: 20px;
            margin-top: 5px;
            margin-right: 5px;
        }

.scroller-navbar {
    max-height: 250px;
}

.scroller-nm {
    margin: -12px;
}

.navbar-left > li.dropdown.open:first-child .dropdown-menu:after, .navbar-left > li.dropdown:first-child > .open .dropdown-menu:after {
    left: 10px;
    right: auto;
}

.navbar .caret {
    position: relative;
    top: -1px;
    margin-left: 3px;
}

    .navbar .caret.alt {
        width: 20px;
        height: 20px;
        text-align: center;
        color: inherit;
        margin: 0;
        border: 0;
    }

.navbar li.dropdown .caret.alt:after {
    opacity: .75;
    font-size: 14px;
    display: inline-block;
    content: "\f107";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: 400;
    text-decoration: inherit;
}

.navbar li.dropdown.open .caret.alt:after {
    opacity: 1;
}

.navbar .navbar-btn {
    padding: 0 5px;
}

    .navbar .navbar-btn.btn-group > .btn + .dropdown-toggle {
        border-left: 0;
    }

    .navbar .navbar-btn > .btn > span.ad, .navbar .navbar-btn > .btn > span.fa, .navbar .navbar-btn > .btn > span.glyphicon, .navbar .navbar-btn > .btn > span.glyphicons {
        position: relative;
        top: -1px;
        font-size: 14px;
        vertical-align: middle;
    }

    .navbar .navbar-btn.btn-group > .btn {
        color: #888;
        border-color: rgba(0, 0, 0, .15);
        background-color: #f2f2f2;
        background-color: rgba(0, 0, 0, .045);
    }

        .navbar .navbar-btn.btn-group > .btn:hover {
            color: #333;
            border-color: rgba(0, 0, 0, .2);
        }

        .navbar .navbar-btn.btn-group.open > .btn, .navbar .navbar-btn.btn-group > .btn.active {
            color: #222;
        }

    .navbar .navbar-btn .badge {
        position: absolute;
        top: -7px;
        right: -5px;
        padding: 3px 6px;
        opacity: .95;
    }

.navbar .nav > li.dropdown > .open .dropdown-menu {
    color: #222;
    padding: 0;
    margin-top: 25px;
    border-radius: 2px;
    border-top: 3px solid transparent;
}

    .navbar .nav > li.dropdown > .open .dropdown-menu:after {
        content: "";
        position: absolute;
        width: 0;
        height: 0;
        border-color: transparent transparent #707ac0;
        border-style: solid;
        right: 11px;
        bottom: 100%;
        border-width: 0 10px 10px;
    }

.navbar[class*=bg-] .navbar-btn.btn-group > .btn {
    color: #BBB;
    color: rgba(255, 255, 255, .8);
    border-color: transparent;
    background-color: #f2f2f2;
    background-color: rgba(255, 255, 255, .2);
}

    .navbar[class*=bg-] .navbar-btn.btn-group.open > .btn, .navbar[class*=bg-] .navbar-btn.btn-group > .btn.active, .navbar[class*=bg-] .navbar-btn.btn-group > .btn:hover {
        color: #fff;
    }

.navbar .nav > li.dropdown.disable-arrow > .navbar-btn.open .dropdown-menu, .navbar .nav > li.dropdown.menu-merge > .navbar-btn.open .dropdown-menu {
    margin-top: 15px;
}

.navbar .nav > li.dropdown.disable-arrow.open .dropdown-menu, .navbar .nav > li.dropdown.menu-merge.open .dropdown-menu {
    margin-top: 1px;
}

.navbar[class*=bg-] .nav > li.dropdown.menu-merge.open .dropdown-menu, .navbar[class*=bg-] .nav > li.dropdown.menu-merge > .navbar-btn.open .dropdown-menu {
    border-top: 0;
}

    .navbar[class*=bg-] .nav > li.dropdown.menu-merge.open .dropdown-menu:after, .navbar[class*=bg-] .nav > li.dropdown.menu-merge > .navbar-btn.open .dropdown-menu:after {
        border-bottom-color: #fafafa;
    }

.navbar .nav > li.dropdown.disable-arrow.open .dropdown-menu:after, .navbar .nav > li.dropdown.disable-arrow > .navbar-btn.open .dropdown-menu:after {
    display: none;
}

.navbar[class*=bg-] .nav > li.dropdown.disable-arrow.open .dropdown-menu, .navbar[class*=bg-] .nav > li.dropdown.disable-arrow > .navbar-btn.open .dropdown-menu {
    border-top: 0;
}

.navbar .media-list > li.media {
    margin: 0;
    padding: 10px;
}

    .navbar .media-list > li.media + li.media {
        border-top: 1px solid #EEE;
    }

    .navbar .media-list > li.media > a {
        padding: 0 10px 0 0;
        display: table-cell;
    }

    .navbar .media-list > li.media .media-heading small {
        color: #AAA;
    }

.navbar .nav .list-group > li.list-group-item {
    padding: 0;
}

    .navbar .nav .list-group > li.list-group-item > a {
        padding: 12px;
    }

        .navbar .nav .list-group > li.list-group-item > a .label {
            font-size: 75%;
            padding: .1em .65em .2em;
            float: right;
            height: 20px;
            line-height: 20px;
        }

        .navbar .nav .list-group > li.list-group-item > a .fa, .navbar .nav .list-group > li.list-group-item > a .glyphicon, .navbar .nav .list-group > li.list-group-item > a .glyphicons {
            padding-right: 5px;
        }

.navbar .list-group > li.dropdown-header + li.list-group-item {
    border-top: 0;
}

.navbar .dropdown-menu > li.dropdown-footer a {
    text-align: center;
    padding: 8px 10px 9px;
    border-top: 1px solid #e5e5e5;
    background-color: #fafafa;
    -webkit-transition: background-color .4s ease;
    transition: background-color .4s ease;
}

    .navbar .dropdown-menu > li.dropdown-footer a:hover {
        background-color: #FFFEF0;
    }

.navbar .nav > li.dropdown .panel-heading {
    border-top: 0;
}

.navbar .nav > li.dropdown .panel-menu {
    color: #666;
    padding: 9px 12px 10px;
    border-top: 0;
}

.navbar-branding {
    position: relative;
    overflow: hidden;
    float: left;
    width: 230px;
    height: 60px;
    background-color: transparent;
}

    .navbar-branding .navbar-brand {
        color: #666;
        height: 60px;
        line-height: 58px;
        padding: 0 0 0 18px;
        font-size: 17px;
        font-weight: 400;
        letter-spacing: .5px;
    }

        .navbar-branding .navbar-brand b {
            font-weight: 700;
        }

#toggle_sidemenu_l, #toggle_sidemenu_t {
    color: #666;
    float: right;
    cursor: pointer;
    font-size: 16px;
    line-height: 58px;
    max-height: 60px;
    width: 60px;
    text-align: center;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#toggle_sidemenu_t {
    display: none;
    width: 31px;
    height: 60px;
    line-height: 58px;
    margin-left: 10px;
    background-color: rgba(0, 0, 0, .06);
    border-left: 1px solid rgba(0, 0, 0, .08);
    -webkit-transition: background-color .2s ease;
    transition: background-color .2s ease;
}

    #toggle_sidemenu_t:hover {
        background-color: rgba(0, 0, 0, .09);
        border-left: 1px solid rgba(0, 0, 0, .1);
    }

    #toggle_sidemenu_t .fa-caret-up {
        position: relative;
        font-size: 13px;
        border: 1px solid;
        border-top: 3px solid;
        padding: 0 3px 1px;
        margin-bottom: 2px;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

body.sb-top #toggle_sidemenu_t {
    display: block;
}

.navbar-nav.navbar-left {
    float: left;
    position: relative;
    max-height: 60px;
}

    .navbar-nav.navbar-left > li > a {
        padding-right: 12px;
        padding-left: 12px;
    }

.navbar-nav.navbar-right, .navbar-nav.navbar-right:last-child {
    float: right;
    margin: 0 15px 0 0;
}

.navbar-right .email span.label {
    border-radius: 100%
}

.navbar-form {
    margin-top: 17px;
    margin-bottom: 17px;
}

    .navbar-form.navbar-search input {
        height: 26px;
        padding: 0 12px;
        -webkit-transition: all .2s ease;
        -o-transition: all .2s ease;
        transition: all .2s ease;
        box-shadow: none;
        border-radius: 20px;
        border-color: #EEE;
    }

        .navbar-form.navbar-search input:focus {
            background-color: #f8f8f8;
            border-color: #f0f0f0;
        }

    .navbar-form.navbar-search.square input {
        height: 30px;
        border-radius: 3px;
        margin-top: -2px;
        margin-bottom: -2px;
    }

.navbar .dropdown.open .btn-group.open .multiselect-container.dropdown-menu {
    margin-top: 0;
    border-top: 1px solid rgba(0, 0, 0, .1) !important;
    border-color: rgba(0, 0, 0, .1);
}

    .navbar .dropdown.open .btn-group.open .multiselect-container.dropdown-menu:after {
        display: none;
    }

#user-role + .btn-group > button.multiselect {
    overflow: hidden;
    text-overflow: ellipsis;
}

#user-status + .btn-group .multiselect-container.dropdown-menu {
    right: auto !important;
    left: 0 !important;
}

#user-role + .btn-group .multiselect-container.dropdown-menu, #user-status + .btn-group .multiselect-container.dropdown-menu {
    top: 0 !important;
    position: relative !important;
    margin-top: 9px;
    margin-bottom: 3px;
    width: 212px;
}

    #user-role + .btn-group .multiselect-container.dropdown-menu > li:first-child, #user-role + .btn-group .multiselect-container.dropdown-menu > li:first-child label, #user-status + .btn-group .multiselect-container.dropdown-menu > li:first-child, #user-status + .btn-group .multiselect-container.dropdown-menu > li:first-child label {
        cursor: pointer;
        position: relative;
    }

        #user-role + .btn-group .multiselect-container.dropdown-menu > li:first-child:after, #user-status + .btn-group .multiselect-container.dropdown-menu > li:first-child:after {
            content: "\f00d";
            font-family: FontAwesome;
            position: absolute;
            width: 15px;
            height: 15px;
            top: 6px;
            right: 8px;
            font-size: 13px;
            font-weight: 600;
            color: #AAA;
            -webkit-transition: color .15s ease;
            transition: color .15s ease;
        }

        #user-role + .btn-group .multiselect-container.dropdown-menu > li:first-child:hover:after, #user-status + .btn-group .multiselect-container.dropdown-menu > li:first-child:hover:after {
            color: #707ac0;
        }

.navbar .nav > li.dropdown .open .dropdown-menu, .navbar .nav > li.dropdown.open .dropdown-menu {
    border-top-color: #707ac0;
}

    .navbar .nav > li.dropdown .open .dropdown-menu:after, .navbar .nav > li.dropdown.open .dropdown-menu:after {
        border-bottom-color: #707ac0;
    }

.navbar .nav > li .dropdown-toggle + .dropdown-menu > .active > a, .navbar .nav > li .dropdown-toggle + .dropdown-menu > .active > a:focus, .navbar .nav > li .dropdown-toggle + .dropdown-menu > .active > a:hover {
    color: #fff;
    background-color: #707ac0;
}

.navbar.bg-primary {
    background-color: #707ac0;
}

    .navbar.bg-primary .nav > li.active > a, .navbar.bg-primary .nav > li.open > a, .navbar.bg-primary .nav > li:focus > a, .navbar.bg-primary .nav > li:hover > a, .navbar.bg-primary .nav > li > a:focus, .navbar.bg-primary .nav > li > a:hover {
        color: #FFF;
        background-color: #707ac0;
    }

    .navbar.bg-primary .nav > li.dropdown .open .dropdown-menu, .navbar.bg-primary .nav > li.dropdown.open .dropdown-menu {
        border-top-color: #707ac0;
    }

        .navbar.bg-primary .nav > li.dropdown .open .dropdown-menu:after, .navbar.bg-primary .nav > li.dropdown.open .dropdown-menu:after {
            border-bottom-color: #707ac0;
        }

    .navbar.bg-primary .nav > li .dropdown-toggle + .dropdown-menu > .active > a, .navbar.bg-primary .nav > li .dropdown-toggle + .dropdown-menu > .active > a:focus, .navbar.bg-primary .nav > li .dropdown-toggle + .dropdown-menu > .active > a:hover {
        color: #FFF;
        background-color: #707ac0;
    }

.navbar.bg-success {
    background-color: #70ca63;
}

    .navbar.bg-success .nav > li.active > a, .navbar.bg-success .nav > li.open > a, .navbar.bg-success .nav > li:focus > a, .navbar.bg-success .nav > li:hover > a, .navbar.bg-success .nav > li > a:focus, .navbar.bg-success .nav > li > a:hover {
        color: #FFF;
        background-color: #707ac0;
    }

    .navbar.bg-success .nav > li.dropdown .open .dropdown-menu, .navbar.bg-success .nav > li.dropdown.open .dropdown-menu {
        border-top-color: #70ca63;
    }

        .navbar.bg-success .nav > li.dropdown .open .dropdown-menu:after, .navbar.bg-success .nav > li.dropdown.open .dropdown-menu:after {
            border-bottom-color: #70ca63;
        }

    .navbar.bg-success .nav > li .dropdown-toggle + .dropdown-menu > .active > a, .navbar.bg-success .nav > li .dropdown-toggle + .dropdown-menu > .active > a:focus, .navbar.bg-success .nav > li .dropdown-toggle + .dropdown-menu > .active > a:hover {
        color: #FFF;
        background-color: #70ca63;
    }

.navbar.bg-info {
    background-color: #3bafda;
}

    .navbar.bg-info .nav > li.active > a, .navbar.bg-info .nav > li.open > a, .navbar.bg-info .nav > li:focus > a, .navbar.bg-info .nav > li:hover > a, .navbar.bg-info .nav > li > a:focus, .navbar.bg-info .nav > li > a:hover {
        color: #FFF;
        background-color: #707ac0;
    }

    .navbar.bg-info .nav > li.dropdown .open .dropdown-menu, .navbar.bg-info .nav > li.dropdown.open .dropdown-menu {
        border-top-color: #3bafda;
    }

        .navbar.bg-info .nav > li.dropdown .open .dropdown-menu:after, .navbar.bg-info .nav > li.dropdown.open .dropdown-menu:after {
            border-bottom-color: #3bafda;
        }

    .navbar.bg-info .nav > li .dropdown-toggle + .dropdown-menu > .active > a, .navbar.bg-info .nav > li .dropdown-toggle + .dropdown-menu > .active > a:focus, .navbar.bg-info .nav > li .dropdown-toggle + .dropdown-menu > .active > a:hover {
        color: #FFF;
        background-color: #3bafda;
    }

.navbar.bg-warning {
    background-color: #f6bb42;
}

    .navbar.bg-warning .nav > li.active > a, .navbar.bg-warning .nav > li.open > a, .navbar.bg-warning .nav > li:focus > a, .navbar.bg-warning .nav > li:hover > a, .navbar.bg-warning .nav > li > a:focus, .navbar.bg-warning .nav > li > a:hover {
        color: #FFF;
        background-color: #707ac0;
    }

    .navbar.bg-warning .nav > li.dropdown .open .dropdown-menu, .navbar.bg-warning .nav > li.dropdown.open .dropdown-menu {
        border-top-color: #f6bb42;
    }

        .navbar.bg-warning .nav > li.dropdown .open .dropdown-menu:after, .navbar.bg-warning .nav > li.dropdown.open .dropdown-menu:after {
            border-bottom-color: #f6bb42;
        }

    .navbar.bg-warning .nav > li .dropdown-toggle + .dropdown-menu > .active > a, .navbar.bg-warning .nav > li .dropdown-toggle + .dropdown-menu > .active > a:focus, .navbar.bg-warning .nav > li .dropdown-toggle + .dropdown-menu > .active > a:hover {
        color: #FFF;
        background-color: #f6bb42;
    }

.navbar.bg-danger {
    background-color: #e9573f;
}

    .navbar.bg-danger .nav > li.active > a, .navbar.bg-danger .nav > li.open > a, .navbar.bg-danger .nav > li:focus > a, .navbar.bg-danger .nav > li:hover > a, .navbar.bg-danger .nav > li > a:focus, .navbar.bg-danger .nav > li > a:hover {
        color: #FFF;
        background-color: #707ac0;
    }

    .navbar.bg-danger .nav > li.dropdown .open .dropdown-menu, .navbar.bg-danger .nav > li.dropdown.open .dropdown-menu {
        border-top-color: #e9573f;
    }

        .navbar.bg-danger .nav > li.dropdown .open .dropdown-menu:after, .navbar.bg-danger .nav > li.dropdown.open .dropdown-menu:after {
            border-bottom-color: #e9573f;
        }

    .navbar.bg-danger .nav > li .dropdown-toggle + .dropdown-menu > .active > a, .navbar.bg-danger .nav > li .dropdown-toggle + .dropdown-menu > .active > a:focus, .navbar.bg-danger .nav > li .dropdown-toggle + .dropdown-menu > .active > a:hover {
        color: #FFF;
        background-color: #e9573f;
    }

.navbar.bg-alert {
    background-color: #707ac0;
}

    .navbar.bg-alert .nav > li.active > a, .navbar.bg-alert .nav > li.open > a, .navbar.bg-alert .nav > li:focus > a, .navbar.bg-alert .nav > li:hover > a, .navbar.bg-alert .nav > li > a:focus, .navbar.bg-alert .nav > li > a:hover {
        color: #FFF;
        background-color: #707ac0;
    }

    .navbar.bg-alert .nav > li.dropdown .open .dropdown-menu, .navbar.bg-alert .nav > li.dropdown.open .dropdown-menu {
        border-top-color: #707ac0;
    }

        .navbar.bg-alert .nav > li.dropdown .open .dropdown-menu:after, .navbar.bg-alert .nav > li.dropdown.open .dropdown-menu:after {
            border-bottom-color: #707ac0;
        }

    .navbar.bg-alert .nav > li .dropdown-toggle + .dropdown-menu > .active > a, .navbar.bg-alert .nav > li .dropdown-toggle + .dropdown-menu > .active > a:focus, .navbar.bg-alert .nav > li .dropdown-toggle + .dropdown-menu > .active > a:hover {
        color: #FFF;
        background-color: #707ac0;
    }

.navbar.bg-system {
    background-color: #707ac0;
}

    .navbar.bg-system .nav > li.active > a, .navbar.bg-system .nav > li.open > a, .navbar.bg-system .nav > li:focus > a, .navbar.bg-system .nav > li:hover > a, .navbar.bg-system .nav > li > a:focus, .navbar.bg-system .nav > li > a:hover {
        color: #FFF;
        background-color: #707ac0;
    }

    .navbar.bg-system .nav > li.dropdown .open .dropdown-menu, .navbar.bg-system .nav > li.dropdown.open .dropdown-menu {
        border-top-color: #707ac0;
    }

        .navbar.bg-system .nav > li.dropdown .open .dropdown-menu:after, .navbar.bg-system .nav > li.dropdown.open .dropdown-menu:after {
            border-bottom-color: #707ac0;
        }

    .navbar.bg-system .nav > li .dropdown-toggle + .dropdown-menu > .active > a, .navbar.bg-system .nav > li .dropdown-toggle + .dropdown-menu > .active > a:focus, .navbar.bg-system .nav > li .dropdown-toggle + .dropdown-menu > .active > a:hover {
        color: #FFF;
        background-color: #707ac0;
    }

.navbar.bg-dark {
    background-color: #3b3f4f;
}

    .navbar.bg-dark .nav > li.active > a, .navbar.bg-dark .nav > li.open > a, .navbar.bg-dark .nav > li:focus > a, .navbar.bg-dark .nav > li:hover > a, .navbar.bg-dark .nav > li > a:focus, .navbar.bg-dark .nav > li > a:hover {
        color: #FFF;
        background-color: #707ac0;
    }

    .navbar.bg-dark .nav > li.dropdown .open .dropdown-menu, .navbar.bg-dark .nav > li.dropdown.open .dropdown-menu {
        border-top-color: #3b3f4f;
    }

        .navbar.bg-dark .nav > li.dropdown .open .dropdown-menu:after, .navbar.bg-dark .nav > li.dropdown.open .dropdown-menu:after {
            border-bottom-color: #3b3f4f;
        }

    .navbar.bg-dark .nav > li .dropdown-toggle + .dropdown-menu > .active > a, .navbar.bg-dark .nav > li .dropdown-toggle + .dropdown-menu > .active > a:focus, .navbar.bg-dark .nav > li .dropdown-toggle + .dropdown-menu > .active > a:hover {
        color: #FFF;
        background-color: #3b3f4f;
    }

.navbar[class*=bg-] {
    border-bottom-color: transparent;
    box-shadow: none;
}

    .navbar[class*=bg-] .navbar-brand {
        color: #fff;
    }

    .navbar[class*=bg-] .nav > li > a {
        color: #fff;
        color: rgba(0, 0, 0, .54);
        border-right: 1px solid #e1e1e1;
        -webkit-transition: box-shadow .4s cubic-bezier(.25, .8, .25, 1), background-color .4s cubic-bezier(.25, .8, .25, 1);
        transition: box-shadow .4s cubic-bezier(.25, .8, .25, 1), background-color .4s cubic-bezier(.25, .8, .25, 1);
    }

    .navbar[class*=bg-] .nav > li:first-child > a {
        border-left: 1px solid #e1e1e1;
    }

    .navbar[class*=bg-] .nav > li:last-child > a {
        border-right: none;
    }

    .navbar[class*=bg-] .nav > li.open > a {
        color: #fff;
    }

    .navbar[class*=bg-] .caret.caret-tp {
        border-top-color: rgba(20, 0, 0, .54);
    }

    .navbar[class*=bg-] #toggle_sidemenu_l, .navbar[class*=bg-] #toggle_sidemenu_l:focus, .navbar[class*=bg-] #toggle_sidemenu_l:hover {
        color: rgba(0, 0, 0, .54);
    }

    .navbar[class*=bg-] #toggle_sidemenu_t {
        color: rgba(255, 255, 255, .5);
        -webkit-transition: color .2s ease;
        transition: color .2s ease;
    }

        .navbar[class*=bg-] #toggle_sidemenu_t:focus, .navbar[class*=bg-] #toggle_sidemenu_t:hover {
            color: #fff;
        }

    .navbar[class*=bg-] .navbar-search input, .navbar[class*=bg-] .navbar-search input:focus {
        border-color: transparent;
    }

    .navbar[class*=bg-] .navbar-search.alt input {
        color: #BBB;
        color: rgba(255, 255, 255, .8);
        background-color: #BBB;
        background-color: rgba(255, 255, 255, .2);
        border-color: transparent;
    }

        .navbar[class*=bg-] .navbar-search.alt input:focus {
            border-color: transparent;
        }

    .navbar[class*=bg-].navbar-shadow {
        border-bottom: 1px solid transparent;
        box-shadow: none;
    }

.navbar .navbar-right > li:last-child > .dropdown-menu > li > a {
    white-space: inherit;
}

@media (max-width:900px) {
    .navbar .navbar-right: last-child {
        margin-right: 5px;
    }

    .navbar .navbar-right > li:last-child > a > img {
        margin-right: 5px !important;
    }

    .navbar .navbar-right > li:last-child > a > span {
        display: none;
    }

        .navbar .navbar-right > li:last-child > a > span.caret {
            display: inline-block;
        }

    .navbar-form.navbar-search {
        padding: 18px 8px;
        font-size: 16px;
        margin: 0;
        cursor: pointer;
        width: auto;
        float: left;
    }

        .navbar-form.navbar-search .form-group {
            margin: 0 !important;
        }

        .navbar-form.navbar-search:after {
            content: "\f002";
            font: normal normal normal 14px/1 FontAwesome;
            font-size: inherit;
            position: relative;
            line-height: 1;
            display: inline-block;
            text-decoration: none;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            text-rendering: auto;
            transform: translate(0, 0);
        }

        .navbar-form.navbar-search input {
            opacity: 0;
            z-index: -1;
            visibility: hidden;
            position: absolute;
            top: -60px;
            left: 0;
            width: 100%;
            height: 60px;
            margin: 0;
            font-size: 24px;
            color: #AAA;
            border-radius: 0;
            border: 0;
            text-align: center;
            -webkit-transition: all .3s ease;
            transition: all .3s ease;
        }

            .navbar-form.navbar-search input:focus, .navbar.bg-light .navbar-form.navbar-search input:focus {
                background-color: #FFF;
            }

        .navbar-form.navbar-search.search-open input {
            z-index: 1040;
            opacity: 1 !important;
            visibility: visible;
            top: 0;
            color: #666 !important;
            border-bottom: 0;
            background-color: #FFF !important;
            -webkit-box-shadow: 0 1px 0 0 rgba(0, 0, 0, .08), 0 2px 0 0 rgba(0, 0, 0, .02) !important;
            box-shadow: 0 1px 0 0 rgba(0, 0, 0, .08), 0 2px 0 0 rgba(0, 0, 0, .02) !important;
        }

            .navbar-form.navbar-search.search-open input:focus {
                border-bottom-color: #DDD;
            }

        .navbar-form.navbar-search .search-remove {
            display: none;
            z-index: 1040;
            position: absolute;
            color: #AAA;
            top: 0;
            right: 0;
            height: 60px;
            line-height: 59px;
            padding-left: 15px;
            padding-right: 25px;
        }

            .navbar-form.navbar-search .search-remove:after {
                position: relative;
                content: "\e014";
                font-family: 'Glyphicons Halflings';
                text-align: center;
                font-size: 20px;
            }

        .navbar-form.navbar-search.search-open .search-remove:hover {
            color: #ee7f6d;
        }
}

@media (max-width:599px) {
    .navbar .navbar-nav > li.dropdown, .navbar .navbar-nav > li.dropdown .navbar-btn, .sb-l-m .navbar > .navbar-right {
        position: static !important;
    }

    .navbar .navbar-right:last-child {
        margin-right: 0;
    }

    .navbar > .navbar-right {
        display: none;
    }

    .sb-l-m .navbar > .navbar-right {
        display: block;
    }

    .navbar .nav > li.dropdown.open .dropdown-menu:after, .navbar .nav > li.dropdown > .open .dropdown-menu:after {
        display: none;
    }

    .navbar-left .dropdown-menu, .navbar-left .open .dropdown-menu, .navbar-right .dropdown-menu, .navbar-right .open .dropdown-menu {
        z-index: 1000;
        margin-top: 0 !important;
        float: left;
        position: absolute;
        top: 100%;
        left: -1px;
        min-width: 101%;
        list-style: none;
        background-color: #FFF;
        border: 1px solid rgba(0, 0, 0, .15);
        background-clip: padding-box;
        -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
        box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    }

    #user-role + .btn-group .multiselect-container.dropdown-menu, #user-status + .btn-group .multiselect-container.dropdown-menu {
        top: 34px !important;
        position: absolute !important;
        right: 0;
        left: auto;
    }
}

.navbar .nav > li.dropdown .timeline-list li.timeline-item {
    padding: 18px 70px 18px 45px;
}

    .navbar .nav > li.dropdown .timeline-list li.timeline-item .timeline-icon {
        left: 9px;
        top: 12px;
    }

    .navbar .nav > li.dropdown .timeline-list li.timeline-item:after {
        left: 21px;
        top: 0;
    }

    .navbar .nav > li.dropdown .timeline-list li.timeline-item .timeline-desc {
        letter-spacing: 0;
    }

    .navbar .nav > li.dropdown .timeline-list li.timeline-item .timeline-date {
        font-size: 11px;
        right: 8px;
        top: 17px;
    }

.navbar .nav > li.dropdown .chat-widget .media-left {
    padding-right: 10px;
}

.navbar .nav > li.dropdown .chat-widget .media-right {
    padding-left: 10px;
}

    .navbar .nav > li.dropdown .chat-widget .media-left img, .navbar .nav > li.dropdown .chat-widget .media-right img {
        max-width: 35px;
        border-radius: 2px;
        border: 0;
    }

.navbar .nav > li.dropdown .chat-widget .media-body {
    padding: 5px;
    background-color: #fafafa;
}

.navbar .nav > li.dropdown .chat-widget .media-status:after {
    font-size: 9px;
}

.navbar .nav > li.dropdown .alerts-widget .media {
    position: relative;
}

.navbar .nav > li.dropdown .alerts-widget .media-left {
    vertical-align: middle;
    padding-right: 11px;
    border-right: 1px dashed #DDD;
}

.navbar .nav > li.dropdown .alerts-widget a.media-left {
    color: #AAA;
    font-size: 18px;
}

.navbar .nav > li.dropdown .alerts-widget .media-body {
    font-size: 12px;
    font-weight: 400;
    padding-left: 13px;
}

.navbar .nav > li.dropdown .alerts-widget .media-heading {
    margin-bottom: 3px;
}

.navbar .nav > li.dropdown .alerts-widget .media-right {
    position: absolute;
    right: 0;
    top: -3px;
    text-align: right;
}

    .navbar .nav > li.dropdown .alerts-widget .media-right .btn.btn-xs {
        font-size: 11px;
        padding: 0 5px;
    }

    .navbar .nav > li.dropdown .alerts-widget .media-right .media-response {
        font-size: 10px;
        font-weight: 400;
        margin-bottom: 2px;
    }

        .navbar .nav > li.dropdown .alerts-widget .media-right .media-response.single {
            font-size: 11px;
            padding-top: 10px;
        }

#content.table-layout {
    padding: 0;
}

    #content.table-layout > div, #content.table-layout > section {
        vertical-align: top;
        padding: 25px 20px 50px;
    }

    #content.table-layout > aside {
        vertical-align: top;
    }

.tray-left, .tray-right {
    position: relative;
    width: 250px;
    min-height: 100%;
    padding: 15px;
    border-right: 1px solid #DDD;
    background: #eee;
}

.tray-right {
    border: 0;
    border-right: 0;
}

.tray-top {
    position: relative;
    width: 100%;
    min-height: 150px;
    border-bottom: 1px solid #DDD;
    background-color: #f2f2f2;
    padding: 15px;
}

    .tray-top.light {
        background-color: #fafafa;
    }

.tray200 {
    width: 200px;
}

.tray240 {
    width: 240px;
}

.tray270 {
    width: 270px;
}

.tray290 {
    width: 290px;
}

.tray300 {
    width: 300px;
}

.tray320 {
    width: 320px;
}

.tray350 {
    width: 350px;
}

.tray400 {
    width: 400px;
}

.tray200 .tray-nav.affix {
    width: 239px;
}

.tray270 .tray-nav.affix {
    width: 269px;
}

.tray290 .tray-nav.affix {
    width: 289px;
}

.tray300 .tray-nav.affix {
    width: 299px;
}

.tray320 .tray-nav.affix {
    width: 319px;
}

.tray350 .tray-nav.affix {
    width: 349px;
}

.tray400 .tray-nav.affix {
    width: 399px;
}

.tray-bin {
    min-height: 65px;
    padding: 7px;
    margin: 0 -15px 15px;
    border: 1px dashed #CCC;
    background: #eee;
}

    .tray-bin.stretch {
        border-left: 0;
        border-right: 0;
    }

    .tray-bin div[class*=col-] {
        padding-left: 5px;
        padding-right: 5px;
    }

    .tray-bin .nav-label {
        text-align: center;
        font-size: 12px;
        color: #999;
        padding-left: 5px;
        margin-top: 20px;
        margin-bottom: 10px;
    }

.tray-title {
    margin-top: 10px;
    margin-bottom: 15px;
    padding: 0 5px 15px;
    border-bottom: 1px solid #e5e5e5;
}

.icon-list {
    margin: 20px 0 30px;
    font-size: 14px;
    padding-left: 5px;
    list-style: none;
}

    .icon-list li + li {
        padding-top: 10px;
    }

ul.tray-nav {
    margin: 15px -15px;
}

    ul.tray-nav li a {
        width: 100%;
        padding: 11px 15px 11px 30px;
        color: #999;
        font-size: 13px;
    }

        ul.tray-nav li a .fa {
            padding-right: 18px;
        }

    ul.tray-nav li.active a {
        color: #666;
        background: #fbfbfb;
        transition: all .3s ease;
    }

        ul.tray-nav li.active a .fa {
            color: #707ac0;
        }

    ul.tray-nav.tray-nav-arrow li.active:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 100%;
        z-index: 1;
        top: 1px;
        left: 0;
        border-bottom: 1px solid #DDD;
    }

    ul.tray-nav.tray-nav-arrow li.active a:after, ul.tray-nav.tray-nav-arrow li.active a:before {
        content: "";
        position: absolute;
        top: 0;
        left: 100%;
        display: inline-block;
        width: 0;
        height: 0;
        vertical-align: middle;
        border-left: 20px solid;
        border-left-color: #fbfbfb;
        border-top: 20px solid transparent;
        border-bottom: 20px solid transparent;
        transition: all .3s ease;
    }

    ul.tray-nav.tray-nav-arrow li.active a:before {
        border-left-color: #888;
    }

    ul.tray-nav.tray-nav-arrow li:hover a:after {
        border-left-color: #f8f8f8;
    }

.tray-right ul.tray-nav.tray-nav-arrow li.active:before {
    width: 100%;
    left: auto;
    right: 0;
}

.tray-right ul.tray-nav.tray-nav-arrow li.active a:after, .tray-right ul.tray-nav.tray-nav-arrow li.active a:before {
    left: auto;
    right: 100%;
    border-right: 20px solid;
    border-left-color: transparent;
    border-right-color: #fbfbfb;
}

.tray-right ul.tray-nav.tray-nav-arrow li.active a:before {
    border-left-color: transparent;
    border-right-color: #888;
}

.tray-right ul.tray-nav.tray-nav-arrow li:hover a:after {
    border-left-color: transparent;
    border-right-color: #f8f8f8;
}

.tray-nav.tray-nav-border li {
    position: relative;
}

    .tray-nav.tray-nav-border li a {
        font-size: 14px;
        padding: 12px 15px 12px 23px;
    }

    .tray-nav.tray-nav-border li:after {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: #CCC;
    }

    .tray-nav.tray-nav-border li.active:after {
        background: #707ac0;
    }

    .tray-nav.tray-nav-border li:hover:after {
        background: #999;
    }

.tray-right .tray-nav.tray-nav-border li:after {
    left: 0;
    right: auto;
}

.tray-nav.tray-nav-border li.active.nav-primary:after {
    background: #707ac0;
}

.tray-nav.tray-nav-border li.active.nav-success:after {
    background: #70ca63;
}

.tray-nav.tray-nav-border li.active.nav-info:after {
    background: #3bafda;
}

.tray-nav.tray-nav-border li.active.nav-warning:after {
    background: #f6bb42;
}

.tray-nav.tray-nav-border li.active.nav-danger:after {
    background: #e9573f;
}

.tray-nav.tray-nav-border li.active.nav-alert:after, .tray-nav.tray-nav-border li.active.nav-system:after {
    background: #707ac0;
}

.tray-nav.tray-nav-border li.active.nav-dark:after {
    background: #3b3f4f;
}

.tray .tray-affix, .tray-nav.affix {
    top: 55px;
}

#topbar.affix + #content .tray .tray-affix, #topbar.affix + #content .tray-nav.affix {
    top: 115px;
}

.tray-nav[data-nav-animate] li {
    display: none;
}

    .tray-nav[data-nav-animate] li.animated {
        display: block;
    }

body.tray-rescale {
    overflow-x: hidden;
}

    body.tray-rescale.sb-r-o .tray-center {
        padding-right: 20px !important;
    }

    body.tray-rescale.sb-r-o .tray-left, body.tray-rescale.sb-r-o .tray-right {
        display: none;
    }

    body.tray-rescale .tray-left, body.tray-rescale .tray-right {
        position: absolute;
        z-index: 998;
        opacity: .5;
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
        right: -275px;
    }

    body.tray-rescale .tray-left {
        border-left: 1px solid #DDD;
    }

    body.tray-rescale .tray-center {
        width: 100%;
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
        padding-right: 58px !important;
    }

    body.tray-rescale .tray-top + .tray-center {
        padding-right: inherit !important;
    }

    body.tray-rescale .tray.tray200 {
        right: -155px;
    }

    body.tray-rescale .tray.tray225 {
        right: -180px;
    }

    body.tray-rescale .tray.tray250 {
        right: -205px;
    }

    body.tray-rescale .tray.tray270 {
        right: -225px;
    }

    body.tray-rescale .tray.tray290 {
        right: -245px;
    }

    body.tray-rescale .tray.tray300 {
        right: -255px;
    }

    body.tray-rescale .tray.tray320 {
        right: -275px;
    }

    body.tray-rescale .tray.tray350 {
        right: -305px;
    }

    body.tray-rescale .tray.tray400 {
        right: -355px;
    }

    body.tray-rescale .tray-left:hover, body.tray-rescale .tray-right:hover {
        opacity: 1;
        z-index: 999;
        right: 0;
    }

@media (max-width:600px) {
    body.tray-rescale #content.table-layout > div, body.tray-rescale #content.table-layout > section, body.tray-rescale .tray-center {
        padding: 10px !important;
    }

        body.tray-rescale #content.table-layout > div .mb30, body.tray-rescale #content.table-layout > section .mb30 {
            margin-bottom: 10px !important;
        }
}

.tray-scroller {
    min-height: 500px;
}

.tray-left .tray-scroller {
    margin-right: -16px;
}

.tray-center .tray-scroller {
    margin-right: -20px;
    padding-right: 5px;
}

.tray-right .tray-scroller {
    margin-right: -13px;
}

.tray-scroller .scroller-handle {
    opacity: 0;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
}

.tray-scroller:hover .scroller-handle {
    opacity: 1;
}

#sidebar_left {
    color: #fff;
    font-size: 13px;
    position: absolute;
    top: 0;
    left: 0;
    width: 230px;
    min-height: 100%;
    padding-top: 60px;
    padding-bottom: 40px;
}

.sidebar-left-content {
    height: 100%
}

.sidebar-menu {
    padding-bottom: 20px;
}

    .sidebar-menu > li {
        margin: 0;
    }

        .sidebar-menu > li:first-child {
            padding-top: 4px;
        }

        .sidebar-menu > li > a {
            padding: 0;
            line-height: 48px;
            height: 48px;
            overflow: hidden;
        }

            .sidebar-menu > li > a > span:nth-child(1) {
                float: left;
                top: 0;
                line-height: 48px;
                width: 38px;
                font-size: 13px;
                text-align: center;
                padding-left: 13px;
            }

            .sidebar-menu > li > a > span:nth-child(2) {
                font-weight: 600;
                padding-left: 6px;
            }

    .sidebar-menu li > a > .sidebar-title-tray {
        position: absolute;
        right: 13px;
        top: -2px;
    }

        .sidebar-menu li > a > .sidebar-title-tray .label {
            padding: 0 .4em .2em;
            font-size: 11px;
        }

    .sidebar-menu li > a > span.caret {
        position: absolute;
        top: 45%;
        right: 13px;
        border-top: 5px solid;
        border-right: 5px solid transparent;
        border-left: 5px solid transparent;
    }

    .sidebar-menu li > a.menu-open > span.caret {
        border-top: 0;
        border-bottom: 5px solid;
    }

    .sidebar-menu > li > ul {
        clear: both;
        display: none;
        width: 230px;
        height: auto;
    }

    .sidebar-menu li > a.menu-open + ul {
        display: block;
    }

    .sidebar-menu > li > ul > li > a {
        padding: 14px 20px 14px 45px;
    }

    .sidebar-menu > li > ul > li:first-child > a {
        padding-top: 14px;
    }

    .sidebar-menu > li > ul > li:last-child > a {
        padding-bottom: 17px;
    }

    .sidebar-menu > li > ul > li > a > span:nth-child(1) {
        margin-right: 10px;
        font-size: 11px;
    }

    .sidebar-menu > li > ul > li > a > span.label {
        float: right;
        line-height: 17px;
    }

    .sidebar-menu > li > ul > li ul {
        clear: both;
        display: none;
        width: 230px;
        height: auto;
    }

    .sidebar-menu > li > ul > li > ul li a {
        padding: 9px 12px 9px 30px;
    }

    .sidebar-menu > li > ul > li > ul li:last-child a {
        padding-bottom: 13px;
    }

    .sidebar-menu > li > ul > li > ul li a .label.label-xs {
        float: right;
        line-height: 17px;
    }

    .sidebar-menu > li.active > a:after, .sidebar-menu > li:focus > a:after, .sidebar-menu > li:hover > a:after, .sidebar-menu > li > a.menu-open:after, .sidebar-menu > li > ul > li.active > a:after, .sidebar-menu > li > ul > li:focus > a:after, .sidebar-menu > li > ul > li:hover > a:after, .sidebar-menu > li > ul > li > a.menu-open:after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 0;
        background: #AAA;
    }

    .sidebar-menu > li > ul > li > ul > li.active > a:after, .sidebar-menu > li > ul > li > ul > li:focus > a:after, .sidebar-menu > li > ul > li > ul > li:hover > a:after {
        content: "";
        position: absolute;
        left: 0;
        top: 5%;
        height: 90%;
        width: 3px;
    }

    .sidebar-menu .sidebar-label {
        text-transform: uppercase;
        font-weight: 600;
        padding-left: 18px;
        padding-bottom: 3px;
        font-size: 12px;
    }

    .sidebar-menu .sidebar-stat .progress {
        clear: both;
        background-color: #AAA;
        background-color: rgba(0, 0, 0, .15);
    }

    .sidebar-menu .sidebar-stat > a {
        height: auto;
        overflow: visible;
    }

.sidebar-toggle-mini {
    width: 35px;
    height: 32px;
    padding: 7px 0;
}

    .sidebar-toggle-mini a {
        display: block;
        position: absolute;
        right: 0;
        text-align: center;
        padding: 6px 6px 5px;
        background: rgba(0, 0, 0, .15);
    }

    .sidebar-toggle-mini span {
        position: relative;
        color: #999;
        font-size: 16px;
        -webkit-transition: all ease-in-out .2s;
        transition: all ease-in-out .2s;
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .sidebar-toggle-mini:hover span {
        color: #EEE;
    }

body.sb-top .navbar + #sidebar_left + #content_wrapper, body.sb-top .navbar.navbar-static-top + #sidebar_left + #content_wrapper {
    margin-left: 0;
    padding-top: 55px;
}

body.sb-top .navbar.navbar-fixed-top + #sidebar_left + #content_wrapper {
    margin-left: 0;
    padding-top: 115px;
}

body.sb-top #toggle_sidemenu_r {
    display: none !important;
}

body.sb-top #topbar-dropmenu {
    top: 0;
}

body.sb-top #topbar.affix {
    margin-left: 0;
}

body.sb-top.boxed-layout #topbar.affix {
    width: 1140px !important;
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
}

body.sb-top.boxed-layout.sb-r-o #topbar.affix {
    width: 840px !important;
}

body.sb-top .navbar-nav.navbar-right, body.sb-top .navbar-nav.navbar-right:last-child {
    margin-right: 0;
}

body.sb-top .navbar-branding {
    width: 160px;
}

body.sb-top #sidebar_left {
    overflow: visible;
    z-index: 1028;
    width: 100%;
    min-height: 0;
    margin-top: 60px;
    padding: 0;
    border: 0;
}

    body.sb-top #sidebar_left .sidebar-menu .sidebar-label, body.sb-top #sidebar_left .sidebar-menu .sidebar-title-tray, body.sb-top #sidebar_left .sidebar-menu li > ul > li > ul > li .label, body.sb-top #sidebar_left .sidebar-toggle-mini {
        display: none !important;
    }

    body.sb-top #sidebar_left .sidebar-menu {
        padding-bottom: 0;
    }

        body.sb-top #sidebar_left .sidebar-menu > li {
            float: left;
        }

            body.sb-top #sidebar_left .sidebar-menu > li:first-child {
                padding-top: 0;
            }

            body.sb-top #sidebar_left .sidebar-menu > li > a {
                overflow: visible;
                color: #bbb;
                padding: 0 18px;
                height: 55px;
                line-height: 55px;
            }

                body.sb-top #sidebar_left .sidebar-menu > li.active > a, body.sb-top #sidebar_left .sidebar-menu > li:hover > a, body.sb-top #sidebar_left .sidebar-menu > li > a.menu-open, body.sb-top #sidebar_left .sidebar-menu > li > a:focus, body.sb-top #sidebar_left .sidebar-menu > li > a:hover {
                    color: inherit;
                    background-color: #282c37;
                    -webkit-transition: background-color .2s ease;
                    transition: background-color .2s ease;
                }

            body.sb-top #sidebar_left .sidebar-menu > li.active > a {
                color: #fff !important;
            }

            body.sb-top #sidebar_left .sidebar-menu > li > a > .sidebar-title {
                font-weight: 400;
            }

            body.sb-top #sidebar_left .sidebar-menu > li > a > span:nth-child(1) {
                width: auto;
                padding-left: 0;
                padding-right: 5px;
                line-height: 55px;
            }

        body.sb-top #sidebar_left .sidebar-menu li > a > span.caret {
            color: #858483;
            position: relative;
            top: 0;
            right: 0;
            margin-left: 5px;
        }

        body.sb-top #sidebar_left .sidebar-menu > li > ul {
            position: absolute;
            left: 0;
            top: 100%;
            width: 195px;
            height: auto;
            border-left: 0;
            padding-bottom: 2px;
            overflow: hidden;
        }

            body.sb-top #sidebar_left .sidebar-menu > li > ul > li {
                overflow: hidden;
            }

                body.sb-top #sidebar_left .sidebar-menu > li > ul > li > a {
                    padding: 8px 15px;
                }

                    body.sb-top #sidebar_left .sidebar-menu > li > ul > li.active > a:after, body.sb-top #sidebar_left .sidebar-menu > li > ul > li:focus > a:after, body.sb-top #sidebar_left .sidebar-menu > li > ul > li:hover > a:after, body.sb-top #sidebar_left .sidebar-menu > li > ul > li > a.menu-open:after {
                        left: 1px;
                        width: 3px;
                    }

                body.sb-top #sidebar_left .sidebar-menu > li > ul > li ul {
                    width: 195px;
                }

                body.sb-top #sidebar_left .sidebar-menu > li > ul > li > a .caret {
                    position: absolute;
                    top: 15px;
                    right: 10px;
                }

                body.sb-top #sidebar_left .sidebar-menu > li > ul > li > ul > li a {
                    padding: 8px 15px 8px 20px;
                }

                body.sb-top #sidebar_left .sidebar-menu > li > ul > li > ul > li.active > a:after, body.sb-top #sidebar_left .sidebar-menu > li > ul > li > ul > li:focus > a:after, body.sb-top #sidebar_left .sidebar-menu > li > ul > li > ul > li:hover > a:after {
                    left: 1px;
                    width: 3px;
                }

        body.sb-top #sidebar_left .sidebar-menu li > ul > li > a.menu-open + ul {
            display: block !important;
        }

    body.sb-top #sidebar_left.sidebar-light {
        border-right: 0;
        -webkit-box-shadow: 0 1px 0 #DDD;
        box-shadow: 0 1px 0 #DDD;
    }

        body.sb-top #sidebar_left.sidebar-light .sidebar-menu > li > a > span:nth-child(2) {
            color: #888;
        }

        body.sb-top #sidebar_left.sidebar-light .sidebar-menu > li.active > a, body.sb-top #sidebar_left.sidebar-light .sidebar-menu > li:hover > a, body.sb-top #sidebar_left.sidebar-light .sidebar-menu > li > a.menu-open, body.sb-top #sidebar_left.sidebar-light .sidebar-menu > li > a:focus, body.sb-top #sidebar_left.sidebar-light .sidebar-menu > li > a:hover {
            background-color: #f2f2f2;
        }

        body.sb-top #sidebar_left.sidebar-light .sidebar-menu > li > ul {
            top: 99%;
            border: 0;
            -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, .2);
            box-shadow: 0 3px 3px rgba(0, 0, 0, .2);
        }

        body.sb-top #sidebar_left.sidebar-light .sidebar-menu li > ul > li > a {
            padding: 9px 15px 8px 17px;
        }

body.sb-top.sb-top-sm .navbar + #sidebar_left + #content_wrapper, body.sb-top.sb-top-sm .navbar.navbar-static-top + #sidebar_left + #content_wrapper {
    padding-top: 45px;
}

body.sb-top.sb-top-sm .navbar.navbar-fixed-top + #sidebar_left + #content_wrapper {
    padding-top: 105px;
}

body.sb-top.sb-top-sm #sidebar_left {
    height: 45px;
}

    body.sb-top.sb-top-sm #sidebar_left .sidebar-menu > li > a {
        height: 45px;
        line-height: 45px;
        padding: 0 16px;
    }

        body.sb-top.sb-top-sm #sidebar_left .sidebar-menu > li > a > span:nth-child(1) {
            font-size: 12px;
            line-height: 45px;
        }

body.sb-top.sb-top-lg .navbar + #sidebar_left + #content_wrapper, body.sb-top.sb-top-lg .navbar.navbar-static-top + #sidebar_left + #content_wrapper {
    padding-top: 75px;
}

body.sb-top.sb-top-lg .navbar.navbar-fixed-top + #sidebar_left + #content_wrapper {
    padding-top: 135px;
}

body.sb-top.sb-top-lg #sidebar_left {
    height: 75px;
}

    body.sb-top.sb-top-lg #sidebar_left .sidebar-menu > li > a {
        height: 75px;
        line-height: inherit;
        text-align: center;
        padding: 0 10px;
    }

        body.sb-top.sb-top-lg #sidebar_left .sidebar-menu > li > a > span:nth-child(1) {
            width: 100%;
            font-size: 20px;
            line-height: 40px;
            padding-top: 4px;
        }

        body.sb-top.sb-top-lg #sidebar_left .sidebar-menu > li > a > .sidebar-title {
            padding-left: 0;
        }

body.sb-top.sb-top-collapsed #sidebar_left {
    top: -110px;
}

body.sb-top.sb-top-collapsed .navbar + #sidebar_left + #content_wrapper, body.sb-top.sb-top-collapsed .navbar.navbar-static-top + #sidebar_left + #content_wrapper {
    padding-top: 0;
}

body.sb-top.sb-top-collapsed .navbar.navbar-fixed-top + #sidebar_left + #content_wrapper {
    padding-top: 60px;
}

body.sb-top.sb-top-collapsed #toggle_sidemenu_t .fa-caret-up {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

body.sb-top.sb-top-collapsed .navbar[class*=bg-] #toggle_sidemenu_t .fa-caret-up {
    color: #FFF;
}

@media (max-width:1100px) {
    body.sb-top #content_wrapper {
        margin-left: 0 !important;
        left: 0 !important;
    }
}

@media (max-width:900px) {
    body.sb-top #sidebar_left {
        top: 0 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        height: auto !important;
        -webkit-transition: all .2s ease;
        transition: all .2s ease;
    }

        body.sb-top #sidebar_left .sidebar-menu > li {
            float: none;
            width: 100%
        }

            body.sb-top #sidebar_left .sidebar-menu > li > a {
                height: 45px !important;
                line-height: 45px !important;
                padding: 0 16px !important;
                text-align: left !important;
            }

                body.sb-top #sidebar_left .sidebar-menu > li > a > span:nth-child(1) {
                    width: auto !important;
                    font-size: 12px !important;
                    line-height: 45px !important;
                    padding: 0 !important;
                }

                body.sb-top #sidebar_left .sidebar-menu > li > a > .sidebar-title {
                    padding-left: 8px !important;
                }

            body.sb-top #sidebar_left .sidebar-menu > li > ul, body.sb-top #sidebar_left .sidebar-menu > li > ul > li ul {
                position: relative;
                width: auto;
            }

        body.sb-top #sidebar_left.sidebar-light {
            border-right: 0;
            -webkit-box-shadow: 0 1px 0 #DDD;
            box-shadow: 0 1px 0 #DDD;
        }

            body.sb-top #sidebar_left.sidebar-light .sidebar-menu > li > ul {
                border: 0;
                box-shadow: none;
            }

            body.sb-top #sidebar_left.sidebar-light .sidebar-menu li > ul > li > a {
                padding: 9px 15px 8px 17px;
            }

    body.sb-top .navbar-branding {
        width: 0;
        display: none;
    }

    body.sb-top #toggle_sidemenu_t {
        width: 44px;
    }

    body.sb-top .navbar.navbar-fixed-top + #sidebar_left + #content_wrapper {
        padding-top: 60px !important;
    }

    body.sb-top.sb-top-collapsed #sidebar_left {
        visibility: visible !important;
        opacity: 1 !important;
    }
}

@media (min-width:901px) {
    body.sb-top .sidebar-menu > li > a.menu-open + ul {
        display: none;
    }

    body.sb-top .sidebar-menu > li:hover > a + ul {
        z-index: 1;
        display: block !important;
    }
}

.sidebar-widget {
    position: relative;
    padding: 8px 13px;
    height: 51px;
}

    .sidebar-widget + .sidebar-widget {
        margin-top: 18px;
    }

    .sidebar-widget.author-widget {
        margin-top: 15px;
    }

        .sidebar-widget.author-widget .media-left img {
            max-width: 40px;
            border: 2px solid #888;
            border-radius: 50%
        }

        .sidebar-widget.author-widget .media-links a {
            display: inline-block;
            margin-top: 2px;
            margin-bottom: 2px;
            color: #70829a;
            font-size: 12px;
            text-decoration: none;
        }

            .sidebar-widget.author-widget .media-links a:hover {
                color: #FFF;
            }

        .sidebar-widget.author-widget .media-body {
            padding-left: 3px;
            color: #FFF;
        }

        .sidebar-widget.author-widget.menu-widget-open .media-links a.sidebar-menu-toggle {
            color: #FFF;
        }

    .sidebar-widget.menu-widget {
        display: none;
        position: relative;
        left: 0;
        top: 0;
        height: 130px;
        width: 100%;
        padding: 10px;
        background-color: #282d33;
        border-top: 1px solid #24282d;
        border-bottom: 1px solid #24282d;
    }

        .sidebar-widget.menu-widget a {
            position: relative;
            display: block;
            padding: 12px 5px;
            margin-bottom: 3px;
            transition: all .2s ease;
        }

            .sidebar-widget.menu-widget a:hover {
                background-color: rgba(255, 255, 255, .1);
            }

            .sidebar-widget.menu-widget a h5 {
                display: none;
            }

            .sidebar-widget.menu-widget a span {
                color: #ddd;
                font-size: 24px;
                transition: all .3s ease;
            }

            .sidebar-widget.menu-widget a:hover span {
                color: #f6bb42;
            }

    .sidebar-widget.search-widget {
        height: 40px;
        padding: 8px 6px;
        background-color: #282d33;
        border-top: 1px solid #24282d;
        border-bottom: 1px solid #24282d;
    }

        .sidebar-widget.search-widget .input-group-addon, .sidebar-widget.search-widget input {
            color: #70829a;
            height: 22px;
            padding: 3px;
            font-size: 14px;
            border-color: transparent;
            background-color: transparent;
        }

        .sidebar-widget.search-widget input {
            padding-left: 0;
            border-left: 0;
        }

            .sidebar-widget.search-widget input::-webkit-input-placeholder {
                color: #70829a;
            }

            .sidebar-widget.search-widget input::-moz-placeholder {
                color: #70829a;
            }

            .sidebar-widget.search-widget input:-moz-placeholder {
                color: #70829a;
            }

            .sidebar-widget.search-widget input:-ms-input-placeholder {
                color: #70829a;
            }

body.sb-l-m .author-widget .media-body, body.sb-l-m .author-widget .media-heading {
    display: none;
}

body.sb-l-m .author-widget .media-left img {
    max-width: 30px;
}

@media (max-width:900px) {
    body.sb-l-m .author-widget {
        padding: 8px 7px;
    }
}

body.sb-l-m #sidebar_left {
    z-index: 1028;
    overflow: visible;
    width: 60px;
    height: 100%;
    left: 0;
    background-color: #2d323e;
}

    body.sb-l-m #sidebar_left:before {
        width: 60px;
    }

    body.sb-l-m #sidebar_left .caret, body.sb-l-m #sidebar_left .sidebar-label, body.sb-l-m #sidebar_left .sidebar-proj, body.sb-l-m #sidebar_left .sidebar-stat, body.sb-l-m #sidebar_left .sidebar-title, body.sb-l-m #sidebar_left .sidebar-title-tray, body.sb-l-m .sidebar-header {
        display: none;
    }

body.sb-l-m .sidebar-menu > li {
    padding: 7px 0;
}

    body.sb-l-m .sidebar-menu > li > a {
        overflow: visible;
    }

        body.sb-l-m .sidebar-menu > li > a > span:nth-child(1) {
            color: #ccc;
            left: -1px;
            width: 60px;
            font-size: 18px;
            padding-left: 0;
        }

        body.sb-l-m .sidebar-menu > li > a > .sidebar-title {
            position: absolute;
            left: 60px;
            top: 0;
            width: 180px;
            height: 49px;
            line-height: 49px;
            font-size: 13px;
            padding-left: 15px;
        }

        body.sb-l-m .sidebar-menu > li > a.menu-open + ul {
            display: none;
        }

    body.sb-l-m .sidebar-menu > li:hover > a + ul, body.sb-l-m .sidebar-menu > li:hover > a > .sidebar-title, body.sb-l-m .sidebar-menu > li:hover > ul .caret {
        display: block !important;
    }

    body.sb-l-m .sidebar-menu > li > ul {
        position: absolute;
        left: 60px;
        top: 55px;
        width: 180px;
        height: auto;
        padding-bottom: 7px;
        overflow: hidden;
    }

        body.sb-l-m .sidebar-menu > li > ul > li {
            overflow: hidden;
        }

            body.sb-l-m .sidebar-menu > li > ul > li ul {
                width: 180px;
            }

body.sb-l-m .sidebar-menu li > ul > li > a, body.sb-l-m .sidebar-menu li > ul > li > ul > li a {
    padding: 8px 15px 8px 20px;
}

body.sb-l-m #content_wrapper {
    margin-left: 60px;
}

body.sb-l-c.sb-l-m #content_wrapper {
    margin-left: 0;
}

body.sb-l-m .navbar-branding {
    width: 60px;
}

#sidebar_left {
    background-color: #2d323e;
}

.sidebar-menu .sidebar-label {
    color: #70829a;
}

.sidebar-menu li > a > span.caret {
    color: #858483;
}

.sidebar-menu li > a.menu-open > span.caret {
    color: #fff;
}

.sidebar-menu > li > a {
    color: rgba(255, 255, 255, .7);
}

    .sidebar-menu > li > a:active, .sidebar-menu > li > a:focus, .sidebar-menu > li > a:hover {
        color: rgba(255, 255, 255, .7);
        background-color: rgba(0, 0, 0, .1);
    }

.sidebar-menu > li:focus > a:after, .sidebar-menu > li:hover > a:after {
    background: 0 0;
}

.sidebar-menu > li.active > a {
    color: #fff;
    background-color: transparent;
}

    .sidebar-menu > li.active > a > span:nth-child(1) {
        color: #707ac0;
    }

    .sidebar-menu > li.active > a:after, .sidebar-menu > li > a.menu-open:after {
        background: 0 0;
    }

.sidebar-menu > li > ul {
    background-color: #282c37;
}

    .sidebar-menu > li > ul > li > a {
        color: rgba(255, 255, 255, .7);
        font-weight: 600;
    }

        .sidebar-menu > li > ul > li > a:focus, .sidebar-menu > li > ul > li > a:hover {
            color: inherit;
            background-color: rgba(0, 0, 0, .1);
        }

    .sidebar-menu > li > ul > li:focus > a:after, .sidebar-menu > li > ul > li:hover > a:after {
        background: #707ac0;
    }

    .sidebar-menu > li > ul > li.active > a {
        color: #fff;
        background-color: #707ac0;
    }

        .sidebar-menu > li > ul > li.active > a > span:nth-child(1), .sidebar-menu > li > ul > li > a.menu-open > span:nth-child(1) {
            color: #707ac0;
        }

    .sidebar-menu > li > ul > li ul {
        background-color: #22262c;
    }

    .sidebar-menu > li > ul > li > ul > li > a {
        color: #bbb;
    }

        .sidebar-menu > li > ul > li > ul > li > a:focus, .sidebar-menu > li > ul > li > ul > li > a:hover {
            color: inherit;
            background-color: transparent;
        }

    .sidebar-menu > li > ul > li > ul > li:focus > a:after, .sidebar-menu > li > ul > li > ul > li:hover > a:after {
        background: #707ac0;
    }

    .sidebar-menu > li > ul > li > ul > li.active > a {
        color: #fff;
        background: 0 0;
    }

        .sidebar-menu > li > ul > li > ul > li.active > a > span:nth-child(1), .sidebar-menu > li > ul > li > ul > li > a.menu-open > span:nth-child(1) {
            color: #fff;
        }

        .sidebar-menu > li > ul > li > ul > li.active > a:after {
            background: #707ac0;
        }

body.sb-l-m .sidebar-menu > li > a > .sidebar-title {
    background-color: #282c37;
}

body.sb-l-m .sidebar-menu > li.active > a > span:nth-child(1) {
    color: #707ac0;
}

#sidebar_left.sidebar-light {
    color: #666;
    background-color: #fafafa;
    border-right: 1px solid #DDD;
}

    #sidebar_left.sidebar-light .sidebar-menu .sidebar-label {
        color: #AAA;
        font-size: 11px;
        font-weight: 500;
    }

    #sidebar_left.sidebar-light .sidebar-menu li > a > span.caret {
        color: #BBB;
    }

    #sidebar_left.sidebar-light .sidebar-menu li > a.menu-open > span.caret {
        color: #999;
    }

    #sidebar_left.sidebar-light .sidebar-menu > li a {
        color: #888;
    }

    #sidebar_left.sidebar-light .sidebar-menu > li > a:active, #sidebar_left.sidebar-light .sidebar-menu > li > a:focus, #sidebar_left.sidebar-light .sidebar-menu > li > a:hover {
        background-color: rgba(0, 0, 0, .1);
    }

    #sidebar_left.sidebar-light .sidebar-menu > li > a > span:nth-child(1) {
        color: #888;
    }

    #sidebar_left.sidebar-light .sidebar-menu > li > a > span:nth-child(2) {
        color: #555;
        font-weight: 500;
        letter-spacing: .4px;
    }

    #sidebar_left.sidebar-light .sidebar-menu > li.active > a > span:nth-child(1) {
        color: #707ac0;
    }

    #sidebar_left.sidebar-light .sidebar-menu > li > ul {
        background-color: #f2f2f2;
        box-shadow: 0 1px 0 #e5e5e5 inset, 0 -1px 0 #e5e5e5 inset;
    }

        #sidebar_left.sidebar-light .sidebar-menu > li > ul > li > a:focus, #sidebar_left.sidebar-light .sidebar-menu > li > ul > li > a:hover {
            background-color: transparent;
        }

        #sidebar_left.sidebar-light .sidebar-menu > li > ul > li.active > a > span:nth-child(1), #sidebar_left.sidebar-light .sidebar-menu > li > ul > li > a.menu-open > span:nth-child(1) {
            color: #707ac0;
        }

        #sidebar_left.sidebar-light .sidebar-menu > li > ul > li ul {
            background-color: #eaeaea;
            box-shadow: 0 1px 0 #d9d9d9 inset, 0 -1px 0 #d9d9d9 inset;
        }

        #sidebar_left.sidebar-light .sidebar-menu > li > ul > li > ul > li > a:focus, #sidebar_left.sidebar-light .sidebar-menu > li > ul > li > ul > li > a:hover {
            background-color: transparent;
        }

        #sidebar_left.sidebar-light .sidebar-menu > li > a.menu-open:after, #sidebar_left.sidebar-light .sidebar-menu > li > ul > li > a.menu-open:after {
            background: 0 0;
        }

        #sidebar_left.sidebar-light .sidebar-menu > li > ul > li > a.menu-open:after, #sidebar_left.sidebar-light .sidebar-menu > li > ul > li > ul > li > a.menu-open:after {
            background: #3bafda;
        }

        #sidebar_left.sidebar-light .sidebar-menu > li > ul > li > ul > li.active > a:after, #sidebar_left.sidebar-light .sidebar-menu > li > ul > li > ul > li:focus > a:after, #sidebar_left.sidebar-light .sidebar-menu > li > ul > li > ul > li:hover > a:after {
            background: #707ac0;
        }

        #sidebar_left.sidebar-light .sidebar-menu > li > ul > li.active > a > span.caret {
            color: #AAA;
        }

    #sidebar_left.sidebar-light .sidebar-menu .sidebar-stat .progress {
        background-color: #ddd;
    }

    #sidebar_left.sidebar-light .sidebar-toggle-mini a {
        background-color: #f7f7f7;
        border-color: #eaeaea;
    }

    #sidebar_left.sidebar-light.light {
        background-color: #fff;
    }

        #sidebar_left.sidebar-light.light .sidebar-menu > li > ul {
            background-color: #fbfbfb;
        }

            #sidebar_left.sidebar-light.light .sidebar-menu > li > ul > li ul {
                background-color: #f5f5f5;
            }

    #sidebar_left.sidebar-light .sidebar-widget.author-widget .media-body {
        color: #666;
    }

    #sidebar_left.sidebar-light .sidebar-widget.author-widget .media-links a {
        color: #999;
    }

        #sidebar_left.sidebar-light .sidebar-widget.author-widget .media-links a:hover, #sidebar_left.sidebar-light .sidebar-widget.author-widget.menu-widget-open .media-links a.sidebar-menu-toggle {
            color: #555;
        }

    #sidebar_left.sidebar-light .sidebar-widget.menu-widget {
        background-color: #f2f2f2;
        border-top: 1px solid #eaeaea;
        border-bottom: 1px solid #eaeaea;
    }

        #sidebar_left.sidebar-light .sidebar-widget.menu-widget a span {
            color: #777;
        }

    #sidebar_left.sidebar-light .sidebar-widget.search-widget {
        background-color: #f2f2f2;
        border-top: 1px solid #eaeaea;
        border-bottom: 1px solid #eaeaea;
    }

body.sb-l-m #sidebar_left.sidebar-light {
    background-color: #FAFAFA;
}

    body.sb-l-m #sidebar_left.sidebar-light.light {
        background-color: #FFF;
    }

    body.sb-l-m #sidebar_left.sidebar-light .sidebar-menu > li > a > .sidebar-title, body.sb-l-m #sidebar_left.sidebar-light .sidebar-menu > li > ul {
        border: 1px solid #DDD;
        border-top: 0;
        background-color: #f8f8f8;
        left: 59px;
        box-shadow: none;
    }

    body.sb-l-m #sidebar_left.sidebar-light .sidebar-menu > li > a > .sidebar-title {
        border-top: 1px solid #DDD;
    }

#sidebar_left.nano.affix {
    padding-bottom: 0;
}

#sidebar_left.affix.nano .tooltip {
    z-index: 9999 !important;
}

body.sb-l-m #sidebar_left.nano {
    position: absolute;
}

    body.sb-l-m #sidebar_left.nano > .nano-content {
        overflow: visible;
        right: 0 !important;
    }

body.sb-l-m.mobile-view .nano > .nano-pane {
    display: none !important;
}

@media (max-width:900px) {
    body.sb-l-m #sidebar_left, body.sb-l-m #sidebar_left: before {
        width: 45px;
    }

    body.sb-l-m .sidebar-menu > li > a > span:nth-child(1) {
        left: -1px;
        width: 45px;
        font-size: 18px;
    }

    body.sb-l-m .sidebar-menu > li > a > .sidebar-title {
        position: absolute;
        left: 45px;
        top: -4px;
        width: 180px;
        height: 44px;
        line-height: 44px;
        font-size: 14px;
        padding-left: 15px;
        border-left: 1px solid #222;
        background-color: #282d33;
    }

    body.sb-l-m .sidebar-menu > li > ul {
        position: absolute;
        left: 45px;
        top: 38px;
        width: 180px;
        height: auto;
        border-left: 1px solid #222;
        padding-bottom: 7px;
        overflow: hidden;
    }

        body.sb-l-m .sidebar-menu > li > ul > li ul {
            width: 180px;
        }

    body.sb-l-m .sidebar-menu li > ul > li > a {
        padding: 8px 20px;
    }

    body.sb-l-m .sidebar-menu li > ul > li > ul > li a {
        padding: 8px 20px 8px 35px;
    }

    body.sb-l-m #content_wrapper {
        margin-left: 45px;
    }

    body.sb-l-c.sb-l-m #content_wrapper {
        margin-left: 0;
    }

    body.sb-l-m .navbar-branding, body.sb-l-o .navbar-branding {
        margin-right: 5px;
    }

        body.sb-l-m .navbar-branding, body.sb-l-m .navbar-branding a.navbar-brand {
            width: 45px;
        }

    body.sb-l-o.sb-l-m .navbar #toggle_sidemenu_l {
        transform: rotate(0deg);
    }

    body.sb-l-m .navbar #toggle_sidemenu_l, body.sb-l-o .navbar #toggle_sidemenu_l {
        width: 45px;
    }

    .sb-l-c .navbar .sidebar-menu-toggle, .sb-l-o .navbar .sidebar-menu-toggle {
        margin-left: 10px;
        display: none;
    }

    #toggle_sidemenu_r {
        margin-top: 4px;
    }

    body.sb-l-m #sidebar_left.sidebar-light .sidebar-menu > li > a > .sidebar-title, body.sb-l-m #sidebar_left.sidebar-light .sidebar-menu > li > ul {
        left: 44px;
    }
}

#sidebar_right {
    position: absolute;
    top: 0;
    width: 300px;
    height: 100%;
    padding-top: 60px;
    right: -300px;
    border-left: 1px solid #ddd;
    background: #f8f8f8;
}

    #sidebar_right.affix {
        position: fixed;
    }

    #sidebar_right .sidebar-right-header {
        width: 100%;
        height: 59px;
        padding: 4px 10px 4px 20px;
    }

    #sidebar_right .sidebar_right_content a:hover {
        text-decoration: none;
    }

.title-divider {
    border-bottom: 1px solid #e8e8e8;
    padding: 0 5px 9px;
}

#sidebar_right .panel {
    -webkit-box-shadow: none;
    box-shadow: none;
}

#sidebar_right .panel-heading {
    height: 51px;
    min-height: 51px;
    overflow: hidden;
}

#sidebar_right .panel-tabs li a {
    padding: 17px 18px;
    border-right: 1px solid transparent;
}

#sidebar_right .panel-tabs li:first-child a {
    border-left: 1px solid transparent;
}

#sidebar_right.nano > .nano-pane {
    background: rgba(0, 0, 0, .07);
}

    #sidebar_right.nano > .nano-pane > .nano-slider {
        background: #CCC;
    }

.sb-l-o #sidebar_left {
    left: 0;
}

.sb-l-o #content_wrapper {
    margin-left: 230px;
}

.sb-l-c #sidebar_left {
    left: -230px;
    overflow: hidden;
}

.sb-l-c #content_wrapper {
    margin-left: 0;
}

.sb-l-c .navbar-branding {
    width: 0 !important;
}

.sb-l-c .navbar-brand {
    display: none;
}

.sb-r-o #sidebar_right {
    right: 0;
}

.sb-r-o #content_wrapper {
    margin-right: 300px;
}

.sb-r-c #sidebar_right {
    right: -300px;
}

.sb-r-c #content_wrapper {
    margin-right: 0;
}

.sb-l-c.sb-l-m #sidebar_left {
    left: -60px;
}

.sb-l-c .navbar .sidebar-menu-toggle, .sb-l-m .navbar .sidebar-menu-toggle {
    margin-left: 10px;
    display: none;
}

@media (max-width:1100px) {
    #content_wrapper, .sb-l-o #content_wrapper {
        margin-left: 0;
        left: 230px;
    }

    .sb-l-m #content_wrapper {
        left: 0;
    }

    .sb-l-c #content_wrapper {
        margin-left: 0;
        left: 0;
    }

    .sb-r-o #content_wrapper {
        margin-right: 0;
        left: -300px;
    }
}

header#topbar {
    display: table;
}

.valign {
    display: table-cell;
    vertical-align: middle;
    float: none;
}

    .valign .form-control {
        margin: 0;
    }

#topbar {
    z-index: 0;
    position: relative;
    width: 100%;
    min-height: 200px;
    height: 200px;
    max-height: 200px;
    padding: 25px;
    background-image: url(../img/patterns/backgrounds/header.png);
    background-size: cover;
    background-color: #7070c0;
}

    #topbar .topbar-right {
        float: right;
    }

    #topbar input[type=text] {
        border-bottom: 1px solid #fff;
        color: #fff;
        font-size: 18px;
    }

    #topbar .input-field .prefix ~ label {
        color: rgba(255, 255, 255, .7);
        font-size: 18px;
    }

    #topbar h2 {
        font-size: 24px;
        color: #fff;
        margin: 0;
    }

.breadcrumb {
    float: left;
    position: relative;
    padding: 1px 25px 0 0;
    margin-bottom: 0;
    font-size: 12px;
    border-radius: 0;
    background-color: transparent;
}

    .breadcrumb > li {
        color: #888;
    }

        .breadcrumb > li.crumb-active > a {
            color: #555;
            font-size: 18px;
        }

#toggle_sidemenu_r i.fa, #toggle_sidemenu_r span.glyphicon, #toggle_sidemenu_r span.glyphicons {
    margin-top: 2px;
}

body.sb-r-o #toggle_sidemenu_r i.fa, body.sb-r-o #toggle_sidemenu_r span.glyphicon, body.sb-r-o #toggle_sidemenu_r span.glyphicons {
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1);
    color: #999;
}

.badge.badge-hero {
    position: relative;
    top: -12px;
    margin-left: -10px;
    padding: 2px 5px;
    font-size: 11px;
}

#topbar.alt {
    min-height: 70px;
    padding: 20px 22px;
    background: #e7e7e7;
    border-bottom: 1px solid #ddd;
}

    #topbar.alt .breadcrumb {
        font-size: 14px;
    }

#topbar-dropmenu {
    z-index: 9999;
    overflow: hidden;
    display: none;
    position: relative;
    top: 1px;
    padding: 17px 20px 10px;
    height: auto;
    width: 100%;
    background: url(../img/patterns/topbar-bg.jpg) -60px top;
    -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, .4) inset;
    box-shadow: 0 0 4px rgba(0, 0, 0, .4) inset;
}

    #topbar-dropmenu:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        background: rgba(0, 0, 0, .4);
    }

.navbar[class*=bg-] + #sidebar_left + #content_wrapper > #topbar-dropmenu {
    top: 0;
}

.topbar-menu a:hover {
    text-decoration: none;
}

.topbar-menu .metro-tile {
    opacity: 0;
    display: block;
    color: #FFF;
    height: 95px;
    position: relative;
    padding: 15px 5px 0;
    margin-bottom: 8px;
    border-radius: 4px;
    text-align: center;
    background: rgba(255, 255, 255, .25);
    -webkit-transition: background .2s ease;
    transition: background .2s ease;
}

    .topbar-menu .metro-tile:active, .topbar-menu .metro-tile:focus, .topbar-menu .metro-tile:hover {
        color: #fff;
        background: rgba(255, 255, 255, .4);
    }

    .topbar-menu .metro-tile .metro-title {
        position: absolute;
        bottom: 10px;
        left: 10px;
        font-size: 11px;
        font-weight: 600;
    }

.metro-modal {
    z-index: 9998;
    cursor: pointer;
    position: fixed;
    display: none;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .6);
}

#topbar-dropmenu.topbar-menu-open + #topbar.affix {
    position: relative !important;
    margin-left: auto !important;
}

#topbar-dropmenu.alt {
    z-index: 1025;
    padding: 17px 20px 10px;
    background: #DDD;
    border-bottom: 1px solid #ccc;
    box-shadow: none;
}

    #topbar-dropmenu.alt:before {
        display: none;
    }

    #topbar-dropmenu.alt .topbar-menu > div {
        opacity: .85;
    }

    #topbar-dropmenu.alt .topbar-menu .metro-tile {
        opacity: 1;
        border: 1px solid rgba(0, 0, 0, .15);
    }

        #topbar-dropmenu.alt .topbar-menu .metro-tile:active, #topbar-dropmenu.alt .topbar-menu .metro-tile:focus, #topbar-dropmenu.alt .topbar-menu .metro-tile:hover {
            color: #fff;
            background: inherit;
        }

        #topbar-dropmenu.alt .topbar-menu .metro-tile .metro-title {
            bottom: 7px;
            font-size: 12px;
        }

#topbar .nav.nav-list-topbar {
    margin: -10px 15px;
}

    #topbar .nav.nav-list-topbar li a {
        padding: 16px 14px 12px;
    }

@media (max-width:815px) {
    #topbar {
        padding: 10px 6px;
    }

        #topbar.alt {
            min-height: 40px;
            padding: 10px 6px 10px 14px;
        }

        #topbar .topbar-dropdown {
            display: none !important;
        }

        #topbar.affix.alt + #content {
            margin-top: 40px;
        }
}

@media (max-width:700px) {
    #topbar .breadcrumb {
        font-size: 14px;
        padding-top: 5px;
        padding-left: 2px;
    }

        #topbar .breadcrumb .crumb-active, #topbar .breadcrumb > li.crumb-active + li:before {
            display: none;
        }
}

.card-panel i {
    display: block;
    color: #fff;
    font-size: 29px;
    opacity: .8;
}

.card-panel .white-text {
    opacity: .8;
}

.icon-light i {
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 100px;
    color: rgba(255, 255, 255, .3) !important;
    -ms-transform: rotate(7deg);
    -webkit-transform: rotate(7deg);
    transform: rotate(7deg);
}

#content-footer {
    color: #AAA;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 44px;
    padding: 12px 15px;
    background-color: #f8f8f8;
    border-top: 1px solid #DDD;
    -webkit-transition: margin .2s ease;
    transition: margin .2s ease;
}

    #content-footer b {
        color: #888;
    }

    #content-footer .footer-meta {
        padding-right: 30px;
    }

    #content-footer .footer-return-top {
        text-align: center;
        position: absolute;
        top: -3px;
        right: 5px;
        width: 25px;
        height: 25px;
        background-color: #eaeaea;
        -webkit-border-radius: 3px;
        border-radius: 3px;
        -webkit-transition: all .2s ease;
        transition: all .2s ease;
    }

        #content-footer .footer-return-top span {
            position: relative;
            top: 3px;
            color: #AAA;
            font-size: 12px;
            -webkit-transition: all .23s ease;
            transition: all .2s ease;
        }

        #content-footer .footer-return-top:hover {
            cursor: pointer;
            background-color: #e2e2e2;
        }

            #content-footer .footer-return-top:hover span {
                color: #666;
            }

    #content-footer.affix {
        z-index: 1;
        position: fixed;
        margin-left: 230px;
    }

body.sb-l-c #content-footer.affix {
    margin-left: 0;
}

body.sb-l-m #content-footer.affix {
    margin-left: 60px;
}

@media (max-width:900px) {
    body.sb-l-m #content-footer.affix {
        margin-left: 45px;
    }
}

body.ui-animations-page #mac_wire {
    margin-top: 2.5%;
    margin-left: 3.5%;
    position: fixed;
    max-width: 440px;
}

body.ui-animations-page.svg-fill #mac_wire svg path:first-child {
    fill-opacity: 1;
    fill: #ccc;
    stroke: #999;
    stroke-width: 1px;
    -webkit-transition: all ease .5s;
    transition: all ease .5s;
}

body.ui-animations-page.svg-fill #mac_wire svg path:last-child {
    fill-opacity: 1;
    fill: #555;
    stroke: #555;
    stroke-width: 3px;
    -webkit-transition: all ease 1s;
    transition: all ease 1s;
}

body.ui-animations-page .tray-center:after {
    opacity: 0;
    position: fixed;
    content: "\f04b";
    font-family: FontAwesome;
    font-size: 46px;
    color: #3bafda;
    bottom: 10px;
    padding-left: 20px;
    -webkit-transition: opacity .5s ease-in-out;
    transition: opacity .5s ease-in-out;
}

body.ui-animations-page.animation-running .tray-center:after {
    opacity: .75;
}

body.ui-animations-page.animation-running .btn.btn-alt {
    opacity: .5;
}

    body.ui-animations-page.animation-running .btn.btn-alt.item-checked {
        opacity: 1;
        -webkit-transition: opacity .2s ease;
        transition: opacity .2s ease;
    }

body.gallery-page #mix-container {
    padding: 15px;
    text-align: justify;
    font-size: .1px;
}

    body.gallery-page #mix-container:after {
        content: "";
        display: inline-block;
        width: 100%
    }

    body.gallery-page #mix-container .gap, body.gallery-page #mix-container .mix {
        display: none;
        vertical-align: top;
        width: 23.5%;
        margin-bottom: 20px;
        margin-right: 30px;
    }

    body.gallery-page #mix-container .gap {
        display: inline-block;
    }

    body.gallery-page #mix-container .mix .panel {
        margin: 0;
    }

        body.gallery-page #mix-container .mix .panel img {
            cursor: pointer;
        }

body.gallery-page .fail-message {
    display: none;
    text-align: center;
    font-size: 22px;
    color: #999;
    margin-top: 50px;
}

body.gallery-page .fail .fail-message {
    display: block;
}

@media (max-width:1350px) {
    body.gallery-page #mix-container .gap, body.gallery-page #mix-container .mix {
        width: 31.5%
    }
}

@media (max-width:750px) {
    body.gallery-page #mix-container .gap, body.gallery-page #mix-container .mix {
        width: 48%
    }
}

body.calendar-page .fc-title-clone {
    font-size: 20px;
    text-align: center;
    margin: 8px 0 10px;
    padding-bottom: 15px;
    border-bottom: 1px solid #E7E7E7;
}

body.calendar-page .tray-left .ui-datepicker {
    background: 0 0;
    margin: 0;
    border: 0;
}

body.calendar-page .tray-left .ui-datepicker-header {
    display: none;
}

body.calendar-page .tray-left .ui-datepicker td {
    padding: 8px 5px;
}

    body.calendar-page .tray-left .ui-datepicker td a, body.calendar-page .tray-left .ui-datepicker td span {
        background: #DDD;
        padding: .5em .2em;
    }

body.calendar-page .tray-left #compose-event-btn {
    cursor: pointer;
    position: relative;
    top: 1px;
    padding-left: 8px;
    color: #888;
    font-size: 16px;
}

body.calendar-page .tray-center .fc-toolbar .fc-center h2 {
    font-size: 20px;
    line-height: 26px;
    font-weight: 400;
}

@media (max-width:900px) {
    body.calendar-page .fc-toolbar .fc-center {
        margin-top: 20px;
        margin-bottom: 10px;
    }
}

@media (max-width:600px) {
    body.calendar-page .fc-view-container {
        margin-bottom: 30px;
    }

    body.calendar-page .fc-toolbar .fc-button {
        padding: 4px 8px;
    }

    body.calendar-page .fc-toolbar .fc-right {
        float: left;
        margin-left: 10px;
    }

    body.calendar-page .fc-toolbar .fc-center {
        float: left;
        width: 100%
    }

        body.calendar-page .fc-toolbar .fc-center h2 {
            float: none;
            text-align: center;
        }

    body.calendar-page .fc-title-clone {
        display: none;
    }

    body.calendar-page #external-events {
        padding: 15px 10px 10px;
        background: #e8e8e8;
        border: 1px solid #ccc;
    }
}

body.messages-page .message-menu {
    padding: 10px 15px;
    background-color: #FFF;
    border-bottom: 1px solid #EEE;
}

body.messages-page .compose-btn {
    font-weight: 600;
    margin-top: 2px;
    margin-bottom: 12px;
}

body.messages-page .nav-messages li a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    text-transform: capitalize;
}

    body.messages-page .nav-messages li a i {
        color: #999;
        width: 30px;
        top: 3px;
        position: relative;
        display: inline-block;
        font-size: 19px;
    }

body.messages-page .nav-messages li.active a, body.messages-page .nav-messages li.active a i, body.messages-page .nav-messages li:focus a, body.messages-page .nav-messages li:focus a i, body.messages-page .nav-messages li:hover a, body.messages-page .nav-messages li:hover a i {
    color: #666;
}

body.messages-page .message-view {
    padding: 20px;
}

    body.messages-page .message-view h3.subject {
        margin-top: 0;
        font-size: 17px;
    }

    body.messages-page .message-view hr {
        border-color: #EEE;
    }

body.messages-page .message-reply .note-editor .note-toolbar {
    border-top: 1px solid #E6E6E6;
    border-bottom: 1px solid #E6E6E6;
    padding-top: 7px;
    padding-bottom: 14px;
}

    body.messages-page .message-reply .note-editor .note-toolbar .btn-group:first-child {
        margin-left: 0;
    }

body.messages-page .message-reply .note-editor .btn-default {
    padding: 5px 10px 6px;
}

body.messages-page .message-reply .note-editor .note-editable {
    font-size: 14px;
    padding: 15px 10px;
}

body.messages-page #message-table > tbody > tr {
    cursor: pointer;
}

    body.messages-page #message-table > tbody > tr.highlight > td {
        background-color: #FFFEF0;
    }

body.messages-page .quick-compose-form {
    display: none;
}

body.messages-page .dockmodal-header .title-text {
    font-size: 15px;
}

body.messages-page .dockmodal-body {
    padding: 15px;
}

body.messages-page .dockmodal-footer {
    background-color: #f3f3f3;
    padding: 7px 10px 8px;
    border-top: 1px solid #DDD;
    border-left: 1px solid #DDD;
    border-right: 1px solid #DDD;
}

body.messages-page .dockmodal-body .quick-compose-form {
    display: block;
}

    body.messages-page .dockmodal-body .quick-compose-form input.form-control {
        border: 0;
        border-bottom: 1px solid #EEE;
    }

    body.messages-page .dockmodal-body .quick-compose-form .note-editor .note-editable {
        background: #f9f9f9;
    }

        body.messages-page .dockmodal-body .quick-compose-form .note-editor .note-editable:active, body.messages-page .dockmodal-body .quick-compose-form .note-editor .note-editable:focus, body.messages-page .popped-out .dockmodal-body .quick-compose-form .note-editor .note-editable {
            background: #fff;
        }

    body.messages-page .dockmodal-body .quick-compose-form .note-editor .note-toolbar {
        padding: 0 4px 9px;
    }

    body.messages-page .dockmodal-body .quick-compose-form .note-editor .note-statusbar .note-resizebar {
        display: none;
    }

@media (max-width:1020px) {
    body.messages-page.tray-rescale #content.table-layout .tray-center {
        padding-right: 65px !important;
    }

    .top90.message-container {
        top: 0 !important;
    }
}

@media (max-width:600px) {
    body.messages-page.tray-rescale #content.table-layout .tray-center {
        padding: 10px !important;
    }

    .valign-list .chip .img-over {
        display: none;
}

    .valign-list .chip {
        padding: 0;
        background: none;
        line-height: inherit;
        height: auto;
}

    .valign-list .info-row.members-row {
        padding: 0;
        margin: 0;
    }
}
/*===============================================
  F. Editors Page
================================================= */
body.editors-page .panel .panel-heading {
    border-bottom-color: #CCC;
}

body.external-page {
    min-height: 0;
    overflow: auto;
}

    body.external-page #main {
        overflow: hidden;
        background: #707ac0;
    }

        body.external-page #main:before {
            display: none;
        }

    body.external-page #canvas-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%
    }

    body.external-page #content .admin-form {
        position: relative;
        width: 100%;
        max-width: 400px;
        margin: 4% auto 0;
    }

    body.external-page #content .panel {
        box-shadow: 0 1px 40px 0 rgba(0, 0, 0, .3);
    }

    body.external-page #content .panel-heading {
        padding: 10px;
    }

    body.external-page .login-links {
        font-size: 14px;
        color: #fff;
        font-weight: 700;
    }

        body.external-page .login-links a {
            font-size: 14px;
            color: #fff;
            font-weight: 700;
            -webkit-transition: opacity .5s;
            -moz-transition: opacity .5s;
            -ms-transition: opacity .5s;
            -o-transition: opacity .5s;
            transition: opacity .5s;
            opacity: .6;
        }

            body.external-page .login-links a.active {
                color: #FFF;
                opacity: 1;
            }

            body.external-page .login-links a:focus, body.external-page .login-links a:hover {
                color: #FFF;
                text-decoration: none;
                opacity: 1;
            }

    body.external-page .coming-soon-title {
        text-align: center;
        color: #FFF;
        font-size: 40px;
        font-weight: 400;
        margin-top: 70px;
        margin-bottom: 20px;
    }

    body.external-page.external-alt #main {
        background: #f4f4f4;
    }

    body.external-page.external-alt #content .admin-form {
        margin-top: 5%
    }

    body.external-page.external-alt #content .panel {
        box-shadow: none;
    }

        body.external-page.external-alt #content .panel .section-divider span {
            color: #AAA;
        }

    body.external-page.external-alt .login-links, body.external-page.external-alt .login-links a {
        color: #999;
        font-size: 13px;
        text-align: center;
    }

        body.external-page.external-alt .login-links a {
            color: #555;
            font-weight: 600;
        }

            body.external-page.external-alt .login-links a.active {
                color: #707ac0;
            }

    body.external-page.external-alt .confirmation-header .fa-check {
        font-size: 32px;
        background: #eee;
        border: 1px solid #DDD;
        border-radius: 50%;
        padding: 6px;
        margin-right: 9px;
        position: relative;
    }

    body.external-page.external-alt .meta-links.alt {
        padding-bottom: 6px;
    }

        body.external-page.external-alt .meta-links.alt a, body.external-page.external-alt .meta-links.alt span {
            color: #AAA;
        }

body.invoice-page #invoice-info {
    margin-bottom: 15px;
}

body.invoice-page .table-condensed tbody tr td:last-child {
    text-align: right;
    padding-right: 15px;
}

body.invoice-page #invoice-summary {
    margin: 0;
}

    body.invoice-page #invoice-summary thead th:first-child {
        text-align: right;
        width: 200px;
        padding-right: 55px;
    }

    body.invoice-page #invoice-summary thead th:last-child {
        width: 50px;
        font-weight: 400;
    }

    body.invoice-page #invoice-summary tbody tr td {
        border-top: 0;
    }

        body.invoice-page #invoice-summary tbody tr td:first-child {
            text-align: right;
            width: 200px;
            padding-right: 55px;
        }

    body.invoice-page #invoice-summary tbody tr:last-child td {
        background: #fafafa;
        border-top: 1px solid #EEE;
        border-bottom: 1px solid #EEE;
        height: 24px;
        line-height: 24px;
    }

body.invoice-page .invoice-buttons {
    position: absolute;
    left: 15px;
    bottom: 10px;
}

body.timeline-page #main {
    min-height: 1400px;
}

body.timeline-page #content {
    padding: 8px 35px 50px;
}

#timeline {
    position: relative;
}

    #timeline:after {
        position: absolute;
        top: 0;
        left: 50%;
        width: 4px;
        margin-left: -2px;
        height: 100%;
        content: "";
        background: #ddd;
    }

    #timeline .timeline-divider {
        position: relative;
        margin: 10px 0 45px;
        z-index: 3;
    }

        #timeline .timeline-divider .divider-label {
            position: relative;
            width: 110px;
            margin: 0 auto;
            padding: 5px;
            text-align: center;
            border: 1px solid #DDD;
            color: #777;
            font-weight: 600;
            background: #FFF;
        }

            #timeline .timeline-divider .divider-label:before {
                content: "";
                position: absolute;
                height: 2px;
                width: 100%;
                left: 0;
                top: 100%;
                background: #707ac0;
            }

    #timeline .panel {
        position: relative;
        z-index: 11;
        overflow: visible;
        margin-bottom: 30px;
    }

        #timeline .panel:after, #timeline .panel:before {
            content: "";
            z-index: 2;
            position: absolute;
            top: 10px;
            left: 99.8%;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 8px 0 8px 12px;
            border-color: transparent transparent transparent #fafafa;
        }

        #timeline .panel:after {
            z-index: 1;
            border-left-color: #666;
        }

    #timeline .right-column .panel:after, #timeline .right-column .panel:before {
        top: 10px;
        right: 99.8%;
        left: auto;
        border-width: 8px 12px 8px 0;
        border-color: transparent #fafafa transparent transparent;
    }

    #timeline .right-column .panel:after {
        border-right-color: #666;
    }

    #timeline > .row > .left-column .timeline-item {
        padding-right: 30px;
    }

    #timeline > .row > .right-column .timeline-item {
        padding-left: 30px;
    }

    #timeline > .row > .right-column {
        margin-top: 80px;
    }

@media (max-width:770px) {
    #timeline > .row > .left-column .panel {
        margin-right: 0;
    }

    #timeline > .row > .right-column .panel {
        margin-left: 0;
    }

    #timeline > .row .panel:after, #timeline > .row .panel:before {
        display: none;
    }
}

#timeline .tab-content {
    min-height: 0;
}

#timeline .map {
    width: 100%;
    height: 275px;
}

#timeline #timeline-image-form .fileupload-preview {
    text-align: center;
}

    #timeline #timeline-image-form .fileupload-preview img {
        max-height: 200px;
    }

#timeline .timeline-icon {
    z-index: 1;
    position: absolute;
    right: -18px;
    width: 38px;
    height: 38px;
    line-height: 38px;
    font-size: 20px;
    color: #FFF;
    text-align: center;
    border-radius: 50%;
    background: #eee;
    box-shadow: 0 0 0 5px #eee;
}

#timeline .right-column .timeline-icon {
    right: auto;
    left: -18px;
}

#timeline.timeline-single {
    margin-left: 6%;
    max-width: 750px;
}

    #timeline.timeline-single:after {
        left: 0;
    }

    #timeline.timeline-single > .row > .col-sm-6 {
        width: 100%;
        padding-left: 65px;
    }

    #timeline.timeline-single > .row > .right-column {
        margin-top: 0;
    }

        #timeline.timeline-single > .row > .left-column .timeline-item, #timeline.timeline-single > .row > .right-column .timeline-item {
            padding-left: 0;
            padding-right: 0;
        }

    #timeline.timeline-single .timeline-divider .divider-label {
        margin-left: -55px;
    }

    #timeline.timeline-single .timeline-icon {
        left: -8px;
        right: auto;
    }

    #timeline.timeline-single .panel:after, #timeline.timeline-single .panel:before {
        right: 99.8%;
        left: auto;
        border-width: 8px 12px 8px 0;
        border-color: transparent #fafafa transparent transparent;
    }

    #timeline.timeline-single .panel:after {
        border-right-color: #666;
    }

.maps-full-page #content, .maps-full-page #content_wrapper, .maps-full-page #main, .maps-full-page .map, .maps-vector-page #content, .maps-vector-page #content_wrapper, .maps-vector-page #main, .maps-vector-page .map {
    height: 100%;
    min-height: 0;
}

.maps-full-page #content, .maps-vector-page #content {
    padding: 1px;
    max-width: 1920px !important;
}

.maps-full-page .map, .maps-vector-page .map {
    height: 100% !important;
}

.maps-full-page .expanding-header, .maps-vector-page .expanding-header {
    overflow: hidden;
    z-index: 999;
    position: absolute;
    top: 20px;
    left: 30px;
    width: 550px;
    height: 43px;
    background: rgba(0, 0, 0, .5);
    border-radius: 2px;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

    .maps-full-page .expanding-header.collapsed, .maps-vector-page .expanding-header.collapsed {
        width: 48px;
        overflow: hidden;
    }

    .maps-full-page .expanding-header .map-header-icon, .maps-vector-page .expanding-header .map-header-icon {
        cursor: pointer;
        width: 47px;
        padding: 10px 13px;
        color: #FFF;
        font-size: 22px;
        float: left;
        margin-right: 10px;
    }

    .maps-full-page .expanding-header .flag-sm, .maps-vector-page .expanding-header .flag-sm {
        cursor: pointer;
    }

    .maps-full-page .expanding-header input.form-control, .maps-vector-page .expanding-header input.form-control {
        min-width: 250px;
    }

@media (max-width:800px) {
    .maps-full-page .expanding-header, .maps-vector-page .expanding-header {
        display: none;
    }
}

.maps-full-page .expanding-header {
    top: 24px;
    left: 90px;
}

body.profile-page #content .tab-block .nav-tabs > li > a {
    padding: 9px 35px;
}

body.error-page #main:before {
    background: #F5F5F5;
}

body.error-page #return-arrow {
    top: 75px;
    padding-top: 0;
}

body.error-page .error-title {
    font-size: 140px;
    font-weight: 800;
    color: #707ac0;
    text-align: center;
    padding-top: 60px;
    margin-bottom: 20px;
    line-height: 120px;
}

body.error-page .error-subtitle {
    font-weight: 400;
    text-align: center;
    font-size: 40px;
    color: #AAA;
    margin-bottom: 80px;
}

body.error-page .mid-section {
    position: relative;
    width: 100%;
    height: 215px;
    background: #FFF;
    border-top: 1px solid #E6E6E6;
    border-bottom: 1px solid #E6E6E6;
}

body.error-page .mid-content {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
    padding: 50px 20px 35px;
}

    body.error-page .mid-content input {
        color: #AAA;
        height: 55px;
        border-radius: 1px;
        padding: 10px 20px;
        border: 0;
        font-size: 16px;
        border: 1px solid #EEE;
        border-left: 5px solid #707ac0;
        background: #FBFBFB;
    }

body.error-page .error-page.alt .error-title {
    padding-top: 110px;
}

body.error-page #search-widget {
    background: #f1f1f1;
}

body.error-page .error-icon {
    font-size: 80px;
    position: relative;
    top: -10px;
}

body.error-page .error-text {
    font-size: 120px;
    text-align: center;
    text-shadow: 0 2px #FFF;
    color: #888;
    width: 100%
}

.ecommerce-page .fileupload .thumbnail {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

    .ecommerce-page .fileupload .thumbnail:empty {
        min-height: 150px;
        -webkit-transition: all 0s ease;
        transition: all 0s ease;
    }

        .ecommerce-page .fileupload .thumbnail:empty:before {
            content: "";
            position: absolute;
            display: block;
            top: 6px;
            right: 6px;
            bottom: 6px;
            left: 6px;
            z-index: 0;
            background-color: #EEE;
        }

.ecommerce-page .admin-form select option {
    color: #000 !important;
}

.ecommerce-page .empty {
    color: #BBB !important;
}

.ecommerce-page ol.timeline-list li.timeline-item:first-child:after {
    top: -25px;
    height: 140%
}

.ecommerce-page input.bg-light + .bootstrap-tagsinput, .ecommerce-page input.bg-light + .bootstrap-tagsinput .tag:focus, .ecommerce-page input.bg-light + .bootstrap-tagsinput .tag:hover {
    background-color: #FAFAFA;
}

.search-results-page .search-result + .search-result {
    margin-top: 31px;
    padding-top: 20px;
    border-top: 1px dashed #DDD;
}

.search-results-page .search-result h3, .search-results-page .search-result > a {
    display: block;
    margin-bottom: 5px;
}

.search-results-page ul.result-meta {
    list-style: none;
    padding-left: 0;
    margin-left: -5px;
    margin-bottom: 5px;
}

    .search-results-page ul.result-meta > li {
        position: relative;
        display: inline-block;
        padding-left: 5px;
        padding-right: 5px;
    }

        .search-results-page ul.result-meta > li + li {
            padding-left: 12px;
        }

            .search-results-page ul.result-meta > li + li:after {
                content: "-";
                position: absolute;
                top: 0;
                left: 0;
            }

        .search-results-page ul.result-meta > li > a {
            font-size: 13px;
            color: #999;
        }

#session-timeout-dialog .modal-dialog {
    width: 102%;
    height: 100%;
    background: rgba(255, 255, 255, .93);
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 15%;
    text-align: center;
    border-radius: 1px;
}

#session-timeout-dialog .modal-content {
    background: 0 0;
    box-shadow: none;
    border: 1px solid #DDD;
    width: 600px;
    margin: 0 auto;
}

#session-timeout-dialog .modal-header {
    background-color: #f6f6f6;
}

#session-timeout-dialog .modal-body {
    padding: 30px 20px;
    font-size: 16px;
    background-color: #fff;
}

#session-timeout-dialog .modal-footer {
    text-align: center;
    background-color: #f6f6f6;
}

.bg-primary {
    background-color: #707ac0 !important;
    color: #fefefe;
}

a.bg-primary:hover {
    background-color: #4d5ab0 !important;
}

.bg-primary .text-muted {
    color: #d6daf3;
}

.bg-primary .text-darken {
    color: #4d5ab0;
}

.bg-primary.light {
    background-color: #858ec9 !important;
}

.bg-primary.lighter {
    background-color: #939bd0 !important;
}

.bg-primary.dark {
    background-color: #5b66b7 !important;
}

.bg-primary.darker {
    background-color: #4d5ab0 !important;
}

.bg-primary .open > a, .bg-primary .open > a:focus, .bg-primary .open > a:hover {
    color: #fff;
}

.bg-success {
    background-color: #70ca63 !important;
    color: #fcfefb;
}

a.bg-success:hover {
    background-color: #4fbb3f !important;
}

.bg-success .text-muted {
    color: #d6f5d1;
}

.bg-success .text-darken {
    color: #4fbb3f;
}

.bg-success.light {
    background-color: #85d27a !important;
}

.bg-success.lighter {
    background-color: #93d789 !important;
}

.bg-success.dark {
    background-color: #5bc24c !important;
}

.bg-success.darker {
    background-color: #4fbb3f !important;
}

.bg-success .open > a, .bg-success .open > a:focus, .bg-success .open > a:hover {
    color: #fff;
}

.bg-info {
    background-color: #3bafda !important;
    color: #e7f5fa;
}

a.bg-info:hover {
    background-color: #2494be !important;
}

.bg-info .text-muted {
    color: #b6e6f8;
}

.bg-info .text-darken {
    color: #2494be;
}

.bg-info.light {
    background-color: #55badf !important;
}

.bg-info.lighter {
    background-color: #66c1e2 !important;
}

.bg-info.dark {
    background-color: #27a2cf !important;
}

.bg-info.darker {
    background-color: #2494be !important;
}

.bg-info .open > a, .bg-info .open > a:focus, .bg-info .open > a:hover {
    color: #fff;
}

.bg-warning {
    background-color: #f6bb42 !important;
    color: #fff;
}

a.bg-warning:hover {
    background-color: #f4a911 !important;
}

.bg-warning .text-muted {
    color: #fff0d2;
}

.bg-warning .text-darken {
    color: #f4a911;
}

.bg-warning.light {
    background-color: #f7c65f !important;
}

.bg-warning.lighter {
    background-color: #f8cd73 !important;
}

.bg-warning.dark {
    background-color: #f5b025 !important;
}

.bg-warning.darker {
    background-color: #f4a911 !important;
}

.bg-warning .open > a, .bg-warning .open > a:focus, .bg-warning .open > a:hover {
    color: #fff;
}

.bg-danger {
    background-color: #e9573f !important;
    color: #fef7f6;
}

a.bg-danger:hover {
    background-color: #dc3519 !important;
}

.bg-danger .text-muted {
    color: #fdccc4;
}

.bg-danger .text-darken {
    color: #dc3519;
}

.bg-danger.light {
    background-color: #ec6f5a !important;
}

.bg-danger.lighter {
    background-color: #ee7f6d !important;
}

.bg-danger.dark {
    background-color: #e63f24 !important;
}

.bg-danger.darker {
    background-color: #dc3519 !important;
}

.bg-danger .open > a, .bg-danger .open > a:focus, .bg-danger .open > a:hover {
    color: #fff;
}

.bg-alert {
    background-color: #707ac0 !important;
    color: #fefefe;
}

a.bg-alert:hover {
    background-color: #4d5ab0 !important;
}

.bg-alert .text-muted {
    color: #d6daf3;
}

.bg-alert .text-darken {
    color: #4d5ab0;
}

.bg-alert.light {
    background-color: #858ec9 !important;
}

.bg-alert.lighter {
    background-color: #939bd0 !important;
}

.bg-alert.dark {
    background-color: #5b66b7 !important;
}

.bg-alert.darker {
    background-color: #4d5ab0 !important;
}

.bg-alert .open > a, .bg-alert .open > a:focus, .bg-alert .open > a:hover {
    color: #fff;
}

.bg-system {
    background-color: #707ac0 !important;
    color: #fefefe;
}

a.bg-system:hover {
    background-color: #4d5ab0 !important;
}

.bg-system .text-muted {
    color: #d6daf3;
}

.bg-system .text-darken {
    color: #4d5ab0;
}

.bg-system.light {
    background-color: #858ec9 !important;
}

.bg-system.lighter {
    background-color: #939bd0 !important;
}

.bg-system.dark {
    background-color: #5b66b7 !important;
}

.bg-system.darker {
    background-color: #4d5ab0 !important;
}

.bg-system .open > a, .bg-system .open > a:focus, .bg-system .open > a:hover {
    color: #fff;
}

.bg-dark {
    background-color: #3b3f4f !important;
    color: #9fa4b7;
}

a.bg-dark:hover {
    background-color: #252832 !important;
}

.bg-dark .text-muted {
    color: #717eb2;
}

.bg-dark .text-darken {
    color: #252832;
}

.bg-dark.light {
    background-color: #484d61 !important;
}

.bg-dark.lighter {
    background-color: #51566c !important;
}

.bg-dark.dark {
    background-color: #2e313d !important;
}

.bg-dark.darker {
    background-color: #252832 !important;
}

.bg-dark .open > a, .bg-dark .open > a:focus, .bg-dark .open > a:hover {
    color: #fff;
}

.bg-light {
    background-color: #FAFAFA;
    color: #666;
}

a.bg-light:hover {
    background-color: #e8e8e8 !important;
}

.bg-light .text-muted {
    color: #999;
}

.bg-light .text-darken {
    color: #222;
}

.bg-light.light {
    background-color: #FEFEFE;
}

.bg-light.lighter {
    background-color: #FFF;
}

.bg-light.dark {
    background-color: #F2F2F2;
}

.bg-light.darker {
    background-color: #E7E7E7;
}

.bg-white {
    color: #666;
    background-color: #FFF !important;
}

a.bg-white:hover {
    background-color: #ededed !important;
}

.bg-white .text-muted {
    color: #999;
}

.bg-white .text-darken {
    color: #222;
}

.bg-white.light {
    background-color: #FEFEFE;
}

.bg-white.lighter {
    background-color: #FFF;
}

.bg-white.dark {
    background-color: #F2F2F2;
}

.bg-white.darker {
    background-color: #E7E7E7;
}

.badge-default {
    background-color: #777;
}

    .badge-default[href]:focus, .badge-default[href]:hover {
        background-color: #5e5e5e;
    }

.badge-primary {
    background-color: #707ac0;
}

    .badge-primary[href]:focus, .badge-primary[href]:hover {
        background-color: #4d5ab0;
    }

.badge-success {
    background-color: #70ca63;
}

    .badge-success[href]:focus, .badge-success[href]:hover {
        background-color: #4fbb3f;
    }

.badge-info {
    background-color: #3bafda;
}

    .badge-info[href]:focus, .badge-info[href]:hover {
        background-color: #2494be;
    }

.badge-warning {
    background-color: #f6bb42;
}

    .badge-warning[href]:focus, .badge-warning[href]:hover {
        background-color: #f4a911;
    }

.badge-danger {
    background-color: #e9573f;
}

    .badge-danger[href]:focus, .badge-danger[href]:hover {
        background-color: #dc3519;
    }

.badge-alert {
    background-color: #707ac0;
}

    .badge-alert[href]:focus, .badge-alert[href]:hover {
        background-color: #4d5ab0;
    }

.badge-system {
    background-color: #707ac0;
}

    .badge-system[href]:focus, .badge-system[href]:hover {
        background-color: #4d5ab0;
    }

.badge-dark {
    background-color: #3b3f4f;
}

    .badge-dark[href]:focus, .badge-dark[href]:hover {
        background-color: #252832;
    }

.label-muted {
    background-color: #aaa;
}

    .label-muted[href]:focus, .label-muted[href]:hover {
        background-color: #919191;
    }

.label-default {
    background-color: #777;
}

    .label-default[href]:focus, .label-default[href]:hover {
        background-color: #5e5e5e;
    }

.label-primary {
    background-color: #707ac0;
}

    .label-primary[href]:focus, .label-primary[href]:hover {
        background-color: #4d5ab0;
    }

.label-success {
    background-color: #70ca63;
}

    .label-success[href]:focus, .label-success[href]:hover {
        background-color: #4fbb3f;
    }

.label-info {
    background-color: #3bafda;
}

    .label-info[href]:focus, .label-info[href]:hover {
        background-color: #2494be;
    }

.label-warning {
    background-color: #f6bb42;
}

    .label-warning[href]:focus, .label-warning[href]:hover {
        background-color: #f4a911;
    }

.label-danger {
    background-color: #e9573f;
}

    .label-danger[href]:focus, .label-danger[href]:hover {
        background-color: #dc3519;
    }

.label-alert {
    background-color: #707ac0;
}

    .label-alert[href]:focus, .label-alert[href]:hover {
        background-color: #4d5ab0;
    }

.label-system {
    background-color: #707ac0;
}

    .label-system[href]:focus, .label-system[href]:hover {
        background-color: #4d5ab0;
    }

.label-dark {
    background-color: #3b3f4f;
}

    .label-dark[href]:focus, .label-dark[href]:hover {
        background-color: #252832;
    }

.btn-default {
    color: #666;
    background-color: #f0f0f0;
}

    .btn-default.active, .btn-default:active, .btn-default:focus, .btn-default:hover, .open > .dropdown-toggle.btn-default {
        color: #666;
        background-color: #eaeaea;
    }

    .btn-default.active, .btn-default:active, .open > .dropdown-toggle.btn-default {
        background-image: none;
    }

    .btn-default.disabled, .btn-default.disabled.active, .btn-default.disabled:active, .btn-default.disabled:focus, .btn-default.disabled:hover, .btn-default[disabled], .btn-default[disabled].active, .btn-default[disabled]:active, .btn-default[disabled]:focus, .btn-default[disabled]:hover, fieldset[disabled] .btn-default, fieldset[disabled] .btn-default.active, fieldset[disabled] .btn-default:active, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default:hover {
        background-color: #f0f0f0;
        border-color: #ddd;
    }

    .btn-default .badge {
        color: #f0f0f0;
        background-color: #666;
    }

    .btn-default.btn-gradient {
        text-shadow: 0 -1px 0 rgba(255, 255, 255, .4);
        border-color: rgba(0, 0, 0, .07) rgba(0, 0, 0, .1) rgba(0, 0, 0, .09);
        background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, .9) 10%, rgba(255, 255, 255, .3) 100%);
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, .9) 10%, rgba(255, 255, 255, .3) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80ffffff', endColorstr='#00ffffff', GradientType=0);
    }

    .btn-default.light {
        background-color: #FAFAFA;
    }

        .btn-default.light.active, .btn-default.light:active, .btn-default.light:focus, .btn-default.light:hover, .open > .dropdown-toggle.btn-default.light {
            background-color: #ececec;
        }

    .btn-default.dark {
        background-color: #e8e8e8;
    }

        .btn-default.dark.active, .btn-default.dark:active, .btn-default.dark:focus, .btn-default.dark:hover, .open > .dropdown-toggle.btn-default.dark {
            background-color: #e1e1e1;
        }

.btn-primary {
    color: #fff;
}

    .btn-primary.active, .btn-primary:active, .btn-primary:focus, .btn-primary:hover, .open > .dropdown-toggle.btn-primary {
        color: #fff;
        background-color: #5561b4;
        border-color: rgba(0, 0, 0, .05);
    }

    .btn-primary.active, .btn-primary:active, .open > .dropdown-toggle.btn-primary {
        background-image: none;
    }

    .btn-primary.disabled, .btn-primary.disabled.active, .btn-primary.disabled:active, .btn-primary.disabled:focus, .btn-primary.disabled:hover, .btn-primary[disabled], .btn-primary[disabled].active, .btn-primary[disabled]:active, .btn-primary[disabled]:focus, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary, fieldset[disabled] .btn-primary.active, fieldset[disabled] .btn-primary:active, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary:hover {
        background-color: #707ac0;
        border-color: #707ac0;
    }

    .btn-primary .badge {
        color: #707ac0;
        background-color: #fff;
    }

    .btn-primary.light {
        background-color: #858ec9;
    }

        .btn-primary.dark, .btn-primary.light.active, .btn-primary.light:active, .btn-primary.light:focus, .btn-primary.light:hover, .open > .dropdown-toggle.btn-primary.light {
            background-color: #5b66b7;
        }

            .btn-primary.dark.active, .btn-primary.dark:active, .btn-primary.dark:focus, .btn-primary.dark:hover, .open > .dropdown-toggle.btn-primary.dark {
                background-color: #4a56a9;
            }

.btn-success {
    color: #fff;
    background-color: #70ca63;
}

    .btn-success.active, .btn-success:active, .btn-success:focus, .btn-success:hover, .open > .dropdown-toggle.btn-success {
        color: #fff;
        background-color: #56c046;
        border-color: rgba(0, 0, 0, .05);
    }

    .btn-success.active, .btn-success:active, .open > .dropdown-toggle.btn-success {
        background-image: none;
    }

    .btn-success.disabled, .btn-success.disabled.active, .btn-success.disabled:active, .btn-success.disabled:focus, .btn-success.disabled:hover, .btn-success[disabled], .btn-success[disabled].active, .btn-success[disabled]:active, .btn-success[disabled]:focus, .btn-success[disabled]:hover, fieldset[disabled] .btn-success, fieldset[disabled] .btn-success.active, fieldset[disabled] .btn-success:active, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success:hover {
        background-color: #70ca63;
        border-color: #70ca63;
    }

    .btn-success .badge {
        color: #70ca63;
        background-color: #fff;
    }

    .btn-success.light {
        background-color: #85d27a;
    }

        .btn-success.dark, .btn-success.light.active, .btn-success.light:active, .btn-success.light:focus, .btn-success.light:hover, .open > .dropdown-toggle.btn-success.light {
            background-color: #5bc24c;
        }

            .btn-success.dark.active, .btn-success.dark:active, .btn-success.dark:focus, .btn-success.dark:hover, .open > .dropdown-toggle.btn-success.dark {
                background-color: #4cb33d;
            }

.btn-info {
    color: #fff;
    background-color: #3bafda;
}

    .btn-info.active, .btn-info:active, .btn-info:focus, .btn-info:hover, .open > .dropdown-toggle.btn-info {
        color: #fff;
        background-color: #269dc9;
        border-color: rgba(0, 0, 0, .05);
    }

    .btn-info.active, .btn-info:active, .open > .dropdown-toggle.btn-info {
        background-image: none;
    }

    .btn-info.disabled, .btn-info.disabled.active, .btn-info.disabled:active, .btn-info.disabled:focus, .btn-info.disabled:hover, .btn-info[disabled], .btn-info[disabled].active, .btn-info[disabled]:active, .btn-info[disabled]:focus, .btn-info[disabled]:hover, fieldset[disabled] .btn-info, fieldset[disabled] .btn-info.active, fieldset[disabled] .btn-info:active, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info:hover {
        background-color: #3bafda;
        border-color: #3bafda;
    }

    .btn-info .badge {
        color: #3bafda;
        background-color: #fff;
    }

    .btn-info.light {
        background-color: #55badf;
    }

        .btn-info.dark, .btn-info.light.active, .btn-info.light:active, .btn-info.light:focus, .btn-info.light:hover, .open > .dropdown-toggle.btn-info.light {
            background-color: #27a2cf;
        }

            .btn-info.dark.active, .btn-info.dark:active, .btn-info.dark:focus, .btn-info.dark:hover, .open > .dropdown-toggle.btn-info.dark {
                background-color: #228eb6;
            }

.btn-warning {
    color: #fff;
    background-color: #f6bb42;
}

    .btn-warning.active, .btn-warning:active, .btn-warning:focus, .btn-warning:hover, .open > .dropdown-toggle.btn-warning {
        color: #fff;
        background-color: #f4ae1d;
        border-color: rgba(0, 0, 0, .05);
    }

    .btn-warning.active, .btn-warning:active, .open > .dropdown-toggle.btn-warning {
        background-image: none;
    }

    .btn-warning.disabled, .btn-warning.disabled.active, .btn-warning.disabled:active, .btn-warning.disabled:focus, .btn-warning.disabled:hover, .btn-warning[disabled], .btn-warning[disabled].active, .btn-warning[disabled]:active, .btn-warning[disabled]:focus, .btn-warning[disabled]:hover, fieldset[disabled] .btn-warning, fieldset[disabled] .btn-warning.active, fieldset[disabled] .btn-warning:active, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning:hover {
        background-color: #f6bb42;
        border-color: #f6bb42;
    }

    .btn-warning .badge {
        color: #f6bb42;
        background-color: #fff;
    }

    .btn-warning.light {
        background-color: #f7c65f;
    }

        .btn-warning.dark, .btn-warning.light.active, .btn-warning.light:active, .btn-warning.light:focus, .btn-warning.light:hover, .open > .dropdown-toggle.btn-warning.light {
            background-color: #f5b025;
        }

            .btn-warning.dark.active, .btn-warning.dark:active, .btn-warning.dark:focus, .btn-warning.dark:hover, .open > .dropdown-toggle.btn-warning.dark {
                background-color: #efa50b;
            }

.btn-danger {
    color: #fff;
    background-color: #e9573f;
}

    .btn-danger.active, .btn-danger:active, .btn-danger:focus, .btn-danger:hover, .open > .dropdown-toggle.btn-danger {
        color: #fff;
        background-color: #e5391d;
        border-color: rgba(0, 0, 0, .05);
    }

    .btn-danger.active, .btn-danger:active, .open > .dropdown-toggle.btn-danger {
        background-image: none;
    }

    .btn-danger.disabled, .btn-danger.disabled.active, .btn-danger.disabled:active, .btn-danger.disabled:focus, .btn-danger.disabled:hover, .btn-danger[disabled], .btn-danger[disabled].active, .btn-danger[disabled]:active, .btn-danger[disabled]:focus, .btn-danger[disabled]:hover, fieldset[disabled] .btn-danger, fieldset[disabled] .btn-danger.active, fieldset[disabled] .btn-danger:active, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger:hover {
        background-color: #e9573f;
        border-color: #e9573f;
    }

    .btn-danger .badge {
        color: #e9573f;
        background-color: #fff;
    }

    .btn-danger.light {
        background-color: #ec6f5a;
    }

        .btn-danger.dark, .btn-danger.light.active, .btn-danger.light:active, .btn-danger.light:focus, .btn-danger.light:hover, .open > .dropdown-toggle.btn-danger.light {
            background-color: #e63f24;
        }

            .btn-danger.dark.active, .btn-danger.dark:active, .btn-danger.dark:focus, .btn-danger.dark:hover, .open > .dropdown-toggle.btn-danger.dark {
                background-color: #d33218;
            }

.btn-alert {
    color: #fff;
    background-color: #707ac0;
}

    .btn-alert.active, .btn-alert:active, .btn-alert:focus, .btn-alert:hover, .open > .dropdown-toggle.btn-alert {
        color: #fff;
        background-color: #5561b4;
        border-color: rgba(0, 0, 0, .05);
    }

    .btn-alert.active, .btn-alert:active, .open > .dropdown-toggle.btn-alert {
        background-image: none;
    }

    .btn-alert.disabled, .btn-alert.disabled.active, .btn-alert.disabled:active, .btn-alert.disabled:focus, .btn-alert.disabled:hover, .btn-alert[disabled], .btn-alert[disabled].active, .btn-alert[disabled]:active, .btn-alert[disabled]:focus, .btn-alert[disabled]:hover, fieldset[disabled] .btn-alert, fieldset[disabled] .btn-alert.active, fieldset[disabled] .btn-alert:active, fieldset[disabled] .btn-alert:focus, fieldset[disabled] .btn-alert:hover {
        background-color: #707ac0;
        border-color: #707ac0;
    }

    .btn-alert .badge {
        color: #707ac0;
        background-color: #fff;
    }

    .btn-alert.light {
        background-color: #858ec9;
    }

        .btn-alert.dark, .btn-alert.light.active, .btn-alert.light:active, .btn-alert.light:focus, .btn-alert.light:hover, .open > .dropdown-toggle.btn-alert.light {
            background-color: #5b66b7;
        }

            .btn-alert.dark.active, .btn-alert.dark:active, .btn-alert.dark:focus, .btn-alert.dark:hover, .open > .dropdown-toggle.btn-alert.dark {
                background-color: #4a56a9;
            }

.btn-system {
    color: #fff;
    background-color: #707ac0;
}

    .btn-system.active, .btn-system:active, .btn-system:focus, .btn-system:hover, .open > .dropdown-toggle.btn-system {
        color: #fff;
        background-color: #5561b4;
        border-color: rgba(0, 0, 0, .05);
    }

    .btn-system.active, .btn-system:active, .open > .dropdown-toggle.btn-system {
        background-image: none;
    }

    .btn-system.disabled, .btn-system.disabled.active, .btn-system.disabled:active, .btn-system.disabled:focus, .btn-system.disabled:hover, .btn-system[disabled], .btn-system[disabled].active, .btn-system[disabled]:active, .btn-system[disabled]:focus, .btn-system[disabled]:hover, fieldset[disabled] .btn-system, fieldset[disabled] .btn-system.active, fieldset[disabled] .btn-system:active, fieldset[disabled] .btn-system:focus, fieldset[disabled] .btn-system:hover {
        background-color: #707ac0;
        border-color: #707ac0;
    }

    .btn-system .badge {
        color: #707ac0;
        background-color: #fff;
    }

    .btn-system.light {
        background-color: #858ec9;
    }

        .btn-system.dark, .btn-system.light.active, .btn-system.light:active, .btn-system.light:focus, .btn-system.light:hover, .open > .dropdown-toggle.btn-system.light {
            background-color: #5b66b7;
        }

            .btn-system.dark.active, .btn-system.dark:active, .btn-system.dark:focus, .btn-system.dark:hover, .open > .dropdown-toggle.btn-system.dark {
                background-color: #4a56a9;
            }

.btn-dark {
    color: #fff;
    background-color: #3b3f4f;
}

    .btn-dark.active, .btn-dark:active, .btn-dark:focus, .btn-dark:hover, .open > .dropdown-toggle.btn-dark {
        color: #fff;
        background-color: #2b2e39;
        border-color: rgba(0, 0, 0, .05);
    }

    .btn-dark.active, .btn-dark:active, .open > .dropdown-toggle.btn-dark {
        background-image: none;
    }

    .btn-dark.disabled, .btn-dark.disabled.active, .btn-dark.disabled:active, .btn-dark.disabled:focus, .btn-dark.disabled:hover, .btn-dark[disabled], .btn-dark[disabled].active, .btn-dark[disabled]:active, .btn-dark[disabled]:focus, .btn-dark[disabled]:hover, fieldset[disabled] .btn-dark, fieldset[disabled] .btn-dark.active, fieldset[disabled] .btn-dark:active, fieldset[disabled] .btn-dark:focus, fieldset[disabled] .btn-dark:hover {
        background-color: #3b3f4f;
        border-color: #3b3f4f;
    }

    .btn-dark .badge {
        color: #3b3f4f;
        background-color: #fff;
    }

    .btn-dark.light {
        background-color: #484d61;
    }

        .btn-dark.dark, .btn-dark.light.active, .btn-dark.light:active, .btn-dark.light:focus, .btn-dark.light:hover, .open > .dropdown-toggle.btn-dark.light {
            background-color: #2e313d;
        }

            .btn-dark.dark.active, .btn-dark.dark:active, .btn-dark.dark:focus, .btn-dark.dark:hover, .open > .dropdown-toggle.btn-dark.dark {
                background-color: #21232c;
            }

.btn.btn-alt.btn-default {
    border-left-color: #AAA;
}

.btn.btn-alt.btn-primary {
    border-left-color: #707ac0;
}

.btn.btn-alt.btn-success {
    border-left-color: #70ca63;
}

.btn.btn-alt.btn-info {
    border-left-color: #3bafda;
}

.btn.btn-alt.btn-warning {
    border-left-color: #f6bb42;
}

.btn.btn-alt.btn-danger {
    border-left-color: #e9573f;
}

.btn.btn-alt.btn-alert, .btn.btn-alt.btn-system {
    border-left-color: #707ac0;
}

.btn.btn-alt.btn-dark {
    border-left-color: #3b3f4f;
}

.checkbox-custom.checkbox-primary label:before, .radio-custom.radio-primary label:before {
    border-color: #858ec9;
}

.checkbox-custom.checkbox-primary input[type=checkbox]:checked + label:after, .checkbox-custom.checkbox-primary input[type=radio]:checked + label:after, .radio-custom.radio-primary input[type=checkbox]:checked + label:after, .radio-custom.radio-primary input[type=radio]:checked + label:after {
    background-color: #858ec9;
    color: #858ec9;
}

.checkbox-custom.fill.checkbox-primary label:before {
    background-color: #858ec9;
}

.checkbox-custom.checkbox-success label:before, .radio-custom.radio-success label:before {
    border-color: #85d27a;
}

.checkbox-custom.checkbox-success input[type=checkbox]:checked + label:after, .checkbox-custom.checkbox-success input[type=radio]:checked + label:after, .radio-custom.radio-success input[type=checkbox]:checked + label:after, .radio-custom.radio-success input[type=radio]:checked + label:after {
    background-color: #85d27a;
    color: #85d27a;
}

.checkbox-custom.fill.checkbox-success label:before {
    background-color: #85d27a;
}

.checkbox-custom.checkbox-info label:before, .radio-custom.radio-info label:before {
    border-color: #55badf;
}

.checkbox-custom.checkbox-info input[type=checkbox]:checked + label:after, .checkbox-custom.checkbox-info input[type=radio]:checked + label:after, .radio-custom.radio-info input[type=checkbox]:checked + label:after, .radio-custom.radio-info input[type=radio]:checked + label:after {
    background-color: #55badf;
    color: #55badf;
}

.checkbox-custom.fill.checkbox-info label:before {
    background-color: #55badf;
}

.checkbox-custom.checkbox-warning label:before, .radio-custom.radio-warning label:before {
    border-color: #f7c65f;
}

.checkbox-custom.checkbox-warning input[type=checkbox]:checked + label:after, .checkbox-custom.checkbox-warning input[type=radio]:checked + label:after, .radio-custom.radio-warning input[type=checkbox]:checked + label:after, .radio-custom.radio-warning input[type=radio]:checked + label:after {
    background-color: #f7c65f;
    color: #f7c65f;
}

.checkbox-custom.fill.checkbox-warning label:before {
    background-color: #f7c65f;
}

.checkbox-custom.checkbox-danger label:before, .radio-custom.radio-danger label:before {
    border-color: #ec6f5a;
}

.checkbox-custom.checkbox-danger input[type=checkbox]:checked + label:after, .checkbox-custom.checkbox-danger input[type=radio]:checked + label:after, .radio-custom.radio-danger input[type=checkbox]:checked + label:after, .radio-custom.radio-danger input[type=radio]:checked + label:after {
    background-color: #ec6f5a;
    color: #ec6f5a;
}

.checkbox-custom.fill.checkbox-danger label:before {
    background-color: #ec6f5a;
}

.checkbox-custom.checkbox-alert label:before, .radio-custom.radio-alert label:before {
    border-color: #858ec9;
}

.checkbox-custom.checkbox-alert input[type=checkbox]:checked + label:after, .checkbox-custom.checkbox-alert input[type=radio]:checked + label:after, .radio-custom.radio-alert input[type=checkbox]:checked + label:after, .radio-custom.radio-alert input[type=radio]:checked + label:after {
    background-color: #858ec9;
    color: #858ec9;
}

.checkbox-custom.fill.checkbox-alert label:before {
    background-color: #858ec9;
}

.checkbox-custom.checkbox-system label:before, .radio-custom.radio-system label:before {
    border-color: #858ec9;
}

.checkbox-custom.checkbox-system input[type=checkbox]:checked + label:after, .checkbox-custom.checkbox-system input[type=radio]:checked + label:after, .radio-custom.radio-system input[type=checkbox]:checked + label:after, .radio-custom.radio-system input[type=radio]:checked + label:after {
    background-color: #858ec9;
    color: #858ec9;
}

.checkbox-custom.fill.checkbox-system label:before {
    background-color: #858ec9;
}

.checkbox-custom.checkbox-dark label:before, .radio-custom.radio-dark label:before {
    border-color: #484d61;
}

.checkbox-custom.checkbox-dark input[type=checkbox]:checked + label:after, .checkbox-custom.checkbox-dark input[type=radio]:checked + label:after, .radio-custom.radio-dark input[type=checkbox]:checked + label:after, .radio-custom.radio-dark input[type=radio]:checked + label:after {
    background-color: #484d61;
    color: #484d61;
}

.checkbox-custom.fill.checkbox-dark label:before {
    background-color: #484d61;
}

.checkbox-custom.checkbox-light label:before, .radio-custom.radio-light label:before {
    border-color: #eee;
}

.checkbox-custom.checkbox-light input[type=checkbox]:checked + label:after, .checkbox-custom.checkbox-light input[type=radio]:checked + label:after, .radio-custom.radio-light input[type=checkbox]:checked + label:after, .radio-custom.radio-light input[type=radio]:checked + label:after {
    background-color: #666;
    color: #666 !important;
}

.checkbox-custom.fill.checkbox-light label:before {
    background-color: #eee;
}

.checkbox-custom.checkbox-disabled label:before, .radio-custom.radio-disabled label:before {
    border-color: #b9b9b9;
}

.checkbox-custom.checkbox-disabled input[type=checkbox]:checked + label:after, .checkbox-custom.checkbox-disabled input[type=radio]:checked + label:after, .radio-custom.radio-disabled input[type=checkbox]:checked + label:after, .radio-custom.radio-disabled input[type=radio]:checked + label:after {
    background-color: #b9b9b9;
    color: #b9b9b9;
}

.checkbox-custom.fill.checkbox-disabled label:before {
    background-color: #b9b9b9;
}

.list-group-item-primary {
    color: #3e488c;
    border-color: #b0b5dc;
    background-color: #daddef;
}

a.list-group-item-primary {
    color: #3e488c;
}

    a.list-group-item-primary .list-group-item-heading {
        color: inherit;
    }

    a.list-group-item-primary:focus, a.list-group-item-primary:hover {
        color: #3e488c;
        background-color: #e8eaf5;
    }

    a.list-group-item-primary.active, a.list-group-item-primary.active:focus, a.list-group-item-primary.active:hover {
        color: #fff;
        background-color: #707ac0;
        border-color: #707ac0;
    }

.list-group-item-success {
    color: #3f9532;
    border-color: #afe1a8;
    background-color: #d9f1d5;
}

a.list-group-item-success {
    color: #3f9532;
}

    a.list-group-item-success .list-group-item-heading {
        color: inherit;
    }

    a.list-group-item-success:focus, a.list-group-item-success:hover {
        color: #3f9532;
        background-color: #e7f6e4;
    }

    a.list-group-item-success.active, a.list-group-item-success.active:focus, a.list-group-item-success.active:hover {
        color: #fff;
        background-color: #70ca63;
        border-color: #70ca63;
    }

.list-group-item-info {
    color: #1c7393;
    border-color: #88cfe9;
    background-color: #bce4f2;
}

a.list-group-item-info {
    color: #1c7393;
}

    a.list-group-item-info .list-group-item-heading {
        color: inherit;
    }

    a.list-group-item-info:focus, a.list-group-item-info:hover {
        color: #1c7393;
        background-color: #cdebf6;
    }

    a.list-group-item-info.active, a.list-group-item-info.active:focus, a.list-group-item-info.active:hover {
        color: #fff;
        background-color: #3bafda;
        border-color: #3bafda;
    }

.list-group-item-warning {
    color: #c88a0a;
    border-color: #fadb9a;
    background-color: #fdf0d4;
}

a.list-group-item-warning {
    color: #c88a0a;
}

    a.list-group-item-warning .list-group-item-heading {
        color: inherit;
    }

    a.list-group-item-warning:focus, a.list-group-item-warning:hover {
        color: #c88a0a;
        background-color: #fef7e8;
    }

    a.list-group-item-warning.active, a.list-group-item-warning.active:focus, a.list-group-item-warning.active:hover {
        color: #fff;
        background-color: #f6bb42;
        border-color: #f6bb42;
    }

.list-group-item-danger {
    color: #bc2d16;
    border-color: #f4ab9f;
    background-color: #fadbd6;
}

a.list-group-item-danger {
    color: #bc2d16;
}

    a.list-group-item-danger .list-group-item-heading {
        color: inherit;
    }

    a.list-group-item-danger:focus, a.list-group-item-danger:hover {
        color: #bc2d16;
        background-color: #fcebe8;
    }

    a.list-group-item-danger.active, a.list-group-item-danger.active:focus, a.list-group-item-danger.active:hover {
        color: #fff;
        background-color: #e9573f;
        border-color: #e9573f;
    }

.list-group-item-alert {
    color: #394282;
    border-color: #a5abd7;
    background-color: #d0d3ea;
}

a.list-group-item-alert {
    color: #394282;
}

    a.list-group-item-alert .list-group-item-heading {
        color: inherit;
    }

    a.list-group-item-alert:focus, a.list-group-item-alert:hover {
        color: #394282;
        background-color: #dee0f0;
    }

    a.list-group-item-alert.active, a.list-group-item-alert.active:focus, a.list-group-item-alert.active:hover {
        color: #fff;
        background-color: #707ac0;
        border-color: #707ac0;
    }

.list-group-item-system {
    color: #3e488c;
    border-color: #b0b5dc;
    background-color: #daddef;
}

a.list-group-item-system {
    color: #3e488c;
}

    a.list-group-item-system .list-group-item-heading {
        color: inherit;
    }

    a.list-group-item-system:focus, a.list-group-item-system:hover {
        color: #3e488c;
        background-color: #e8eaf5;
    }

    a.list-group-item-system.active, a.list-group-item-system.active:focus, a.list-group-item-system.active:hover {
        color: #fff;
        background-color: #707ac0;
        border-color: #707ac0;
    }

.list-group-item-dark {
    color: #3b3f4f;
    border-color: #999eb3;
    background-color: #bcbfcd;
}

a.list-group-item-dark {
    color: #3b3f4f;
}

    a.list-group-item-dark .list-group-item-heading {
        color: inherit;
    }

    a.list-group-item-dark:focus, a.list-group-item-dark:hover {
        color: #3b3f4f;
        background-color: #c8cbd6;
    }

    a.list-group-item-dark.active, a.list-group-item-dark.active:focus, a.list-group-item-dark.active:hover {
        color: #fff;
        background-color: #3b3f4f;
        border-color: #3b3f4f;
    }

.panel-primary.panel-border {
    border-color: #707ac0;
}

.panel-primary > .panel-heading {
    color: #fff;
    background-color: #707ac0;
    border-color: #707ac0;
}

    .panel-primary > .panel-heading + .panel-collapse > .panel-body {
        border-top-color: #707ac0;
    }

    .panel-primary > .panel-heading .badge {
        color: #707ac0;
        background-color: #fff;
    }

    .panel-primary > .panel-heading > .panel-title {
        color: #fff;
    }

.panel-primary > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #707ac0;
}

.panel-primary > .panel-body.fill {
    color: #FFF;
    border-color: #9ea5d4;
    background-color: #9ea5d4;
}

.panel-primary > .panel-body.border {
    border: 3px solid #707ac0;
}

.panel-success.panel-border {
    border-color: #70ca63;
}

.panel-success > .panel-heading {
    color: #fff;
    background-color: #70ca63;
    border-color: #70ca63;
}

    .panel-success > .panel-heading + .panel-collapse > .panel-body {
        border-top-color: #70ca63;
    }

    .panel-success > .panel-heading .badge {
        color: #70ca63;
        background-color: #fff;
    }

    .panel-success > .panel-heading > .panel-title {
        color: #fff;
    }

.panel-success > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #70ca63;
}

.panel-success > .panel-body.fill {
    color: #FFF;
    border-color: #9ddb94;
    background-color: #9ddb94;
}

.panel-success > .panel-body.border {
    border: 3px solid #70ca63;
}

.panel-info.panel-border {
    border-color: #3bafda;
}

.panel-info > .panel-heading {
    color: #fff;
    background-color: #3bafda;
    border-color: #3bafda;
}

    .panel-info > .panel-heading + .panel-collapse > .panel-body {
        border-top-color: #3bafda;
    }

    .panel-info > .panel-heading .badge {
        color: #3bafda;
        background-color: #fff;
    }

    .panel-info > .panel-heading > .panel-title {
        color: #fff;
    }

.panel-info > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #3bafda;
}

.panel-info > .panel-body.fill {
    color: #FFF;
    border-color: #73c6e5;
    background-color: #73c6e5;
}

.panel-info > .panel-body.border {
    border: 3px solid #3bafda;
}

.panel-warning.panel-border {
    border-color: #f6bb42;
}

.panel-warning > .panel-heading {
    color: #fff;
    background-color: #f6bb42;
    border-color: #f6bb42;
}

    .panel-warning > .panel-heading + .panel-collapse > .panel-body {
        border-top-color: #f6bb42;
    }

    .panel-warning > .panel-heading .badge {
        color: #f6bb42;
        background-color: #fff;
    }

    .panel-warning > .panel-heading > .panel-title {
        color: #fff;
    }

.panel-warning > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #f6bb42;
}

.panel-warning > .panel-body.fill {
    color: #FFF;
    border-color: #f9d281;
    background-color: #f9d281;
}

.panel-warning > .panel-body.border {
    border: 3px solid #f6bb42;
}

.panel-danger.panel-border {
    border-color: #e9573f;
}

.panel-danger > .panel-heading {
    color: #fff;
    background-color: #e9573f;
    border-color: #e9573f;
}

    .panel-danger > .panel-heading + .panel-collapse > .panel-body {
        border-top-color: #e9573f;
    }

    .panel-danger > .panel-heading .badge {
        color: #e9573f;
        background-color: #fff;
    }

    .panel-danger > .panel-heading > .panel-title {
        color: #fff;
    }

.panel-danger > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #e9573f;
}

.panel-danger > .panel-body.fill {
    color: #FFF;
    border-color: #f08b7a;
    background-color: #f08b7a;
}

.panel-danger > .panel-body.border {
    border: 3px solid #e9573f;
}

.panel-alert.panel-border {
    border-color: #707ac0;
}

.panel-alert > .panel-heading {
    color: #fff;
    background-color: #707ac0;
    border-color: #707ac0;
}

    .panel-alert > .panel-heading + .panel-collapse > .panel-body {
        border-top-color: #707ac0;
    }

    .panel-alert > .panel-heading .badge {
        color: #707ac0;
        background-color: #fff;
    }

    .panel-alert > .panel-heading > .panel-title {
        color: #fff;
    }

.panel-alert > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #707ac0;
}

.panel-alert > .panel-body.fill {
    color: #FFF;
    border-color: #9ea5d4;
    background-color: #9ea5d4;
}

.panel-alert > .panel-body.border {
    border: 3px solid #707ac0;
}

.panel-system.panel-border {
    border-color: #707ac0;
}

.panel-system > .panel-heading {
    color: #fff;
    background-color: #707ac0;
    border-color: #707ac0;
}

    .panel-system > .panel-heading + .panel-collapse > .panel-body {
        border-top-color: #707ac0;
    }

    .panel-system > .panel-heading .badge {
        color: #707ac0;
        background-color: #fff;
    }

    .panel-system > .panel-heading > .panel-title {
        color: #fff;
    }

.panel-system > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #707ac0;
}

.panel-system > .panel-body.fill {
    color: #FFF;
    border-color: #9ea5d4;
    background-color: #9ea5d4;
}

.panel-system > .panel-body.border {
    border: 3px solid #707ac0;
}

.panel-dark.panel-border {
    border-color: #3b3f4f;
}

.panel-dark > .panel-heading {
    color: #fff;
    background-color: #3b3f4f;
    border-color: #3b3f4f;
}

    .panel-dark > .panel-heading + .panel-collapse > .panel-body {
        border-top-color: #3b3f4f;
    }

    .panel-dark > .panel-heading .badge {
        color: #3b3f4f;
        background-color: #fff;
    }

    .panel-dark > .panel-heading > .panel-title {
        color: #fff;
    }

.panel-dark > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #3b3f4f;
}

.panel-dark > .panel-body.fill {
    color: #FFF;
    border-color: #575d75;
    background-color: #575d75;
}

.panel-dark > .panel-body.border {
    border: 3px solid #3b3f4f;
}

.progress-bar-default {
    background-color: #999;
}

    .progress-bar-default.light {
        background-color: #a2a2a2;
    }

    .progress-bar-default.dark {
        background-color: #909090;
    }

.progress-striped .progress-bar-default {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}

.progress-bar-primary {
    background-color: #707ac0;
}

    .progress-bar-primary.light {
        background-color: #7c86c5;
    }

    .progress-bar-primary.dark {
        background-color: #646ebb;
    }

.progress-striped .progress-bar-primary {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}

.progress-bar-success {
    background-color: #70ca63;
}

    .progress-bar-success.light {
        background-color: #7ccf70;
    }

    .progress-bar-success.dark {
        background-color: #64c556;
    }

.progress-striped .progress-bar-success {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}

.progress-bar-info {
    background-color: #3bafda;
}

    .progress-bar-info.light {
        background-color: #4ab5dd;
    }

    .progress-bar-info.dark {
        background-color: #2ca9d7;
    }

.progress-striped .progress-bar-info {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}

.progress-bar-warning {
    background-color: #f6bb42;
}

    .progress-bar-warning.light {
        background-color: #f7c153;
    }

    .progress-bar-warning.dark {
        background-color: #f5b531;
    }

.progress-striped .progress-bar-warning {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}

.progress-bar-danger {
    background-color: #e9573f;
}

    .progress-bar-danger.light {
        background-color: #eb654f;
    }

    .progress-bar-danger.dark {
        background-color: #e7492f;
    }

.progress-striped .progress-bar-danger {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}

.progress-bar-alert {
    background-color: #707ac0;
}

    .progress-bar-alert.light {
        background-color: #7c86c5;
    }

    .progress-bar-alert.dark {
        background-color: #646ebb;
    }

.progress-striped .progress-bar-alert {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}

.progress-bar-system {
    background-color: #707ac0;
}

    .progress-bar-system.light {
        background-color: #7c86c5;
    }

    .progress-bar-system.dark {
        background-color: #646ebb;
    }

.progress-striped .progress-bar-system {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}

.progress-bar-dark {
    background-color: #3b3f4f;
}

    .progress-bar-dark.light {
        background-color: #434759;
    }

    .progress-bar-dark.dark {
        background-color: #333745;
    }

.progress-striped .progress-bar-dark {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}

div.switch.switch-primary input:checked + label {
    background-color: #707ac0;
}

div.switch.switch-success input:checked + label {
    background-color: #70ca63;
}

div.switch.switch-info input:checked + label {
    background-color: #3bafda;
}

div.switch.switch-warning input:checked + label {
    background-color: #f6bb42;
}

div.switch.switch-danger input:checked + label {
    background-color: #e9573f;
}

div.switch.switch-alert input:checked + label {
    background-color: #707ac0;
}

div.switch.switch-system input:checked + label {
    background-color: #707ac0;
}

div.switch.switch-dark input:checked + label {
    background-color: #3b3f4f;
}

.table > tbody > tr.active > td, .table > tbody > tr.active > th, .table > tbody > tr > td.active, .table > tbody > tr > th.active, .table > tfoot > tr.active > td, .table > tfoot > tr.active > th, .table > tfoot > tr > td.active, .table > tfoot > tr > th.active, .table > thead > tr.active > td, .table > thead > tr.active > th, .table > thead > tr > td.active, .table > thead > tr > th.active {
    color: #a9a9a9;
    border-color: #fff;
    background-color: #fff;
}

.table > tbody > tr.active + tr > td, .table > tbody > tr.active + tr > th, .table > tfoot > tr.active + tr > td, .table > tfoot > tr.active + tr > th, .table > thead > tr.active + tr > td, .table > thead > tr.active + tr > th {
    border-top: 1px solid #fff;
}

.table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr.active:hover > th, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr > td.active:hover, .table-hover > tbody > tr > th.active:hover {
    background-color: #fff;
}

.table > tbody > tr.default > td, .table > tbody > tr.default > th, .table > tbody > tr > td.default, .table > tbody > tr > th.default, .table > tfoot > tr.default > td, .table > tfoot > tr.default > th, .table > tfoot > tr > td.default, .table > tfoot > tr > th.default, .table > thead > tr.default > td, .table > thead > tr.default > th, .table > thead > tr > td.default, .table > thead > tr > th.default {
    color: #b3b3b3;
    border-color: #fff;
    background-color: #fff;
}

.table > tbody > tr.default + tr > td, .table > tbody > tr.default + tr > th, .table > tfoot > tr.default + tr > td, .table > tfoot > tr.default + tr > th, .table > thead > tr.default + tr > td, .table > thead > tr.default + tr > th {
    border-top: 1px solid #fff;
}

.table-hover > tbody > tr.default:hover > td, .table-hover > tbody > tr.default:hover > th, .table-hover > tbody > tr:hover > .default, .table-hover > tbody > tr > td.default:hover, .table-hover > tbody > tr > th.default:hover {
    background-color: #fff;
}

.table > tbody > tr.primary > td, .table > tbody > tr.primary > th, .table > tbody > tr > td.primary, .table > tbody > tr > th.primary, .table > tfoot > tr.primary > td, .table > tfoot > tr.primary > th, .table > tfoot > tr > td.primary, .table > tfoot > tr > th.primary, .table > thead > tr.primary > td, .table > thead > tr.primary > th, .table > thead > tr > td.primary, .table > thead > tr > th.primary {
    color: #3e488c;
    border-color: #b0b5dc;
    background-color: #daddef;
}

.table > tbody > tr.primary + tr > td, .table > tbody > tr.primary + tr > th, .table > tfoot > tr.primary + tr > td, .table > tfoot > tr.primary + tr > th, .table > thead > tr.primary + tr > td, .table > thead > tr.primary + tr > th {
    border-top: 1px solid #b0b5dc;
}

.table-hover > tbody > tr.primary:hover > td, .table-hover > tbody > tr.primary:hover > th, .table-hover > tbody > tr:hover > .primary, .table-hover > tbody > tr > td.primary:hover, .table-hover > tbody > tr > th.primary:hover {
    background-color: #e8eaf5;
}

.table > tbody > tr.success > td, .table > tbody > tr.success > th, .table > tbody > tr > td.success, .table > tbody > tr > th.success, .table > tfoot > tr.success > td, .table > tfoot > tr.success > th, .table > tfoot > tr > td.success, .table > tfoot > tr > th.success, .table > thead > tr.success > td, .table > thead > tr.success > th, .table > thead > tr > td.success, .table > thead > tr > th.success {
    color: #3f9532;
    border-color: #afe1a8;
    background-color: #d9f1d5;
}

.table > tbody > tr.success + tr > td, .table > tbody > tr.success + tr > th, .table > tfoot > tr.success + tr > td, .table > tfoot > tr.success + tr > th, .table > thead > tr.success + tr > td, .table > thead > tr.success + tr > th {
    border-top: 1px solid #afe1a8;
}

.table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr.success:hover > th, .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr > td.success:hover, .table-hover > tbody > tr > th.success:hover {
    background-color: #e7f6e4;
}

.table > tbody > tr.info > td, .table > tbody > tr.info > th, .table > tbody > tr > td.info, .table > tbody > tr > th.info, .table > tfoot > tr.info > td, .table > tfoot > tr.info > th, .table > tfoot > tr > td.info, .table > tfoot > tr > th.info, .table > thead > tr.info > td, .table > thead > tr.info > th, .table > thead > tr > td.info, .table > thead > tr > th.info {
    color: #1c7393;
    border-color: #88cfe9;
    background-color: #bce4f2;
}

.table > tbody > tr.info + tr > td, .table > tbody > tr.info + tr > th, .table > tfoot > tr.info + tr > td, .table > tfoot > tr.info + tr > th, .table > thead > tr.info + tr > td, .table > thead > tr.info + tr > th {
    border-top: 1px solid #88cfe9;
}

.table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr.info:hover > th, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr > td.info:hover, .table-hover > tbody > tr > th.info:hover {
    background-color: #cdebf6;
}

.table > tbody > tr.warning > td, .table > tbody > tr.warning > th, .table > tbody > tr > td.warning, .table > tbody > tr > th.warning, .table > tfoot > tr.warning > td, .table > tfoot > tr.warning > th, .table > tfoot > tr > td.warning, .table > tfoot > tr > th.warning, .table > thead > tr.warning > td, .table > thead > tr.warning > th, .table > thead > tr > td.warning, .table > thead > tr > th.warning {
    color: #c88a0a;
    border-color: #fadb9a;
    background-color: #fdf0d4;
}

.table > tbody > tr.warning + tr > td, .table > tbody > tr.warning + tr > th, .table > tfoot > tr.warning + tr > td, .table > tfoot > tr.warning + tr > th, .table > thead > tr.warning + tr > td, .table > thead > tr.warning + tr > th {
    border-top: 1px solid #fadb9a;
}

.table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr.warning:hover > th, .table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr > td.warning:hover, .table-hover > tbody > tr > th.warning:hover {
    background-color: #fef7e8;
}

.table > tbody > tr.danger > td, .table > tbody > tr.danger > th, .table > tbody > tr > td.danger, .table > tbody > tr > th.danger, .table > tfoot > tr.danger > td, .table > tfoot > tr.danger > th, .table > tfoot > tr > td.danger, .table > tfoot > tr > th.danger, .table > thead > tr.danger > td, .table > thead > tr.danger > th, .table > thead > tr > td.danger, .table > thead > tr > th.danger {
    color: #bc2d16;
    border-color: #f4ab9f;
    background-color: #fadbd6;
}

.table > tbody > tr.danger + tr > td, .table > tbody > tr.danger + tr > th, .table > tfoot > tr.danger + tr > td, .table > tfoot > tr.danger + tr > th, .table > thead > tr.danger + tr > td, .table > thead > tr.danger + tr > th {
    border-top: 1px solid #f4ab9f;
}

.table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr.danger:hover > th, .table-hover > tbody > tr:hover > .danger, .table-hover > tbody > tr > td.danger:hover, .table-hover > tbody > tr > th.danger:hover {
    background-color: #fcebe8;
}

.table > tbody > tr.alert > td, .table > tbody > tr.alert > th, .table > tbody > tr > td.alert, .table > tbody > tr > th.alert, .table > tfoot > tr.alert > td, .table > tfoot > tr.alert > th, .table > tfoot > tr > td.alert, .table > tfoot > tr > th.alert, .table > thead > tr.alert > td, .table > thead > tr.alert > th, .table > thead > tr > td.alert, .table > thead > tr > th.alert {
    color: #394282;
    border-color: #a5abd7;
    background-color: #d0d3ea;
}

.table > tbody > tr.alert + tr > td, .table > tbody > tr.alert + tr > th, .table > tfoot > tr.alert + tr > td, .table > tfoot > tr.alert + tr > th, .table > thead > tr.alert + tr > td, .table > thead > tr.alert + tr > th {
    border-top: 1px solid #a5abd7;
}

.table-hover > tbody > tr.alert:hover > td, .table-hover > tbody > tr.alert:hover > th, .table-hover > tbody > tr:hover > .alert, .table-hover > tbody > tr > td.alert:hover, .table-hover > tbody > tr > th.alert:hover {
    background-color: #dee0f0;
}

.table > tbody > tr.system > td, .table > tbody > tr.system > th, .table > tbody > tr > td.system, .table > tbody > tr > th.system, .table > tfoot > tr.system > td, .table > tfoot > tr.system > th, .table > tfoot > tr > td.system, .table > tfoot > tr > th.system, .table > thead > tr.system > td, .table > thead > tr.system > th, .table > thead > tr > td.system, .table > thead > tr > th.system {
    color: #3e488c;
    border-color: #b0b5dc;
    background-color: #daddef;
}

.table > tbody > tr.system + tr > td, .table > tbody > tr.system + tr > th, .table > tfoot > tr.system + tr > td, .table > tfoot > tr.system + tr > th, .table > thead > tr.system + tr > td, .table > thead > tr.system + tr > th {
    border-top: 1px solid #b0b5dc;
}

.table-hover > tbody > tr.system:hover > td, .table-hover > tbody > tr.system:hover > th, .table-hover > tbody > tr:hover > .system, .table-hover > tbody > tr > td.system:hover, .table-hover > tbody > tr > th.system:hover {
    background-color: #e8eaf5;
}

.table > tbody > tr.dark > td, .table > tbody > tr.dark > th, .table > tbody > tr > td.dark, .table > tbody > tr > th.dark, .table > tfoot > tr.dark > td, .table > tfoot > tr.dark > th, .table > tfoot > tr > td.dark, .table > tfoot > tr > th.dark, .table > thead > tr.dark > td, .table > thead > tr.dark > th, .table > thead > tr > td.dark, .table > thead > tr > th.dark {
    color: #3b3f4f;
    border-color: #999eb3;
    background-color: #bcbfcd;
}

.table > tbody > tr.dark + tr > td, .table > tbody > tr.dark + tr > th, .table > tfoot > tr.dark + tr > td, .table > tfoot > tr.dark + tr > th, .table > thead > tr.dark + tr > td, .table > thead > tr.dark + tr > th {
    border-top: 1px solid #999eb3;
}

.table-hover > tbody > tr.dark:hover > td, .table-hover > tbody > tr.dark:hover > th, .table-hover > tbody > tr:hover > .dark, .table-hover > tbody > tr > td.dark:hover, .table-hover > tbody > tr > th.dark:hover {
    background-color: #c8cbd6;
}

.text-white {
    color: #fff;
}

a.text-white:hover {
    color: grey;
}

.text-white-light, .text-white-lighter {
    color: #fff;
}

.text-white-dark {
    color: #f6f6f6;
}

.text-white-darker {
    color: #ececec;
}

.text-muted {
    color: #999;
}

a.text-muted:hover {
    color: #191919;
}

.text-muted-light {
    color: #a2a2a2;
}

.text-muted-lighter {
    color: #acacac;
}

.text-muted-dark {
    color: #909090;
}

.text-muted-darker {
    color: #868686;
}

.text-primary {
    color: #707ac0;
}

a.text-primary:hover {
    color: #0f1122;
}

.text-primary-light {
    color: #7c86c5;
}

.text-primary-lighter {
    color: #8b93cc;
}

.text-primary-dark {
    color: #646ebb;
}

.text-primary-darker {
    color: #5561b4;
}

.text-success {
    color: #70ca63;
}

a.text-success:hover {
    color: #0f220c;
}

.text-success-light {
    color: #7ccf70;
}

.text-success-lighter {
    color: #8ad480;
}

.text-success-dark {
    color: #64c556;
}

.text-success-darker {
    color: #56c046;
}

.text-info {
    color: #3bafda;
}

a.text-info:hover {
    color: #030e13;
}

.text-info-light {
    color: #4ab5dd;
}

.text-info-lighter {
    color: #5bbce0;
}

.text-info-dark {
    color: #2ca9d7;
}

.text-info-darker {
    color: #269dc9;
}

.text-warning {
    color: #f6bb42;
}

a.text-warning:hover {
    color: #362503;
}

.text-warning-light {
    color: #f7c153;
}

.text-warning-lighter {
    color: #f8c867;
}

.text-warning-dark {
    color: #f5b531;
}

.text-warning-darker {
    color: #f4ae1d;
}

.text-danger {
    color: #e9573f;
}

a.text-danger:hover {
    color: #250904;
}

.text-danger-light {
    color: #eb654f;
}

.text-danger-lighter {
    color: #ed7561;
}

.text-danger-dark {
    color: #e7492f;
}

.text-danger-darker {
    color: #e5391d;
}

.text-alert {
    color: #707ac0;
}

a.text-alert:hover {
    color: #0f1122;
}

.text-alert-light {
    color: #7c86c5;
}

.text-alert-lighter {
    color: #8b93cc;
}

.text-alert-dark {
    color: #646ebb;
}

.text-alert-darker {
    color: #5561b4;
}

.text-system {
    color: #707ac0;
}

a.text-system:hover {
    color: #0f1122;
}

.text-system-light {
    color: #7c86c5;
}

.text-system-lighter {
    color: #8b93cc;
}

.text-system-dark {
    color: #646ebb;
}

.text-system-darker {
    color: #5561b4;
}

.text-dark {
    color: #3b3f4f;
}

a.text-dark:hover {
    color: #000;
}

.text-dark-light {
    color: #434759;
}

.text-dark-lighter {
    color: #4b5065;
}

.text-dark-dark {
    color: #333745;
}

.text-dark-darker {
    color: #2b2e39;
}

.text-tp {
    color: rgba(0, 0, 0, .2);
}

a.text-tp:hover {
    color: rgba(0, 0, 0, .3);
}

blockquote.blockquote-primary {
    border-color: #707ac0;
}

blockquote.blockquote-success {
    border-color: #70ca63;
}

blockquote.blockquote-info {
    border-color: #3bafda;
}

blockquote.blockquote-warning {
    border-color: #f6bb42;
}

blockquote.blockquote-danger {
    border-color: #e9573f;
}

blockquote.blockquote-alert, blockquote.blockquote-system {
    border-color: #707ac0;
}

blockquote.blockquote-dark {
    border-color: #3b3f4f;
}

.dropcap.dropcap-default:first-letter {
    color: #666;
}

.dropcap.dropcap-primary:first-letter {
    color: #707ac0;
}

.dropcap.dropcap-success:first-letter {
    color: #70ca63;
}

.dropcap.dropcap-info:first-letter {
    color: #3bafda;
}

.dropcap.dropcap-warning:first-letter {
    color: #f6bb42;
}

.dropcap.dropcap-danger:first-letter {
    color: #e9573f;
}

.dropcap.dropcap-alert:first-letter, .dropcap.dropcap-system:first-letter {
    color: #707ac0;
}

.dropcap.dropcap-dark:first-letter {
    color: #111;
}

.dropcap.dropcap-muted:first-letter {
    color: #AAA;
}

.dropcap.dropcap-fill:first-letter {
    color: #FFF;
}

.dropcap.dropcap-fill.dropcap-default:first-letter {
    color: #444;
    background-color: #f0f0f0;
}

.dropcap.dropcap-fill.dropcap-primary:first-letter {
    background-color: #707ac0;
}

.dropcap.dropcap-fill.dropcap-success:first-letter {
    background-color: #70ca63;
}

.dropcap.dropcap-fill.dropcap-info:first-letter {
    background-color: #3bafda;
}

.dropcap.dropcap-fill.dropcap-warning:first-letter {
    background-color: #f6bb42;
}

.dropcap.dropcap-fill.dropcap-danger:first-letter {
    background-color: #e9573f;
}

.dropcap.dropcap-fill.dropcap-alert:first-letter, .dropcap.dropcap-fill.dropcap-system:first-letter {
    background-color: #707ac0;
}

.dropcap.dropcap-fill.dropcap-dark:first-letter {
    background-color: #3b3f4f;
}

.dropcap.dropcap-fill.dropcap-muted:first-letter {
    color: #888;
    background-color: #f0f0f0;
}

.alert-primary {
    background-color: #8c94cc;
}

    .alert-primary.alert-border-right {
        border-right-color: #4954a5;
    }

    .alert-primary.alert-border-top {
        border-top-color: #4954a5;
    }

    .alert-primary.alert-border-bottom {
        border-bottom-color: #4954a5;
    }

    .alert-primary.alert-border-left {
        border-left-color: #4954a5;
    }

    .alert-primary.light {
        background-color: #a5abd7;
    }

    .alert-primary.dark {
        background-color: #6570bb;
    }

    .alert-primary.pastel {
        color: #46519e;
        background-color: #daddef;
        border-color: rgba(0, 0, 0, .1);
    }

        .alert-primary.pastel .alert-link {
            color: #46519e;
        }

        .alert-primary.pastel.alert-micro {
            border-color: #939bd0;
        }

        .alert-primary.pastel .close, .alert-primary.pastel .close:hover {
            color: #46519e;
        }

.alert-success {
    background-color: #8cd481;
}

    .alert-success.alert-border-right {
        border-right-color: #4aaf3c;
    }

    .alert-success.alert-border-top {
        border-top-color: #4aaf3c;
    }

    .alert-success.alert-border-bottom {
        border-bottom-color: #4aaf3c;
    }

    .alert-success.alert-border-left {
        border-left-color: #4aaf3c;
    }

    .alert-success.light {
        background-color: #a4dd9c;
    }

    .alert-success.dark {
        background-color: #66c658;
    }

    .alert-success.pastel {
        color: #47a839;
        background-color: #d9f1d5;
        border-color: rgba(0, 0, 0, .1);
    }

        .alert-success.pastel .alert-link {
            color: #47a839;
        }

        .alert-success.pastel.alert-micro {
            border-color: #93d789;
        }

        .alert-success.pastel .close, .alert-success.pastel .close:hover {
            color: #47a839;
        }

.alert-info {
    background-color: #5dbde0;
}

    .alert-info.alert-border-right {
        border-right-color: #218ab1;
    }

    .alert-info.alert-border-top {
        border-top-color: #218ab1;
    }

    .alert-info.alert-border-bottom {
        border-bottom-color: #218ab1;
    }

    .alert-info.alert-border-left {
        border-left-color: #218ab1;
    }

    .alert-info.light {
        background-color: #7bc9e6;
    }

    .alert-info.dark {
        background-color: #2eaad8;
    }

    .alert-info.pastel {
        color: #2084a9;
        background-color: #bce4f2;
        border-color: rgba(0, 0, 0, .1);
    }

        .alert-info.pastel .alert-link {
            color: #2084a9;
        }

        .alert-info.pastel.alert-micro {
            border-color: #66c1e2;
        }

        .alert-info.pastel .close, .alert-info.pastel .close:hover {
            color: #2084a9;
        }

.alert-warning {
    background-color: #f8c969;
}

    .alert-warning.alert-border-right {
        border-right-color: #eba10b;
    }

    .alert-warning.alert-border-top {
        border-top-color: #eba10b;
    }

    .alert-warning.alert-border-bottom {
        border-bottom-color: #eba10b;
    }

    .alert-warning.alert-border-left {
        border-left-color: #eba10b;
    }

    .alert-warning.light {
        background-color: #f9d58b;
    }

    .alert-warning.dark {
        background-color: #f5b633;
    }

    .alert-warning.pastel {
        color: #e19b0b;
        background-color: #fdf0d4;
        border-color: rgba(0, 0, 0, .1);
    }

        .alert-warning.pastel .alert-link {
            color: #e19b0b;
        }

        .alert-warning.pastel.alert-micro {
            border-color: #f8cd73;
        }

        .alert-warning.pastel .close, .alert-warning.pastel .close:hover {
            color: #e19b0b;
        }

.alert-danger {
    background-color: #ed7764;
}

    .alert-danger.alert-border-right {
        border-right-color: #ce3118;
    }

    .alert-danger.alert-border-top {
        border-top-color: #ce3118;
    }

    .alert-danger.alert-border-bottom {
        border-bottom-color: #ce3118;
    }

    .alert-danger.alert-border-left {
        border-left-color: #ce3118;
    }

    .alert-danger.light {
        background-color: #f19384;
    }

    .alert-danger.dark {
        background-color: #e74b31;
    }

    .alert-danger.pastel {
        color: #c52f17;
        background-color: #f9cfc8;
        border-color: rgba(0, 0, 0, .1);
    }

        .alert-danger.pastel .alert-link {
            color: #c52f17;
        }

        .alert-danger.pastel.alert-micro {
            border-color: #ee7f6d;
        }

        .alert-danger.pastel .close, .alert-danger.pastel .close:hover {
            color: #c52f17;
        }

.alert-alert {
    background-color: #8c94cc;
}

    .alert-alert.alert-border-right {
        border-right-color: #4954a5;
    }

    .alert-alert.alert-border-top {
        border-top-color: #4954a5;
    }

    .alert-alert.alert-border-bottom {
        border-bottom-color: #4954a5;
    }

    .alert-alert.alert-border-left {
        border-left-color: #4954a5;
    }

    .alert-alert.light {
        background-color: #a5abd7;
    }

    .alert-alert.dark {
        background-color: #6570bb;
    }

    .alert-alert.pastel {
        color: #46519e;
        background-color: #daddef;
        border-color: rgba(0, 0, 0, .1);
    }

        .alert-alert.pastel .alert-link {
            color: #46519e;
        }

        .alert-alert.pastel.alert-micro {
            border-color: #939bd0;
        }

        .alert-alert.pastel .close, .alert-alert.pastel .close:hover {
            color: #46519e;
        }

.alert-system {
    background-color: #8c94cc;
}

    .alert-system.alert-border-right {
        border-right-color: #4954a5;
    }

    .alert-system.alert-border-top {
        border-top-color: #4954a5;
    }

    .alert-system.alert-border-bottom {
        border-bottom-color: #4954a5;
    }

    .alert-system.alert-border-left {
        border-left-color: #4954a5;
    }

    .alert-system.light {
        background-color: #a5abd7;
    }

    .alert-system.dark {
        background-color: #6570bb;
    }

    .alert-system.pastel {
        color: #46519e;
        background-color: #daddef;
        border-color: rgba(0, 0, 0, .1);
    }

        .alert-system.pastel .alert-link {
            color: #46519e;
        }

        .alert-system.pastel.alert-micro {
            border-color: #939bd0;
        }

        .alert-system.pastel .close, .alert-system.pastel .close:hover {
            color: #46519e;
        }

.alert-default {
    color: #888;
    background-color: #f0f0f0;
}

    .alert-default .alert-link {
        color: #777;
    }

    .alert-default.alert-border-right {
        border-right-color: #cfcfcf;
    }

    .alert-default.alert-border-top {
        border-top-color: #cfcfcf;
    }

    .alert-default.alert-border-bottom {
        border-bottom-color: #cfcfcf;
    }

    .alert-default.alert-border-left {
        border-left-color: #cfcfcf;
    }

    .alert-default.light, .alert-default.pastel {
        background-color: #fdfdfd;
        border-color: rgba(0, 0, 0, .15);
    }

    .alert-default.dark {
        background-color: #e6e6e6;
    }

.alert-dark {
    background-color: #626984;
}

    .alert-dark.alert-border-right {
        border-right-color: #1f2129;
    }

    .alert-dark.alert-border-top {
        border-top-color: #1f2129;
    }

    .alert-dark.alert-border-bottom {
        border-bottom-color: #1f2129;
    }

    .alert-dark.alert-border-left {
        border-left-color: #1f2129;
    }

    .alert-dark.light, .alert-dark.pastel {
        color: #676e89;
        background-color: #d0d3dc;
    }

        .alert-dark.light .alert-link, .alert-dark.pastel .alert-link {
            color: #51566c;
        }

    .alert-dark.dark {
        background-color: #4a4f63;
    }

.dropdown-toggle.btn-primary + .dropdown-menu > .active > a, .dropdown-toggle.btn-primary + .dropdown-menu > .active > a:focus, .dropdown-toggle.btn-primary + .dropdown-menu > .active > a:hover {
    color: #FFF;
    background-color: #707ac0;
}

.dropdown-toggle.btn-success + .dropdown-menu > .active > a, .dropdown-toggle.btn-success + .dropdown-menu > .active > a:focus, .dropdown-toggle.btn-success + .dropdown-menu > .active > a:hover {
    color: #FFF;
    background-color: #70ca63;
}

.dropdown-toggle.btn-info + .dropdown-menu > .active > a, .dropdown-toggle.btn-info + .dropdown-menu > .active > a:focus, .dropdown-toggle.btn-info + .dropdown-menu > .active > a:hover {
    color: #FFF;
    background-color: #3bafda;
}

.dropdown-toggle.btn-warning + .dropdown-menu > .active > a, .dropdown-toggle.btn-warning + .dropdown-menu > .active > a:focus, .dropdown-toggle.btn-warning + .dropdown-menu > .active > a:hover {
    color: #FFF;
    background-color: #f6bb42;
}

.dropdown-toggle.btn-danger + .dropdown-menu > .active > a, .dropdown-toggle.btn-danger + .dropdown-menu > .active > a:focus, .dropdown-toggle.btn-danger + .dropdown-menu > .active > a:hover {
    color: #FFF;
    background-color: #e9573f;
}

.dropdown-toggle.btn-alert + .dropdown-menu > .active > a, .dropdown-toggle.btn-alert + .dropdown-menu > .active > a:focus, .dropdown-toggle.btn-alert + .dropdown-menu > .active > a:hover, .dropdown-toggle.btn-system + .dropdown-menu > .active > a, .dropdown-toggle.btn-system + .dropdown-menu > .active > a:focus, .dropdown-toggle.btn-system + .dropdown-menu > .active > a:hover {
    color: #FFF;
    background-color: #707ac0;
}

.dropdown-toggle.btn-dark + .dropdown-menu > .active > a, .dropdown-toggle.btn-dark + .dropdown-menu > .active > a:focus, .dropdown-toggle.btn-dark + .dropdown-menu > .active > a:hover {
    color: #FFF;
    background-color: #3b3f4f;
}

.nav-pills.nav-primary > li.active > a, .nav-pills.nav-primary > li.active > a:focus, .nav-pills.nav-primary > li.active > a:hover {
    background-color: #707ac0;
}

.nav-pills.nav-success > li.active > a, .nav-pills.nav-success > li.active > a:focus, .nav-pills.nav-success > li.active > a:hover {
    background-color: #70ca63;
}

.nav-pills.nav-info > li.active > a, .nav-pills.nav-info > li.active > a:focus, .nav-pills.nav-info > li.active > a:hover {
    background-color: #3bafda;
}

.nav-pills.nav-warning > li.active > a, .nav-pills.nav-warning > li.active > a:focus, .nav-pills.nav-warning > li.active > a:hover {
    background-color: #f6bb42;
}

.nav-pills.nav-danger > li.active > a, .nav-pills.nav-danger > li.active > a:focus, .nav-pills.nav-danger > li.active > a:hover {
    background-color: #e9573f;
}

.nav-pills.nav-alert > li.active > a, .nav-pills.nav-alert > li.active > a:focus, .nav-pills.nav-alert > li.active > a:hover, .nav-pills.nav-system > li.active > a, .nav-pills.nav-system > li.active > a:focus, .nav-pills.nav-system > li.active > a:hover {
    background-color: #707ac0;
}

.nav-pills.nav-dark > li.active > a, .nav-pills.nav-dark > li.active > a:focus, .nav-pills.nav-dark > li.active > a:hover {
    background-color: #3b3f4f;
}

.tab-block .tabs-border.nav-tabs.tabs-primary > li.active > a {
    border-top-color: #707ac0;
}

.tab-block .tabs-border.tabs-left.tabs-primary > li.active > a {
    border-left-color: #707ac0;
}

.tab-block .tabs-border.tabs-right.tabs-primary > li.active > a {
    border-right-color: #707ac0;
}

.tab-block .tabs-border.tabs-below.tabs-primary > li.active > a {
    border-bottom-color: #707ac0;
}

.panel-tabs.panel-tabs-border.tabs-primary > li.active > a {
    border-top-color: #707ac0;
}

.tab-block .tabs-border.nav-tabs.tabs-success > li.active > a {
    border-top-color: #70ca63;
}

.tab-block .tabs-border.tabs-left.tabs-success > li.active > a {
    border-left-color: #70ca63;
}

.tab-block .tabs-border.tabs-right.tabs-success > li.active > a {
    border-right-color: #70ca63;
}

.tab-block .tabs-border.tabs-below.tabs-success > li.active > a {
    border-bottom-color: #70ca63;
}

.panel-tabs.panel-tabs-border.tabs-success > li.active > a {
    border-top-color: #70ca63;
}

.tab-block .tabs-border.nav-tabs.tabs-info > li.active > a {
    border-top-color: #3bafda;
}

.tab-block .tabs-border.tabs-left.tabs-info > li.active > a {
    border-left-color: #3bafda;
}

.tab-block .tabs-border.tabs-right.tabs-info > li.active > a {
    border-right-color: #3bafda;
}

.tab-block .tabs-border.tabs-below.tabs-info > li.active > a {
    border-bottom-color: #3bafda;
}

.panel-tabs.panel-tabs-border.tabs-info > li.active > a {
    border-top-color: #3bafda;
}

.tab-block .tabs-border.nav-tabs.tabs-warning > li.active > a {
    border-top-color: #f6bb42;
}

.tab-block .tabs-border.tabs-left.tabs-warning > li.active > a {
    border-left-color: #f6bb42;
}

.tab-block .tabs-border.tabs-right.tabs-warning > li.active > a {
    border-right-color: #f6bb42;
}

.tab-block .tabs-border.tabs-below.tabs-warning > li.active > a {
    border-bottom-color: #f6bb42;
}

.panel-tabs.panel-tabs-border.tabs-warning > li.active > a {
    border-top-color: #f6bb42;
}

.tab-block .tabs-border.nav-tabs.tabs-danger > li.active > a {
    border-top-color: #e9573f;
}

.tab-block .tabs-border.tabs-left.tabs-danger > li.active > a {
    border-left-color: #e9573f;
}

.tab-block .tabs-border.tabs-right.tabs-danger > li.active > a {
    border-right-color: #e9573f;
}

.tab-block .tabs-border.tabs-below.tabs-danger > li.active > a {
    border-bottom-color: #e9573f;
}

.panel-tabs.panel-tabs-border.tabs-danger > li.active > a {
    border-top-color: #e9573f;
}

.tab-block .tabs-border.nav-tabs.tabs-alert > li.active > a {
    border-top-color: #707ac0;
}

.tab-block .tabs-border.tabs-left.tabs-alert > li.active > a {
    border-left-color: #707ac0;
}

.tab-block .tabs-border.tabs-right.tabs-alert > li.active > a {
    border-right-color: #707ac0;
}

.tab-block .tabs-border.tabs-below.tabs-alert > li.active > a {
    border-bottom-color: #707ac0;
}

.panel-tabs.panel-tabs-border.tabs-alert > li.active > a, .tab-block .tabs-border.nav-tabs.tabs-system > li.active > a {
    border-top-color: #707ac0;
}

.tab-block .tabs-border.tabs-left.tabs-system > li.active > a {
    border-left-color: #707ac0;
}

.tab-block .tabs-border.tabs-right.tabs-system > li.active > a {
    border-right-color: #707ac0;
}

.tab-block .tabs-border.tabs-below.tabs-system > li.active > a {
    border-bottom-color: #707ac0;
}

.panel-tabs.panel-tabs-border.tabs-system > li.active > a {
    border-top-color: #707ac0;
}

.tab-block .tabs-border.nav-tabs.tabs-dark > li.active > a {
    border-top-color: #3b3f4f;
}

.tab-block .tabs-border.tabs-left.tabs-dark > li.active > a {
    border-left-color: #3b3f4f;
}

.tab-block .tabs-border.tabs-right.tabs-dark > li.active > a {
    border-right-color: #3b3f4f;
}

.tab-block .tabs-border.tabs-below.tabs-dark > li.active > a {
    border-bottom-color: #3b3f4f;
}

.panel-tabs.panel-tabs-border.tabs-dark > li.active > a {
    border-top-color: #3b3f4f;
}

@media (min-width:1140px) {
    body.boxed-layout {
        background-color: transparent !important;
        background-image: url(../img/patterns/noise.png);
        background-repeat: repeat;
    }

        body.boxed-layout .navbar {
            width: 1140px !important;
            margin: 0 auto;
        }

        body.boxed-layout .navbar-nav.navbar-right, body.boxed-layout .navbar-nav.navbar-right:last-child {
            margin-right: 0;
        }

        body.boxed-layout #main {
            overflow: hidden;
            width: 1140px !important;
            margin: 0 auto;
        }

            body.boxed-layout #main:before {
                content: "";
                position: fixed;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                background: #eee;
                margin: 0 auto;
                width: 1142px;
                border-right: 1px solid #DDD;
                border-left: 1px solid #DDD;
            }

            body.boxed-layout #main:after {
                z-index: -1;
                content: "";
                position: fixed;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                width: 100%;
                background: #f8f8f8;
            }

        body.boxed-layout #content_wrapper {
            margin-top: 0;
        }

        body.boxed-layout .navbar.navbar-fixed-top + #main > #content_wrapper {
            margin-top: 60px;
        }

        body.boxed-layout.sb-top #sidebar_left.affix {
            width: 1140px;
        }

        body.boxed-layout #sidebar_left.affix {
            left: auto;
        }

        body.boxed-layout #sidebar_left.nano > .nano-content {
            padding-top: 0;
        }

        body.boxed-layout.sb-l-c #sidebar_left, body.boxed-layout.sb-l-c.sb-l-m #sidebar_left {
            left: -230px;
        }

        body.boxed-layout #sidebar_right {
            display: none;
            position: absolute;
            top: 0;
            right: 0;
        }

        body.boxed-layout.sb-r-o #sidebar_right {
            display: block;
        }

        body.boxed-layout #topbar.affix {
            width: 910px !important;
            margin-left: 0;
            left: auto;
            right: auto;
        }

        body.boxed-layout.sb-r-o #topbar.affix {
            width: 780px !important;
        }

        body.boxed-layout.sb-l-m #topbar.affix {
            width: 1080px !important;
        }

        body.boxed-layout.sb-l-c #topbar.affix {
            width: 1140px !important;
        }

        body.boxed-layout.sb-l-m.sb-r-o #topbar.affix {
            width: 780px !important;
        }

        body.boxed-layout.sb-l-c.sb-r-o #topbar.affix {
            width: 840px !important;
        }

        body.boxed-layout #topbar-dropmenu {
            top: 0;
        }

        body.boxed-layout .navbar.navbar-fixed-top + #sidebar_left + #content_wrapper > #topbar-dropmenu {
            top: 1px;
        }

        body.boxed-layout.sb-top .navbar.navbar-fixed-top + #sidebar_left + #content_wrapper > #topbar-dropmenu {
            top: 0;
        }
}

@media (max-width:1140px) {
    body.boxed-layout .navbar.navbar-fixed-top + #main {
        margin-top: 60px;
    }

    body.boxed-layout.sb-l-o .navbar + #main > #sidebar_left.nano > .nano-content {
        padding-top: 60px;
    }

    body.boxed-layout.sb-l-m .navbar + #main > #sidebar_left.nano > .nano-content {
        padding-top: 0;
    }
}

.ajax-loading {
    overflow-y: scroll;
}

.panel-tabs > li > a:hover {
    background-color: #f2f2f2;
}

#return-arrow {
    color: #555;
    padding-left: 15px;
    padding-top: 15px;
    position: fixed;
    opacity: .7;
    cursor: pointer;
    display: block;
    z-index: 1050;
}

    #return-arrow i.fa {
        float: left;
        padding-top: 2px;
    }

    #return-arrow span {
        float: left;
        padding-left: 15px;
        padding-top: 0;
        font-size: 16px;
    }

    #return-arrow:hover {
        opacity: 1;
    }

body.timeline-page .panel-clone {
    display: none;
}

.calendar-page .tray-left {
    padding: 15px 18px;
}

    .calendar-page .tray-left .fc-event {
        margin-left: 2px;
        margin-right: 2px;
        background: #FFF;
    }

.icon-demo-list {
    font-size: 12px;
    padding-left: 0;
    padding-bottom: 1px;
    margin-bottom: 20px;
    list-style: none;
    overflow: hidden;
}

    .icon-demo-list li {
        float: left;
        width: 20%;
        height: 100px;
        padding: 5px;
        line-height: 1.4;
        text-align: center;
    }

        .icon-demo-list li:hover {
            color: #707ac0;
        }

        .icon-demo-list li span {
            display: block;
            margin: 5px auto 15px;
            font-size: 24px;
        }

.iconsweets-list li span {
    font-size: 32px;
}

.stateface-list li span {
    font-size: 36px;
}

#skin-toolbox {
    z-index: 999;
    overflow: visible !important;
    position: fixed;
    top: 120px;
    right: -230px;
    width: 230px;
    -webkit-transition: right .1s ease-in-out;
    -moz-transition: right .1s ease-in-out;
    transition: right .1s ease-in-out;
}

    #skin-toolbox.toolbox-open {
        right: 0;
    }

    #skin-toolbox .panel-heading {
        cursor: pointer;
        margin-right: 30px;
        border: 1px solid #DDD;
        width: 274px;
        height: 47px;
        line-height: 42px;
        right: 44px;
        font-size: 14px;
    }

        #skin-toolbox .panel-heading .panel-title {
            padding-left: 40px;
        }

    #skin-toolbox .panel-body {
        border: 1px solid #DDD;
        border-top: 0;
        padding: 23px;
    }

    #skin-toolbox .panel-icon {
        font-size: 22px;
        padding-right: 20px;
        padding-left: 6px;
    }

.bs-component {
    position: relative;
}

#source-button {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 100;
    font-weight: 600;
}

#source-modal .modal-header {
    background-color: #fafafa;
}

#source-modal .btn-clipboard {
    letter-spacing: .5px;
}

#source-modal .hljs {
    padding: 10px 13px;
}

#dock-content > div {
    display: none;
}

    #dock-content > div.active-content {
        display: block;
    }

#dock-content .active-content .modal-placeholder {
    position: relative;
    visibility: visible;
    display: block;
    height: 100%;
    width: 100%;
    text-align: center;
    font-size: 20px;
}

    #dock-content .active-content .modal-placeholder:before {
        content: "It's been sent to AdminDock!"
    }

    #dock-content .active-content .modal-placeholder:after {
        content: "\f0a7";
        font-family: FontAwesome;
        font-size: 30px;
        position: relative;
        top: 3px;
        padding-left: 20px;
        color: #999;
    }

@media print {
    .invoice-page #sidebar_left, .invoice-page #sidebar_right, .invoice-page #skin-toolbox, .invoice-page #topbar, .invoice-page .invoice-buttons, .invoice-page .panel-heading, .invoice-page header.navbar {
        display: none !important;
        visibility: hidden;
        width: 0 !important;
        height: 0 !important;
        outline: 0;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden;
    }

    .invoice-page #content_wrapper {
        background: 0;
        margin: 0 auto !important;
        padding: 0 !important;
        left: auto !important;
        right: auto !important;
        transition: none;
    }

    .invoice-page #content {
        padding: 0;
        background: 0 0;
    }

    .invoice-page #content_wrapper:after {
        margin: 0;
        display: none;
    }

    .invoice-page #main {
        width: 1100px !important;
        margin: 0 auto !important;
    }

    .invoice-page .panel, .invoice-page .panel-body {
        border: 0 !important;
        margin: 0 !important;
        box-shadow: none !important;
    }

    .invoice-page .invoice-logo {
        display: none !important;
    }

    .invoice-page .invoice-logo-text {
        display: block !important;
        visibility: visible !important;
    }

    .invoice-page .table-layout > .col-md-10 {
        width: 100% !important;
        padding: 0 !important;
    }

    .invoice-page #invoice-info {
        border-top: 1px dashed #ddd;
        border-bottom: 1px dashed #ddd;
        margin-top: 20px !important;
        margin-bottom: 40px !important;
        background-color: #ddd;
    }

        .invoice-page #invoice-info > .col-md-4 {
            float: none;
            display: inline-block;
            width: 32%;
            padding: 0;
            margin: 0;
        }

            .invoice-page #invoice-info > .col-md-4:nth-child(2) {
                text-align: center;
            }

            .invoice-page #invoice-info > .col-md-4:last-child {
                text-align: right;
                position: relative;
                top: 8px;
            }

            .invoice-page #invoice-info > .col-md-4 .panel-body {
                padding: 10px;
            }
}

#content {
    padding: 15px 8px 40px 11px;
}

@media (min-width:1100px) {
    #content {
        padding: 25px 20px 50px 21px;
    }
}

@media (max-width:991px) {
    #content .col-md-2 + .col-md-2, #content .col-md-2 + .col-md-4, #content .col-md-2 + .col-md-6, #content .col-md-4 + .col-md-2, #content .col-md-4 + .col-md-4, #content .col-md-4 + .col-md-6, #content .col-md-6 + .col-md-2, #content .col-md-6 + .col-md-4, #content .col-md-6 + .col-md-6 {
        padding-top: 10px;
    }
    .float-none {
        float: none !important
    }
    .float-none .price-switcher{
        max-width:100%;
    }
}
@media(max-width:1400px){
    .vertical-table.vertical-align {
        display: block;
    }
    .vertical-table.vertical-align .align-top {
        display: block !important;
    }
}
@media (max-width:815px) {
    #content .panel .panel-body {
        overflow: hidden !important;
        min-width: 0 !important;
    }
}

.vertical-align {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrapper-editor h1, .wrapper-editor h2, .wrapper-editor h3, .wrapper-editor h4, .wrapper-editor h5, .wrapper-editor h6 {
    font-weight: 500;
    line-height: 1.1;
}

.wrapper-editor h1 {
    font-size: 25px;
}

.wrapper-editor h2 {
    font-size: 22px;
}

.wrapper-editor h3 {
    font-size: 20px;
}

.wrapper-editor h4 {
    font-size: 18px;
}

.wrapper-editor h5 {
    font-size: 16px;
}

.wrapper-editor h6 {
    font-size: inherit;
    font-family: inherit;
    font-weight: 700;
}

.visible-600 {
    display: none;
}

.dcjq-icon {
    height: 17px;
    width: 17px;
    display: inline-block;
    background: url(../img/sprites/nav-expand.png) top no-repeat;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    position: absolute;
    right: 10px;
    top: 17px;
}

.purple {
    background: #707ac0;
}

.primary-color {
    color: #707ac0;
}

.menu-open .dcjq-icon {
    background: url(../img/sprites/nav-expand.png) bottom no-repeat;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

table.admin-form thead .sort-column {
    cursor: pointer;
}

    table.admin-form thead .sort-column .ui-icon-carat-2-n-s {
        background-image: url(../js/plugins/datatables/media/images/sort_both.png);
        height: 19px;
        width: 19px;
        float: right;
    }

    table.admin-form thead .sort-column .ui-icon-triangle-1-n {
        background-image: url(../js/plugins/datatables/media/images/sort_asc.png);
        height: 19px;
        width: 19px;
        float: right;
    }

    table.admin-form thead .sort-column .ui-icon-triangle-1-s {
        background-image: url(../js/plugins/datatables/media/images/sort_desc.png);
        height: 19px;
        width: 19px;
        float: right;
    }

body.sb-l-m #sidebar_left .dcjq-icon {
    display: none;
}

table.admin-form tbody tr td {
    vertical-align: text-top;
    vertical-align: middle;
}

.spinner {
    background-image: url(../img/loaders/ajax-loader.gif) !important;
    background-position: center center;
    background-repeat: no-repeat;
    height: 16px;
    width: 16px;
    display: none;
}

.upload-avatar-wp .avatar-control .spinner {
    display: none;
    vertical-align: text-top;
}

.avatar-control p.decription {
    font-size: 11px;
}

.less-size {
    font-size: 11px;
    white-space: nowrap;
}

div.dataTables_paginate {
    display: inline-block;
    float: right;
}

    div.dataTables_paginate .pagination {
        width: 100%;
        height: 32px;
    }

.dataTable tr {
    border-bottom: 1px solid #eee;
}

.dataTable .selectize-input {
    border: none;
    background-color: transparent !important;
}

.dataTable input:not([type]):focus:not([readonly]), .dataTable input[type=number]:focus:not([readonly]), .dataTable input[type=text]:focus:not([readonly]) {
    border: none;
    box-shadow: none;
}

input[type=number]:focus:not([readonly]) {
    border: none;
    box-shadow: none;
}

.admin-form .gui-input:focus, .admin-form .gui-textarea:focus, .admin-form .selec:first-of-type:focus, .admin-form .select-multiple select:focus, .admin-form .select > select:focus {
    box-shadow: none;
}

.mb20 {
    margin-bottom: 20px !important;
}

.ui-autocomplete {
    border: 1px solid #ddd !important;
    border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
}

    .ui-autocomplete .ui-menu-item:hover {
        background-color: #707ac0;
    }

    .ui-autocomplete .ui-menu-item a:hover {
        color: #fff !important;
    }

input.plain-input {
    border: none;
}

#div-entries-importing {
    position: absolute;
    background: #707ac0;
    padding: 15px 20px;
    color: #fff;
    left: 0;
    right: 0;
    width: 300px;
    text-align: center;
    margin: 0 auto;
    top: 10%;
    height: auto !important;
}

    #div-entries-importing h3 {
        margin: 0;
        text-align: center;
    }

.tt-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 14px;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    background-clip: padding-box;
}

.tt-suggestion > p {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.428571429;
    color: #333;
    white-space: nowrap;
}

    .tt-suggestion.tt-cursor p, .tt-suggestion > p:focus, .tt-suggestion > p:hover {
        color: #fff;
        text-decoration: none;
        outline: 0;
        background-color: #428bca;
    }

.member-role-label {
    display: inline-block;
    margin-bottom: 5px;
    line-height: 16px;
}

    .member-role-label .member-role-label-cross {
        display: inline-block;
        line-height: 16px;
        cursor: pointer;
    }

.member-add-role-inline {
    display: inline-block;
    float: right;
}

    .member-add-role-inline a {
        padding: 0 !important;
    }

#member-profile-fields .panel-title span.label, .mp-headline span.label {
    margin-left: 5px;
}

#member-profile-fields .panel-title span.label-important {
    background-color: #70ca63;
}

.dashboard {
    z-index: 99;
    overflow: hidden;
    position: relative;
    padding: 17px 20px 10px;
    height: auto;
    width: 100%
}

    .dashboard .panel.bbottom {
        border-bottom: 1px solid rgba(0, 0, 0, .08);
    }

    .dashboard .panel h3 {
        padding: 20px 10px;
        margin: 0;
        font-size: 20px;
        text-transform: none;
        font-weight: 400;
    }

    .dashboard .panel .sort-option i {
        font-size: 28px;
        top: -6px;
        position: relative;
    }

.affix {
    width: 290px;
}

.gallery-list .options {
    position: absolute;
    right: 6px;
    top: 6px;
    display: none;
    z-index: 10;
}

.gallery-list .pagination {
    display: inline-block;
    width: 100%;
    text-align: center;
}

.gallery-list iframe {
    min-width: 375px;
    height: 100%
}

.gallery-list .gallery-img {
    cursor: zoom-in;
}

.gallery-list .col:hover .options, .gallery-list .mix:hover .options {
    display: block;
}

.gallery-page .uploaded-files {
    display: inline !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100%
}

.align-top {
    width: 100%;
    display: flex;
    align-items: flex-start;
}

body.messages-page .dockmodal-body .quick-compose-form .form-control {
    margin-bottom: 15px !important;
}

body.messages-page .dockmodal-body .quick-compose-form .selectize-control {
    padding: 0;
    margin: 0;
    border: none;
    border-bottom: 1px solid #EEE;
    display: inline;
}

    body.messages-page .dockmodal-body .quick-compose-form .selectize-control .selectize-input {
        position: relative;
        vertical-align: top;
        display: -moz-inline-stack;
        display: inline-block;
        *display: inline;
        color: #626262;
        width: 100%;
        *zoom: 1;
        z-index: 40;
        border: none !important;
        font-size: 13px !important;
        background-color: #fafafa !important;
        border-radius: 0 !important;
        height: auto !important;
        resize: none !important;
        padding: 13px 15px !important;
        min-height: 45px;
        margin-bottom: 15px !important;
        -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .24) !important;
        -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, .24) !important;
        -ms-box-shadow: 0 1px 1px rgba(0, 0, 0, .24) !important;
        -o-box-shadow: 0 1px 1px rgba(0, 0, 0, .24) !important;
        box-shadow: 0 1px 1px rgba(0, 0, 0, .24) !important;
        -webkit-transition: all .5s ease-in-out;
        -moz-transition: all .5s ease-in-out;
        -ms-transition: all .5s ease-in-out;
        -o-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out;
    }

        body.messages-page .dockmodal-body .quick-compose-form .selectize-control .selectize-input > input {
            display: inline-block !important;
            padding: 0 !important;
            max-height: none !important;
            max-width: 100% !important;
            margin: 0 2px 0 10px !important;
            text-indent: 0 !important;
            border: 0 !important;
            background: 0 0 !important;
            line-height: inherit !important;
            -webkit-user-select: auto !important;
            -webkit-box-shadow: none !important;
            box-shadow: none !important;
            height: 100%;
            font-size: 13px;
        }

body.messages-page .dockmodal-body .selectize-control.multi .selectize-input > div {
    color: #fff;
    margin-right: 5px;
    margin-top: 3px;
    line-height: 14px;
    padding: .6em .7em .7em;
    border-radius: 2px;
    cursor: pointer;
    background-color: #707ac0;
    font-size: 84%;
    font-weight: 600;
    vertical-align: top;
}

body.messages-page .dockmodal-body .selectize-control.plugin-remove_button [data-value] {
    position: relative;
}

body.messages-page .dockmodal-body .selectize-input > * {
    vertical-align: baseline;
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
}

body.messages-page .dockmodal-body .selectize-input input[type=text] {
    margin-left: 0 !important;
}

body.messages-page .dockmodal-body .quick-compose-form .selectize-input {
    border-bottom: 1px solid !important;
    border: none;
    border-color: rgba(0, 0, 0, .12) !important;
}

body.messages-page .dockmodal-body .quick-compose-form #notify-message .alert {
    margin: 0;
    font-size: 12px;
}

body.messages-page .dockmodal-body .selectize-control.multi .selectize-input.has-items {
    padding: 3px 15px !important;
    line-height: 34px;
}

.inbox-body .btn.btn-primary, body.messages-page .dockmodal-footer-buttonset a.btn {
    background: #707ac0;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    font-size: 12px;
    line-height: 24px;
}

    .inbox-body a:hover.btn.btn-primary, body.messages-page .dockmodal-footer-buttonset a.btn:hover {
        background-color: #204d74;
    }

.dockmodal-footer-buttonset {
    height: 30px;
    line-height: 30px;
}

.btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    white-space: nowrap;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input.email-search {
    border: 1px solid #ddd;
    color: #626262;
    height: 30px;
    position: relative;
    vertical-align: top;
    padding-left: 10px;
}

.message-read, .message-unread, .nav-messages a {
    cursor: pointer;
}

.nav-messages .bbottom {
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.message-read, .message-read span.checkbox {
    background-color: rgba(243, 243, 243, .85);
}

.note-editor {
    border: 1px solid #ddd !important;
}

.message-reply .note-editor {
    border: none !important;
}

.ui-pnotify-closer, .ui-pnotify-sticker {
    z-index: 999;
}

.white-text {
    color: #fff;
}

.parent-link {
    display: block;
    margin-bottom: 5px;
}

    .parent-link .fa {
        margin-right: 3px;
    }

.admin-form .inner-editable-table .panel-heading {
    padding: 4px 8px !important;
    overflow: visible;
    z-index: 9;
}

    .admin-form .inner-editable-table .panel-heading.pn {
        padding: 0 !important;
    }

    .admin-form .inner-editable-table .panel-heading .bbottom.row {
        border-bottom: 1px solid rgba(0, 0, 0, .08) !important;
    }

    .admin-form .inner-editable-table .panel-heading .panel-title {
        text-align: left;
        font-weight: 300;
        font-size: 19px;
        padding: 0;
        text-transform: capitalize;
        margin: 0;
        background: 0 0;
    }

        .admin-form .inner-editable-table .panel-heading .panel-title i {
            font-size: 20px;
            position: relative;
            margin-right: 10px;
            top: 3px;
            border-width: 0;
        }

.panel {
    border: 0 solid #dddee4;
}

.table a.delete-row {
    color: #666;
}

.panel .table > tbody > tr > th, .panel .table > tfoot > tr > th, .panel .table > thead > tr > th {
    text-transform: uppercase;
    font-size: 11px;
    color: #64687b;
    font-weight: 400;
}

.table > thead > tr > th {
    padding: 30px 5px 10px !important;
}

.table > tbody > tr > td {
    padding: 20px 5px !important;
}

.panel .table > tbody > tr > td, .panel .table > tfoot > tr > td, .panel .table > thead > tr > td {
    padding: 20px 9px;
    font-size: 13px;
    font-weight: 400;
    position: relative;
}

.mfp-content .panel .table > tbody > tr > td, .mfp-content .panel .table > tfoot > tr > td, .mfp-content .panel .table > thead > tr > td {
    padding: 20px 9px !important;
}

.panel .table > tbody > tr:hover {
    background: #f5f5f5;
}

.panel .table > tbody > tr > td strong {
    color: #2f313a;
    font-weight: 700;
}

.progress-bar_small {
    overflow: hidden;
    position: relative;
}

    .progress-bar_small .nav-phase {
        width: 96%;
        margin-top: 0;
        top: 3px;
    }

        .progress-bar_small .nav-phase ul.nav-wizard a {
            padding: 9px 3px;
            font-size: 10px;
            word-break: break-all;
            white-space: nowrap;
            margin-right: 4px !important;
            padding-left: 18px !important;
        }

            .progress-bar_small .nav-phase ul.nav-wizard a:after {
                border-top: 15px inset transparent !important;
                border-bottom: 15px inset transparent !important;
                border-left: 15px solid #eee !important;
                right: -15px !important;
            }

        .progress-bar_small .nav-phase li:not(:first-child) a:before {
            border-top: 15px inset transparent !important;
            border-bottom: 15px inset transparent !important;
            border-left: 14px solid #fff !important;
        }

        .progress-bar_small .nav-phase li.active a:after, .progress-bar_small .nav-phase li:hover a:after {
            border-left: 15px solid #707ac0 !important;
        }

.panel-heading {
    height: 48px;
    line-height: 48px;
    border: none;
    text-transform: uppercase;
    font-size: 10px;
    color: #64687b;
    padding: 0 15px;
}

    .panel-heading .section-title {
        font-size: 15px;
        text-transform: none;
        position: relative;
    }

        .panel-heading .section-title i.material-icons {
            position: relative;
            top: 3px;
            left: -3px;
        }

        .panel-heading .section-title .dropdown-button {
            top: 4px !important;
        }

    .panel-heading .flex {
        display: flex;
        text-align: center;
        justify-content: center;
        align-items: center;
    }

        .panel-heading .flex .tab-title {
            display: inline-block;
            margin-bottom: 0 !important;
        }

            .panel-heading .flex .tab-title:after {
                content: none;
            }

        .panel-heading .flex .image-preview {
            display: inline-block;
            margin: 0 10px 0 0;
        }

    .panel-heading .user-company .chip-small {
        width: auto;
        display: inline-block;
        color: rgba(0, 0, 0, .54);
        margin: 0 5px 0 0 !important;
    }

    .panel-heading .customer-extra .row {
        padding: 0;
    }

        .panel-heading .customer-extra .row .col {
            padding: 3px;
            line-height: 20px;
            font-size: 12px;
            font-weight: 400;
            text-transform: none;
        }

            .panel-heading .customer-extra .row .col.l6.text-right {
                font-weight: 700 !important;
            }

    .panel-heading .customer-extra .customer-title {
        text-align: center;
        line-height: 18px;
        padding-bottom: 5px;
        margin-bottom: 5px;
        font-size: 13px;
    }

        .panel-heading .customer-extra .customer-title:after {
            content: "";
            display: block;
            width: 200px;
            height: 1px;
            background-color: rgba(0, 0, 0, .08);
            margin: 0 auto;
            left: 0;
            right: 0;
            top: 4px;
            position: relative;
        }

@media (max-width:767px) {
    .panel-heading .customer-extra {
        margin-top: 15px;
    }
}

@media (max-width:767px) {
    .panel-heading .customer-extra .row {
        padding: 1px !important;
    }
}

.panel-heading .location-extra > div {
    text-align: center;
    line-height: 20px;
    text-transform: none;
    font-size: 12px;
    font-weight: 400;
}

    .panel-heading .location-extra > div > span {
        font-weight: 700;
    }

.panel-heading.pn .tab-title:after {
    content: none;
}

.panel-heading-icon.section-title {
    font-size: 15px;
    text-transform: none;
    position: relative;
}

    .panel-heading-icon.section-title i.material-icons {
        position: relative;
        top: 3px;
        left: -3px;
    }

    .panel-heading-icon.section-title .dropdown-button {
        top: 4px !important;
    }

.panel-body {
    border: 1px solid #dddee4;
    border: none;
}

.dt-panelfooter {
    font-size: 13px;
    position: relative;
    min-height: 83px;
}

.inner-editable-table .panel {
    border: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

    .inner-editable-table .panel .table > tbody > tr > th, .inner-editable-table .panel .table > tfoot > tr > th, .inner-editable-table .panel .table > thead > tr > th {
        background: #fff;
        font-weight: 700;
        border-bottom: solid 1px #eee;
    }

.inner-editable-table .dt-panelfooter {
    background: #fff;
}

.invoice-panel #bom-table .table > tbody > tr > td, .invoice-panel #invoice-info .table > tbody > tr > td, .invoice-panel #routing-table .table > tbody > tr > td {
    border: none;
    padding: 3px 20px;
    font-size: 12px;
}

.invoice-panel #bom-table .table tbody tr td:last-child, .invoice-panel #invoice-info .table tbody tr td:last-child, .invoice-panel #routing-table .table tbody tr td:last-child {
    border-right: none 0;
}

.invoice-panel #bom-table .table > tbody > tr > td, .invoice-panel #invoice-table .table > tbody > tr > td, .invoice-panel #routing-table .table > tbody > tr > td {
    border: none;
}

.invoice-panel #invoice-table .table.items tr {
    border-bottom: 1px solid #eee;
}

.invoice-edit .table > tbody > tr > td {
    padding: 10px;
}

.invoice-panel #bom-table .table tbody tr td:last-child, .invoice-panel #invoice-table .table tbody tr td:last-child, .invoice-panel #routing-table .table tbody tr td:last-child {
    border-right: none 0;
}

.invoice-panel .table > tbody > tr > th, .invoice-panel .table > tfoot > tr > th, .invoice-panel .table > thead > tr > th {
    padding: 10px 20px;
    text-transform: uppercase;
    font-size: 10px;
    color: #64687b;
    font-weight: 700;
}

.invoice-panel .table > tbody > tr:hover, .invoice-panel .table > thead > tr:hover {
    background: 0 0 !important;
}

.dt-panelmenu, .panel-menu.dark {
    background: #f2f3f6;
    border: none;
    border-top: solid 1px #fff;
    border-bottom: solid 1px #dddee4;
}

.progress {
    margin: 0;
}

.form-signin .panel-footer {
    background: #ECEFF4;
    border: none;
    padding: 0;
}

.panel-controls > a {
    color: #C4C6CF;
}

    .panel-controls > a:hover {
        color: #4D93DE;
    }

.pull-right > .dropdown-menu {
    left: 0;
    right: auto;
}

.nano > .nano-content, .sb-l-o #sidebar_left, .sidebar_left {
    overflow: visible;
}

.paid-label {
    background: #74CC99;
    color: #fff;
}

.circular-light {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #dbdce2;
    color: #64687b;
    border-radius: 200px !important;
    -moz-border-radius: 200px !important;
    -webkit-border-radius: 200px !important;
}

    .circular-light:hover {
        color: #4D93DE;
    }

.btn, .btn-default {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border: none;
    -webkit-transition: background .2s ease;
    transition: background .2s ease;
}

.btn-primary {
    background-color: #4D93DE;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

    .btn-primary:focus, .btn-primary:hover {
        background-color: #4D93DE;
        border-color: #4D93DE;
    }

    .btn-primary:active {
        background-color: #4D93DE;
        vertical-align: middle;
    }

.avatar-sm {
    width: 35px;
    height: 35px;
    border-radius: 100%
}

    .avatar-sm:hover {
        text-decoration: none;
    }

.profile-settings .xs-mr-5 {
    line-height: normal;
    margin-right: 5px;
}

.profile-settings .panel-body {
    padding: 40px;
}

.profile-settings .section-divider .fa {
    vertical-align: middle;
}

.profile-settings .item {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: solid 1px #EBECEF;
}

    .profile-settings .item:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none 0;
    }

.profile-settings h3 {
    font-weight: 400;
    font-size: 18px;
    color: #2F323A;
    margin: 0 0 5px;
}

.profile-settings .date {
    font-size: 12px;
    font-weight: 400;
}

.profile-settings p {
    margin: 15px 0 0;
    line-height: 20px;
}

.profile-settings h3 .fa {
    font-size: 12px;
    vertical-align: top;
    margin-left: 5px;
}

.user-heading p {
    margin: 0;
}

.fc-event {
    position: relative;
    cursor: pointer;
    padding: 8px;
    margin: 10px;
    color: #777;
    font-size: 12px;
    background: #f9f9f9;
    border-radius: 2px;
    border: 1px solid #ddd;
    border-left: 4px solid #ddd;
}

.fc-event-desc {
    display: inline-block;
    vertical-align: middle;
    padding-left: 5px;
}

.fc-event-icon {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    font-size: 16px;
    text-align: center;
}

.fc-event .fc-time {
    display: none;
}

.fc-event:focus, .fc-event:hover {
    color: #777;
    background: #f4f4f4;
}

.fc-view-container .fc-event {
    padding: 6px;
    background: #f4f4f4;
}

    .fc-view-container .fc-event .fc-content {
        overflow: hidden;
        text-overflow: ellipsis;
    }

.fc-event-primary {
    border-left-color: #707ac0;
}

    .fc-event-primary .fc-event-icon {
        color: #707ac0;
    }

.fc-event-info {
    border-left-color: #3bafda;
}

    .fc-event-info .fc-event-icon {
        color: #3bafda;
    }

.fc-event-success {
    border-left-color: #70ca63;
}

    .fc-event-success .fc-event-icon {
        color: #70ca63;
    }

.fc-event-warning {
    border-left-color: #f6bb42;
}

    .fc-event-warning .fc-event-icon {
        color: #f6bb42;
    }

.fc-event-danger {
    border-left-color: #e9573f;
}

    .fc-event-danger .fc-event-icon {
        color: #e9573f;
    }

.fc-event-alert {
    border-left-color: #707ac0;
}

    .fc-event-alert .fc-event-icon {
        color: #707ac0;
    }

.fc-event-system {
    border-left-color: #37bc9b;
}

    .fc-event-system .fc-event-icon {
        color: #37bc9b;
    }

.fc button {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    font-size: 13px;
    line-height: 1.49;
    border-radius: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #666;
    background-color: #f0f0f0;
    border-color: rgba(0, 0, 0, .1);
    height: auto;
    padding: 6px 12px;
}

    .fc button.active:focus, .fc button:active:focus, .fc button:focus {
        outline: 0;
        outline-offset: -2px;
    }

    .fc button:focus, .fc button:hover {
        text-decoration: none;
    }

    .fc button.active, .fc button:active {
        outline: 0;
        -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
        box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
    }

    .fc button.disabled, .fc button[disabled], fieldset[disabled] .fc button {
        cursor: not-allowed;
        pointer-events: none;
        opacity: .65;
        filter: alpha(opacity=65);
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .fc button.btn-gradient {
        -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2);
        background-repeat: repeat-x;
        background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, .3) 1%, rgba(255, 255, 255, .15) 100%);
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, .3) 1%, rgba(255, 255, 255, .15) 100%);
    }

    .fc button.btn-rounded {
        border-radius: 20px;
    }

    .fc button.active, .fc button:active, .fc button:focus, .fc button:hover, .open > .dropdown-toggle.fc button {
        color: #666;
        background-color: #eaeaea;
    }

    .fc button.active, .fc button:active, .open > .dropdown-toggle.fc button {
        background-image: none;
    }

    .fc button.disabled, .fc button.disabled.active, .fc button.disabled:active, .fc button.disabled:focus, .fc button.disabled:hover, .fc button[disabled], .fc button[disabled].active, .fc button[disabled]:active, .fc button[disabled]:focus, .fc button[disabled]:hover, fieldset[disabled] .fc button, fieldset[disabled] .fc button.active, fieldset[disabled] .fc button:active, fieldset[disabled] .fc button:focus, fieldset[disabled] .fc button:hover {
        background-color: #f0f0f0;
        border-color: #ddd;
    }

    .fc button .badge {
        color: #f0f0f0;
        background-color: #666;
    }

.nof-licences .badge {
    position: relative;
    top: auto;
    right: auto;
    padding: 2px 10px;
    border-radius: 2px;
}

.fc button.btn-gradient {
    text-shadow: 0 -1px 0 rgba(255, 255, 255, .4);
    border-color: rgba(0, 0, 0, .07) rgba(0, 0, 0, .1) rgba(0, 0, 0, .09);
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, .9) 10%, rgba(255, 255, 255, .3) 100%);
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, .9) 10%, rgba(255, 255, 255, .3) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80ffffff', endColorstr='#00ffffff', GradientType=0);
}

.fc button.light {
    background-color: #FAFAFA;
}

    .fc button.light.active, .fc button.light:active, .fc button.light:focus, .fc button.light:hover, .open > .dropdown-toggle.fc button.light {
        background-color: #ececec;
    }

.fc button.dark {
    background-color: #e8e8e8;
}

    .fc button.dark.active, .fc button.dark:active, .fc button.dark:focus, .fc button.dark:hover, .open > .dropdown-toggle.fc button.dark {
        background-color: #e1e1e1;
    }

.fc-state-default {
    border: 1px solid;
}

    .fc-state-default.fc-corner-left {
        border-top-left-radius: 1px;
        border-bottom-left-radius: 1px;
    }

    .fc-state-default.fc-corner-right {
        border-top-right-radius: 1px;
        border-bottom-right-radius: 1px;
    }

.fc button .fc-icon {
    position: relative;
    margin: 0 .1em;
}

.fc-state-default {
    background-color: #f5f5f5;
    background-image: none;
    border-color: #e6e6e6 #e6e6e6 #bfbfbf;
    border-color: rgba(0, 0, 0, .1) rgba(0, 0, 0, .1) rgba(0, 0, 0, .25);
    color: #333;
    text-shadow: 0 1px 1px rgba(255, 255, 255, .75);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px rgba(0, 0, 0, .05);
}

.fc-state-active, .fc-state-disabled, .fc-state-down, .fc-state-hover {
    color: #333;
    background-color: #e6e6e6;
}

.fc-state-hover {
    color: #333;
    text-decoration: none;
}

.fc-state-active, .fc-state-down {
    background-color: #ccc;
    background-image: none;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, .07), 0 1px 2px rgba(0, 0, 0, .05);
}

.fc-state-disabled {
    cursor: default;
    background-image: none;
    opacity: .65;
    filter: alpha(opacity=65);
    box-shadow: none;
}

.fc-toolbar .fc-state-active, .fc-toolbar .ui-state-active {
    z-index: 1;
}

.fc-button-group {
    display: inline-block;
}

.fc .fc-button-group > * {
    float: left;
    margin: 0 0 0 -1px;
}

.fc .fc-button-group > :first-child {
    margin-left: 0;
}

.fc-bg {
    background-color: #fefefe;
}

    .fc-bg .fc-today {
        background-color: #FFFEF8;
    }

    .fc-bg .fc-other-month {
        background-color: #f8f8f8;
    }

.fc-basic-view td.fc-day-number {
    color: #777;
    padding-top: 3px;
    padding-right: 7px;
    font-size: 12px;
}

.fc-basic-view td.fc-today.fc-day-number {
    color: #444;
    font-weight: 600;
}

.calendar-page .tray-right {
    padding: 15px 18px;
}

    .calendar-page .tray-right .fc-event {
        margin-left: 2px;
        margin-right: 2px;
        background: #FFF;
    }

.days-of-week .option {
    margin-right: 4px;
    padding-right: 4px;
}

@media (max-width:1200px) {
    .table-responsive {
        overflow-x: auto;
    }

    .col.l1.custom-action.valign {
        width: 80px !important;
    }
}

.ad-lines {
    font: normal normal normal 16px/1 FontAwesome;
}

    .ad-lines:before {
        content: "\f0c9"
    }

@media (max-width:600px) {
    .block-xs {
        display: block;
    }

    .mb10-xs {
        margin-bottom: 10px !important;
    }

    .w100-xs {
        width: 100% !important;
    }

    .prn-xs {
        padding-right: 0 !important;
    }

    .pln-xs {
        padding-left: 0 !important;
    }

    .p3-xs {
        padding: 6px !important;
    }

    .visible-600 {
        display: block;
    }

    .chip-notification {
        text-align: right;
    }

        .chip-notification .dropdown-chip {
            margin-right: 0;
        }

    .cell-600-hide {
        display: none;
    }

    .ptn-xs {
        padding-top: 0 !important;
    }

    .pb5-xs {
        padding-bottom: 5px !important;
    }

    .mobile-pad {
        padding: 0 !important;
    }

        .mobile-pad .s12 {
            padding-left: 0;
            padding-right: 0;
            padding-bottom: 1rem;
        }

    .w350 {
        width: auto !important;
    }

    .group-sm-align .pull-right {
        float: none !important;
    }

    .stage {
        display: block !important;
    }

    body.external-page.setup .stage-container .stage:after, body.external-page.setup .stage-container .stage:before {
        display: none;
    }

    body.external-page.setup .stage-container .stage {
        min-height: auto !important;
        margin-top: 10px !important;
    }

    .mw1100 .admin-form .panel-body, .mw1100 .admin-form .panel-body .section.row, .panel-body.pn.content-card.z-depth-1 .row, .row.content-card.z-depth-1, .row.content-card.z-depth-1 .row, .tab-pane .row {
        padding: 5px;
    }

        .content-card.z-depth-1 > .row, .row.content-card.z-depth-1 > .col.l12.m12.s12 {
            padding: 0;
        }

    .section.row > .col.l4.m4.s12 {
        padding-bottom: 15px;
    }

        .section.row > .col.l4.m4.s12:last-child {
            padding-bottom: 0;
        }

    .section.row > .col.l6.m6.s12.mop {
        padding-bottom: 15px;
    }

        .section.row > .col.l6.m6.s12.mop:last-child {
            padding-bottom: 0;
        }

    .section > .col.l6.m6.s12.mop {
        padding-bottom: 20px;
    }

    .posa {
        position: absolute;
        bottom: 18px;
    }

        .posa.procured {
            position: relative;
            text-align: right;
        }

    .dataTables_info {
        display: none;
    }

    .mw1100 .admin-form .panel-body .section-divider.mb40 {
        margin-bottom: 20px !important;
    }

    .row.content-card.z-depth-1 .row .pr30 {
        padding-right: 0 !important;
    }

    .p25.pt35.wall, .panel-body.pn.content-card.z-depth-1 .row .p30 {
        padding: 0 !important;
    }

        .p25.pt35.wall button.pull-right {
            float: none !important;
        }

        .p25.pt35.wall .status-container.fb-border {
            padding-bottom: 0;
        }

        .p25.pt35.wall .mt10-mobile {
            margin-top: 10px;
        }

        .p25.pt35.wall .fb-comments .cmt-details a {
            top: 0;
            right: 0;
        }

    .panel-heading .pull-right.custom-action {
        position: absolute;
        top: 0;
        right: 0;
    }
}

@media (min-width:600px) and (max-width:991px) {
    .tab-title {
        margin: -9px !important;
    }
}

@media (min-width:768px) and (max-width:1200px) {
    .info-row.members-row {
        min-width: 210px !important;
    }

    .total-price {
        width: 190px !important;
        text-align: left !important;
    }

    .flex-between .w300 {
        width: 140px !important;
    }
}

@media (max-width:991px) {
    .quote #topbar span, .quote .btn-group-vertical > .btn-group span, .quote .btn-toolbar span, .quote .clearfix span, .quote .container span, .quote .container-fluid span, .quote .dl-horizontal dd span, .quote .form-horizontal .form-group span, .quote .modal-footer span, .quote .nav span, .quote .navbar span, .quote .navbar-collapse span, .quote .navbar-header span, .quote .pager span, .quote .panel-body span, .quote .row span {
        display: block;
    }

    .flex-between {
        justify-content: flex-start;
    }

        .flex-between .status .chip {
            font-size: 10px;
            line-height: 13px;
            padding: 1px 3px;
        }

    .nav-phase {
        width: 100% !important;
    }

        .nav-phase ul.nav-wizard {
            display: block !important;
        }

            .nav-phase ul.nav-wizard a:after, .nav-phase ul.nav-wizard a:before {
                content: none !important;
            }

            .nav-phase ul.nav-wizard li {
                border-bottom: 1px solid #fbfbfb;
            }

                .nav-phase ul.nav-wizard li a {
                    font-size: 12px;
                    margin-right: 0;
                }

    .tab-title {
        padding: 3px;
    }

        .tab-title + .title-bg {
            height: 42px !important;
        }

    .cell-991-hide {
        display: none !important;
    }

    input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
        display: none;
    }

    .panel .table.responsive-table > tbody > tr > td {
        text-align: center;
        border: none;
    }

    .equal-four.responsive-table.w500 {
        max-width: 500px;
        margin: 0 auto;
        clear: both;
    }

        .equal-four.responsive-table.w500 thead {
            width: 50%
        }

        .equal-four.responsive-table.w500 tr.bbottom {
            border: none;
        }

    .equal-five.responsive-table.w500 {
        max-width: 500px;
        margin: 0 auto;
        clear: both;
    }

        .equal-five.responsive-table.w500 thead {
            width: 50%
        }

        .equal-five.responsive-table.w500 tr.bbottom {
            border: none;
        }

    .equal.responsive-table.w500 {
        max-width: 500px;
        margin: 0 auto;
        clear: both;
    }

        .equal.responsive-table.w500 thead {
            width: 50%
        }

        .equal.responsive-table.w500 tr.bbottom {
            border: none;
        }

    .equal-two.responsive-table.w500 {
        max-width: 500px;
        margin: 0 auto;
        clear: both;
    }

        .equal-two.responsive-table.w500 thead {
            width: 50%
        }

        .equal-two.responsive-table.w500 tr.bbottom {
            border: none;
        }

    .selectize-input.items {
        min-width: 150px !important;
    }

    .profile-info.prn {
        padding: 0 !important;
        margin-top: 20px;
    }

    .user-time.cell-767-hide {
        display: none;
    }

    .fileupload-buttonbar .btn-group.ib.mr10, .fileupload-buttonbar .btn-group.ib.mr10 button, .fileupload-buttonbar .btn-group.ib.mr10 span {
        width: 100%
    }

        .fileupload-buttonbar .btn-group.ib.mr10.pull-right {
            float: none !important;
        }

    .admin-form .inner-editable-table .panel-heading .panel-title {
        overflow: hidden;
    }
}

@media (max-width:767px) {
    .group-sm-align {
        display: block;
    }
    .vertical-table.vertical-align {
        display: block;
    }
    .profile-background {
        height: auto !important;
        min-height: 210px;
    }

    div.dataTables_paginate .pagination {
        width: auto;
    }

    .btn-toolbar .custom-filter, .btn-toolbar .search-bar, .btn-toolbar .search-bar-content {
        float: left;
        width: 100%
    }

        .btn-toolbar .custom-filter .dropdown-toggle .curent-status {
            display: inline-block;
            width: 231px;
        }

    .wrapper {
        padding: 5px;
    }

        .wrapper > .container {
            padding: 0;
        }
}

.profile-info ul.nav.nav-pills {
    display: none !important;
}

button.wall-post {
    float: none !important;
}

@media (min-width:479px) and (max-width:600px) {
    .flex-between .status {
        position: absolute;
        right: -45px;
        top: -10px;
        text-align: left;
        width: auto;
    }
}

@media (max-width:479px) {
    .flex-between .w300, .flex-between .w300 .board-wrapper {
        display: none;
    }

    .flex-between .status {
        position: relative;
        text-align: left;
        width: auto;
    }

    .cell-479-hide, .profile-background .social-icons, .profile-info .panel-footer .nav-pills {
        display: none;
    }

    #topbar h2 {
        font-size: 21px;
    }
}

@media (max-width:767px) {
    .items-per-page {
        display: none;
    }

    div.dataTables_paginate {
        display: block;
        float: none;
        margin: 0 auto;
        text-align: center;
    }

    .cell-767-hide, .quote .description {
        display: none !important;
    }
}

.table-responsive {
    min-height: .01%
}

@media screen and (max-width:767px) {
    .cell-767-hide {
        display: none !important;
    }

    .s-phn {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-y: hidden;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #ddd;
    }

        .table-responsive > .table {
            margin-bottom: 0;
        }

            .table-responsive > .table > tbody > tr > td, .table-responsive > .table > tbody > tr > th, .table-responsive > .table > tfoot > tr > td, .table-responsive > .table > tfoot > tr > th, .table-responsive > .table > thead > tr > td, .table-responsive > .table > thead > tr > th {
                white-space: nowrap;
            }

        .table-responsive > .table-bordered {
            border: 0;
        }

            .table-responsive > .table-bordered > tbody > tr > td:first-child, .table-responsive > .table-bordered > tbody > tr > th:first-child, .table-responsive > .table-bordered > tfoot > tr > td:first-child, .table-responsive > .table-bordered > tfoot > tr > th:first-child, .table-responsive > .table-bordered > thead > tr > td:first-child, .table-responsive > .table-bordered > thead > tr > th:first-child {
                border-left: 0;
            }

            .table-responsive > .table-bordered > tbody > tr > td:last-child, .table-responsive > .table-bordered > tbody > tr > th:last-child, .table-responsive > .table-bordered > tfoot > tr > td:last-child, .table-responsive > .table-bordered > tfoot > tr > th:last-child, .table-responsive > .table-bordered > thead > tr > td:last-child, .table-responsive > .table-bordered > thead > tr > th:last-child {
                border-right: 0;
            }

            .table-responsive > .table-bordered > tbody > tr:last-child > td, .table-responsive > .table-bordered > tbody > tr:last-child > th, .table-responsive > .table-bordered > tfoot > tr:last-child > td, .table-responsive > .table-bordered > tfoot > tr:last-child > th {
                border-bottom: 0;
            }
}

#topbar:before, .btn-group-vertical > .btn-group:before, .btn-toolbar:before, .clearfix:before, .container-fluid:before, .container:before, .dl-horizontal dd:before, .form-horizontal .form-group:before, .modal-footer:before, .nav:before, .navbar-collapse:before, .navbar-header:before, .navbar:before, .pager:before, .panel-body:before, .row:before {
    display: table;
    content: " "
}

#topbar:after, .btn-group-vertical > .btn-group:after, .btn-toolbar:after, .clearfix:after, .container-fluid:after, .container:after, .dl-horizontal dd:after, .form-horizontal .form-group:after, .modal-footer:after, .nav:after, .navbar-collapse:after, .navbar-header:after, .navbar:after, .pager:after, .panel-body:after, .row:after {
    clear: both;
}

.breadcrumb-wrapper {
    background: #fff;
    padding: 12px;
    border-bottom: 1px solid #e5e7ea;
}

    .breadcrumb-wrapper ol {
        padding: 0;
        float: none;
        line-height: normal;
    }

.form-ui .even {
    background: #f9f9f9 !important;
}

.form-ui .sub-form-wrapper {
    padding: 20px 0 0;
    border: 1px solid #dfe2e8;
    margin: 40px 0;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
}

    .form-ui .sub-form-wrapper:hover {
        border: 1px solid #5d9cec;
    }

    .form-ui .sub-form-wrapper .delete-row {
        margin-top: 15px;
    }

.multiselect-container.dropdown-menu {
    position: absolute;
    list-style-type: none;
    padding: 0;
    margin: 4px 0 0;
}

    .multiselect-container.dropdown-menu .input-group {
        margin: 5px;
    }

    .multiselect-container.dropdown-menu > li {
        padding: 0;
    }

        .multiselect-container.dropdown-menu > li > a.multiselect-all label {
            font-weight: 600;
        }

        .multiselect-container.dropdown-menu > li.multiselect-group {
            background: #f3f3f3;
            border-bottom: 1px solid #eaeaea;
        }

            .multiselect-container.dropdown-menu > li.multiselect-group label {
                margin: 0;
                padding: 6px 12px 5px;
                height: 100%;
                font-weight: 600;
            }

        .multiselect-container.dropdown-menu > li.multiselect-group-clickable label {
            cursor: pointer;
        }

        .multiselect-container.dropdown-menu > li > a {
            padding: 0;
        }

            .multiselect-container.dropdown-menu > li > a > label {
                margin: 0;
                height: 100%;
                cursor: pointer;
                font-weight: 400;
                padding: 4px 20px 6px 32px;
                border: none;
                background-color: transparent;
                width: 100%
            }

                .multiselect-container.dropdown-menu > li > a > label.checkbox, .multiselect-container.dropdown-menu > li > a > label.radio {
                    margin: 0;
                    font-size: 13px;
                }

        .multiselect-container.dropdown-menu > li.active > a > label.checkbox, .multiselect-container.dropdown-menu > li.active > a > label.radio {
            color: #fff;
        }

        .multiselect-container.dropdown-menu > li > a > label > input[type=checkbox] {
            margin-bottom: 5px;
            margin-top: 4px;
        }

.filter .btn.multiselect-clear-filter {
    padding: 9px 5px;
}

    .filter .btn.multiselect-clear-filter i.glyphicon {
        font-size: 11px;
        color: #AAA;
    }

.btn-group > .btn-group:nth-child(2) > .multiselect.btn {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.form-inline .multiselect-container.dropdown-menu label.checkbox, .form-inline .multiselect-container.dropdown-menu label.radio {
    padding: 3px 20px 3px 40px;
}

.form-inline .multiselect-container.dropdown-menu li a label.checkbox input[type=checkbox], .form-inline .multiselect-container.dropdown-menu li a label.radio input[type=radio] {
    margin-left: -20px;
    margin-right: 0;
}

.multiselect-container.dropdown-menu > li.multiselect-item.filter {
    min-width: 175px;
}

.btn.multiselect .caret {
    margin-left: 5px;
}

.custom-dp .ui-datepicker-trigger {
    display: none;
}

.topbar-right .mdl-button--fab {
    background: #fff;
    margin: 0 5px;
    height: 30px;
    min-width: 30px;
    width: 30px;
    color: rgba(0, 0, 0, .77);
}

.topbar-menu .metro-icon {
    font-size: 44px;
}

.content-lan-navbar {
    margin-right: 0 !important;
}

    .content-lan-navbar > li > a {
        padding-bottom: 13px;
        padding-top: 13px;
    }

.flag-xs.flag-hr {
    background-position: 0 -102px;
}

.custom-nav-animation {
    margin: 0 !important;
}

header.navbar.navbar-fixed-top.bg-alert {
    background: #fff !important;
    z-index: 1029;
}

.admin-form .btn-alert {
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.content-card {
    position: relative;
    background: #fbfbfb;
}

    .content-card .category-description {
        width: 100%;
        margin-right: 15px;
    }

    .content-card .option {
        display: block;
    }

        .content-card .option > input {
            position: absolute;
            height: 20px;
            width: 20px;
            opacity: 0;
        }

    .content-card span.checkbox {
        border: 2px solid;
        position: relative;
        display: inline-block;
        width: 20px;
        height: 20px;
        border-radius: 2px;
        -webkit-transition: all .2s ease-in-out;
        -moz-transition: all .2s ease-in-out;
        -ms-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
    }

    .content-card .quote .title {
        color: #707ac0;
    }

    .content-card .title {
        font-size: 14px;
        font-weight: 600;
        color: rgba(0, 0, 0, .87);
        text-decoration: none;
    }

        .content-card .title.reference {
            font-weight: 400;
        }

        .content-card .title a {
            font-weight: 600;
        }

.description {
    color: rgba(0, 0, 0, .87);
    font-size: 12px;
    margin: 3px 0;
}

.list-tag {
    font-size: 12px;
}

    .list-tag .tag {
        margin: 0 4px 0 0;
        display: inline-block;
    }

    .list-tag .tag-color {
        width: 7px;
        height: 7px;
        margin-right: 7px;
        border-radius: 50%;
        display: inline-block;
    }

    .list-tag .tag-label {
        display: inline-block;
    }

.admin-form tr.bbottom:last-child {
    border: none;
}

.row {
    height: 100%;
    padding: 15px;
    position: relative;
}

    .row.bbottom {
        border-bottom: 1px solid rgba(0, 0, 0, .08);
    }

        .row.bbottom:last-child {
            border-bottom: 0;
        }

    .row .quote-id {
        font-weight: 600;
    }

    .row span.date {
        position: absolute;
        right: 10px;
        font-size: 11px;
        top: 2px;
    }

        .row span.date.belowid {
            position: relative;
            right: 0;
            top: 0;
        }

        .row span.date.view-message.text-right {
            top: 10px;
            right: 10px;
        }

    .row.fileupload-buttonbar {
        padding: 0;
    }

        .row.fileupload-buttonbar span.fileinput-button i {
            position: relative;
        }

        .row.fileupload-buttonbar .btn:focus, .row.fileupload-buttonbar .btn:hover {
            color: #fff;
            text-decoration: none;
        }

        .row.fileupload-buttonbar .btn-large:hover, .row.fileupload-buttonbar .btn:hover {
            background-color: #565e92;
        }

        .row.fileupload-buttonbar .btn.custom-send.cancel {
            background-color: #F44336;
            color: #fff;
        }

        .row.fileupload-buttonbar .btn.custom-send.start {
            background-color: #43A047;
            color: #fff;
        }

        .row.fileupload-buttonbar .bluebutton {
            background: #2196F3;
        }

.file-head {
    font-weight: 700;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.file-section .media {
    color: #626262;
}

.file-section .row-type > a > i {
    font-size: 30px;
    text-align: center;
    width: 100px;
}

.file-section .h-100 {
    height: 100px;
    width: 100px;
    object-fit: cover;
    object-position: center;
}

.file-section .row.bbottom {
    display: flex;
    align-items: center;
    font-weight: 400;
}

@media (max-width:600px) {
    .file-section .row.bbottom .col-md-1 {
        width: 280px;
    }
}

.file-section .chip .img-over {
    background: #707ac0;
}

.file-section .chip img {
    object-fit: cover;
    object-position: center;
    border-radius: 100%;
    width: 32px;
    height: 32px !important;
}

.file-section .chip > a {
    padding: 5px 0;
}

.file-section .chip i {
    padding: 0;
    margin: 0;
    float: none;
    color: #fff;
    text-align: center;
}

.file-section .file-section-icons a {
    width: 24px;
    height: 24px;
    display: inline-block;
    background: #7071c0;
    color: #fff;
    padding: 4px;
    line-height: 13px;
    cursor: pointer;
}

    .file-section .file-section-icons a:hover {
        background: #565e92;
    }

    .file-section .file-section-icons a i {
        font-size: 12px;
        top: 2px;
        position: relative;
    }

.template-upload .btn {
    line-height: 9px !important;
    color: #fff;
}

    .template-upload .btn i {
        top: 0 !important;
    }

    .template-upload .btn:hover {
        background-color: #565e92;
    }

.custom-action {
    text-align: right;
}

    .custom-action span {
        margin: 0 4px;
    }

        .custom-action span i {
            font-size: 20px;
            top: -2px;
            position: relative;
        }

    .custom-action .status-change.tn {
        top: 0;
    }

    .custom-action.intable {
        height: auto;
        top: 6px;
        position: relative;
    }

    .custom-action ul.dropdown-content {
        padding: 0;
    }

        .custom-action ul.dropdown-content li a {
            color: #999;
            text-decoration: none;
            font-size: 14px;
            text-transform: capitalize;
            font-weight: 600;
        }

            .custom-action ul.dropdown-content li a .fa {
                color: #999999;
                width: 20px;
                text-align: center;
            }

            .custom-action ul.dropdown-content li a i {
                color: #999;
                width: 30px;
                top: 3px;
                position: relative;
                display: inline-block;
                font-size: 19px;
            }

    .custom-action .icon-dots-three-vertical {
        cursor: pointer;
        font-size: 14px;
    }

.checkbox, .option, .radio {
    cursor: pointer;
}

    .checkbox:before, .radio:before {
        content: '';
        display: none;
    }

input:checked + .checkbox:before, input:checked + .radio:before {
    display: block;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    border-color: #fff !important;
}

.checkbox:after, .checkbox:before {
    margin: 0;
    padding: 0;
}

.checkbox:before {
    position: absolute;
    top: 4px;
    left: 3px;
    width: 11px;
    height: 5px;
    border: solid #fff;
    border-width: 0 0 2px 2px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.input:checked + .radio, input:checked + .checkbox {
    background: #707ac0;
    border: 2px solid #707ac0 !important;
}

.col-xs-1.custom-check {
    width: 3%
}

.rs_button_purple {
    overflow: hidden;
    -webkit-transition: border-color .3s, color .3s;
    -o-transition: border-color .3s, color .3s;
    -ms-transition: border-color .3s, color .3s;
    -moz-transition: border-color .3s, color .3s;
    transition: border-color .3s, color .3s;
    -webkit-transition-timing-function: cubic-bezier(.2, 1, .3, 1);
    -o-transition-timing-function: cubic-bezier(.2, 1, .3, 1);
    -ms-transition-timing-function: cubic-bezier(.2, 1, .3, 1);
    -moz-transition-timing-function: cubic-bezier(.2, 1, .3, 1);
    transition-timing-function: cubic-bezier(.2, 1, .3, 1);
    background-color: #707ac0;
    color: #fff;
}

.rs_button {
    cursor: pointer;
    display: inline-block;
    padding: 10px 15px;
    border: none;
    min-width: 200px;
    font-size: 14px;
    font-weight: 700;
    font-family: Roboto, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    vertical-align: middle;
    text-align: center;
    position: relative;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, .3);
    -moz-box-shadow: 0 2px 2px rgba(0, 0, 0, .3);
    -ms-box-shadow: 0 2px 2px rgba(0, 0, 0, .3);
    -o-box-shadow: 0 2px 2px rgba(0, 0, 0, .3);
    box-shadow: 0 2px 2px rgba(0, 0, 0, .3);
    border-radius: 2px;
}

.rs_button_purple:hover {
    color: #666;
    border-color: #fff;
    text-decoration: none;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -webkit-box-shadow: 0 6px 6px rgba(0, 0, 0, .3);
    -moz-box-shadow: 0 6px 6px rgba(0, 0, 0, .3);
    -ms-box-shadow: 0 6px 6px rgba(0, 0, 0, .3);
    -o-box-shadow: 0 6px 6px rgba(0, 0, 0, .3);
    box-shadow: 0 6px 6px rgba(0, 0, 0, .3);
}

    .rs_button_purple:hover::before {
        opacity: 1;
        background-color: #fff;
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        -o-transform: rotate3d(0, 0, 1, 0deg);
        -ms-transform: rotate3d(0, 0, 1, 0deg);
        -moz-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
        -webkit-transition-timing-function: cubic-bezier(.2, 1, .3, 1);
        -o-transition-timing-function: cubic-bezier(.2, 1, .3, 1);
        -ms-transition-timing-function: cubic-bezier(.2, 1, .3, 1);
        -moz-transition-timing-function: cubic-bezier(.2, 1, .3, 1);
        transition-timing-function: cubic-bezier(.2, 1, .3, 1);
    }

.rs_button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 150%;
    height: 100%;
    background: #fff;
    z-index: -1;
    -webkit-transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
    -o-transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
    -ms-transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
    -moz-transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
    transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
    -webkit-transform-origin: 0 100%;
    -o-transform-origin: 0 100%;
    -ms-transform-origin: 0 100%;
    -moz-transform-origin: 0 100%;
    transform-origin: 0 100%;
    -webkit-transition: -webkit-transform .3s, opacity .3s, background-color .3s;
    -o-transition: -o-transform .3s, opacity .3s, background-color .3s;
    -ms-transition: -ms-transform .3s, opacity .3s, background-color .3s;
    -moz-transition: -moz-transform .3s, opacity .3s, background-color .3s;
    transition: transform .3s, opacity .3s, background-color .3s;
    border-radius: 2px;
}

.filter {
    text-align: right;
    padding: 0 40px 0 20px;
}

    .filter > button {
        clear: both;
        display: block;
        margin: 0 auto;
        margin-top: 10px;
        margin-bottom: 10px;
        padding: 0 45px;
    }

.filter-navigation .filter-item .selectize-control.single .selectize-input div.item {
    font-size: 14px !important;
    width: auto;
    margin-top: 8px !important;
}

.filter-navigation .filter-item .selectize-control .selectize-dropdown {
    text-align: left;
}

.filter-navigation .filter-item .selectize-input {
    background-color: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    min-height: 32px !important;
    color: rgba(0, 0, 0, .4);
    border-bottom: 1px solid #9e9e9e !important;
    margin-bottom: 0 !important;
    text-align: left;
}

    .filter-navigation .filter-item .selectize-input > input {
        font-size: 14px !important;
        min-height: 30px !important;
    }

    .filter-navigation .filter-item .selectize-input::after {
        border-width: 4px 4px 0 !important;
        right: 0 !important;
    }

    .filter-navigation .filter-item .selectize-input.dropdown-active::after {
        border-width: 4px 4px 0 !important;
        right: 0 !important;
        border-color: grey transparent transparent;
        top: 0;
    }

    .filter-navigation .filter-item .selectize-input.not-full {
        text-align: left;
    }

.filter-navigation .filter-item .first-hidden .multiple-select-dropdown li:first-child {
    display: none;
}

.filter-navigation .filter-item.filter-selectize .select-multiple {
    width: 100%;
    height: auto;
    position: relative;
}

    .filter-navigation .filter-item.filter-selectize .select-multiple .has-items .item {
        width: auto;
        height: auto;
    }

    .filter-navigation .filter-item.filter-selectize .select-multiple .selectize-control.multi .selectize-input.has-items {
        padding: inherit !important;
    }

.filter-navigation .filter-item.filter-selectize .selectize-dropdown {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12);
}

.filter-navigation .filter-item.filter-selectize .selectize-dropdown-content > div {
    font-size: 14px;
    color: #999;
    display: block;
    line-height: 26px;
    padding: 3px 16px;
    height: auto;
}

    .filter-navigation .filter-item.filter-selectize .selectize-dropdown-content > div.active {
        background-color: #707ac0;
        color: #fff !important;
    }

.filter-navigation .filter-item:first-child {
    margin-top: 50px;
}

.filter-navigation h2.filter-title {
    font-size: 15px;
    margin: 15px 0;
    text-align: left;
    display: block;
    color: rgba(0, 0, 0, .77);
}

.filter-navigation p {
    color: rgba(0, 0, 0, .77);
}

.filter-navigation .filter-item {
    width: 100%;
    display: block;
    -webkit-transition: box-shadow .4s cubic-bezier(.25, .8, .25, 1), background-color .4s cubic-bezier(.25, .8, .25, 1);
    transition: box-shadow .4s cubic-bezier(.25, .8, .25, 1), background-color .4s cubic-bezier(.25, .8, .25, 1);
    margin-bottom: 50px;
}

    .filter-navigation .filter-item.bottomseparator {
        border-bottom: 1px solid rgba(0, 0, 0, .12);
    }

.filter-navigation .item {
    position: relative;
    cursor: pointer;
    text-align: left;
    margin: 0;
    padding: 0 45px;
    text-transform: none;
    line-height: 48px;
    max-height: 48px;
    height: 48px;
    width: 100%
}

.filter-navigation .filter-item.no-hover:hover {
    background-color: transparent;
}

.filter-navigation .dropdown-button .material-icons {
    margin: 0 16px 0 0;
    font-size: 14px;
    width: 16px;
    height: 16px;
    line-height: 13px;
    top: 2px;
    position: relative;
}

.filter-navigation .filter-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    display: inline-block;
    margin: 0;
}

.filter-navigation .filter_picker-title {
    text-align: center;
    position: relative;
    background-color: rgba(0, 0, 0, .2);
    padding: 3px 0;
    color: #fff;
}

.form-control {
    border: none !important;
    font-size: 13px !important;
    background-color: #fafafa !important;
    border-radius: 0 !important;
    height: auto !important;
    padding: 13px 15px !important;
    resize: none !important;
    margin-bottom: 15px !important;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .24) !important;
    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, .24) !important;
    -ms-box-shadow: 0 1px 1px rgba(0, 0, 0, .24) !important;
    -o-box-shadow: 0 1px 1px rgba(0, 0, 0, .24) !important;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .24) !important;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

    .form-control.dpicker {
        margin-bottom: 0 !important;
    }

    .form-control.description::-moz-placeholder {
        color: #aaafc1;
    }

    .form-control.description::-ms-input-placeholder {
        color: #aaafc1;
    }

    .form-control.description::-webkit-input-placeholder {
        color: #aaafc1;
    }

    .form-control.flat-select {
        box-shadow: none !important;
        padding: 8px 20px !important;
        text-align: center !important;
    }

    .form-control.area-height {
        min-height: 350px;
    }

.prepend-icon .form-control {
    margin-bottom: 0 !important;
    padding-left: 40px !important;
}

.custom-action .mdl-button--icon:hover {
    background: 0 0;
}

.mb0 {
    margin-bottom: 0;
}

.select-wrapper input.select-dropdown {
    color: rgba(0, 0, 0, .4);
    font-size: 14px !important;
}

.select-wrapper span.caret {
    color: rgba(0, 0, 0, .4);
}

.top90 {
    top: -90px;
    z-index: 99;
}

.dashboard-title i {
    color: #fff;
    display: inline-block;
    top: 2px;
    position: relative;
}

.dashboard-title h2 {
    font-size: 24px;
    color: #fff;
    margin: 0;
    display: inline-block;
    line-height: 30px;
    vertical-align: bottom;
}

.dashboard-title span.title-description {
    display: block;
    color: rgba(255, 255, 255, .7);
    padding-left: 28px;
}

.order-option a {
    color: rgba(0, 0, 0, .87);
}

.user-time {
    min-width: 200px;
    text-align: left;
    font-weight: 700;
    display: inline-block;
}

    .user-time p {
        margin: 0;
    }

    .user-time span {
        font-weight: 400;
    }

.dashboard-page .form-control {
    margin: 0 !important;
}

    .dashboard-page .form-control.mb20 {
        margin-bottom: 20px !important;
    }

.search-box label.active {
    display: none;
}

.sp-container {
    height: 225px;
}

.dashboard-page .alert, .gallery-page .alert {
    position: absolute;
    top: 0;
    width: 100%;
    max-width: 320px;
    text-align: center;
    z-index: 99;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 30px 10px;
    background: #707ac0;
    height: auto;
}

    .dashboard-page .alert a, .gallery-page .alert a {
        color: #fff;
    }

.alert .close, .alert .close:hover {
    position: absolute;
    top: 0;
    right: 5px;
}

.pl40 {
    padding-left: 40px !important;
}

aside.settings-sidebar {
    background: #fbfbfb;
}

    aside.settings-sidebar .fileupload .thumbnail {
        height: auto;
    }

.quote {
    width: 30%;
}
    .quote.w40 {
        width: 40% !important;
    }

    .quote .payment-type {
        display: block;
}

        .quote .payment-type i {
            font-size: 13px;
            position: relative;
            top: 2px;
}

.total-price {
    width: 150px;
    text-align: center;
    font-weight: 600;
}

.status {
    width: 150px;
    text-align: right;
}

    .status .chip {
        border-radius: 2px;
        font-size: 11px;
        height: auto !important;
        line-height: 15px;
        padding: 3px 5px;
    }

    .price .chip {
        border-radius: 2px;
        font-size: 11px;
        height: auto !important;
        line-height: 15px;
        padding: 3px 5px;
    }

.invoice-panel .status {
    width: 150px;
    text-align: right;
    display: inline-block;
}

a.dropdown-button.status-change {
    top: 7px;
    right: -13px;
    display: inline-block;
    position: relative;
    color: rgba(0, 0, 0, .54);
}

.equal-two td {
    width: 50%
}

.equal td {
    width: 33%
}

.equal-four td {
    width: 25%
}

.equal-five td {
    width: 20%
}

.mt0 {
    margin-top: 0;
}

.tab-title {
    color: rgba(0, 0, 0, .54);
    font-size: 22px;
    text-transform: capitalize;
    margin: 0;
    position: relative;
    z-index: 9;
}

    .tab-title.mb10 {
        margin-bottom: 10px !important;
    }

    .tab-title i {
        font-size: 27px;
        top: 5px;
        position: relative;
        margin-right: 10px;
        z-index: 9;
        border: 1px solid rgba(0, 0, 0, .54);
        border-radius: 100%;
        padding: 3px;
        margin-bottom: 5px;
    }

    .tab-title .title-inside {
        position: relative;
        z-index: 9;
        display: inline-block;
        font-size: inherit;
        padding: inherit;
        font-weight: inherit;
    }

    .tab-title span {
        display: block;
        font-size: 14px;
        padding-left: 38px;
        font-weight: 400;
        line-height: 23px;
    }

.sort-asc i {
    -moz-transform: scaleY(-1);
    -o-transform: scaleY(-1);
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1);
    filter: FlipY;
    -ms-filter: "FlipY"
}

@media (max-width:768px) {
    .panel .total-price {
        display: none;
    }

    .quote {
        width: 50%
    }
}

@media (max-width:768px) {
    .panel .total-price {
        width: auto;
        text-align: left
    }

    .quote {
        width: 100%
    }
}

.table-summary {
    font-size: 16px;
    line-height: 30px;
}

.total-row {
    font-weight: 600;
    font-size: 18px;
}

.permisions-drop .dropdown-menu {
    min-width: 300px;
    text-align: center;
}

    .permisions-drop .dropdown-menu li {
        display: inline-block;
        margin: 5px 0;
    }

        .permisions-drop .dropdown-menu li.multiselect-item {
            display: block;
            text-align: center;
        }

            .permisions-drop .dropdown-menu li.multiselect-item.multiselect-group {
                border-top: 1px solid #ddd;
                background: 0 0;
                border-bottom: none;
                margin-top: 20px;
                margin-bottom: 0;
            }

                .permisions-drop .dropdown-menu li.multiselect-item.multiselect-group label {
                    top: -13px;
                    position: relative;
                    background: #fff;
                    padding: 2px 8px !important;
                    width: 50% !important;
                }

            .permisions-drop .dropdown-menu li.multiselect-item label {
                padding: 10px 5px !important;
            }

    .permisions-drop .dropdown-menu.multiselect-group label {
        padding: 10px 5px;
        width: 100%;
        text-align: center;
    }

    .permisions-drop .dropdown-menu label {
        padding: 4px 0 !important;
        width: 70px !important;
        text-align: center;
    }

.sort-option:hover {
    cursor: pointer;
}

body.external-page.setup {
    overflow: auto;
    width: 100%;
    height: 100%;
    background: #707ac0;
}

    body.external-page.setup #main {
        overflow: hidden;
        background: #707ac0;
        min-height: 100%;
        position: relative;
    }

    body.external-page.setup .content-setup {
        padding: 25px 20px 50px 21px;
    }

    body.external-page.setup .setup-form {
        position: relative;
        width: 100%;
        max-width: 400px;
        margin: 1% auto 0;
        line-height: 1.231;
        font-weight: 400;
        font-size: 14px;
        color: #626262;
    }

        body.external-page.setup .setup-form .panel {
            margin-bottom: 20px;
            background-color: #fff;
            border: 1px solid #DDD;
        }

        body.external-page.setup .setup-form .separator.w300.mt0 {
            margin-top: 0;
        }

        body.external-page.setup .setup-form .security span {
            height: 20px;
            line-height: 25px;
            color: #626262;
        }

        body.external-page.setup .setup-form .separator {
            top: 0;
            font-size: 15px;
            font-weight: 600;
            margin: 24px auto 30px;
            top: 5px;
            position: relative;
            overflow: hidden;
            width: 100px;
            color: rgba(0, 0, 0, .54);
            text-align: center;
            display: block;
            clear: both;
        }

            body.external-page.setup .setup-form .separator .text {
                display: inline-block;
                vertical-align: baseline;
                position: relative;
                padding: 0 8px;
                z-index: 9999;
            }

                body.external-page.setup .setup-form .separator .text::before {
                    right: 100%;
                    content: '';
                    display: block;
                    width: 30px;
                    position: absolute;
                    top: 10px;
                    border-top: 1px solid rgba(0, 0, 0, .12);
                }

                body.external-page.setup .setup-form .separator .text::after {
                    left: 100%;
                    content: '';
                    display: block;
                    width: 30px;
                    position: absolute;
                    top: 10px;
                    border-top: 1px solid rgba(0, 0, 0, .12);
                }

    body.external-page.setup .setup-page .panel {
        box-shadow: 0 1px 40px 0 rgba(0, 0, 0, .3);
    }

    body.external-page.setup .stage-container {
        width: 70%;
        margin: 0 auto;
    }

        body.external-page.setup .stage-container .stage {
            display: inline-block;
            position: relative;
            text-align: center;
            min-height: 112px;
            margin-top: 50px;
        }

            body.external-page.setup .stage-container .stage:after {
                right: 0;
                position: absolute;
                background-color: #eaeaea;
                top: 50%;
                margin-top: -33px;
                width: 50%;
                height: 5px;
                border-top: 1px solid #d9d9d9;
                border-bottom: 1px solid #d9d9d9;
                content: ''
            }

            body.external-page.setup .stage-container .stage:before {
                left: 0;
                position: absolute;
                background-color: #eaeaea;
                top: 50%;
                margin-top: -33px;
                width: 50%;
                height: 5px;
                border-top: 1px solid #d9d9d9;
                border-bottom: 1px solid #d9d9d9;
                content: '';
            }

            body.external-page.setup .stage-container .stage.first-stage:before {
                content: none;
            }

            body.external-page.setup .stage-container .stage.first-stage:before, body.external-page.setup .stage-container .stage.third-stage:after {
                content: none;
            }

        body.external-page.setup .stage-container .stage-header {
            display: inline-block;
            width: 50px;
            height: 50px;
            background-color: #f9f9f9;
            text-align: center;
            font-size: 20px;
            color: #fff;
            border: 1px solid #fff;
            position: relative;
            z-index: 1;
            -webkit-border-radius: 50%;
            border-radius: 50%
        }

            body.external-page.setup .stage-container .stage-header .fa {
                position: relative;
                height: 50px;
                line-height: 50px;
            }

        body.external-page.setup .stage-container .stage-info {
            text-align: center;
            color: #fff;
            font-size: 12px;
            line-height: 1.4;
        }

        body.external-page.setup .stage-container .stage-content {
            max-height: 52px;
            margin: 0 auto;
            padding: 5px 0;
        }

body.external-page.register-page {
    overflow: auto;
    padding: 100px 0;
}

    body.external-page.register-page #main {
        overflow: visible !important;
    }

.setup-form, .setup-form * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.p30 {
    padding: 30px !important;
}

.w-auto {
    width: auto;
}

.stage.tmm-current .stage-header .fa {
    color: #707ac0;
}

.stage-container .stage.tmm-current:after, .stage-container .stage.tmm-current:before {
    background-color: #707ac0;
}

.stage-container .stage:after, .stage-container .stage:before {
    background-color: #eaeaea;
}

.rs_checkout_form_section .form-group {
    float: left;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.setup-form .button-install, .setup-form .button-setup, .setup-form .button-signup {
    background: #fff;
    border: none;
    color: #707ac0;
    font-weight: 700;
    text-transform: uppercase;
    padding: 7px 23px;
}

.rs_create_accout_checkbox {
    float: left;
    width: 100%
}

    .rs_create_accout_checkbox .rs_checkbox {
        width: 20px;
        height: 20px;
        position: relative;
        float: left;
        margin-right: 10px;
    }

.top-right {
    position: absolute;
    right: 10px;
    top: 10px;
}

    .top-right i {
        font-size: 16px;
    }

.top-left {
    position: absolute;
    left: 10px;
    top: 10px;
    color: #626262;
}

    .top-left i {
        font-size: 16px;
    }

.bottom-left {
    position: absolute;
    left: 10px;
    bottom: 10px;
    color: #626262;
}

    .bottom-left i {
        font-size: 16px;
    }

.bottom-right {
    position: absolute;
    right: 25px;
    bottom: 23px;
    color: #fff;
    background: #707ac0;
    display: block;
    border-radius: 100%;
    padding: 5px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 28px;
    z-index: 1000;
    cursor: pointer;
}

    .bottom-right i {
        font-size: 16px;
    }

.info-row.fluid-width .w100, .info-row.fluid-width .w200 {
    display: inline-block;
}

.period-dropdown i.material-icons {
    color: #999 !important;
    text-align: left;
}

.period-dropdown ::-webkit-input-placeholder {
    color: #999;
}

.period-dropdown :-moz-placeholder {
    color: #999;
}

.period-dropdown ::-moz-placeholder {
    color: #999;
}

.period-dropdown :-ms-input-placeholder {
    color: #999;
}

.ui-datepicker-trigger i {
    vertical-align: middle;
}

.profile-background {
    padding: 0;
    color: #fff;
    width: 100%;
    height: 350px;
    position: relative;
}

    .profile-background .social-icons a {
        position: relative;
        z-index: 99;
        display: inline-block;
        width: 24px;
        height: 24px;
        color: #fff;
        background: #ddd;
        border-radius: 100%;
        text-align: center;
        vertical-align: middle;
        margin: 0 2px;
    }

        .profile-background .social-icons a:first-child {
            margin-left: 0;
        }

        .profile-background .social-icons a i {
            color: #fff;
            font-size: 13px;
            text-align: center;
            line-height: 24px;
            vertical-align: middle;
        }

        .profile-background .social-icons a.small-button {
            background: #707ac0 !important;
            border-radius: 0 !important;
            width: 75px !important;
            line-height: 25px;
            text-transform: uppercase;
            font-size: 11px;
            font-weight: 700;
            -webkit-transition: background .2s ease;
            transition: background .2s ease;
        }

            .profile-background .social-icons a.small-button:hover {
                text-decoration: none;
                background: #222d7c !important;
            }

    .profile-background img {
        width: 100%;
        height: auto;
        overflow: hidden;
        position: absolute;
        z-index: 1;
        display: block;
    }

    .profile-background .user-heading a img {
        height: 100%;
        overflow: hidden;
        vertical-align: middle;
        display: inline-block;
        width: 100%;
        object-fit: contain;
        object-position: center;
    }

    .profile-background .user-heading.round > a {
        border-radius: 50%;
        -webkit-border-radius: 50%;
        border: 10px solid rgba(255, 255, 255, .3);
        display: inline-block;
        overflow: hidden;
        width: 112px;
        height: 112px;
        position: relative;
        vertical-align: middle;
        z-index: 99;
    }

    .profile-background .user-profile-info {
        display: inline-block;
        z-index: 99;
    }

    .profile-background .profile-icons {
        position: absolute;
        right: 25px;
        top: 25px;
        z-index: 9;
    }

        .profile-background .profile-icons .custom-action > a {
            background: #ff3d00;
            display: block;
            border-radius: 100%;
            padding: 5px;
            width: 30px;
            height: 30px;
            text-align: center;
        }

            .profile-background .profile-icons .custom-action > a i {
                color: #fff;
                font-size: 20px;
            }

    .profile-background .social-icons {
        position: absolute;
        bottom: 25px;
        left: 25px;
    }

    .profile-background .header-img {
        width: 100%;
        height: 100%;
        overflow: hidden;
        position: absolute;
        display: block;
    }

.friends-list .friend-item .friend-img {
    float: left;
    margin-right: 10px;
    position: relative;
    width: 30px;
    height: 30px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%
}

    .friends-list .friend-item .friend-img img {
        width: 30px;
        height: 30px;
        -webkit-border-radius: 100%;
        -moz-border-radius: 100%;
        -ms-border-radius: 100%;
        -o-border-radius: 100%;
        border-radius: 100%
    }

.friend-name {
    display: inline-block;
}

    .friend-name h5 {
        font-size: 12px;
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .friend-name h6 {
        color: #A8A8A8;
        font-size: 10px;
        margin-bottom: 0;
        margin-top: 0;
    }

.friends-list .friend-item {
    cursor: pointer;
    padding: 5px 10px 5px 5px;
}

.daterangepicker.dropdown-menu {
    background: #f8f8f8 !important;
}

.daterangepicker .calendar-date {
    border-radius: 2px !important;
}

.daterangepicker.opensleft .calendar, .daterangepicker.opensleft .ranges {
    margin: 4px 6px !important;
    background: #f8f8f8 !important;
}

    .daterangepicker.opensleft .calendar.left {
        margin-right: 2px !important;
    }

.daterangepicker .ranges li {
    background: #FFF !important;
    border-radius: 1px !important;
    padding: 4px 12px !important;
    border: 1px solid #EEE !important;
    margin-bottom: 6px !important;
}

    .daterangepicker .ranges li.active, .daterangepicker .ranges li:hover {
        background: #707ac0 !important;
        border-color: #707ac0 !important;
    }

.daterangepicker .ranges .input-mini {
    border-radius: 2px !important;
}

.daterangepicker td.active, .daterangepicker td.active:hover {
    background: #707ac0 !important;
    border-color: #707ac0 !important;
}

.daterangepicker td.end-date, .daterangepicker td.start-date {
    border-radius: 0 !important;
}

.daterangepicker_end_input, .daterangepicker_start_input {
    display: none;
}

.daterangepicker .calendar {
    display: block !important;
}

.daterangepicker .ranges li:last-child {
    display: none;
}

.purplebutton.compose-btn.w200 {
    display: block;
    margin: 0 auto;
}

.message-body {
    -webkit-tap-highlight-color: transparent;
    text-rendering: optimizeLegibility;
    box-sizing: border-box;
    color: rgba(0, 0, 0, .870588);
    font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 13px;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    letter-spacing: -.1px;
    line-height: 18.2px;
    orphans: auto;
    text-align: start;
    text-indent: 0;
    text-transform: none;
    white-space: normal;
    widows: 1;
    word-spacing: 0;
    -webkit-text-stroke-width: 0;
    background-color: none !important;
}

    .message-body p {
        background-color: transparent !important;
    }

.height-fix {
    height: auto !important;
}

.profile-card {
    /*margin-right:65px;
        &.col.l3{
          width:24%;
        }
       &:nth-child(5n){
                margin-right:0px;
              }*/
}

.profile-card .friend-action {
    position: absolute;
    top: 5px;
    right: 0;
    z-index: 9;
}

.profile-card .custom-action > a {
    display: inline-block;
    color: rgba(0, 0, 0, .87);
}

.profile-card .friend-avatar {
    width: 120px;
    height: 120px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    overflow: hidden;
    margin: 20px auto;
    position: relative;
}

    .profile-card .friend-avatar img {
        width: auto;
        height: 100%;
        text-align: center;
        vertical-align: middle;
        margin: 0 auto;
        display: block;
        position: relative;
    }

.profile-card h2 {
    text-align: center;
    font-weight: 100;
    margin-bottom: 0;
}

    .profile-card h2 a:hover {
        text-decoration: none;
    }

.profile-card .user-mail {
    text-align: center;
}

    .profile-card .user-mail a:hover {
        text-decoration: none;
    }

.profile-card .short-sep {
    background: #ddd;
    height: 1px;
    width: 75px;
    margin: 25px auto;
    display: block;
    text-align: center;
    position: relative;
}

.profile-card .social-list {
    text-align: center;
}

    .profile-card .social-list li {
        display: inline-block;
        width: 30px;
        height: 30px;
        margin: 0 5px;
        text-align: center;
    }

        .profile-card .social-list li a {
            border: 1px solid #707ac0;
            border-radius: 100%;
            width: 30px;
            height: 30px;
            display: block;
            line-height: 30px;
        }

            .profile-card .social-list li a:hover {
                color: #fff;
                background: #707ac0;
            }

.profile-card .followers.row {
    border-top: 1px solid #ddd;
    padding: 10px 0;
    text-align: center;
}

.profile-card .followers p {
    text-transform: uppercase;
    text-align: center;
    font-weight: 600;
    margin: 0;
}

    .profile-card .followers p span {
        display: block;
        opacity: .5;
    }

.profile-card .business-info {
    text-align: center;
}

.quick-compose-form .note-para.btn-group, .quick-compose-form .note-style.btn-group {
    margin-top: 0;
}

.quick-compose-form .form-control {
    margin-bottom: 0 !important;
}

.message-read .unread-icon {
    display: none;
}

span.attachment-icon {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    color: rgba(0, 0, 0, .54);
}

    span.attachment-icon i {
        font-weight: 100;
        color: rgba(0, 0, 0, .54);
        font-size: 16px;
    }

.loader-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .9);
    z-index: 9999;
}

#loader {
    position: relative;
    top: 50%;
    z-index: 1;
    margin: 0 auto;
    border: 5px solid #f3f3f3;
    border-radius: 50%;
    border-top: 5px solid #707ac0;
    width: 100px;
    height: 100px;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.animate-bottom {
    position: relative;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-name: animatebottom;
    animation-duration: 1s;
}

@-webkit-keyframes animatebottom {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes animatebottom {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.payment-info {
    text-align: center;
    margin: 0 auto;
}

    .payment-info .status {
        text-align: center;
        font-weight: 700;
    }

.doc-textarea.description {
    height: 50px !important;
    border: 0 !important;
    box-shadow: none !important;
    font-size: 12px;
}

span.preview-notice {
    font-size: 11px;
    color: #999;
}

.related-doc {
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

    .related-doc a {
        padding-left: 20px !important;
    }

        .related-doc a:hover {
            background-color: #fff !important;
        }

        .related-doc a .fs14 {
            font-weight: 700;
        }

.gallery-pagination {
    float: right;
    display: block;
    clear: both;
    text-align: right;
}

h1.account {
    text-align: center;
    color: #fff;
}

.settings-tabs li {
    float: left;
    margin-bottom: -1px;
    display: table-cell;
    width: 25%;
    text-align: center;
}

    .settings-tabs li a {
        border: none;
        border-bottom: 1px solid transparent;
        color: #999;
        font-size: 12px;
        padding-left: 4px;
        padding-right: 4px;
    }

        .settings-tabs li a:focus {
            border: none !important;
            border-bottom: 1px solid #707ac0 !important;
        }

        .settings-tabs li a:hover, .settings-tabs li.active a, .settings-tabs li.active a:hover {
            border: none;
            border-bottom: 1px solid #707ac0;
            background: 0 0;
            color: #555;
        }

.settings-tabs.nav-tabs {
    border: none;
    display: table;
    width: 100%;
    table-layout: fixed;
}

a.viewall {
    text-align: center;
    display: block;
    width: 100px;
    margin: 0 auto;
    position: relative;
    bottom: -10px;
}

p.noconnection {
    text-align: center;
    font-weight: bold;
    vertical-align: middle;
    position: relative;
    margin: 0;
}

.dark i.material-icons {
    color: #999;
}

    .dark i.material-icons.active {
    color: #999;
}

.dark .input-field input {
    font-size: 14px;
}

.profile-footer .pagination-custom {
    display: inline-block;
    float: right;
    margin: 0;
}

.mix-wrapper {
    text-align: justify;
    font-size: 0;
    -webkit-backface-visibility: hidden;
}

    .mix-wrapper:after {
        content: '';
        display: inline-block;
        width: 100%
    }

    .mix-wrapper .gap, .mix-wrapper .mix {
        display: inline-block;
        width: 49%
    }

    .mix-wrapper .mix {
        text-align: left;
        margin-bottom: 2%;
        display: none;
        vertical-align: top;
    }

        .mix-wrapper .mix:after {
            content: attr(data-myorder);
            color: #fff;
            font-size: 16px;
            display: inline-block;
            vertical-align: top;
            padding: 4% 6%;
            font-weight: 700;
        }

        .mix-wrapper .mix:before {
            content: '';
            display: inline-block;
        }

@media all and (min-width:1024px) {
    .mix-wrapper .gap, .mix-wrapper .mix {
        width: 24%
    }
}

@media (max-width:560px) {
    .mix-wrapper .gap, .mix-wrapper .mix {
        width: 100%
    }
}

@media (min-width:560px) and (max-width:767px) {
    .mix-wrapper .gap, .mix-wrapper .mix {
        width: 48%
    }
}

@media (min-width:767px) and (max-width:1024px) {
    .mix-wrapper .gap, .mix-wrapper .mix {
        width: 31.5%
    }
}

@media (min-width:600px) and (max-width:991px) {
    .quote #topbar span, .quote .btn-group-vertical > .btn-group span, .quote .btn-toolbar span, .quote .clearfix span, .quote .container span, .quote .container-fluid span, .quote .dl-horizontal dd span, .quote .form-horizontal .form-group span, .quote .modal-footer span, .quote .nav span, .quote .navbar span, .quote .navbar-collapse span, .quote .navbar-header span, .quote .pager span, .quote .panel-body span, .quote .row span {
        display: inline-block;
    }
}

@media (min-width:767px) {
    .flex-between-xl {
        justify-content: space-between;
        position: relative;
    }

    .w100-xl {
        width: 100%
    }
}

.mat i {
    font-size: 17px;
    position: relative;
    top: 3px;
}

.floatnone {
    float: none !important;
}

.nobg {
    background: 0 0 !important;
    border: none !important;
    padding: 0 !important;
}

input[type=number] {
    -moz-appearance: textfield;
}

.hidden-textarea {
    display: none !important;
}

.hide-elements .dataTables_info, .hide-elements .items-per-page {
    display: none;
}

.hauto {
    height: auto;
}

.widgets h6 {
    font-size: 15px;
}

.widgets .fs11 i {
    font-size: 13px;
    top: 2px;
    position: relative;
}

.noborder .indicator {
    display: none;
}

.noborder li a {
    font-size: 14px;
    font-weight: 400;
    color: #64687b !important;
}

    .noborder li a.active, .noborder li a:hover {
        color: rgba(0, 0, 0, .38) !important;
    }

.chip-icon i {
    float: left !important;
    display: inline-block;
    position: relative;
    height: auto !important;
    font-size: 12px !important;
    padding: 0 !important;
    width: 20px;
    line-height: 16px !important;
}

.aw {
    width: auto !important;
}

.fn {
    float: none !important;
}

.bgwhite {
    background: #fff;
}

    .bgwhite i {
        top: 7px;
        position: relative;
        left: -5px;
    }

    .bgwhite .backtoformgrid i {
        top: 3px;
        left: 5px;
    }

ul.custom-list {
    padding-left: 10px;
}

    ul.custom-list li i {
        position: relative;
        top: 7px;
    }

.subform-fields tr {
    border-bottom: 0 solid #eee !important;
    background: 0 0 !important;
}

    .subform-fields tr td {
        border: none !important;
        padding: 10px 0 !important;
    }

.subform-fields .even {
    background: 0 0 !important;
}

.popup-basic .subform-fields.table > tbody > tr > td {
    border: none !important;
    padding: 10px 0 !important;
}

    .popup-basic .subform-fields.table > tbody > tr > td input.form-control {
        margin: 0 !important;
    }

.popup-basic .sub-form-wrapper .row {
    border: none !important;
    padding: 10px 0 !important;
}

.badge.round {
    width: 25px;
    height: 25px;
    display: block;
    line-height: 25px;
    border-radius: 100%;
    overflow: hidden;
    position: relative;
    padding: 0;
    min-width: 1px;
}

.card-title i {
    position: relative;
    top: 3px;
}

.w700 {
    max-width: 700px !important;
}

.lock-wrap h3 {
    margin-top: 5px;
    font-size: 30px;
    color: #707ac0 !important;
}

.lock-wrap i {
    font-size: 40px;
    top: 50%;
    position: absolute;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    color: #fff;
}

.lock-wrap .user-avatar {
    margin: 30px 0;
}

.center-content {
    position: relative;
    text-align: center;
}

    .center-content .admin-form {
        margin: 0 auto;
        margin-top: 0 !important;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
    }

.full-height {
    height: 100vh;
}

.lock-image-overlay {
    background-color: rgba(0, 0, 0, .5);
    position: absolute;
    width: 150px;
    height: 150px;
    overflow: hidden;
    display: block;
    margin: 0 auto;
    border-radius: 100%
}

.alert .ui-pnotify-icon {
    left: 5px;
    top: 4px;
}

.alert h4 {
    text-align: center;
}

.alert .ui-pnotify-text {
    margin-top: 20px;
    padding-top: 0;
}

.row-pn .dataTables_wrapper .row {
    padding: 0 0 15px;
}

.sb-l-o #content_wrapper.not-authenticated {
    margin-left: 0;
}

.table-first-column.text-center.w50 {
    padding-left: 15px !important;
}

li.company-data {
    padding-top: 0 !important;
    font-size: 13px;
    text-align: center;
}

    li.company-data.company-name {
        padding-top: 10px !important;
        font-weight: 700;
        font-size: 14px;
    }

.group-field {
    position: relative;
}

    .group-field .btn {
        float: right;
        top: 14px;
    }

    .group-field .file-path-wrapper {
        padding-right: 10px;
        float: left;
        width: 90%
    }

.image-preview {
    width: 60px;
    height: 60px;
    overflow: hidden;
    margin: 0 auto;
    background: #bdbdbd;
    border-radius: 100%;
    vertical-align: top;
    position: relative;
    flex-basis: 1;
    display: inline-block;
}

    .image-preview img {
        display: block;
        max-height: 100%;
        width: auto;
        height: auto;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        max-width: 100%
    }

.group-box.inner-avatar {
    padding: 15px !important;
}

.group-box .groupmembers-box {
    padding-bottom: 30px;
    padding-top: 10px;
}

    .group-box .groupmembers-box .image-container.group-image {
        top: 0;
        position: relative;
    }

    .group-box .groupmembers-box .title-follow {
        position: relative;
    }

    .group-box .groupmembers-box .business-info ul {
        list-style: none;
        padding: 0;
        text-align: center;
        margin: 10px 0;
    }

        .group-box .groupmembers-box .business-info ul li {
            display: block;
        }

            .group-box .groupmembers-box .business-info ul li span {
                display: block;
                padding: 5px 15px;
                font-size: 12px;
            }

.group-box .custom-action {
    position: absolute;
    top: 5px;
    right: 7px;
}

.tab-grid {
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    padding: 10px 0;
}

    .tab-grid ul {
        padding: 0;
        margin: 0;
        display: table;
        width: 100%
    }

        .tab-grid ul li {
            display: table-cell;
            text-align: center;
        }

            .tab-grid ul li .expand-panel {
                opacity: .4;
                -webkit-transition: all .5s ease-in-out;
                -moz-transition: all .5s ease-in-out;
                -ms-transition: all .5s ease-in-out;
                -o-transition: all .5s ease-in-out;
                transition: all .5s ease-in-out;
            }

                .tab-grid ul li .expand-panel.active, .tab-grid ul li .expand-panel:hover {
                    opacity: 1;
                }

            .tab-grid ul li i {
                color: rgba(0, 0, 0, .54);
                top: 3px;
                position: relative;
            }

.mfp-content .panel .import-table .table > tbody > tr > td {
    padding: 8px 10px !important;
}

.import-table .table tbody > tr:first-child > td {
    border-top: 0 !important;
}

.import-table .table tbody > tr:last-child > td {
    border-bottom: 2px solid #e0e0e0 !important;
}

.import-table {
    padding: 15px 0;
    overflow-x: scroll;
}

    .import-table .table {
        border-spacing: 10px 0;
        border-collapse: separate;
    }

        .import-table .table th {
            min-width: 200px;
            border: 2px solid #e0e0e0;
            border-top: 2px solid #e0e0e0 !important;
            padding: 0 !important;
            height: 150px;
            vertical-align: top;
        }

            .import-table .table th .section {
                padding: 15px;
            }

        .import-table .table td {
            border-bottom: 0;
            border-top: 1px solid #e0e0e0 !important;
            border-left: 2px solid #e0e0e0;
            border-right: 2px solid #e0e0e0;
        }

    .import-table .th-label {
        text-align: center;
        font-weight: 700;
        margin-bottom: 10px;
        background: #e0e0e0;
        padding: 15px;
    }

.import-table-entry {
    padding: 15px 0;
    overflow-x: scroll;
}

    .import-table-entry th {
        min-width: 200px;
    }

.side-notification {
    background: #fff;
}

    .side-notification .blank-item .notification-item-inner {
        display: block !important;
    }

    .side-notification .blank-item .notification-body {
        text-align: center;
    }

    .side-notification li.notification-item {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, .08);
    }

        .side-notification li.notification-item img {
            width: 40px;
            height: 40px;
            object-fit: contain;
            object-position: center;
            border-radius: 100%
        }

        .side-notification li.notification-item a {
            color: #999;
        }

        .side-notification li.notification-item .notification-item-inner {
            padding: 11px 15px 11px 20px;
            font-size: 13px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            position: relative;
        }

            .side-notification li.notification-item .notification-item-inner .notification-item-img {
                margin-right: 10px;
                align-self: center;
            }

            .side-notification li.notification-item .notification-item-inner .notification-item-body {
                align-self: center;
            }

                .side-notification li.notification-item .notification-item-inner .notification-item-body p a {
                    color: #707ac0 !important;
                }

            .side-notification li.notification-item .notification-item-inner .item-type {
                position: absolute;
                left: 10px;
                top: 2px;
                color: #999;
                font-size: 11px;
            }

.side-board-block .notification-item-inner {
    padding: 11px 15px 11px 20px;
}

.conversation-panel form .nav-pills {
    display: none;
}

.flag-xs.flag-rs {
    background-position: 0 -136px;
}

.flag-xs.flag-ma {
    background-position: 0 -153px;
}

.flag-xs.flag-mn {
    background-position: 0 -170px;
}

.flag-xs.flag-bh {
    background-position: 0 -186px;
}

.flag-xs.flag-sl {
    background-position: 0 -203px;
}

.section.inline-field {
    position: relative;
}

    .section.inline-field .field, .section.inline-field h6 {
        display: inline-block;
        margin-right: 15px;
    }

.mfp-content .small-table .panel .table > tbody > tr > td {
    padding: 10px 5px !important;
}

.no_margin .selectize-input.items.has-items, .no_margin .selectize-input.items.not-full {
    margin-bottom: 0 !important;
}

.sidebar-block .extra-customer .no-border li {
    border: none;
}

    .sidebar-block .extra-customer .no-border li a {
        color: #fff;
    }

.sidebar-block.files-manager-block .notification-item-inner > i {
    background: #707ac0;
    border-radius: 100%;
    padding: 8px;
    color: #fff;
}

.sidebar-block .flex {
    display: flex;
    align-items: center;
    flex-direction: row;
    margin: 10px 0 !important;
}

    .sidebar-block .flex .user-name {
        display: block;
        line-height: 1;
        font-size: 12px;
    }

        .sidebar-block .flex .user-name span {
            display: block;
            font-size: 10px;
        }

@media only screen and (device-width:768px) {
    .tray-rescale #main {
        overflow: hidden;
    }
}

.under-title-tab {
    display: block;
    clear: left;
}

    .under-title-tab li {
        font-size: 13px;
        padding-left: 38px;
        font-weight: 400;
        line-height: 20px;
        text-transform: none;
    }

.register-wrap .form-group.checkout-form-list {
    text-align: left;
}

.nav-phase {
    display: flex;
    clear: both;
    width: 99%;
    margin-top: 30px;
    position: relative;
    top: 15px;
}

    .nav-phase ul.nav-wizard {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        text-align: center;
    }

        .nav-phase ul.nav-wizard li {
            flex: 1;
            flex-grow: 1;
            width: 100%
        }

            .nav-phase ul.nav-wizard li.active a, .nav-phase ul.nav-wizard li:hover a {
                background: #707ac0;
                color: #fff;
            }

                .nav-phase ul.nav-wizard li.active a:after, .nav-phase ul.nav-wizard li:hover a:after {
                    border-left: 20px solid #707ac0;
                }

            .nav-phase ul.nav-wizard li:not(:first-child) a:before {
                width: 0;
                height: 0;
                border-top: 20px inset transparent;
                border-bottom: 20px inset transparent;
                border-left: 20px solid #fff;
                position: absolute;
                content: "";
                top: 0;
                left: 0;
            }

        .nav-phase ul.nav-wizard a {
            padding: 10px 15px;
            margin-right: 5px;
            background: #eee;
            position: relative;
            display: block;
            -webkit-transition: all .2s;
            -moz-transition: all .2s;
            -ms-transition: all .2s;
            -o-transition: all .2s;
            transition: all .2s;
        }

            .nav-phase ul.nav-wizard a:after {
                width: 0;
                height: 0;
                border-top: 20px inset transparent;
                border-bottom: 20px inset transparent;
                border-left: 20px solid #eee;
                position: absolute;
                content: "";
                top: 0;
                right: -20px;
                z-index: 2;
                -webkit-transition: all .2s;
                -moz-transition: all .2s;
                -ms-transition: all .2s;
                -o-transition: all .2s;
                transition: all .2s;
            }

.flex-between {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.grid-switch {
    position: relative;
    line-height: 1;
}

    .grid-switch i {
        font-size: 22px;
        top: 4px;
        color: rgba(0, 0, 0, .87);
        position: relative;
    }

.selectize-mbn .selectize-input {
    margin-bottom: 0 !important;
}

.chip-content {
    border: 1px solid rgba(0, 0, 0, .08);
    margin: 0;
    top: 27px;
    position: absolute;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 220px;
    padding: 5px 8px;
    list-style: none;
    font-size: 12px;
    text-align: left;
    background-color: #fff;
    color: rgba(0, 0, 0, .87);
    border-radius: 1px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    background-clip: padding-box;
}

    .chip-content span {
        display: block;
    }

        .chip-content span i {
            font-size: 10px;
            top: 0;
            position: relative;
            margin-right: 2px;
            text-align: center;
            width: 10px;
        }

    .chip-content .status {
        width: auto;
    }

        .chip-content .status .chip {
            font-size: 10px;
            line-height: 13px;
            padding: 1px 3px;
        }

.small-chip .chip {
    height: 26px;
    line-height: 26px;
}

    .small-chip .chip .img-over {
        height: 26px;
        width: 26px;
    }

.dropdown-chip {
    position: relative;
}

    .dropdown-chip.chip-small {
        width: auto;
        padding: 0 5px 5px 0 !important;
        height: auto;
    }

        .dropdown-chip.chip-small.mn.pn {
            padding: 0 !important;
            margin: 0 !important;
        }

    .dropdown-chip:hover .chip-content {
        display: block;
    }

.chip-notification .dropdown-chip {
    position: relative;
    width: auto;
    min-width: 0 !important;
}

    .chip-notification .dropdown-chip .chip-content {
        top: 40px;
    }

.chip-notification.label-chip .chip {
    display: inline-block;
    padding: .5125rem .375rem;
    font-size: 85%;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .325rem;
    height: auto;
}

    .chip-notification.label-chip .chip .img-over {
        display: none;
    }

    .chip-notification.label-chip .chip > a {
        color: #fff;
    }

.user-company.ib {
    vertical-align: bottom;
}

.customer-info ul li {
    width: auto;
    display: inline-block;
    padding: 2px 0;
    font-size: 11px;
    font-weight: 600;
}

    .customer-info ul li i {
        font-size: 10px;
        width: 10px;
        text-align: center;
        margin-right: 1px;
        position: relative;
    }

#contacts .sort-row {
    display: none;
}

.admin-form .append-picker-icon.append-copy button {
    border: none;
    top: -12px;
}

    .admin-form .append-picker-icon.append-copy button i {
        font-size: 20px;
        position: relative;
        top: 3px;
    }

.content-card .option input[type=radio] {
    position: relative;
    opacity: 1;
    left: 0;
    width: 16px;
    height: 16px;
    display: block;
    margin: 0 auto !important;
}

.content-card .option span.radio {
    display: none;
    opacity: 0;
}

.content-card label {
    position: relative;
}

    .content-card label button.ui-datepicker-trigger {
        position: absolute;
        left: 0;
        top: 0;
    }

.profile-radio-field label.option {
    display: inline-block;
    margin: 0 5px;
    text-align: center;
    font-size: 10px;
    vertical-align: top;
}

.subscription-price {
    font-size: 18px;
    text-transform: uppercase;
}

    .subscription-price span {
        display: block;
    }

    .subscription-price .subscription-desc {
        font-size: 14px;
        text-transform: none;
    }

.price-switcher {
    text-align: center;
    max-width: 370px;
    min-width: 300px;
    position: relative;
    margin: 0 auto;
}

    .price-switcher .border-left {
        border-color: rgba(0, 0, 0, .08);
        border-left: 1px solid;
    }

    .price-switcher .border-right {
        border-color: rgba(0, 0, 0, .08);
        border-right: 1px solid;
    }

    .price-switcher .price-switcher-item {
        color: #3b444f;
        margin: 0;
        padding: 0;
        vertical-align: top;
        float: left;
        width: 50%;
        cursor: pointer;
        border-color: rgba(0, 0, 0, .08) !important;
        border-top: 1px solid;
        border-bottom: 1px solid;
        position: relative;
        box-sizing: border-box;
    }

        .price-switcher .price-switcher-item.active {
            background-color: #707ac0 !important;
            color: #fff !important;
            border: 1px solid transparent !important;
        }

        .price-switcher .price-switcher-item span {
            display: inline-block;
            padding: 16px 0;
            line-height: 2;
            letter-spacing: .7px;
            font-size: 10px;
            text-transform: uppercase;
        }

        .price-switcher .price-switcher-item .rebate-msg {
            display: inline-block;
            width: 70px;
            background-color: #fbfbfb;
            color: #707ac0;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: .7px;
            position: absolute;
            bottom: -7px;
            left: 0;
            right: 0;
            margin: 0 auto;
        }

    .price-switcher .subscription-number h2 {
        display: inline-block;
        line-height: 2;
        letter-spacing: .7px;
        font-size: 10px;
        text-transform: uppercase;
        margin: 25px 0 0;
        padding: 0;
    }

li.title-wrap.strike-through {
    text-decoration: line-through !important;
    color: #7d8993;
    font-weight: 300;
}

.overflow-x-auto {
    overflow-x: auto !important;
}

.align-stretch {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: stretch !important;
    align-items: stretch !important;
}

.justify-start {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start !important;
    justify-content: flex-start !important;
}

.board-wrapper {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    word-break: break-word;
    overflow: visible;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    width: 100%
}

.board-block {
    display: block;
    width: 100%;
    position: relative;
    min-height: 50px;
}

.board-container {
    position: relative;
}

.no-shrink {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-shrink: 0 !important;
    flex-shrink: 0 !important;
}

.board-content {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-flex-shrink: 1;
    flex-shrink: 1;
}

.justify-between {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between !important;
    justify-content: space-between !important;
}

.flex-column {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column !important;
    flex-direction: column !important;
}

.board-column {
    width: 265px;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

    .board-column:hover .board-column-list-item-new {
        opacity: 1;
    }

.board-card {
    background: #fff;
    border-radius: 0;
}

    .board-card .card-content {
        padding: 12px 8px 12px 12px;
        border-left-width: 4px;
        border-left-style: solid;
        border-radius: 0;
        border-color: transparent;
    }

        .board-card .card-content.status-green {
            border-left-color: #7cb342;
        }

        .board-card .card-content.status-red {
            border-left-color: red;
        }

        .board-card .card-content.status-yellow {
            border-left-color: #d98216;
        }

    .board-card .chip {
        background: 0 0;
        display: flex;
        align-items: center;
        height: auto;
    }

        .board-card .chip .img-over {
            min-width: 32px;
        }

        .board-card .chip span {
            display: block;
            font-size: 11px;
            font-weight: 400;
        }

.board-header {
    padding: 6px 9px;
}

.board-column .board-column-inner {
    -webkit-flex-grow: 1;
    flex-grow: 1;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    position: relative;
}

.board-column-list {
    margin: 0;
    -webkit-flex-grow: 1;
    flex-grow: 1;
}

.board-column-list-item {
    padding: 0 5px 0 0;
}

.board-column-list-item-new {
    padding: 0 10px;
}

    .board-column-list-item-new .add-new-card {
        display: flex;
        position: relative;
        width: 100%;
        height: 65px;
        text-align: center;
        vertical-align: middle;
        border: 1px dashed grey;
        color: grey;
        align-items: center;
        justify-content: center;
    }

        .board-column-list-item-new .add-new-card .new-deal {
            display: block;
        }

.board-column-list-item .card .card-content p {
    font-size: 11px;
}

.probability-color-20 {
    background-color: #d6d6d6;
}

    .probability-color-20.active {
        background-color: #b7bcdf;
    }

.probability-color-40 {
    background-color: #d6d6d6;
}

    .probability-color-40.active {
        background-color: #a9afd9;
    }

.probability-color-60 {
    background-color: #d6d6d6;
}

    .probability-color-60.active {
        background-color: #9aa1d2;
    }

.probability-color-80 {
    background-color: #d6d6d6;
}

    .probability-color-80.active {
        background-color: #8c94cc;
    }

.probability-color-100 {
    background-color: #d6d6d6;
}

    .probability-color-100.active {
        background-color: #707ac0;
    }

.probability-color-empty {
    background-color: #d6d6d6;
}

.probability-bar {
    height: 4px;
    transition: background-color 250ms ease;
    border-radius: 12px;
    margin-right: 4px;
}

.bar-spreads {
    -webkit-flex-shrink: 100000;
    flex-shrink: 100000;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    white-space: normal;
}

.board-dropdown-button {
    position: absolute;
    right: 5px;
    top: 5px;
}

    .board-dropdown-button i {
        font-size: 17px;
    }

.board-dropdown-content {
    min-width: 195px;
}

    .board-dropdown-content li > a {
        padding: 4px 9px;
        font-size: 13px;
    }

        .board-dropdown-content li > a i {
            font-size: 14px;
            top: 2px;
            position: relative;
        }

    .board-dropdown-content li a span {
        display: block;
        font-size: 12px;
        line-height: 15px;
    }

span.badge.time-badge {
    position: relative;
    right: auto;
    top: 4px;
    font-size: 10px;
    padding: 2px 6px;
    line-height: 20px;
}

    span.badge.time-badge i {
        font-size: 12px;
        top: 2px;
        left: 0;
        position: relative;
        margin-right: 3px;
    }

.appointment-icon {
    position: absolute;
    right: 10px;
    bottom: 2px;
    cursor: pointer;
}

    .appointment-icon i {
        font-size: 14px;
    }

.sidebar-block ul li {
    border-bottom: 1px solid rgba(0, 0, 0, .13);
}

.sidebar-block ul.tray-nav li a {
    padding: 11px 15px;
}

    .sidebar-block ul.tray-nav, .sidebar-block ul.tray-nav li a:hover {
        background: #fff;
    }

.sidebar-block .row {
    padding: 0;
}

.sidebar-block .title {
    font-weight: 700;
    display: block;
}

.bg-system, .sidebar-block {
    position: relative;
}

    .sidebar-block .img-over {
        width: 40px;
        height: 40px;
        border-radius: 100%;
        margin: 0;
        background: #bdbdbd;
    }

        .sidebar-block .img-over img {
            object-fit: contain;
            object-position: center;
            width: 40px;
            height: 100%;
            margin: 0;
        }

.custom-expand {
    position: absolute;
    left: 0;
    opacity: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
    padding: 6px 3px;
    border: 1px solid rgba(0, 0, 0, .1);
    border-right: 0;
    background: #fff;
    transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    transition: all 500ms ease;
}

    .custom-expand a {
        color: #ccc;
    }

    .custom-expand > a > i {
        font-size: 15px;
        position: relative;
        top: 2px;
    }

.sidebar-block:hover .custom-expand {
    left: -25px;
    opacity: 1;
}

.sidebar-right-border {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 3px;
    height: 100%;
    display: block;
    background: #707ac0;
    opacity: 0;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    transition: all 500ms ease;
}

.sidebar-block.active .sidebar-right-border {
    opacity: 1;
}

.double-icon {
    width: 18px;
    display: block;
}

    .double-icon i {
        width: 6px;
    }

.preview-dropdown-button {
    position: absolute;
    right: 15px;
    top: 23px;
}

    .preview-dropdown-button i {
        color: #fff;
        font-size: 16px;
    }

.user-company {
    display: block;
    font-size: 11px;
}

    .user-company a {
        color: #fff;
    }

    .user-company i {
        font-size: 15px;
        top: 2px;
        position: relative;
    }

.chip.chip-image {
    background: 0 0;
    border-radius: 0;
    margin: 0 5px;
    padding: 0;
}

.quote-id i {
    font-size: 14px;
    position: relative;
    top: 2px;
}

.auto-width {
    width: auto;
}

.fs10 i {
    font-size: 13px;
    position: relative;
    top: 2px;
}

.sidebar-deal-status i {
    font-size: 13px;
    position: relative;
    top: 2px;
}

.strong {
    font-weight: 700;
}

.update-info {
    position: absolute;
    top: 2px;
    right: 15px;
    font-size: 10px;
}

.chip-small {
    font-size: 11px;
    height: 20px;
    line-height: 20px;
    width: 100%;
    margin: 0 0 5px !important;
}

    .chip-small img {
        width: 20px;
        height: 20px;
        font-size: 13px;
        float: none;
        margin: 0 5px 0 0;
    }

.board-column-list-item-new {
    opacity: 0;
}

@media only screen and (min-width:993px) {
    .board-column.col.width-1 {
        width: 100% !important;
    }

    .board-column.col.width-2 {
        width: 50% !important;
    }

    .board-column.col.width-3 {
        width: 33% !important;
    }

    .board-column.col.width-4 {
        width: 25% !important;
    }

    .board-column.col.width-5 {
        width: 20% !important;
    }
}

.chip-member {
    right: 5px;
    position: absolute;
    bottom: 5px;
    max-width: 24px;
}

    .chip-member .img-over {
        width: 24px !important;
        margin: 0;
        min-width: 24px !important;
        height: 24px;
    }

.group-members {
    padding-top: 10px;
    margin: 0;
    padding-left: 0;
    position: relative;
}

    .group-members ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }

        .group-members ul li {
            margin-right: 5px;
            display: inline-block;
            margin-bottom: 10px;
            position: relative;
        }

            .group-members ul li a {
                display: block;
            }

            .group-members ul li .small-avatar {
                height: 26px;
                width: 26px;
                border-radius: 100%;
                object-fit: cover;
                -o-object-fit: cover;
            }

            .group-members ul li.admin::after {
                display: block;
                position: absolute;
                top: -2px;
                right: -2px;
                background: #707ac0;
                content: "";
                width: 9px;
                height: 9px;
                border-radius: 100%;
                border: 1px solid #fff;
            }

            .group-members ul li.admin a {
                width: 32px;
                height: 32px;
            }

            .group-members ul li.admin .small-avatar {
                height: 32px;
                width: 32px;
                border-radius: 100%;
                object-fit: cover;
                -o-object-fit: cover;
            }

.group-box-meta {
    position: relative;
    padding-top: 15px;
}

    .group-box-meta ul {
        padding: 0;
        margin: 0;
    }

        .group-box-meta ul li {
            float: left;
            list-style: none;
            padding: 0 7px;
            font-weight: 700;
            font-size: 11px;
            position: relative;
            margin-right: 7px;
        }

            .group-box-meta ul li i {
                font-size: 22px;
                color: #e4e4e4;
            }

            .group-box-meta ul li span {
                position: absolute;
                top: -7px;
                right: -5px;
                background-color: rgba(0, 0, 0, .7);
                color: #fff;
                font-size: 9px;
                padding: 2px 4px;
                border-radius: 2px;
                line-height: 10px;
            }

.group-box {
    padding: 30px;
    position: relative;
}

    .group-box .image-container.group-image {
        margin: 0 auto;
        overflow: hidden;
    }

        .group-box .image-container.group-image .entry-img {
            height: 100%
        }

            .group-box .image-container.group-image .entry-img img {
                height: 200px;
                min-height: 0;
                width: 200px;
                border-radius: 100%;
                object-fit: cover;
                -o-object-fit: cover;
                margin: 0 auto;
                position: relative;
                display: block;
            }

    .group-box .group-meta {
        display: table;
        table-layout: fixed;
        align-items: center;
        width: 100%;
        padding: 0 !important;
    }

        .group-box .group-meta li {
            display: table-cell;
            width: 34%;
            font-weight: 700;
            border: none;
            line-height: inherit;
            font-size: 14px;
        }

            .group-box .group-meta li span {
                display: block;
                color: #707ac0;
            }

.group-member-box {
    padding: 10px;
    float: left;
    width: 100%
}

    .group-member-box .members-list {
        position: relative;
        padding: 0;
        margin: 0;
    }

        .group-member-box .members-list li {
            float: left;
            border-bottom: 1px solid #eee;
            padding: 12px 0;
            width: 100%
        }

            .group-member-box .members-list li a {
                border: none;
                width: 100%;
                float: left;
            }

                .group-member-box .members-list li a img {
                    width: 60px;
                    height: 60px;
                    border-radius: 100%;
                    -o-object-fit: cover;
                    object-fit: cover;
                    float: left;
                    margin-left: 10px;
                }

                .group-member-box .members-list li a span {
                    position: relative;
                    margin-left: 10px;
                    float: left;
                    font-size: 1.2em;
                    margin-top: 15px;
                    font-weight: lighter;
                }

                .group-member-box .members-list li a:hover {
                    background: 0 0 !important;
                    border-left: 0;
                    color: inherit !important;
                }

            .group-member-box .members-list li:hover {
                cursor: pointer;
                background: #eee;
            }

.pricing-tables {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
}

    .pricing-tables .price-item {
        width: 370px;
        text-align: left;
        box-sizing: border-box;
        position: relative;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-pack: justify;
        justify-content: space-between;
        border-right: 1px solid #eee;
    }

        .pricing-tables .price-item:last-child {
            border-right: 0;
        }

        .pricing-tables .price-item h2 {
            font-size: 16px;
            letter-spacing: 4px;
            line-height: 1.63;
            text-align: left;
            margin: 0 0 21px;
            text-transform: uppercase;
        }

        .pricing-tables .price-item .price-item-price {
            position: relative;
        }

            .pricing-tables .price-item .price-item-price .price-annual, .pricing-tables .price-item .price-item-price .price-monthly {
                font-size: 86px;
                display: inline-block;
                position: relative;
                letter-spacing: -5px;
                font-weight: lighter;
                line-height: 1;
            }

                .pricing-tables .price-item .price-item-price .price-annual .currency-symbol, .pricing-tables .price-item .price-item-price .price-annual i, .pricing-tables .price-item .price-item-price .price-monthly .currency-symbol, .pricing-tables .price-item .price-item-price .price-monthly i {
                    display: inline-block;
                    position: relative;
                    top: 50%;
                    transform: translateY(-50%);
                    font-size: 28px;
                    letter-spacing: 1px;
                }

            .pricing-tables .price-item .price-item-price .description {
                padding-bottom: 20px;
            }

                .pricing-tables .price-item .price-item-price .description > div {
                    font-size: 16px;
                    line-height: 24px;
                    letter-spacing: .5px;
                    text-transform: lowercase;
                }

            .pricing-tables .price-item .price-item-price:after {
                content: "";
                width: 100%;
                height: 1px;
                display: block;
                background: #eee;
            }

        .pricing-tables .price-item .price-description {
            margin-top: 0;
            padding-top: 30px;
            position: relative;
        }

            .pricing-tables .price-item .price-description .price-list li {
                font-size: 14px;
                margin: 0;
                padding-right: 20px;
                line-height: 2.14;
                letter-spacing: 0;
                position: relative;
            }

                .pricing-tables .price-item .price-description .price-list li i {
                    font-size: 15px;
                    position: relative;
                    top: 2px;
                    margin-right: 10px;
                    color: #000;
                }

                .pricing-tables .price-item .price-description .price-list li .price-info {
                    position: absolute !important;
                    right: 0;
                    cursor: pointer;
                }

                    .pricing-tables .price-item .price-description .price-list li .price-info i {
                        color: #cac7c7;
                    }

.total-subscription {
    padding-top: 40px;
}

.content-card .radio-custom-button {
    position: relative;
    width: 200px;
    display: block;
    height: 45px;
    margin: 0 auto;
    text-align: center;
}

    .content-card .radio-custom-button input {
        display: block !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
    }

        .content-card .radio-custom-button input[type=radio] {
            opacity: .01 !important;
            z-index: 100;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }

            .content-card .radio-custom-button input[type=radio]:hover + label {
                background: #707ac0;
                color: #fff;
                border: 1px solid;
            }

            .content-card .radio-custom-button .Checked + label, .content-card .radio-custom-button input[type=radio]:checked + label {
                background: #707ac0;
                color: #fff;
                border: 1px solid;
            }

    .content-card .radio-custom-button label {
        padding: 5px;
        width: 100%;
        height: 100%;
        border: 1px solid #cac7c7;
        cursor: pointer;
        z-index: 90;
        font-size: 14px;
        line-height: 33px;
        text-transform: uppercase;
    }

        .content-card .radio-custom-button label:hover {
            background: #707ac0;
            color: #fff;
            border: 1px solid;
        }

        .content-card .radio-custom-button label:after, .content-card .radio-custom-button label:before {
            content: none;
        }

.account-settings {
    height: 200px;
    background: #282c37;
    padding: 15px 15px 0 15px;
    position: relative;
}

.account-settings ul,
.account-settings ul li {
    margin: 0;
    padding: 0;
    line-height: normal;
    list-style-type: none;
}

.account-settings > ul > li {
    font-size: 15px;
}

.account-settings ul li a {
    color: #9a9dad;
}

.account-settings .user-panel {
    text-align: center;
    margin-top: 40px;
}

.account-settings .user-panel a {
    text-decoration: none;
}

.account-settings .user-panel img {
    width: 100%;
    max-width: 60px;
    margin-bottom: 15px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.account-settings .user-panel .username {
    font-size: 15px;
    color: #9a9dad;
}

.account-settings .user-panel a:hover .username {
    color: #fff;
}

body.sb-l-m .account-settings > ul > li {
    float: none !important;
    text-align: center;
    margin-bottom: 20px;
    font-size: 18px;
}

body.sb-l-m .account-settings {
    margin-bottom: -10px;
    padding: 25px 10px 0 10px;
}

body.sb-l-m .account-settings .user-panel img {
    margin: 0;
}

body.sb-l-m .account-settings .user-panel .username {
    display: none;
    }
.fixed-button {
    position: fixed;
    right: 127px;
    bottom: 36px;
    margin-bottom: 0;
    z-index: 999;
}

.product-switch {
    display: flex;
}

.section-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.box-grid {
    display: flex;
    flex-direction: column;
    align-items: start;
}

    .box-grid span {
        font-weight: bold
    }

.inline-block {
    display: inline-block
}

.flex-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

button.show-extra {
    background: none;
    font-size: 12px !important;
    border: none;
    float: right;
    font-weight: bold !important;
}

.domain-extra {
    margin-right: 15px;
}

    .domain-extra:last-child {
        margin-right: 0px;
    }

.media-icons {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.justify-between {
    justify-content: space-between
}
.media-icons-single img {
    width: 20px;
    opacity: 0.3
}

    .media-icons-single img.active {
        opacity: 1
    }
.media-icons-single{
    position:relative;
}
    .media-icons-single span.niche-multi {
        font-size: 7px;
        background: #d3dff2;
        border-radius: 10px;
        color: #438be3;
        position: absolute;
        top: -7px;
        z-index:9;
        right: -10px;
        width: 20px;
        line-height: 1;
        padding: 3px 2px;
        text-align: center;
}