@charset "UTF-8";
/*===============================================
  Animate.css Helpers
================================================= */
/* used in conjuction with "data-animate"
 * attr to create a delayed page animation
 * read docs for more info on proper use*/

.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: 0.6s !important;
    animation-duration: 0.6s !important;
}
.animated.animated-shorter {
    -webkit-animation-duration: 0.3s !important;
    animation-duration: 0.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;
}
/*===============================================
  Animate.css Library
=================================================
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2014 Daniel Eden
*/

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}
/*===============================================
  Animate.css "Fades" Pack
================================================*/
/* FADE ENTRANCES
 * fadeIn
 */

@-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;
}
/* fadeInDown */

@-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;
}
/* fadeInLeft */

@-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;
}
/* fadeInRight */

@-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;
}
/* fadeInUp */

@-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;
}
/* fadeOut */
@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}
/*===============================================
  Animate.css "Flips" Pack
================================================*/
/* FLIPPING ENTRANCES
 * flip
 */

@-webkit-keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    80% {
        -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}
@keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    80% {
        -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}
.animated.flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip;
}
/* flipInX */

@-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;
}
/* flipInY */

@-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;
}
/*===============================================
  Animate.css "Slides" Pack
================================================*/
/* SLIDES ENTRANCES
 * slideInDown
 */

@-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;
}
/* slideInLeft */

@-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;
}
/* slideInRight */

@-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;
}
/* slideInUp */

@-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;
}
/*===============================================
  Animate.css "Zooms" Pack
================================================*/
/* ZOOMS ENTRANCES
 * zoomIn
 */

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
        opacity: 1;
    }
}
@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
        opacity: 1;
    }
}
.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}
/* zoomInDown */

@-webkit-keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
@keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.zoomInDown {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown;
}
/* zoomInLeft */

@-webkit-keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
@keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.zoomInLeft {
    -webkit-animation-name: zoomInLeft;
    animation-name: zoomInLeft;
}
/* zoomInRight */

@-webkit-keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
@keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.zoomInRight {
    -webkit-animation-name: zoomInRight;
    animation-name: zoomInRight;
}
/* zoomInUp */

@-webkit-keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
@keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.zoomInUp {
    -webkit-animation-name: zoomInUp;
    animation-name: zoomInUp;
}
@keyframes infiny-mascot-float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(3%);
    }
}

/*===============================================
  Glyphicons for Bootstrap
=================================================
 *  http://getbootstrap.com/components/
 *  Creative Commons Attribution 3.0
*/
/* Load font library */

@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');
}
/*Catchall baseclass*/

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

.glyphicon-asterisk:before {
    content: "\2a";
}
.glyphicon-plus:before {
    content: "\2b";
}
.glyphicon-euro:before,
.glyphicon-eur: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 Awesome Icon Library
=================================================
 *  Font Awesome 4.3.0 by @davegandy
 *  http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license
*/
/* Load font library */
/*@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: normal;*/
/*font-style: normal;*/
/*}*/
/*/!* font base class *!/*/
/*.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);*/
/*}*/
/*/!* makes the font 33% larger relative to the icon container *!/*/
/*.fa-lg {*/
/*font-size: 1.33333333em;*/
/*line-height: 0.75em;*/
/*vertical-align: -15%;*/
/*}*/
/*.fa-2x {*/
/*font-size: 2em;*/
/*}*/
/*.fa-3x {*/
/*font-size: 3em;*/
/*}*/
/*.fa-4x {*/
/*font-size: 4em;*/
/*}*/
/*.fa-5x {*/
/*font-size: 5em;*/
/*}*/
/*.fa-fw {*/
/*width: 1.28571429em;*/
/*text-align: center;*/
/*}*/
/*.fa-ul {*/
/*padding-left: 0;*/
/*margin-left: 2.14285714em;*/
/*list-style-type: none;*/
/*}*/
/*.fa-ul > li {*/
/*position: relative;*/
/*}*/
/*.fa-li {*/
/*position: absolute;*/
/*left: -2.14285714em;*/
/*width: 2.14285714em;*/
/*top: 0.14285714em;*/
/*text-align: center;*/
/*}*/
/*.fa-li.fa-lg {*/
/*left: -1.85714286em;*/
/*}*/
/*.fa-border {*/
/*padding: .2em .25em .15em;*/
/*border: solid 0.08em #eeeeee;*/
/*border-radius: .1em;*/
/*}*/
/*.pull-right {*/
/*float: right;*/
/*}*/
/*.pull-left {*/
/*float: left;*/
/*}*/
/*.fa.pull-left {*/
/*margin-right: .3em;*/
/*}*/
/*.fa.pull-right {*/
/*margin-left: .3em;*/
/*}*/
/*.fa-spin {*/
/*-webkit-animation: fa-spin 2s infinite linear;*/
/*animation: fa-spin 2s infinite linear;*/
/*}*/
/*.fa-pulse {*/
/*-webkit-animation: fa-spin 1s infinite steps(8);*/
/*animation: fa-spin 1s infinite steps(8);*/
/*}*/
/*@-webkit-keyframes fa-spin {*/
/*0% {*/
/*-webkit-transform: rotate(0deg);*/
/*transform: rotate(0deg);*/
/*}*/
/*100% {*/
/*-webkit-transform: rotate(359deg);*/
/*transform: rotate(359deg);*/
/*}*/
/*}*/
/*@keyframes fa-spin {*/
/*0% {*/
/*-webkit-transform: rotate(0deg);*/
/*transform: rotate(0deg);*/
/*}*/
/*100% {*/
/*-webkit-transform: rotate(359deg);*/
/*transform: rotate(359deg);*/
/*}*/
/*}*/
/*.fa-rotate-90 {*/
/*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-rotate-90,*/
/*:root .fa-rotate-180,*/
/*:root .fa-rotate-270,*/
/*:root .fa-flip-horizontal,*/
/*:root .fa-flip-vertical {*/
/*filter: none;*/
/*}*/
/*.fa-stack {*/
/*position: relative;*/
/*display: inline-block;*/
/*width: 2em;*/
/*height: 2em;*/
/*line-height: 2em;*/
/*vertical-align: middle;*/
/*}*/
/*.fa-stack-1x,*/
/*.fa-stack-2x {*/
/*position: absolute;*/
/*left: 0;*/
/*width: 100%;*/
/*text-align: center;*/
/*}*/
/*.fa-stack-1x {*/
/*line-height: inherit;*/
/*}*/
/*.fa-stack-2x {*/
/*font-size: 2em;*/
/*}*/
/*.fa-inverse {*/
/*color: #ffffff;*/
/*}*/

@font-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: normal;
    font-style: normal;
}
.stateface {
    font-family: 'StateFaceRegular';
    display: inline-block;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */

    -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";
}
/* ===============================================
  Circle Graphs
================================================= */

.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;
}
/*===============================================
  CKEditor
================================================= */

.admin-skin.cke_chrome {
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    border-radius: 2px;
    background: #fafafa;
    border-color: #e7e7e7;
}
.admin-skin .cke_top {
    background: #fafafa;
    border: 1px solid #e7e7e7;
    padding: 8px 10px 4px;
}
.admin-skin .cke_toolgroup,
.admin-skin .cke_combo_button {
    margin-right: 10px;
    box-shadow: none;
    background: #FFF;
    border-radius: 1px;
    border-color: #DDD;
}
.admin-skin .cke_contents {
    border-radius: 0;
    border-color: #e7e7e7;
}
.admin-skin .cke_top + .cke_contents,
.admin-skin .cke_contents + .cke_bottom {
    border-top: 0;
}
.admin-skin .cke_bottom {
    background: none;
    padding: 6px 4px;
    border: 1px solid #e7e7e7;
}
.admin-skin .cke_resizer {
    margin-top: 6px;
    margin-right: 4px;
    border-right-color: #999;
}
.cke_editable_inline.cke_show_borders:focus {
    outline-width: 2px;
    outline-style: dashed;
    outline-offset: 6px;
    outline-color: #f6bb42;
    background: #f2f2f2;
}
.cke-hide-bottom .cke_bottom {
    display: none;
}
.cke_toolbar_break {
    clear: none !important;
    display: block !important;
}
/* ==================================================
  Countdown
 ==================================================== */

#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: 0px 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, 0.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%;
}
/*===============================================
  DataTables
================================================= */
/* DataTable */

.dataTables_wrapper {
    min-height: 180px;
}

table.dataTable {
    margin: 0 !important;
}
/* Table Row Changes */

table.dataTable tr.odd {
    background-color: #fff;
}
/* Table Header Changes */

table.dataTable thead th {
    background: #fff;
    padding: 10px;
}
/* Table Footer Changes */

table.dataTable tfoot th {
    border-top: 1px solid #ddd;
    padding: 4px 18px 4px 10px;
    font-weight: 600;
    background: #f2f2f2;
}
/* DataTable panel-menu, commonly holds filters */

.dt-panelmenu {
    padding: 10px 14px;
    background: #f8f8f8;
    border-bottom: 1px solid #e5e5e5;
}
/* DataTable panel-footer, commonly holds paginator */

.dt-panelfooter {
    padding: 6px 14px;
    background: #f8f8f8;
    border-top: 1px solid #e5e5e5;
}
/* DataTable Length */

.dataTables_length {
    float: left;
}
.dataTables_length select {
    margin: 0 5px;
}
.dataTables_length .select2-container {
    display: inline-block;
}
/* DataTable Filter */

.dataTables_filter {
    float: right;
}
.dataTables_length label,
.dataTables_filter label {
    margin: 0;
    line-height: 38px;
}
.dataTables_length select.input-sm,
.dataTables_filter .input-sm,
.dataTables_filter .form-horizontal .form-group-sm .form-control {
    height: 38px;
    line-height: 38px;
}
/* DataTable Search bar */

table.dataTable .form-control {
    width: 100%;
}
/* DataTable Footer Elements */

div.dataTables_info {
    float: left;
    padding-top: 12px;
}
div.dataTables_paginate {
    margin-top: 5px;
}
/* Filter Returned No results Pane */

table.dataTable td.dataTables_empty {
    padding: 50px !important;
    background: #f6f6f6 !important;
}
/* Datatables abc filter */

.dt-abc-filter {
    padding: 4px 0;
}
.dt-abc-filter span {
    cursor: pointer;
    padding: 0 9px;
    font-size: 12px;
    font-weight: 600;
    color: #4a89dc;
    display: inline-block;
}
.dt-abc-filter .abc-label {
    color: #999;
    padding: 0 3px;
}
/* Contextual Row Filter Example */

table.dataTable tr.row-label td {
    background: #f6f6f6;
    color: #333;
    font-weight: 600;
    cursor: pointer;
}
/*
 * Table Selected/Active Row
 */

.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;
}
/*
 * DataTable Modals
 *
 */

.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:before,
.DTE .DTE_Body:after {
    content: " ";
    display: table;
}
.DTE .DTE_Body:after {
    clear: both;
}
.DTE .DTE_Body:before,
.DTE .DTE_Body:after {
    content: " ";
    display: table;
}
.DTE .DTE_Body:after {
    clear: both;
}
/*
 * DataTables Editor Addon - Checkbox
 */

.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";
    /* fa-square-o */

    font-family: FontAwesome;
    color: #BBB;
}
.fchild-checkbox.dataTable tr.active td:first-child:before {
    content: "\f046";
    /* fa-check-square-o */

    color: #555;
}
.fchild-checkbox.dataTable tr td.dataTables_empty:first-child:before {
    content: "";
}
div.DTE_Inline div.DTE_Field input {
    background-color: #FFFEF0;
}
/*
 * PRINTING
 * Print display styles
 */

.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: #ffffff;
    /* Old browsers */

    background: -webkit-linear-gradient(top, #ffffff 0%, #f3f3f3 89%, #f9f9f9 100%);
    /* Chrome10+,Safari5.1+ */

    background: -moz-linear-gradient(top, #ffffff 0%, #f3f3f3 89%, #f9f9f9 100%);
    /* FF3.6+ */

    background: -ms-linear-gradient(top, #ffffff 0%, #f3f3f3 89%, #f9f9f9 100%);
    /* IE10+ */

    background: -o-linear-gradient(top, #ffffff 0%, #f3f3f3 89%, #f9f9f9 100%);
    /* Opera 11.10+ */

    background: linear-gradient(top, #ffffff 0%, #f3f3f3 89%, #f9f9f9 100%);
    /* W3C */
    /* IE6-9 */

    opacity: 0.95;
    border: 1px solid black;
    border: 1px solid rgba(0, 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, 0.5);
    -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
    -ms-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
    -o-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
}
.DTTT_print_info h6 {
    font-weight: normal;
    font-size: 28px;
    line-height: 28px;
    margin: 1em;
}
.DTTT_print_info p {
    font-size: 14px;
    line-height: 20px;
}
/*
 * DataTables Loading
 */
div.dataTables_processing {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0;
    height: 100%;
    background: rgba(255,255,255,0.6);
    z-index: 1;
}
div.dataTables_processing .processing {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/*===============================================
  Dropzone
================================================= */

.dropzone {
    min-height: 200px;
    background: transparent;
    border: 0;
    outline: 0;
    padding: 15px;
}
.dropzone .dz-default.dz-message {
    cursor: pointer;
    background-image: none;
    width: 100%;
    height: 100%;
    top: 23%;
    margin-left: 0px;
    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: #4a89dc;
    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-previews .dz-preview .dz-details,
.dropzone .dz-preview .dz-details img,
.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-previews .dz-preview.dz-error .dz-error-mark,
.dropzone .dz-preview.dz-error .dz-success-mark,
.dropzone-previews .dz-preview.dz-error .dz-success-mark {
    -webkit-transform: scale(0.7);
    transform: scale(0.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;
}
/* Demonstration Purposes ONLY */

.dropzone .dz-preview .dz-error-message,
.dropzone-previews .dz-preview .dz-error-message {
    display: none !important;
}
input[type="file"].dropzone {
    min-height: 0 !important;
}

/* Small Dropzone */

.dropzone.dropzone-horizontal {
    min-height: 130px;
}
.dropzone.dropzone-horizontal .dz-default.dz-message {
    margin: 0;
}
.dropzone.dropzone-horizontal .dz-default.dz-message i.fa {
    display: inline-block;
    margin-right: 30px;
    margin-bottom: 0;
    float: left;
}
.dropzone.dropzone-horizontal .dz-default.dz-message span.main-text,
.dropzone.dropzone-horizontal .dz-default.dz-message span.sub-text {
    display: inline-block;
    text-align: left;
    float: left;
}
.dropzone.dropzone-horizontal .dz-default.dz-message span.main-text {
    margin-top: 16px;
}
/*===============================================
  Expose.js
================================================= */
/* overlay */

.expose-overlay {
    display: none;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
}
/*===============================================
  Bootstrap FileUpload
================================================= */

.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: 0px;
    vertical-align: middle;
    cursor: text;
}
.fileupload .thumbnail {
    cursor: pointer;
    overflow: hidden;
    vertical-align: middle;
    text-align: center;
    padding: 5px;
    outline: 2px dashed #d9d9d9;
    border: 0;
    background: none;
}
.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;
}
/*===============================================
  Flot Charts
================================================= */
/* Shared Flot and Sparkline tooltip */

.jqstooltip,
#flotTip {
    color: #fff;
    width: auto !important;
    height: auto !important;
    padding: 2px 6px !important;
    background-color: rgba(0, 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;
}
/*==================================================
  FullCalendar.JS -  Used on pages-calendar.html
==================================================== */
/* External Events
------------------------------*/

.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:hover,
.fc-event:focus {
    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: #4a89dc;
}
.fc-event-primary .fc-event-icon {
    color: #4a89dc;
}
.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: #967adc;
}
.fc-event-alert .fc-event-icon {
    color: #967adc;
}
.fc-event-system {
    border-left-color: #37bc9b;
}
.fc-event-system .fc-event-icon {
    color: #37bc9b;
}
/* Buttons (styled <button> tags, normalized to work cross-browser)
--------------------------------------------------------------------------------------------------*/

.fc button {
    /* dimensions */

    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    border-color: rgba(0, 0, 0, 0);
    white-space: nowrap;
    padding: 9px 12px;
    font-size: 13px;
    line-height: 1.49;
    border-radius: 0px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #666666;
    background-color: #f0f0f0;
    border-color: rgba(0, 0, 0, 0.1);
    height: auto;
    padding: 6px 12px;
}
.fc button:focus,
.fc button:active:focus,
.fc button.active:focus {
    outline: 0;
    outline-offset: -2px;
}
.fc button:hover,
.fc button:focus {
    color: #666666;
    text-decoration: none;
}
.fc button:active,
.fc button.active {
    outline: 0;
    background-image: none;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.fc button.disabled,
.fc button[disabled],
fieldset[disabled] .fc button {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.65;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
}
.fc button.btn-gradient {
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 0, 0, 0.07) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.18);
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background-repeat: repeat-x;
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.3) 1%, rgba(255, 255, 255, 0.15) 100%);
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 1%, rgba(255, 255, 255, 0.15) 100%);
}
.fc button.btn-rounded {
    border-radius: 20px;
}
.fc button:hover,
.fc button:focus,
.fc button:active,
.fc button.active,
.open > .dropdown-toggle.fc button {
    color: #666666;
    background-color: #eaeaea;
}
.fc button:active,
.fc button.active,
.open > .dropdown-toggle.fc button {
    background-image: none;
}
.fc button.disabled,
.fc button[disabled],
fieldset[disabled] .fc button,
.fc button.disabled:hover,
.fc button[disabled]:hover,
fieldset[disabled] .fc button:hover,
.fc button.disabled:focus,
.fc button[disabled]:focus,
fieldset[disabled] .fc button:focus,
.fc button.disabled:active,
.fc button[disabled]:active,
fieldset[disabled] .fc button:active,
.fc button.disabled.active,
.fc button[disabled].active,
fieldset[disabled] .fc button.active {
    background-color: #f0f0f0;
    border-color: #dddddd;
}
.fc button .badge {
    color: #f0f0f0;
    background-color: #666666;
}
.fc button.btn-gradient {
    text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.4);
    border-color: rgba(0, 0, 0, 0.07) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.09);
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.9) 10%, rgba(255, 255, 255, 0.3) 100%);
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 10%, rgba(255, 255, 255, 0.3) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#80ffffff', endColorstr='#00ffffff', GradientType=0);
}
.fc button.light {
    background-color: #FAFAFA;
}
.fc button.light:hover,
.fc button.light:focus,
.fc button.light:active,
.fc button.light.active,
.open > .dropdown-toggle.fc button.light {
    background-color: #ececec;
}
.fc button.dark {
    background-color: #e8e8e8;
}
.fc button.dark:hover,
.fc button.dark:focus,
.fc button.dark:active,
.fc button.dark.active,
.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;
}
/* icons in buttons */

.fc button .fc-icon {
    position: relative;
    margin: 0 .1em;
}
/*  button states
*/

.fc-state-default {
    background-color: #f5f5f5;
    background-image: none;
    border-color: #e6e6e6 #e6e6e6 #bfbfbf;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    color: #333;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.fc-state-hover,
.fc-state-down,
.fc-state-active,
.fc-state-disabled {
    color: #333333;
    background-color: #e6e6e6;
}
.fc-state-hover {
    color: #333333;
    text-decoration: none;
}
.fc-state-down,
.fc-state-active {
    background-color: #cccccc;
    background-image: none;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.07), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.fc-state-disabled {
    cursor: default;
    background-image: none;
    opacity: 0.65;
    filter: alpha(opacity=65);
    box-shadow: none;
}
.fc-toolbar .fc-state-active,
.fc-toolbar .ui-state-active {
    z-index: 1;
}
#notification-list a.btn {
    box-shadow: none;
}

#notification-list .dropdown-header {
    padding: 10px 5px;
    background-color: #f8f8f8;
}

#notification-list .col-md-6 {
    padding-left: 5px !important;
    padding-right: 5px !important;
}

/* Buttons Groups
--------------------------------------------------------------------------------------------------*/

.fc-button-group {
    display: inline-block;
}
/*
every button that is not first in a button group should scootch over one pixel and cover the
previous button's border...
*/

.fc .fc-button-group > * {
    /* extra precedence b/c buttons have margin set to zero */

    float: left;
    margin: 0 0 0 -1px;
}
.fc .fc-button-group >:first-child {
    /* same */

    margin-left: 0;
}
/* Background
--------------------------------------------------------------------------------------------------*/

.fc-bg {
    background-color: #fefefe;
}
.fc-bg .fc-today {
    background-color: #FFFEF8;
}
.fc-bg .fc-other-month {
    background-color: #f8f8f8;
}
/* Text
--------------------------------------------------------------------------------------------------*/

.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;
}
/* Minimal Style. Requires '.minimal-mp' parent class - Used on Calendar Page
--------------------------------------------------------------------------------------------------*/

.minimal-mp .ui-datepicker {
    background: none;
    margin: 0;
    border: 0;
}
.minimal-mp .ui-datepicker-header {
    display: none;
}
.minimal-mp .ui-datepicker td {
    padding: 8px 5px;
}
.minimal-mp .ui-datepicker td span,
.minimal-mp .ui-datepicker td a {
    background: #DDD;
    padding: .50em .20em;
}
/*===============================================
  Gmap
================================================= */
/* Default map height/width */

.map {
    width: 100%;
    height: 400px;
}
/* Inline Map Pagination Styles */

.map .pagination {
    text-shadow: 0 1px #ffffff;
    border-color: #dddddd rgba(0, 0, 0, 0.19) rgba(0, 0, 0, 0.18);
    background-color: #fdfdfd;
    width: 92%;
    margin: 11px;
    -webkit-box-shadow: 0 2px 4px #AAA;
    box-shadow: 0 2px 4px #AAA;
}
.map .pagination .display {
    display: inline-block;
    width: 84%;
    height: 40px;
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
    text-align: center;
    line-height: 40px;
    text-shadow: 0 1px #FFF;
}
.map .pagination .btn {
    width: 8%;
    height: 40px;
    cursor: pointer;
    border-radius: 0;
    vertical-align: top;
    border: 0;
}
.map .pagination .back-btn {
    float: left;
    border-right: 1px solid #ddd;
    background: url("../../../img/plugins/arrow_left_12x12.png") no-repeat 50% 50%;
}
.map .pagination .fwd-btn {
    float: right;
    border-left: 1px solid #ddd;
    background: url("../../../img/plugins/arrow_right_12x12.png") no-repeat 50% 50%;
}
.map .checker {
    margin-right: 8px;
}
/* Map Styling Helper Classes */

.map-shadow {
    -webkit-box-shadow: 0 2px 3px #999;
    box-shadow: 0 2px 3px #999;
}
.map-gradient {
    text-shadow: 0 1px #ffffff;
    border-color: #cccccc rgba(0, 0, 0, 0.19) rgba(0, 0, 0, 0.18);
    background-color: #f0f0f0;
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.1) 100%);
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 10%, rgba(255, 255, 255, 0.1) 100%);
}
.map-rounded {
    border-radius: 4px;
}
/*===============================================
  High Charts
================================================= */
/* Custom Legend */

.legend-item {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 2s;
}
/* Label Text */

.highcharts-container .highcharts-axis-labels text {
    color: #AAA !important;
    fill: #AAA !important;
}
/*===============================================
  jQuery Spinner
================================================= */

.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-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}
.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;
}
/* TR overrides */

.ui-spinner .ui-icon-triangle-1-s {
    /* needed to correct false icon sprite pos */

    background-position: -65px -16px;
}
/*===============================================
  Jvector Maps
================================================= */

.jvectormap-label {
    z-index: 10;
    position: absolute;
    display: none;
    border: solid 1px #CDCDCD;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background: #292929;
    color: white;
    font-family: sans-serif, Verdana;
    font-size: smaller;
    padding: 3px;
}
.jvectormap-zoomin,
.jvectormap-zoomout {
    cursor: pointer;
    position: absolute;
    top: 30px;
    left: auto;
    right: 30px;
    padding: 0;
    width: 40px;
    height: 35px;
    line-height: 35px;
    color: #fff;
    text-align: center;
    font-weight: 400;
    font-size: 22px;
    border-radius: 2px;
    background: rgba(0, 0, 0, 0.5);
}
.jvectormap-zoomout {
    right: 80px;
}
/* used to hide zoom buttons */

.hide-jzoom .jvectormap-zoomin,
.hide-jzoom .jvectormap-zoomout {
    display: none;
}
/* ==================================================
  Magnific Popup
==================================================== */
/* Inline Content Styling (container) */

.modal-basic {
    max-width: 600px;
    margin: 40px auto;
    position: relative;
}
.modal-basic-bg {
    background: white;
    padding: 20px 30px;
    text-align: left;
    max-width: 600px;
    margin: 40px auto;
    position: relative;
}
/* unstyled popup */

.popup-basic {
    position: relative;
    background: #FFF;
    width: auto;
    max-width: 450px;
    margin: 40px auto;
}
/* popup sizes */

.popup-sm {
    max-width: 300px;
}
.popup-lg {
    max-width: 700px;
}
.popup-xl {
    max-width: 1000px;
}
.popup-full {
    max-width: 90%;
}
/* Basic Example */

.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;
}
/*Simple fade transition*/

.mfp-fade.mfp-bg {
    opacity: 0;
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}
.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.8;
}
.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
}
.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}
/*===============================================
  Markitup
================================================= */
/* Container */

.markItUp {
    width: 100%;
    margin: 0;
}
/* Header */

.markItUpHeader {
    min-height: 43px;
    padding: 8px 10px 0px;
    background: #fafafa;
    border: none;
    border-bottom: 1px solid #e7e7e7;
}
.markItUpButton {
    padding: 4px;
    background: #FFF;
    border: 1px solid #DDD;
}
.markItUpButton + .markItUpButton {
    border-left: 0;
}
.markItUpHeader ul .markItUpSeparator {
    height: 25px;
    background-color: #EEE;
}
/* Textarea */

.markItUpEditor {
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    font-size: 13px;
    padding: 10px;
    border: none;
    width: 100%;
    height: 250px;
}
/* Footer */

.markItUpFooter {
    height: 15px;
}
/* preview frame */

.markItUpPreviewFrame {
    margin: 0;
    outline: 0;
    border: 0;
    padding: 5px 8px;
    border-top: 1px solid #e7e7e7;
    background: #fafafa;
}
/* ==================================================
  Mapplic Map Plugin
==================================================== */

@media (max-width: 991px) {
    .mapplic-sidebar {
        display: none;
    }
    .mapplic-container {
        width: 100%;
    }
}
/*===============================================
  Bootstrap Multiselect
================================================= */

.multiselect-container.dropdown-menu,
admin-form .multiselect-container.dropdown-menu {
    position: absolute;
    list-style-type: none;
    padding: 0;
    margin: 0;
    margin-top: 4px;
}
.multiselect-container.dropdown-menu .input-group,
.admin-form .multiselect-container.dropdown-menu .input-group {
    margin: 5px;
}
.multiselect-container.dropdown-menu > li,
.admin-form .multiselect-container.dropdown-menu > li {
    padding: 0;
}
.multiselect-container.dropdown-menu > li > a.multiselect-all label,
.admin-form .multiselect-container.dropdown-menu > li > a.multiselect-all label {
    font-weight: 600;
}
.multiselect-container.dropdown-menu > li.multiselect-group,
.admin-form .multiselect-container.dropdown-menu > li.multiselect-group {
    background: #f3f3f3;
    border-bottom: 1px solid #eaeaea;
}
.multiselect-container.dropdown-menu > li.multiselect-group label,
.admin-form .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,
.admin-form .multiselect-container.dropdown-menu > li.multiselect-group-clickable label {
    cursor: pointer;
}
.multiselect-container.dropdown-menu > li > a,
.admin-form .multiselect-container.dropdown-menu > li > a {
    padding: 0;
}
.multiselect-container.dropdown-menu > li > a > label,
.admin-form .multiselect-container.dropdown-menu > li > a > label {
    margin: 0;
    height: 100%;
    cursor: pointer;
    font-weight: 400;
    padding: 4px 20px 6px 32px;
}
.multiselect-container.dropdown-menu > li > a > label.radio,
.multiselect-container.dropdown-menu > li > a > label.checkbox,
.admin-form .multiselect-container.dropdown-menu > li > a > label.radio,
.admin-form .multiselect-container.dropdown-menu > li > a > label.checkbox {
    margin: 0;
}
.multiselect-container.dropdown-menu > li > a > label > input[type=checkbox],
.admin-form .multiselect-container.dropdown-menu > li > a > label > input[type=checkbox] {
    margin-top: 4px;
    margin-bottom: 5px;
}
.admin-form .multiselect-container label.checkbox {
    width: 100%;
    background: transparent;
}
.admin-form .multiselect-container .checkbox,
.admin-form .multiselect-container .radio {
    border: none;
}
.multiselect-container.dropdown-menu > li.active > a > label.radio,
.multiselect-container.dropdown-menu > li.active > a > label.checkbox,
.admin-form .multiselect-container.dropdown-menu > li.active > a > label.radio,
.admin-form .multiselect-container.dropdown-menu > li.active > a > label.checkbox {
    color: #ffffff;
}
.btn.btn-block.multiselect .caret,
.multiselect-container.dropdown-menu .btn.multiselect .caret,
.admin-form .multiselect-container.dropdown-menu .btn.multiselect .caret {
    position: absolute;
    top: 50%;
    right: 12px;
    margin-top: -2px;
}
.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;
}
/* item search bar */

.multiselect-container.dropdown-menu > li.multiselect-item.filter {
    min-width: 175px;
}
.btn.multiselect .caret {
    margin-left: 5px;
}
.select2-container {
    display: block;
    width: 100% !important;
    padding: 0;
}

body > .select2-container {
    width: auto !important;
}

.form-inline .select2-container {
    min-width: 1px;
}
.select2-results__option p {
    margin: 0;
}
.select2-container .select2-selection--single {
    height: 39px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 38px;
}
.select2-container--default .select2-selection--single .select2-selection__clear {
    display: inline-block;
    width: 15px;
    color: #999;
    float: none;
}
.select2-container .select2-search--inline .select2-search__field {
    margin-top: 11px;
    width: auto !important;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    margin-top: 8px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice:first-of-type {
    max-width: calc(100% - 15px);
}
.select2-container--default .select2-selection--multiple .select2-selection__clear {
    margin-top: 11px;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] .text-primary {
    color: #fff !important;
}
/*===============================================
  Nestable
================================================= */

.nestable-lists:before,
.nestable-lists:after {
    content: " ";
    display: table;
}
.nestable-lists:after {
    clear: both;
}
.nestable-lists:before,
.nestable-lists:after {
    content: " ";
    display: table;
}
.nestable-lists:after {
    clear: both;
}
/*nestable*/

.dd {
    max-width: 100%;
}
/* Item heading */

.dd-handle {
    display: block;
    height: auto;
    cursor: pointer;
    margin: 5px 0;
    padding: 7px 10px;
    color: #777;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #ddd;
    background: #f5f5f5;
    -webkit-border-radius: 2px;
    border-radius: 2px;
}
/* heading hover */

.dd-handle:hover {
    color: #333;
    background: #ededed;
}
.dd-handle:hover + .dd-content {
    border-color: #f9d58b;
}
.dd-item > button {
    margin: 7px 0;
}
/* item content */

.dd-content {
    margin-top: -5px;
    padding: 10px;
    border: 1px solid #ddd;
    border-top: 0;
    background: #fafafa;
}
.dd-list .dd-list {
    padding-top: 5px;
    padding-bottom: 5px;
}
/* heading/content - dragged */

.dd-empty {
    background: #f8f8f8;
}
.dd-item.dd-primary > button,
.dd-item.dd-info > button {
    color: #FFF;
}
.dd-item.dd-primary .dd-handle {
    color: #FFF;
    background-color: #4a89dc !important;
    border-color: #4a89dc !important;
}
.dd-item.dd-info .dd-handle {
    color: #FFF;
    background-color: #3bafda !important;
    border-color: #3bafda !important;
}
/*===============================================
  Nano Scroller
================================================= */
/** initial setup **/

.nano {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.nano > .nano-content {
    position: absolute;
    overflow-x: hidden;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
}
.nano.has-scrollbar > .nano-content {
    overflow-y: scroll;
    overflow-x: hidden;
}
.nano.affix > .nano-content:focus {
    outline: thin dotted;
}
.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, 0.18);
    position: absolute;
    width: 5px;
    right: 0;
    top: 0;
    bottom: 0;
    visibility: hidden\9;
    /* Target only IE7 and IE8 with this hack */

    opacity: .01;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
}
.nano.affix > .nano-pane > .nano-slider {
    background: #999;
    position: relative;
    margin: 0;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
}
.nano.affix:hover > .nano-pane,
.nano-pane.active,
.nano-pane.flashed {
    visibility: visible\9;
    /* Target only IE7 and IE8 with this hack */

    opacity: 0.99;
}
/* Nano colors/contextuals - default color grey */

.nano.affix.nano-primary > .nano-pane > .nano-slider {
    background: #4a89dc;
}
.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 {
    background: #967adc;
}
.nano.affix.nano-system > .nano-pane > .nano-slider {
    background: #37bc9b;
}
.nano.affix.nano-dark > .nano-pane > .nano-slider {
    background: #3b3f4f;
}
/* ==============================================
 Colorpicker/Datepicker/DateRangePicker
================================================= */
/*alter picker z-indexes if inside an overlay*/

body.mfp-bg-open .datepicker,
body.mfp-bg-open .ui-datepicker,
body.mfp-bg-open .colorpicker.dropdown-menu,
body.mfp-bg-open .daterangepicker.dropdown-menu,
body.mfp-bg-open .bootstrap-datetimepicker-widget {
    z-index: 9999 !important;
}
/* disable z-index modifcation for inline pickers */

body.mfp-bg-open .ui-datepicker-inline {
    z-index: inherit !important;
}
/*colorpicker*/

.colorpicker.dropdown-menu {
    z-index: 1025;
    padding: 6px 12px;
    min-width: 0;
    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, 0.1);
}
/*datepicker*/

.datepicker {
    padding: 6px;
}
/*daterangepicker*/

.daterangepicker.dropdown-menu {
    background: #f8f8f8;
}
.daterangepicker .calendar-date {
    border-radius: 2px;
}
.daterangepicker.opensleft .ranges,
.daterangepicker.opensleft .calendar {
    margin: 4px 6px;
    background: #f8f8f8;
}
.daterangepicker.opensleft .calendar.left {
    margin-right: 2px;
}
.daterangepicker .ranges li {
    background: #FFF;
    border-radius: 1px;
    padding: 4px 12px;
    border: 1px solid #EEE;
    margin-bottom: 6px;
}
.daterangepicker .ranges li.active,
.daterangepicker .ranges li:hover {
    background: #4a89dc;
    border-color: #4a89dc;
}
.daterangepicker .ranges .input-mini {
    border-radius: 2px;
}
.daterangepicker td.active,
.daterangepicker td.active:hover {
    background: #4a89dc;
    border-color: #4a89dc;
}
.daterangepicker td.start-date,
.daterangepicker td.end-date {
    border-radius: 0;
}
/*bootstrap datetimepicker*/

.bootstrap-datetimepicker-widget td span.glyphicon,
.bootstrap-datetimepicker-widget td span.glyphicons {
    line-height: 54px;
}
/*bootstrap datetimepicker toggle switch*/

.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;
}
/* inline datewidget */

.datewidget-inline {
    z-index: 1020 !important;
    display: block !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    right: auto !important;
    bottom: auto !important;
}
.colorpicker-element .input-group-addon i,
.colorpicker-element .add-on i {
    display: inline-block;
    width: 28px;
    height: 28px;
    vertical-align: text-top;
    cursor: pointer;
}
/*==================================================
  Pnotify
==================================================== */
/* -- Notice */

.ui-pnotify {
    top: 25px;
    right: 25px;
    position: absolute;
    height: auto;
    /* Ensures notices are above everything */

    z-index: 9999;
}
.ui-pnotify .alert {
    border-radius: 0;
}
/* Hides position: fixed from IE6 */

html > body > .ui-pnotify {
    position: fixed;
}
.ui-pnotify .ui-pnotify-shadow {
    -webkit-box-shadow: 0px 2px 10px rgba(50, 50, 50, 0.5);
    -moz-box-shadow: 0px 2px 10px rgba(50, 50, 50, 0.5);
    box-shadow: 0px 2px 10px rgba(50, 50, 50, 0.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;
}
.ui-pnotify-icon,
.ui-pnotify-icon span {
    display: block;
    float: left;
    margin-right: .2em;
}
/* Alternate stack initial positioning. */

.ui-pnotify.stack_top_left,
.ui-pnotify.stack_bottom_left {
    left: 15px;
    right: auto;
}
.ui-pnotify.stack_bottom_right,
.ui-pnotify.stack_bottom_left {
    bottom: 25px;
    right: 8px;
    top: auto;
}
.ui-pnotify.stack_bottom_right {
    right: 12px;
}
.ui-pnotify-closer,
.ui-pnotify-sticker {
    float: right;
    margin-left: .2em;
}
.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;
}
/*wrapper */

.ui-pnotify {
    top: 70px;
    right: 8px;
}
/*with icon*/

.ui-pnotify-icon,
.ui-pnotify-icon span {
    font-size: 30px;
    min-height: 40px;
    line-height: 40px;
    padding-right: 3px;
}
/*===============================================
  RangeSlider
================================================= */
/* Slider Container */

.ui-rangeSlider .ui-rangeSlider-bar {
    margin: 5px 0;
    height: 20px;
    background-color: #6390a7;
}
/* Slider Inner bar */

.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, 0.1) inset, 0 -1px 0 rgba(255, 255, 255, 0.65) inset;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset, 0 -1px 0 rgba(255, 255, 255, 0.65) inset;
}
/* Slider Label */

.ui-rangeSlider-label {
    border: 0;
    box-shadow: none;
    background: none;
    background-image: none;
}
.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;
    background-image: none;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
    box-shadow: 0 1px 2px rgba(0, 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, 0.25);
}
/* Slider Input Label */

input.ui-editRangeSlider-inputValue {
    border: 1px solid #DDD;
    width: 2.2em;
}
/* Slider Handles */

.ui-rangeSlider .ui-rangeSlider-handle {
    background: none;
}
.ui-rangeSlider .ui-rangeSlider-handle-inner {
    background: url(../img/plugins/slider-knob.png) no-repeat center top;
    width: 22px;
    height: 24px;
}
.ui-rangeSlider-leftHandle .ui-rangeSlider-handle-inner {
    margin-left: -10px;
}
.ui-rangeSlider-rightHandle .ui-rangeSlider-handle-inner {
    margin-left: -4px;
}
/* Slider Arrows */

.ui-rangeSlider-arrow {
    margin: 6px 0;
}
.ui-rangeSlider-arrow.ui-rangeSlider-leftArrow {
    left: -13px !important;
}
.ui-rangeSlider-arrow.ui-rangeSlider-rightArrow {
    right: -13px !important;
}
/*===============================================
  Summernote
================================================= */

.note-editor {
    border: none;
}
.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-sm,
.note-editor .btn-group-sm > .btn {
    padding: 3px 8px 4px;
}
.note-editor .btn-default {
    background-color: #FFF;
    border-color: #DDD;
    border-radius: 1px;
}
.note-editor .note-editable {
    overflow: auto;
}
.note-editor .note-statusbar {
    background: none;
}
.note-editor .note-statusbar .note-resizebar {
    border: none;
}
.note-dialog .modal-dialog {
    padding-top: 50px;
}
/*===============================================
  Tags Manager
================================================= */

.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: 0.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: #6c9fe3;
}
.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 {
    color: #FFF;
    background-color: #b09ae4;
}
.tm-tag.tm-tag-system {
    color: #FFF;
    background-color: #50ccad;
}
/*===============================================
  Treeview Plugin
================================================= */
/*fancytree container*/

ul.fancytree-container {
    color: #999;
    font-size: 14px;
    padding: 0;
    border: 0;
    outline: 0;
    background-color: transparent;
}
/*fancytree items */

ul.fancytree-container li {
    padding: 2px 0;
}
/*fancytree item*/

span.fancytree-node {
    padding: 4px 0;
}
/*fancytree item title*/

span.fancytree-title {
    color: #666;
}
/*fancytree item icon*/

span.fancytree-icon {
    position: relative;
}
/*fancytree item STATES*/
/*fancytree item hover*/

span.fancytree-node:hover {
    background-color: #EEE;
    border-color: #CCC;
}
/*fancytree active item*/

span.fancytree-node.fancytree-active,
span.fancytree-node.fancytree-selected {
    background-color: #EEE;
    border-color: #CCC;
}
/*fancytree active item hover*/

span.fancytree-node.fancytree-active:hover,
span.fancytree-node.fancytree-selected:hover {
    background-color: #EEE;
    border-color: #CCC;
}
/*fancytree active item focus*/

.fancytree-container.fancytree-treefocus span.fancytree-node.fancytree-active,
.fancytree-container.fancytree-treefocus span.fancytree-node.fancytree-selected {
    background-color: #EEE;
    border-color: #CCC;
}
/*fancytree addon - childcounter */

span.fancytree-childcounter {
    color: #fff;
    background: #428BCA;
    /*  border: 1px solid gray; */

    position: absolute;
    top: -9px;
    right: -8px;
    min-width: 13px;
    height: 13px;
    line-height: 9px;
    vertical-align: baseline;
    border-radius: 10px;
    /*50%;*/

    padding: 2px;
    text-align: center;
    font-size: 10px;
}
/*fancytree addon - columnview*/

table.fancytree-ext-columnview {
    outline: 0;
    border: 0;
}
table.fancytree-container tbody tr td {
    padding: 8px 14px;
    border-color: #EEE;
    max-width: 300px;
    /* width does not work */
}
/* prevent long lines to wrap */

table.fancytree-container span.fancytree-node {
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
}
/* prevent long lines to start with a break after the icon */

table.fancytree-container span.fancytree-title {
    display: inline;
}
table.fancytree-container span.selTag {
    cursor: pointer;
    display: inline-block;
    padding: 3px 7px;
    margin: 1px 5px;
    background-color: #dec;
    border: 0;
    border-radius: 1px;
}
table.fancytree-ext-columnview tbody tr #tags,
table.fancytree-ext-columnview tbody tr #preview {
    padding: 12px 14px;
    vertical-align: middle;
    background: #fbfbfb;
}
.bootstrap-tagsinput {
    position: relative;
    vertical-align: top;
    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 0.5s ease-in-out;
    transition: all 0.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: none;
    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: white;
    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: 0px 2px;
}
.bootstrap-tagsinput .tag [data-role="remove"]:hover {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.bootstrap-tagsinput .tag [data-role="remove"]:hover:active {
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
/*===============================================
  Bootstrap Datepicker
================================================= */
/* today item - bg */

.bootstrap-datetimepicker-widget td.today:before {
    border-bottom: 7px solid #4a89dc;
}
/* active/:hover item - bg */

.bootstrap-datetimepicker-widget td.active,
.bootstrap-datetimepicker-widget td.active:hover,
.bootstrap-datetimepicker-widget td span.active {
    background-color: #428bca;
    color: #ffffff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
/*===============================================
  Twitters Typeahead.js
================================================= */
/* typeahead wrapper */

span.twitter-typeahead {
    width: 100%;
}
/* dropdown suggestion menu */

.tt-dropdown-menu {
    width: 100%;
    max-height: 250px;
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: auto;
    margin-top: 8px;
    padding: 8px 0;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
/* individual suggestions */

.tt-suggestion {
    padding: 2px 12px;
    font-size: 14px;
    line-height: 20px;
}
/* active/:hover suggestion */

.tt-suggestion.tt-cursor {
    cursor: pointer;
    color: #ffffff;
    background-color: #4a89dc;
}
.tt-suggestion p {
    margin: 2px 0;
}
/* ==================================================
    Bootstrap Dual Listbox
 ==================================================== */

.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 0;
}
.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
================================================= */

.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-drag-box,
.cropper-crop-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: 1px solid #69f;
    outline-color: rgba(102, 153, 255, 0.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;
}
/* Demo CSS */
/* Content Containers */

.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 > img,
.docs-cropped .modal-body > canvas {
    max-width: 100%;
}
/*===============================================
  Bootstrap Markdown Editor
================================================= */

.md-editor {
    display: block;
}
/* toolbar header */

.md-editor .md-footer,
.md-editor > .md-header {
    display: block;
    padding: 8px 4px;
    background: #fafafa;
}
.md-editor > .md-header {
    margin: 0;
}
.md-editor > .md-header .btn-group .btn-default,
.md-editor > .md-header .btn-group .btn-primary {
    color: #666;
    border-color: rgba(0, 0, 0, 0.1);
    background-color: #fff;
}
/* preview area */

.md-editor > .md-preview {
    background: #fff;
    border-top: 1px dashed #ddd;
    border-bottom: 1px dashed #ddd;
    min-height: 10px;
    overflow: auto;
}
/* editor area */

.md-editor > textarea {
    font-size: 14px;
    outline: 0;
    margin: 0;
    display: block;
    padding: 15px;
    width: 100%;
    border: 0;
    border-top: 1px solid #ddd;
    border-radius: 0;
    box-shadow: none;
    background: #ffffff;
}
.md-editor > textarea:focus {
    box-shadow: none;
    background: #ffffff;
}
/* focus/active area */

.md-editor .md-controls {
    float: right;
    padding: 3px;
}
.md-editor .md-controls .md-control {
    right: 5px;
    color: #bebebe;
    padding: 3px 3px 3px 10px;
}
.md-editor .md-controls .md-control:hover {
    color: #333333;
}
.md-editor .md-controls .md-control-fullscreen {
    position: relative;
    top: 4px;
}
.md-editor.md-fullscreen-mode {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    padding: 60px 30px 15px;
    background: #fff!important;
    border: 0 !important;
}
.md-editor.md-fullscreen-mode .md-footer {
    display: none;
}
.md-editor.md-fullscreen-mode .md-input,
.md-editor.md-fullscreen-mode .md-preview {
    margin: 0 auto!important;
    height: 100%!important;
    font-size: 20px!important;
    padding: 20px!important;
    color: #999;
    line-height: 1.6em!important;
    resize: none!important;
    box-shadow: none!important;
    background: #fff!important;
    border: 0 !important;
}
.md-editor.md-fullscreen-mode .md-preview {
    color: #333;
    overflow: auto;
}
.md-editor.md-fullscreen-mode .md-input:focus,
.md-editor.md-fullscreen-mode .md-input:hover {
    color: #333;
    background: #ffffff !important;
}
.md-editor.md-fullscreen-mode .md-header {
    background: 0 0;
    text-align: center;
    position: fixed;
    width: 100%;
    top: 20px;
}
.md-editor.md-fullscreen-mode .btn-group {
    float: none;
}
.md-editor.md-fullscreen-mode .btn {
    border: 0;
    background: 0 0;
    color: #b3b3b3;
}
.md-editor.md-fullscreen-mode .btn.active,
.md-editor.md-fullscreen-mode .btn:active,
.md-editor.md-fullscreen-mode .btn:focus,
.md-editor.md-fullscreen-mode .btn:hover {
    box-shadow: none;
    color: #333333;
}
.md-editor.md-fullscreen-mode .md-fullscreen-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    text-align: right;
    z-index: 1002;
    display: block;
}
.md-editor.md-fullscreen-mode .md-fullscreen-controls a {
    color: #b3b3b3;
    clear: right;
    margin: 10px;
    width: 30px;
    height: 30px;
    text-align: center;
}
.md-editor.md-fullscreen-mode .md-fullscreen-controls a:hover {
    color: #333;
    text-decoration: none;
}
.md-editor.md-fullscreen-mode .md-editor {
    height: 100%!important;
    position: relative;
}
.md-editor .md-fullscreen-controls {
    display: none;
}
.md-nooverflow {
    overflow: hidden;
    position: fixed;
    width: 100%;
}
/* ===============================================
  NProgress (top page loader)
================================================= */
/* Make clicks pass-through */

#nprogress {
    pointer-events: none;
}
#nprogress .bar {
    background-color: #f6bb42;
    position: fixed;
    z-index: 1031;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
}
/* Fancy blur effect */

#nprogress .peg {
    opacity: 1.0;
    display: block;
    position: absolute;
    right: 0px;
    width: 100px;
    height: 100%;
    box-shadow: none !important;
    -webkit-transform: rotate(3deg) translate(0px, -4px);
    -ms-transform: rotate(3deg) translate(0px, -4px);
    transform: rotate(3deg) translate(0px, -4px);
}
/* Remove these to get rid of the spinner */

#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: solid 2px transparent;
    border-radius: 50%;
    border-top-color: #4a89dc;
    border-left-color: #4a89dc;
    -webkit-animation: nprogress-spinner 400ms linear infinite;
    animation: nprogress-spinner 400ms linear infinite;
}
.nprogress-custom-parent {
    overflow: hidden;
    position: relative;
}
.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
    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);
    }
}
/* NPR "barPosition" Helpers */

#nprogress.npr-header .bar {
    top: 60px;
    height: 2px;
}
#nprogress.npr-bottom .bar {
    top: auto;
    bottom: 0;
    height: 4px;
}
/* NPR "barColor" Contextuals */

#nprogress.npr-primary .bar {
    background-color: #4a89dc;
}
#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: #967adc;
}
#nprogress.npr-system .bar {
    background-color: #37bc9b;
}
#nprogress.npr-dark .bar {
    background-color: #3b3f4f;
}
#nprogress.npr-light .bar {
    background-color: #fafafa;
}
#nprogress.npr-muted .bar {
    background-color: #999;
}
/*===============================================
  Scroller
================================================= */

.scroller {
    height: 100%;
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: hidden;
    position: relative;
}
.scroller,
.scroller * {
    -webkit-user-select: auto !important;
    -moz-user-select: auto !important;
    -ms-user-select: auto !important;
    user-select: auto !important;
}
.scroller.unselectable,
.scroller.unselectable * {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}
.scroller,
.scroller-content,
.scroller-bar,
.scroller-track,
.scroller-handle {
    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::-webkit-scrollbar {
    display: none;
}
.scroller-content::-webkit-scrollbar,
.scroller-content::-webkit-scrollbar-button,
.scroller-content::-webkit-scrollbar-track,
.scroller-content::-webkit-scrollbar-track-piece,
.scroller-content::-webkit-scrollbar-thumb,
.scroller-content::-webkit-scrollbar-corner,
.scroller-content::-webkit-resizer {
    background: transparent;
    opacity: 0;
}
.scroller-bar {
    width: 6px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.scroller-active .scroller-bar {
    opacity: 1;
}
.scroller-track {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.scroller-handle {
    width: 5px;
    height: 20px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    background: #cccccc;
    cursor: pointer;
    transition: height 0.3s ease;
}
.scroller-horizontal .scroller-content {
    overflow: auto;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 16px 0;
}
.scroller-horizontal .scroller-bar {
    width: 100%;
    height: 5px;
    top: auto;
    bottom: 0;
    border-width: 1px 0 0 0;
}
.scroller-horizontal .scroller-handle {
    width: 20px;
    height: 5px;
    top: auto;
    right: auto;
    bottom: 3px;
}
.scroller-setup .scroller-content,
.scroller-active .scroller-content {
    padding: 0;
}
.scroller-setup .scroller-bar,
.scroller-active .scroller-bar {
    display: block;
}
/*===============================================
  Scroller - Panel Style
================================================= */

.panel-scroller {
    padding: 0;
    height: 600px;
    max-height: 600px;
    overflow: hidden;
}
/* scroller content */

.panel-scroller .scroller-content {
    padding: 12px;
}
/* scroller bar container */

.panel-scroller .scroller-bar {
    width: 14px;
    background: #f7f7f7;
    border-left: 1px solid #e7e7e7;
}
/* scroller bar container handle */

.panel-scroller .scroller-handle {
    right: 4px;
    width: 5px;
    height: 20px;
    border-radius: 4px;
}
@-moz-document url-prefix() {
    .panel-scroller .scroller-bar {
        width: 17px;
    }
    .panel-scroller .scroller-handle {
        width: 9px;
    }
}
/*===============================================
  Scroller Bar - Height Options
================================================= */

.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 Bar Style
================================================= */

.scroller-thick .scroller-bar {
    width: 12px;
}
.scroller-thick .scroller-handle {
    width: 12px;
    right: 0;
    border-radius: 0;
}
/*===============================================
  Scroller Bar - Overlay Style
================================================= */
/* scroller bar container overlay mode */

.panel-scroller.scroller-overlay .scroller-bar {
    background: transparent;
    border: 0;
}
.panel-scroller.scroller-overlay .scroller-handle {
    opacity: 0;
    transition: opacity 0.3s ease;
}
.panel-scroller.scroller-overlay:hover .scroller-handle {
    opacity: 1;
}
.panel-scroller.scroller-overlay .scroller-content {
    padding: 0;
    margin-right: -17px;
}
/* scroller nopad helper */

.scroller.scroller-pn .scroller-content {
    padding: 0 !important;
}
/*===============================================
  Scroller Contextuals
================================================= */

.scroller-primary .scroller-handle {
    background: #4a89dc;
}
.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 {
    background: #967adc;
}
.scroller-system .scroller-handle {
    background: #37bc9b;
}
.scroller-dark .scroller-handle {
    background: #3b3f4f;
}
/* inverse light contextuals */

.scroller-light .scroller-handle,
.scroller-white .scroller-handle {
    background: #fafafa;
}
.scroller-light .scroller-bar,
.scroller-white .scroller-bar {
    border-left: 0;
    background: transparent;
}
/*===============================================
  Select2 Contextuals
================================================= */
/* Select2  contextual */

.select2-primary + .select2-container .select2-selection--single,
.select2-primary + .select2-container .select2-selection--single .select2-selection__rendered {
    color: #FFF;
    border-color: #4a89dc;
    background-color: #4a89dc;
}
/* arrow */

.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  contextual */

.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;
}
/* arrow */

.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  contextual */

.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;
}
/* arrow */

.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  contextual */

.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;
}
/* arrow */

.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  contextual */

.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;
}
/* arrow */

.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  contextual */

.select2-alert + .select2-container .select2-selection--single,
.select2-alert + .select2-container .select2-selection--single .select2-selection__rendered {
    color: #FFF;
    border-color: #967adc;
    background-color: #967adc;
}
/* arrow */

.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  contextual */

.select2-system + .select2-container .select2-selection--single,
.select2-system + .select2-container .select2-selection--single .select2-selection__rendered {
    color: #FFF;
    border-color: #37bc9b;
    background-color: #37bc9b;
}
/* arrow */

.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  contextual */

.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;
}
/* arrow */

.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;
}
.select2-container .select2-selection--single {
    height: 42px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 40px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px;
}
/*===============================================
  AdminDock
================================================= */

.dockmodal,
.dockmodal *,
.dockmodal *:before,
.dockmodal *:after {
    -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: 0.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: #FFFFFF;
    font-size: 16px;
    font-weight: bold;
    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") no-repeat top left;
    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;
}
/* ==================================================
    AdminModals
 ==================================================== */
/*
Styles for the html/body for special modal where we want 3d effects
Note that we need a container wrapping all content on the page for the
perspective effects (not including the modals and the overlay).
*/

.md-perspective,
.md-perspective body {
    height: 100%;
    overflow: hidden;
}
.md-perspective body {
    background: #222;
    -webkit-perspective: 600px;
    perspective: 600px;
}
/* Modal styles */

.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;
}
/* Overlay styles */

.md-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    visibility: hidden;
    top: 0;
    left: 0;
    z-index: 1000;
    opacity: 0;
    background: rgba(0, 0, 0, 0.8);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.md-show ~ .md-overlay {
    opacity: 1;
    visibility: visible;
}
/* Content styles */

.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;
}
/* ====== Container options ====== */
/* modal close button */

.admin-form .mfp-close,
.admin-form .mfp-close-btn-in {
    font-size: 26px;
    color: #fff;
    text-shadow: none;
    font-weight: 400;
    padding-top: 5px;
    opacity: 1;
}
/* ====== Default Fade effect ====== */

.mfp-with-fade .mfp-content,
.mfp-with-fade.mfp-bg {
    opacity: 0;
    -webkit-transition: opacity 0.5s ease-out;
    transition: opacity 0.5s ease-out;
}
.mfp-with-fade.mfp-ready .mfp-content {
    opacity: 1;
}
.mfp-with-fade.mfp-ready.mfp-bg {
    opacity: 0.8;
}
.mfp-with-fade.mfp-removing .mfp-with-anim {
    opacity: 0;
}
.mfp-with-fade.mfp-removing.mfp-bg {
    opacity: 0;
}
/* ====== Zoom effect ====== */

.mfp-zoomIn {
    /* start state */
    /* animate in */
    /* animate out */
}
.mfp-zoomIn .mfp-with-anim {
    opacity: 0;
    transition: all 0.2s ease-in-out;
    transform: scale(0.8);
}
.mfp-zoomIn.mfp-bg {
    opacity: 0;
    transition: all 0.3s ease-out;
}
.mfp-zoomIn.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: scale(1);
}
.mfp-zoomIn.mfp-ready.mfp-bg {
    opacity: 0.8;
}
.mfp-zoomIn.mfp-removing .mfp-with-anim {
    transform: scale(0.8);
    opacity: 0;
}
.mfp-zoomIn.mfp-removing.mfp-bg {
    opacity: 0;
}
/* ====== Zoom-out effect ====== */

.mfp-zoomOut .mfp-with-anim {
    opacity: 0;
    transition: all 0.3s ease-in-out;
    transform: scale(1.3);
}
.mfp-zoomOut.mfp-bg {
    opacity: 0;
    transition: all 0.3s ease-out;
}
.mfp-zoomOut.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: scale(1);
}
.mfp-zoomOut.mfp-ready.mfp-bg {
    opacity: 0.8;
}
.mfp-zoomOut.mfp-removing .mfp-with-anim {
    transform: scale(1.3);
    opacity: 0;
}
.mfp-zoomOut.mfp-removing.mfp-bg {
    opacity: 0;
}
/* ====== Move-from-left effect ====== */

.mfp-slideLeft .mfp-with-anim {
    opacity: 0;
    transition: all 0.3s;
    transform: translateX(-50px);
}
.mfp-slideLeft.mfp-bg {
    opacity: 0;
    transition: all 0.3s;
}
.mfp-slideLeft.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: translateX(0);
}
.mfp-slideLeft.mfp-ready.mfp-bg {
    opacity: 0.8;
}
.mfp-slideLeft.mfp-removing .mfp-with-anim {
    transform: translateX(50px);
    opacity: 0;
}
.mfp-slideLeft.mfp-removing.mfp-bg {
    opacity: 0;
}
/* ====== Move-from-right effect ====== */

.mfp-slideRight .mfp-with-anim {
    opacity: 0;
    transition: all 0.3s;
    transform: translateX(50px);
}
.mfp-slideRight.mfp-bg {
    opacity: 0;
    transition: all 0.3s;
}
.mfp-slideRight.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: translateX(0);
}
.mfp-slideRight.mfp-ready.mfp-bg {
    opacity: 0.8;
}
.mfp-slideRight.mfp-removing .mfp-with-anim {
    transform: translateX(-50px);
    opacity: 0;
}
.mfp-slideRight.mfp-removing.mfp-bg {
    opacity: 0;
}
/* ====== Move-from-top effect ====== */

.mfp-slideDown .mfp-content {
    vertical-align: middle;
}
.mfp-slideDown .mfp-with-anim {
    opacity: 0;
    transition: all 0.2s;
    transform: translateY(-100px);
}
.mfp-slideDown.mfp-bg {
    opacity: 0;
    transition: all 0.2s;
}
.mfp-slideDown.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: translateY(0);
}
.mfp-slideDown.mfp-ready.mfp-bg {
    opacity: 0.8;
}
.mfp-slideDown.mfp-removing .mfp-with-anim {
    transform: translateY(-50px);
    opacity: 0;
}
.mfp-slideDown.mfp-removing.mfp-bg {
    opacity: 0;
}
/* ====== Move-from-bottom effect ====== */

.mfp-slideUp .mfp-content {
    vertical-align: middle;
}
.mfp-slideUp .mfp-with-anim {
    opacity: 0;
    transition: all 0.2s;
    transform: translateY(100px);
}
.mfp-slideUp.mfp-bg {
    opacity: 0;
    transition: all 0.2s;
}
.mfp-slideUp.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: translateY(0);
}
.mfp-slideUp.mfp-ready.mfp-bg {
    opacity: 0.8;
}
.mfp-slideUp.mfp-removing .mfp-with-anim {
    transform: translateY(50px);
    opacity: 0;
}
.mfp-slideUp.mfp-removing.mfp-bg {
    opacity: 0;
}
/* ====== 3d unfold ====== */

.mfp-flipInX .mfp-content {
    perspective: 2000px;
}
.mfp-flipInX .mfp-with-anim {
    opacity: 0;
    transition: all 0.3s ease-in-out;
    transform-style: preserve-3d;
    transform: rotateX(-60deg);
}
.mfp-flipInX.mfp-bg {
    opacity: 0;
    transition: all 0.5s;
}
.mfp-flipInX.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: rotateX(0deg);
}
.mfp-flipInX.mfp-ready.mfp-bg {
    opacity: 0.8;
}
.mfp-flipInX.mfp-removing .mfp-with-anim {
    transform: rotateX(60deg);
    opacity: 0;
}
.mfp-flipInX.mfp-removing.mfp-bg {
    opacity: 0;
}
/* ====== FlipInY ====== */

.mfp-flipInY .mfp-content {
    perspective: 2000px;
}
.mfp-flipInY .mfp-with-anim {
    opacity: 0;
    transition: all 0.3s ease-in-out;
    transform-style: preserve-3d;
    transform: rotateY(-60deg);
}
.mfp-flipInY.mfp-bg {
    opacity: 0;
    transition: all 0.5s;
}
.mfp-flipInY.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: rotateY(0deg);
}
.mfp-flipInY.mfp-ready.mfp-bg {
    opacity: 0.8;
}
.mfp-flipInY.mfp-removing .mfp-with-anim {
    transform: rotateY(60deg);
    opacity: 0;
}
.mfp-flipInY.mfp-removing.mfp-bg {
    opacity: 0;
}
/* ====== rotate in left ====== */

.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 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.mfp-rotateDown.mfp-bg {
    opacity: 0;
    transition: all 0.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: 0.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;
}
/* ====== rotate in left ====== */

.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 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.mfp-rotateUp.mfp-bg {
    opacity: 0;
    transition: all 0.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: 0.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;
}
/* ====== rotate in left ====== */

.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 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.mfp-rotateRight.mfp-bg {
    opacity: 0;
    transition: all 0.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: 0.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;
}
/* ====== rotate in left ====== */

.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 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.mfp-rotateLeft.mfp-bg {
    opacity: 0;
    transition: all 0.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: 0.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;
}
/* ====== fullscale ====== */

.mfp-fullscale .mfp-with-anim {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}
.mfp-fullscale.mfp-bg {
    background: #000;
    opacity: 0;
    transition: all 0.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 0.4s;
    transition: all 0.4s;
}
.mfp-fullscale.mfp-removing.mfp-bg {
    background: #000\A;
    opacity: 0;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
/* ====== Sign ====== */

.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 0.3s;
    transition: all 0.3s;
}
.mfp-sign.mfp-bg {
    opacity: 0;
    transition: all 0.5s;
}
.mfp-sign.mfp-ready .mfp-with-anim {
    transform: rotateX(0deg);
    opacity: 1;
}
.mfp-sign.mfp-ready.mfp-bg {
    opacity: 0.8;
}
.mfp-sign.mfp-removing .mfp-with-anim {
    transform: rotateX(-60deg);
    opacity: 0;
}
.mfp-sign.mfp-removing.mfp-bg {
    opacity: 0;
}
/* ====== Newspaper effect ====== */

.mfp-newspaper .mfp-with-anim {
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.5s;
    transform: scale(0) rotate(500deg);
}
.mfp-newspaper.mfp-bg {
    opacity: 0;
    transition: all 0.5s;
}
.mfp-newspaper.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}
.mfp-newspaper.mfp-ready.mfp-bg {
    opacity: 0.8;
}
.mfp-newspaper.mfp-removing .mfp-with-anim {
    transform: scale(0) rotate(500deg);
    opacity: 0;
}
.mfp-newspaper.mfp-removing.mfp-bg {
    opacity: 0;
}
.admin-form.modal .section-divider span,
.admin-form .modal .section-divider span {
    background: #fff;
}
.number-porting-group-actions-number-checkbox {
    overflow-y: scroll;
    height: 230px;
    list-style: none;
    padding: 0;
    border: 1px solid #DDD;
}
.number-porting-group-actions-number-label {
    padding: 10px;
    width: 100%;
    margin-bottom: 0;
}
.number-porting-group-actions-filter {
    padding: 0.6em;
}
.number-porting-group-actions-select-filter {
    font-size: 14px;
}
.number-porting-group-actions-number-label:focus {
    outline: none;
}
.number-porting-group-actions-number-label:hover {
    color: #95358c;
    background: #f5f5f5;
}
.number-porting-group-actions-number-input:checked + label {
    background: #95358c;
    color: white;
    padding: 10px;
}
.number-porting-group-actions-search {
    list-style: none;
    padding: 0px;
    margin: 0;
}
.number-porting-group-actions-form {
    height: 350px;
}
.number-porting-group-actions-col {
    height: 350px;
}
.number-porting-group-actions-number-text {
    margin-bottom: 0;
}
.number-porting-group-actions-panel {
    border: 1px solid #DDD;
    background: #f9f9f9;
    padding: 20px;
    margin-bottom: 20px;
}
/*===============================================
  AdminPanels
================================================= */
/* add to ".admin-panels" wrapper to have the content fadein
 * after its contents are finished loading/rearranging */

.admin-panels.fade-onload {
    opacity: 0;
}
/* when preserve grid setting is true and invisible
 * panel is left in an otherwise empty column. This is
 * useful when you want to drag a panel to a column
 * that would otherwise be empty */

.preserve-grid {
    padding: 10px;
    background: transparent !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;
}
/* placeholder */

.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, 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;
}
/* title/color editboxes */

.panel-colorbox,
.panel-editbox {
    position: relative;
    display: none;
    text-align: center;
    background: #f1f1f1;
    padding: 9px;
    color: #AAA;
    background-color: #f1f1f1;
    border-left: 2px dashed #d9d9d9;
    border-right: 2px dashed #d9d9d9;
    border-bottom: 1px solid #ddd;
}
/* titlebox */

.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;
}
/* colorbox */

.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, 0.2);
}
.panel-colorbox > span:hover {
    border-color: rgba(0, 0, 0, 0.4);
}
/* If titlebox or colorbox are present we need
 * to remove duplicate panel borders. Check sibling
 * elements and remove borders accordingly */

.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;
}
/* fullscreen */

body.panel-fullscreen-active {
    overflow: hidden;
    position: fixed;
}
body.panel-fullscreen-active .navbar,
body.panel-fullscreen-active #topbar,
body.panel-fullscreen-active #sidebar_left,
body.panel-fullscreen-active #sidebar_right {
    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;
}
/* hide remove and collapse icon during fullscreen */

.panel-fullscreen .panel-controls > .panel-control-remove,
.panel-fullscreen .panel-controls > .panel-control-collapse {
    display: none !important;
}
/* collapsed */

.panel-control-collapse:after {
    content: "\f068";
    /* fa-pencil */
}
.panel-collapsed .panel-control-collapse:after {
    content: "\f067";
    /* fa-pencil */
}
/* controls */

.panel-controls {
    float: right;
    display: block;
    cursor: pointer;
}
.panel-controls > a {
    padding-top: 1px;
    display: inline-block;
    opacity: 0.7;
    width: 30px;
    color: #999;
    font-size: 14px;
    font-weight: normal;
    text-align: center;
}
.panel-controls > a:hover {
    text-decoration: none;
    opacity: 1;
}
/* Icon colors for panel contextuals */

.panel-primary .panel-controls > a,
.panel-info .panel-controls > a,
.panel-success .panel-controls > a,
.panel-warning .panel-controls > a,
.panel-danger .panel-controls > a,
.panel-alert .panel-controls > a,
.panel-system .panel-controls > a,
.panel-dark .panel-controls > a {
    color: #FFF;
}
/* control button icons */

.panel-controls > a:after {
    font-family: "FontAwesome";
}
/* title icon */

.panel-control-title:after {
    content: "\f040";
    /* fa-pencil */
}
.panel-editbox-open .panel-control-title:after {
    content: "\f0c7";
    /* fa-save */
}
/* color icon */

.panel-control-color:after {
    content: "\f043";
    /* fa-tint */
}
.panel-colorbox-open .panel-control-color:after {
    content: "\f0c7";
    /* fa-save */
}
/* collapsed icon */

.panel-control-collapse:after {
    content: "\f068";
    /* fa-pencil */
}
.panel-collapsed .panel-control-collapse:after {
    content: "\f067";
    /* fa-pencil */
}
/* fullscreen icon */

.panel-control-fullscreen:after {
    content: "\f066";
    /* fa-pencil */
}
/* remove icon */

.panel-control-remove:after {
    content: "\f00d";
    /* fa-remove */
}
/* callback icon */

.panel-control-callback:after {
    content: "\f121";
    /* fa-code */
}
/* expose icon */

.panel-control-expose:after {
    content: "\f06e";
    /* fa-eye */
}
.panel-exposed .panel-control-expose:after {
    content: "\f070";
    /* fa-eye closed */
}
/* dockable icon */

.panel-control-dockable:after {
    content: "\f187";
    /* fa-code */
}
/* loading icon */

.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";
    /* fa-refresh */

    -webkit-animation: fa-spin 2s infinite linear;
    -moz-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}
/* loading icon animation */

.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:hover,
.panel.mobile-controls .panel-heading > .panel-controls.panel-controls-open {
    background: #F0F0F0;
    border-color: #E6E6E6;
}
.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 0.3s ease;
    transition: color 0.3s ease;
}
/* menu open states */

.panel.mobile-controls .panel-heading > .panel-controls:hover,
.panel.mobile-controls .panel-heading > .panel-controls.panel-controls-open {
    background: #F0F0F0;
    border-color: #E6E6E6;
}
.panel.mobile-controls .panel-heading > .panel-controls:hover:after,
.panel.mobile-controls .panel-heading > .panel-controls.panel-controls-open: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: none;
    border: 0;
}
.panel.mobile-controls .popover-content .panel-controls > a {
    display: inline-block;
}
/* mobile control modifications during panel fullscreen mode */

.panel.mobile-controls.panel-fullscreen .panel-heading > .panel-controls {
    width: auto;
    height: auto;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    background: none;
    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;
}
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */

html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}
body {
    margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
}
audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}
audio:not([controls]) {
    display: none;
    height: 0;
}
[hidden],
template {
    display: none;
}
a {
    background: transparent;
    cursor: pointer;
}
a:active,
a:hover {
    outline: 0;
}
a.inherit-style {
    color: inherit;
    text-decoration: none;
}
a.inherit-style:hover {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}
a.inherit-style:focus {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}
abbr[title] {
    border-bottom: 1px dotted;
}
b,
strong {
    font-weight: 600;
}
dfn {
    font-style: italic;
}
h1 {
    font-size: 2em;
    margin: 0.67em 0;
}
h1 strong {
    font-weight: bold;
}
mark {
    background: #ff0;
    color: #000;
}
small {
    font-size: 80%;
}
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
sup {
    top: -0.5em;
}
sub {
    bottom: -0.25em;
}
img {
    border: 0;
}
svg:not(:root) {
    overflow: hidden;
}
figure {
    margin: 1em 40px;
}
hr {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
}
.alert-dismissible .close {
    font-size: 15px;
}
.btn-title hr.collapse-border {
    margin-top: 26px;
    margin-bottom: -1px;
    border-color: #ccc;
}
pre {
    overflow: auto;
}
code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    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 {
    line-height: normal;
}
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-appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}
legend {
    border: 0;
    padding: 0;
}
textarea {
    overflow: auto;
}
optgroup {
    font-weight: bold;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
td,
th {
    padding: 0;
}

/*==================================================
  Basic print styles
  Source: https://github.com/h5bp/html5-boilerplate/blob/master/css/main.css
==================================================== */

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

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    font-size: 10px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
    font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.49;
    color: #666666;
    background-color: #ffffff;
}
input,
button,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
a {
    color: #4a89dc;
    text-decoration: none;
}
a.btn {
    -webkit-font-smoothing: subpixel-antialiased;
}
a:hover,
a:focus {
    color: #2363b6;
    text-decoration: underline;
    cursor: pointer;
}
a:focus {
    outline: 0;
    outline-offset: -2px;
}
figure {
    margin: 0;
}
img {
    vertical-align: middle;
    max-width: 100%;
}
.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
    display: block;
    width: 100% \9;
    max-width: 100%;
    height: auto;
}
.img-rounded {
    border-radius: 6px;
}
.img-thumbnail {
    padding: 4px;
    line-height: 1.49;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 1px;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    display: inline-block;
    width: 100% \9;
    max-width: 100%;
    height: auto;
}
.img-circle {
    border-radius: 50%;
}
hr {
    margin-top: 19px;
    margin-bottom: 19px;
    border: 0;
    border-top: 1px solid #eeeeee;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
}

.page-header {
    padding-bottom: 16.5px;
    margin: 38px 0 19px;
    border-bottom: 1px solid #dddddd;
}
.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;
}
ul,
ol {
    margin-top: 0;
    margin-bottom: 9.5px;
}
ul ul,
ol ul,
ul ol,
ol ol {
    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;
}
dt,
dd {
    line-height: 1.49;
}
dt {
    font-weight: bold;
}
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[title],
abbr[data-original-title] {
    cursor: help;
    border-bottom: 1px dotted #777777;
}
.initialism {
    font-size: 90%;
    text-transform: uppercase;
}
blockquote {
    padding: 9.5px 19px;
    margin: 0 0 19px;
    font-size: 16.25px;
    border-left: 5px solid #eeeeee;
}
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
    margin-bottom: 0;
}
blockquote.blockquote-rounded {
    border-radius: 11px;
}
blockquote.blockquote-thin {
    border-width: 3px;
}
blockquote footer,
blockquote small,
blockquote .small {
    display: block;
    font-size: 80%;
    line-height: 1.49;
    color: #777777;
}
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
    content: '\2014 \00A0';
}
.blockquote-reverse,
blockquote.pull-right {
    padding-right: 15px;
    padding-left: 0;
    border-right: 5px solid #eeeeee;
    border-left: 0;
    text-align: right;
}
.blockquote-reverse footer:before,
blockquote.pull-right footer:before,
.blockquote-reverse small:before,
blockquote.pull-right small:before,
.blockquote-reverse .small:before,
blockquote.pull-right .small:before {
    content: '';
}
.blockquote-reverse footer:after,
blockquote.pull-right footer:after,
.blockquote-reverse small:after,
blockquote.pull-right small:after,
.blockquote-reverse .small:after,
blockquote.pull-right .small:after {
    content: '\00A0 \2014';
}
blockquote:before,
blockquote:after {
    content: "";
}
.blockquote-snazzy {
    font-family: "Georgia", serif;
    font-size: 22px;
    font-style: italic;
    text-align: center;
    border: none;
}
.blockquote-snazzy:before,
.blockquote-snazzy:after {
    display: block;
}
.blockquote-snazzy:before {
    margin: 0 auto 44px;
    width: 80px;
    height: 80px;
    content: "";
    background-image: url("../images/ui-elements/quote-marks.svg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
.blockquote-snazzy:after {
    position: absolute;
    top: 144px;
    left: 50%;
    width: 50px;
    height: 1px;
    content: "";
    background-color: #CCCCCC;
    transform: translateX(-50%);
}
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: 0px 5px 0 0;
}
.dropcap.lead:first-letter {
    font-size: 90px;
    line-height: 25px;
}
.dropcap.dropcap-fill:first-letter {
    border-radius: 6px;
    color: #FFF;
    margin: 0px 10px 0 0;
}
.dropcap.lead.dropcap-fill:first-letter {
    border-radius: 6px;
    color: #FFF;
    margin: 0px 10px 0 0;
    padding-bottom: 26px;
}
/*===============================================
  D. Dividers
================================================= */

hr {
    margin: 35px 0;
    border-top: 1px solid #DDD;
}
hr.alt {
    border-top: 1px dashed #cccccc;
}
hr.short {
    margin: 20px 0;
}
hr.tall {
    margin: 55px 0;
}
hr.dotted {
    border-style: dotted;
}
.divider {
    height: 1px;
    margin: 25px 0;
    background: #e2e2e2;
}
/*==================================================
  Code(inline and block)
==================================================== */

code,
kbd,
pre,
samp,
textarea.code,
.highlight.editable {
    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: #ffffff;
    background-color: #333333;
    border-radius: 0px;
    box-shadow: inset 0 -1px 0 rgba(0, 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: #333333;
    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;
}
.highlight .pointer {
    cursor: pointer;
}
.highlight.editable {
    padding: 20px 9px;
    padding-right: 0;
    background: #30363e;
    color: #e6e1dc;
    overflow: auto;
}
.highlight.editable div {
    display: table;
    white-space: nowrap;
    vertical-align: top;
}
.highlight.editable label {
    float: none;
}
.highlight.editable span,
.highlight.editable label {
    padding: 3px 0;
    /*display: table-cell;*/
}
.highlight.editable .inline-block {
    display: inline-block !important;
    vertical-align: top;
}
.highlight.editable label,
.highlight.editable.json label span.text-white {
    color: #e6e1dc;
}
.highlight.editable.json label span {
    color: #6D9CBE;
}
.highlight.editable input[disabled] {
    min-width: 0;
    color: #A5C261;
    background-color: rgba(255,255,255,0.08);
    border: 2px solid #30363e;
}
.highlight.editable input.enabled {
    min-width: 110px;
    background-color: rgba(255,255,255,1);
}
.highlight.editable input {
    transition: all 0.25s ease-out;
}
/*==================================================
  Grid System
==================================================== */

.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-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xl-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xl-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xl-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xl-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xl-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xl-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xl-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xl-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xl-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xl-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xl-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12,
.col-xl-12 {
    position: relative;
    min-height: 1px;
    padding-left: 11px;
    padding-right: 11px;
}
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
    float: left;
}
.col-xs-12 {
    width: 100%;
}
.col-xs-11 {
    width: 91.66666667%;
}
.col-xs-10 {
    width: 83.33333333%;
}
.col-xs-9 {
    width: 75%;
}
.col-xs-8 {
    width: 66.66666667%;
}
.col-xs-7 {
    width: 58.33333333%;
}
.col-xs-6 {
    width: 50%;
}
.col-xs-5 {
    width: 41.66666667%;
}
.col-xs-4 {
    width: 33.33333333%;
}
.col-xs-3 {
    width: 25%;
}
.col-xs-2 {
    width: 16.66666667%;
}
.col-xs-1 {
    width: 8.33333333%;
}
.col-xs-pull-12 {
    right: 100%;
}
.col-xs-pull-11 {
    right: 91.66666667%;
}
.col-xs-pull-10 {
    right: 83.33333333%;
}
.col-xs-pull-9 {
    right: 75%;
}
.col-xs-pull-8 {
    right: 66.66666667%;
}
.col-xs-pull-7 {
    right: 58.33333333%;
}
.col-xs-pull-6 {
    right: 50%;
}
.col-xs-pull-5 {
    right: 41.66666667%;
}
.col-xs-pull-4 {
    right: 33.33333333%;
}
.col-xs-pull-3 {
    right: 25%;
}
.col-xs-pull-2 {
    right: 16.66666667%;
}
.col-xs-pull-1 {
    right: 8.33333333%;
}
.col-xs-pull-0 {
    right: auto;
}
.col-xs-push-12 {
    left: 100%;
}
.col-xs-push-11 {
    left: 91.66666667%;
}
.col-xs-push-10 {
    left: 83.33333333%;
}
.col-xs-push-9 {
    left: 75%;
}
.col-xs-push-8 {
    left: 66.66666667%;
}
.col-xs-push-7 {
    left: 58.33333333%;
}
.col-xs-push-6 {
    left: 50%;
}
.col-xs-push-5 {
    left: 41.66666667%;
}
.col-xs-push-4 {
    left: 33.33333333%;
}
.col-xs-push-3 {
    left: 25%;
}
.col-xs-push-2 {
    left: 16.66666667%;
}
.col-xs-push-1 {
    left: 8.33333333%;
}
.col-xs-push-0 {
    left: auto;
}
.col-xs-offset-12 {
    margin-left: 100%;
}
.col-xs-offset-11 {
    margin-left: 91.66666667%;
}
.col-xs-offset-10 {
    margin-left: 83.33333333%;
}
.col-xs-offset-9 {
    margin-left: 75%;
}
.col-xs-offset-8 {
    margin-left: 66.66666667%;
}
.col-xs-offset-7 {
    margin-left: 58.33333333%;
}
.col-xs-offset-6 {
    margin-left: 50%;
}
.col-xs-offset-5 {
    margin-left: 41.66666667%;
}
.col-xs-offset-4 {
    margin-left: 33.33333333%;
}
.col-xs-offset-3 {
    margin-left: 25%;
}
.col-xs-offset-2 {
    margin-left: 16.66666667%;
}
.col-xs-offset-1 {
    margin-left: 8.33333333%;
}
.col-xs-offset-0 {
    margin-left: 0%;
}
@media (min-width: 768px) {
    .col-sm-1,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12 {
        float: left;
    }
    .col-sm-12 {
        width: 100%;
    }
    .col-sm-11 {
        width: 91.66666667%;
    }
    .col-sm-10 {
        width: 83.33333333%;
    }
    .col-sm-9 {
        width: 75%;
    }
    .col-sm-8 {
        width: 66.66666667%;
    }
    .col-sm-7 {
        width: 58.33333333%;
    }
    .col-sm-6 {
        width: 50%;
    }
    .col-sm-5 {
        width: 41.66666667%;
    }
    .col-sm-4 {
        width: 33.33333333%;
    }
    .col-sm-3 {
        width: 25%;
    }
    .col-sm-2 {
        width: 16.66666667%;
    }
    .col-sm-1 {
        width: 8.33333333%;
    }
    .col-sm-pull-12 {
        right: 100%;
    }
    .col-sm-pull-11 {
        right: 91.66666667%;
    }
    .col-sm-pull-10 {
        right: 83.33333333%;
    }
    .col-sm-pull-9 {
        right: 75%;
    }
    .col-sm-pull-8 {
        right: 66.66666667%;
    }
    .col-sm-pull-7 {
        right: 58.33333333%;
    }
    .col-sm-pull-6 {
        right: 50%;
    }
    .col-sm-pull-5 {
        right: 41.66666667%;
    }
    .col-sm-pull-4 {
        right: 33.33333333%;
    }
    .col-sm-pull-3 {
        right: 25%;
    }
    .col-sm-pull-2 {
        right: 16.66666667%;
    }
    .col-sm-pull-1 {
        right: 8.33333333%;
    }
    .col-sm-pull-0 {
        right: auto;
    }
    .col-sm-push-12 {
        left: 100%;
    }
    .col-sm-push-11 {
        left: 91.66666667%;
    }
    .col-sm-push-10 {
        left: 83.33333333%;
    }
    .col-sm-push-9 {
        left: 75%;
    }
    .col-sm-push-8 {
        left: 66.66666667%;
    }
    .col-sm-push-7 {
        left: 58.33333333%;
    }
    .col-sm-push-6 {
        left: 50%;
    }
    .col-sm-push-5 {
        left: 41.66666667%;
    }
    .col-sm-push-4 {
        left: 33.33333333%;
    }
    .col-sm-push-3 {
        left: 25%;
    }
    .col-sm-push-2 {
        left: 16.66666667%;
    }
    .col-sm-push-1 {
        left: 8.33333333%;
    }
    .col-sm-push-0 {
        left: auto;
    }
    .col-sm-offset-12 {
        margin-left: 100%;
    }
    .col-sm-offset-11 {
        margin-left: 91.66666667%;
    }
    .col-sm-offset-10 {
        margin-left: 83.33333333%;
    }
    .col-sm-offset-9 {
        margin-left: 75%;
    }
    .col-sm-offset-8 {
        margin-left: 66.66666667%;
    }
    .col-sm-offset-7 {
        margin-left: 58.33333333%;
    }
    .col-sm-offset-6 {
        margin-left: 50%;
    }
    .col-sm-offset-5 {
        margin-left: 41.66666667%;
    }
    .col-sm-offset-4 {
        margin-left: 33.33333333%;
    }
    .col-sm-offset-3 {
        margin-left: 25%;
    }
    .col-sm-offset-2 {
        margin-left: 16.66666667%;
    }
    .col-sm-offset-1 {
        margin-left: 8.33333333%;
    }
    .col-sm-offset-0 {
        margin-left: 0%;
    }
}
@media (min-width: 992px) {
    .col-md-1,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-10,
    .col-md-11,
    .col-md-12 {
        float: left;
    }
    .col-md-12 {
        width: 100%;
    }
    .col-md-11 {
        width: 91.66666667%;
    }
    .col-md-10 {
        width: 83.33333333%;
    }
    .col-md-9 {
        width: 75%;
    }
    .col-md-8 {
        width: 66.66666667%;
    }
    .col-md-7 {
        width: 58.33333333%;
    }
    .col-md-6 {
        width: 50%;
    }
    .col-md-5 {
        width: 41.66666667%;
    }
    .col-md-4 {
        width: 33.33333333%;
    }
    .col-md-3 {
        width: 25%;
    }
    .col-md-2 {
        width: 16.66666667%;
    }
    .col-md-1 {
        width: 8.33333333%;
    }
    .col-md-pull-12 {
        right: 100%;
    }
    .col-md-pull-11 {
        right: 91.66666667%;
    }
    .col-md-pull-10 {
        right: 83.33333333%;
    }
    .col-md-pull-9 {
        right: 75%;
    }
    .col-md-pull-8 {
        right: 66.66666667%;
    }
    .col-md-pull-7 {
        right: 58.33333333%;
    }
    .col-md-pull-6 {
        right: 50%;
    }
    .col-md-pull-5 {
        right: 41.66666667%;
    }
    .col-md-pull-4 {
        right: 33.33333333%;
    }
    .col-md-pull-3 {
        right: 25%;
    }
    .col-md-pull-2 {
        right: 16.66666667%;
    }
    .col-md-pull-1 {
        right: 8.33333333%;
    }
    .col-md-pull-0 {
        right: auto;
    }
    .col-md-push-12 {
        left: 100%;
    }
    .col-md-push-11 {
        left: 91.66666667%;
    }
    .col-md-push-10 {
        left: 83.33333333%;
    }
    .col-md-push-9 {
        left: 75%;
    }
    .col-md-push-8 {
        left: 66.66666667%;
    }
    .col-md-push-7 {
        left: 58.33333333%;
    }
    .col-md-push-6 {
        left: 50%;
    }
    .col-md-push-5 {
        left: 41.66666667%;
    }
    .col-md-push-4 {
        left: 33.33333333%;
    }
    .col-md-push-3 {
        left: 25%;
    }
    .col-md-push-2 {
        left: 16.66666667%;
    }
    .col-md-push-1 {
        left: 8.33333333%;
    }
    .col-md-push-0 {
        left: auto;
    }
    .col-md-offset-12 {
        margin-left: 100%;
    }
    .col-md-offset-11 {
        margin-left: 91.66666667%;
    }
    .col-md-offset-10 {
        margin-left: 83.33333333%;
    }
    .col-md-offset-9 {
        margin-left: 75%;
    }
    .col-md-offset-8 {
        margin-left: 66.66666667%;
    }
    .col-md-offset-7 {
        margin-left: 58.33333333%;
    }
    .col-md-offset-6 {
        margin-left: 50%;
    }
    .col-md-offset-5 {
        margin-left: 41.66666667%;
    }
    .col-md-offset-4 {
        margin-left: 33.33333333%;
    }
    .col-md-offset-3 {
        margin-left: 25%;
    }
    .col-md-offset-2 {
        margin-left: 16.66666667%;
    }
    .col-md-offset-1 {
        margin-left: 8.33333333%;
    }
    .col-md-offset-0 {
        margin-left: 0%;
    }
}
@media (min-width: 1140px) {
    .col-lg-1,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12 {
        float: left;
    }
    .col-lg-12 {
        width: 100%;
    }
    .col-lg-11 {
        width: 91.66666667%;
    }
    .col-lg-10 {
        width: 83.33333333%;
    }
    .col-lg-9 {
        width: 75%;
    }
    .col-lg-8 {
        width: 66.66666667%;
    }
    .col-lg-7 {
        width: 58.33333333%;
    }
    .col-lg-6 {
        width: 50%;
    }
    .col-lg-5 {
        width: 41.66666667%;
    }
    .col-lg-4 {
        width: 33.33333333%;
    }
    .col-lg-3 {
        width: 25%;
    }
    .col-lg-2 {
        width: 16.66666667%;
    }
    .col-lg-1 {
        width: 8.33333333%;
    }
    .col-lg-pull-12 {
        right: 100%;
    }
    .col-lg-pull-11 {
        right: 91.66666667%;
    }
    .col-lg-pull-10 {
        right: 83.33333333%;
    }
    .col-lg-pull-9 {
        right: 75%;
    }
    .col-lg-pull-8 {
        right: 66.66666667%;
    }
    .col-lg-pull-7 {
        right: 58.33333333%;
    }
    .col-lg-pull-6 {
        right: 50%;
    }
    .col-lg-pull-5 {
        right: 41.66666667%;
    }
    .col-lg-pull-4 {
        right: 33.33333333%;
    }
    .col-lg-pull-3 {
        right: 25%;
    }
    .col-lg-pull-2 {
        right: 16.66666667%;
    }
    .col-lg-pull-1 {
        right: 8.33333333%;
    }
    .col-lg-pull-0 {
        right: auto;
    }
    .col-lg-push-12 {
        left: 100%;
    }
    .col-lg-push-11 {
        left: 91.66666667%;
    }
    .col-lg-push-10 {
        left: 83.33333333%;
    }
    .col-lg-push-9 {
        left: 75%;
    }
    .col-lg-push-8 {
        left: 66.66666667%;
    }
    .col-lg-push-7 {
        left: 58.33333333%;
    }
    .col-lg-push-6 {
        left: 50%;
    }
    .col-lg-push-5 {
        left: 41.66666667%;
    }
    .col-lg-push-4 {
        left: 33.33333333%;
    }
    .col-lg-push-3 {
        left: 25%;
    }
    .col-lg-push-2 {
        left: 16.66666667%;
    }
    .col-lg-push-1 {
        left: 8.33333333%;
    }
    .col-lg-push-0 {
        left: auto;
    }
    .col-lg-offset-12 {
        margin-left: 100%;
    }
    .col-lg-offset-11 {
        margin-left: 91.66666667%;
    }
    .col-lg-offset-10 {
        margin-left: 83.33333333%;
    }
    .col-lg-offset-9 {
        margin-left: 75%;
    }
    .col-lg-offset-8 {
        margin-left: 66.66666667%;
    }
    .col-lg-offset-7 {
        margin-left: 58.33333333%;
    }
    .col-lg-offset-6 {
        margin-left: 50%;
    }
    .col-lg-offset-5 {
        margin-left: 41.66666667%;
    }
    .col-lg-offset-4 {
        margin-left: 33.33333333%;
    }
    .col-lg-offset-3 {
        margin-left: 25%;
    }
    .col-lg-offset-2 {
        margin-left: 16.66666667%;
    }
    .col-lg-offset-1 {
        margin-left: 8.33333333%;
    }
    .col-lg-offset-0 {
        margin-left: 0%;
    }
}
@media (min-width: 1400px) {
    .col-xl-1,
    .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-xl-10,
    .col-xl-11,
    .col-xl-12 {
        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%;
    }
}
/** 5 Columns **/
.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
    position: relative !important;
    min-height: 1px !important;
    padding-right: 10px !important;
    padding-left: 10px !important;
}

.col-xs-5ths {
    width: 20% !important;
    float: left !important;
}

@media (min-width: 768px) {
    .col-sm-5ths {
        width: 20% !important;
        float: left !important;
    }
}

@media (min-width: 992px) {
    .col-md-5ths {
        width: 20% !important;
        float: left !important;
    }
}

@media (min-width: 1200px) {
    .col-lg-5ths {
        width: 20% !important;
        float: left !important;
    }
}

/*===============================================
  Tables
================================================= */

table {
    background-color: transparent;
}
th {
    text-align: left;
}
.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
    padding: 9px 18px;
    line-height: 1.49;
    vertical-align: middle;
    border-top: 1px solid #eeeeee;
}
.table > thead > tr > th {
    font-weight: 600;
    /*vertical-align: bottom;*/
    border-bottom: 1px solid #eeeeee;
}
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
    border-top: 0;
}
.table > tbody + tbody {
    border-top: 2px solid #eeeeee;
}
.table tbody > tr:first-child > td {
    border-top: 0;
}
.table .table {
    margin-bottom: 0;
    background-color: #ffffff;
}
.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
    padding: 5px;
}
table.border-separate {
    border-collapse: separate;
}
.table-bordered {
    border: 1px solid #eeeeee;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
    border: 1px solid #eeeeee;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
    border-bottom-width: 2px;
}
.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th,
.cell-hover > tbody > tr:nth-child(odd) > td:first-child:hover {
    background-color: #f9f9f9;
}
.table-striped > tbody > tr.default:nth-child(odd) > td,
.table-striped > tbody > tr.default:nth-child(odd) > th,
.cell-hover > tbody > tr.default:nth-child(odd) > td:first-child:hover,
.table-striped > tbody > tr.default:nth-child(even) > td,
.table-striped > tbody > tr.default:nth-child(even) > th,
.cell-hover > tbody > tr.default:nth-child(even) > td:first-child:hover {
    background-color: inherit;
    border-color: #eee !important;
    color: #b3b3b3;
    cursor: default;
}
.table-striped > tbody > tr.default:nth-child(odd) > td,
.table-striped > tbody > tr.default:nth-child(odd) > th,
.cell-hover > tbody > tr.default:nth-child(odd) > td:first-child:hover {
    background-color: #f9f9f9;
}
.table-selectable > tbody > tr:hover > td {
    cursor: pointer;
}
.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th {
    background-color: #f5f5f5;
}
.cell-hover > tbody > tr > td:hover {
    background-color: #4a89dc;
    color: #fff;
    cursor: pointer;
}
.cell-hover > tbody > tr > td:first-child:hover,
.cell-hover > tbody > tr:nth-child(odd) > td:first-child:hover {
    cursor: default;
    color: inherit;
}
.cell-hover > tbody > tr:nth-child(even) > td:first-child:hover {
    background-color: inherit;
}
.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.text-center th {
    text-align: center;
}
table.text-center > thead > tr > th:first-child,
table.text-center > tbody > tr > td:first-child {
    text-align: left;
}
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;
}
.table > thead > tr > td.default,
.table > tbody > tr > td.default,
.table > tfoot > tr > td.default,
.table > thead > tr > th.default,
.table > tbody > tr > th.default,
.table > tfoot > tr > th.default,
.table > thead > tr.default > td,
.table > tbody > tr.default > td,
.table > tfoot > tr.default > td,
.table > thead > tr.default > th,
.table > tbody > tr.default > th,
.table > tfoot > tr.default > th {
    color: #777;
    border-color: #ddd;
    background-color: #f0f0f0;
}
.table-hover > tbody > tr > td.default:hover,
.table-hover > tbody > tr > th.default:hover,
.table-hover > tbody > tr.default:hover > td,
.table-hover > tbody > tr:hover > .default,
.table-hover > tbody > tr.default:hover > th {
    background-color: #fcfcfc;
}
@media screen and (max-width: 767px) {
    .table-responsive {
        width: 100%;
        overflow-y: hidden;
        overflow-x: auto;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #eeeeee;
        -webkit-overflow-scrolling: touch;
    }
    .table-responsive > .table {
        margin-bottom: 0;
    }
    .table-responsive > .table > thead > tr > th,
    .table-responsive > .table > tbody > tr > th,
    .table-responsive > .table > tfoot > tr > th,
    .table-responsive > .table > thead > tr > td,
    .table-responsive > .table > tbody > tr > td,
    .table-responsive > .table > tfoot > tr > td {
        white-space: nowrap;
    }
    .table-responsive > .table-bordered {
        border: 0;
    }
    .table-responsive > .table-bordered > thead > tr > th:first-child,
    .table-responsive > .table-bordered > tbody > tr > th:first-child,
    .table-responsive > .table-bordered > tfoot > tr > th:first-child,
    .table-responsive > .table-bordered > thead > tr > td:first-child,
    .table-responsive > .table-bordered > tbody > tr > td:first-child,
    .table-responsive > .table-bordered > tfoot > tr > td:first-child {
        border-left: 0;
    }
    .table-responsive > .table-bordered > thead > tr > th:last-child,
    .table-responsive > .table-bordered > tbody > tr > th:last-child,
    .table-responsive > .table-bordered > tfoot > tr > th:last-child,
    .table-responsive > .table-bordered > thead > tr > td:last-child,
    .table-responsive > .table-bordered > tbody > tr > td:last-child,
    .table-responsive > .table-bordered > tfoot > tr > td:last-child {
        border-right: 0;
    }
    .table-responsive > .table-bordered > tbody > tr:last-child > th,
    .table-responsive > .table-bordered > tfoot > tr:last-child > th,
    .table-responsive > .table-bordered > tbody > tr:last-child > td,
    .table-responsive > .table-bordered > tfoot > tr:last-child > td {
        border-bottom: 0;
    }
    table.column-responsive th,
    table.column-responsive td {
        display: block;
    }
}
/*==================================================
  Forms
==================================================== */

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: #333333;
    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="radio"],
input[type="checkbox"] {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
}
input[type="file"] {
    display: block;
}
input[type="range"] {
    display: block;
    width: 100%;
}
select[multiple],
select[size] {
    height: auto;
}
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
    outline: 0;
    outline-offset: -2px;
}
input[type="checkbox"]:disabled + label.field-label {
    opacity: 0.5;
    cursor: initial;
}
output {
    display: block;
    padding-top: 10px;
    font-size: 13px;
    line-height: 1.49;
    color: #555555;
}
.form-control {
    display: block;
    width: 100%;
    height: 39px;
    padding: 10px 12px;
    font-size: 13px;
    line-height: 1.49;
    color: #555555;
    background-color: #ffffff;
    background-image: none;
    border: 1px solid #dddddd;
    border-radius: 0px;
    -webkit-transition: border-color ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s;
    transition: border-color ease-in-out .15s;
}
@-moz-document url-prefix() {
    input.form-control {
        padding-top: 0;
        padding-bottom: 0;
    }
}
.form-control {
    font-size: inherit;
}
.form-control:focus {
    border-color: #75a5e4;
    outline: 0;
}
.form-control::-moz-placeholder {
    color: #777777;
    opacity: 1;
}
.form-control:-ms-input-placeholder {
    color: #777777;
}
.form-control::-webkit-input-placeholder {
    color: #777777;
}
.form-control.w-auto {
    max-width: 100%;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
    cursor: not-allowed;
    background-color: #fafafa;
    opacity: 1;
}
textarea.form-control {
    height: auto;
}
textarea.form-control {
    resize: vertical;
}
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;*/
    line-height: 1;
}
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;
}
.radio,
.checkbox {
    position: relative;
    display: block;
    min-height: 19px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.radio label,
.checkbox label {
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer;
}
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
    position: absolute;
    margin-left: -20px;
    margin-top: 4px \9;
}
.radio + .radio,
.checkbox + .checkbox {
    margin-top: -5px;
}
.radio-inline,
.checkbox-inline {
    display: inline-block;
    padding-left: 20px;
    margin-bottom: 0;
    vertical-align: middle;
    font-weight: normal;
    cursor: pointer;
}
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
    margin-top: 0;
    margin-left: 10px;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
    cursor: not-allowed;
}
.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
    cursor: not-allowed;
}
.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
    cursor: not-allowed;
}
.form-control-static {
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 0;
}
.form-control-static.input-lg,
.form-control-static.input-sm {
    padding-left: 0;
    padding-right: 0;
}
.input-sm,
.form-horizontal .form-group-sm .form-control {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 0px;
}
select.input-sm {
    height: 30px;
    line-height: 30px;
}
textarea.input-sm,
select[multiple].input-sm {
    height: auto;
}
.input-lg,
.form-horizontal .form-group-lg .form-control {
    height: 45px;
    padding: 10px 16px;
    font-size: 17px;
    line-height: 1.33;
    border-radius: 3px;
}
select.input-lg {
    height: 45px;
    line-height: 45px;
}
textarea.input-lg,
select[multiple].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 .help-block,
.has-primary .control-label,
.has-primary .radio,
.has-primary .checkbox,
.has-primary .radio-inline,
.has-primary .checkbox-inline,
.has-primary .append-icon {
    color: #4a89dc;
}
.has-primary .form-control {
    border-color: #75a5e4;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-primary .form-control:focus {
    border-color: #276ecc;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.025), 0 0 3px #9fc1ed;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.025), 0 0 3px #9fc1ed;
}
.has-primary .input-group-addon {
    color: #1f57a1;
    border-color: #4a89dc;
    background-color: #caddf5;
}
.has-primary .form-control-feedback {
    color: #4a89dc;
}
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success .append-icon {
    color: #70ca63;
}
.has-success .form-control {
    border-color: #93d789;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-success .form-control:focus {
    border-color: #4fbb3f;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.025), 0 0 3px #b6e4af;
    box-shadow: inset 0 1px 1px rgba(0, 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 .help-block,
.has-info .control-label,
.has-info .radio,
.has-info .checkbox,
.has-info .radio-inline,
.has-info .checkbox-inline,
.has-info .append-icon {
    color: #3bafda;
}
.has-info .form-control {
    border-color: #66c1e2;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-info .form-control:focus {
    border-color: #2494be;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.025), 0 0 3px #91d2ea;
    box-shadow: inset 0 1px 1px rgba(0, 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 .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning .append-icon {
    color: #f6bb42;
}
.has-warning .form-control {
    border-color: #f8cd73;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-warning .form-control:focus {
    border-color: #f4a911;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.025), 0 0 3px #fbdea3;
    box-shadow: inset 0 1px 1px rgba(0, 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 .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error .append-icon {
    color: #e9573f;
}
.has-error .form-control {
    border-color: #ee7f6d;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-error .form-control:focus {
    border-color: #dc3519;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.025), 0 0 3px #f3a79b;
    box-shadow: inset 0 1px 1px rgba(0, 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 .help-block,
.has-alert .control-label,
.has-alert .radio,
.has-alert .checkbox,
.has-alert .radio-inline,
.has-alert .checkbox-inline,
.has-alert .append-icon {
    color: #967adc;
}
.has-alert .form-control {
    border-color: #b6a2e7;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-alert .form-control:focus {
    border-color: #7652d1;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.025), 0 0 3px #d6cbf1;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.025), 0 0 3px #d6cbf1;
}
.has-alert .input-group-addon {
    color: #542fb2;
    border-color: #967adc;
    background-color: #ece7f9;
}
.has-alert .form-control-feedback {
    color: #967adc;
}
.has-system .help-block,
.has-system .control-label,
.has-system .radio,
.has-system .checkbox,
.has-system .radio-inline,
.has-system .checkbox-inline,
.has-system .append-icon {
    color: #37bc9b;
}
.has-system .form-control {
    border-color: #58ceb1;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-system .form-control:focus {
    border-color: #2b957a;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.025), 0 0 3px #7fdac3;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.025), 0 0 3px #7fdac3;
}
.has-system .input-group-addon {
    color: #206d5a;
    border-color: #37bc9b;
    background-color: #a7e5d6;
}
.has-system .form-control-feedback {
    color: #37bc9b;
}
.has-feedback label.sr-only ~ .form-control-feedback {
    top: 0;
}
.help-block {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #a6a6a6;
}
.form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
}
.form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
}
.form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
}
.form-inline .input-group .input-group-addon,
.form-inline .input-group .input-group-btn,
.form-inline .input-group .form-control {
    width: auto;
}
.form-inline .input-group > .form-control {
    width: 100%;
}
.form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
}
.form-inline .radio,
.form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
}
.form-inline .radio label,
.form-inline .checkbox label {
    padding-left: 0;
}
.form-inline .radio input[type="radio"],
.form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
}
.form-inline .has-feedback .form-control-feedback {
    top: 0;
}

.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 10px;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
    min-height: 29px;
}
.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 Groups
================================================= */

.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;
}
/*===============================================
  Field Icons and Addons
================================================= */

.prepend-icon input.gui-input-sm {
    padding: 4px;
    padding-left: 31px;
    height: 31px;
}

.prepend-icon input.gui-input-sm + .field-icon {
    width: 32px;
    height: 30px;
    line-height: 30px;
}

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

.append-icon.prepend-icon input.gui-input {
    padding-right: 36px;
    padding-left: 36px;
}

.append-icon.prepend-icon .field-icon:first-child,
.append-icon.prepend-icon .append {
    position: absolute;
    top: 0px;
    font-size: 14px;
}

.append-icon.prepend-icon .field-icon:first-child {
    left: 0;
}

.append-icon.prepend-icon .field-icon.append {
    right: 0;
    left: auto;
}

.append-icon.prepend-icon .append {
    z-index: 4;
    width: 42px;
    height: 42px;
    color: inherit;
    line-height: 42px;
    position: absolute;
    text-align: center;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    pointer-events: none;
    right: 0;
}

.append-icon.prepend-icon .append.bg-light {
    top: 1px;
    right: 1px;
    height: 40px;
    color: #888;
    line-height: 40px;
    background-color: #fafafa;
    border-left: 1px solid #DDD;
}

/* Input Addon */

.input-group-addon {
    color: #4a89dc;
    background-color: #fafafa;
    border: 1px solid #DDD;
}

/* Input Clear */

.smart-widget .button.btn-clear {
    margin: 1px;
    padding: 0 14px;
    height: 40px;
    line-height: 38px;
    background-color: transparent;
    border: none;
}

/*===============================================
  Input Hero - Used on FAQ and ui-icons page
================================================= */

.input-group.input-hero {
    display: block;
}
.input-group.input-hero .input-group-addon {
    position: absolute;
    top: 10px;
    left: 13px;
    border: 0;
    background: transparent;
    z-index: 3;
    font-size: 18px;
}
.input-group.input-hero .input-group-addon + input.form-control {
    border-left: 3px solid #4a89dc;
    display: block;
    float: none;
    padding-left: 60px;
    z-index: 0 !important;
}
/* Input Hero Size - SM */

.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;
}
/*===============================================
  Maxlength Indicator - 3rd party plugin
  Not enough styles to grant own stylesheet
================================================= */

.bootstrap-maxlength {
    opacity: 0.6;
    padding: 0px 15px;
    border-radius: 0;
}
.bootstrap-maxlength.maxlength-right {
    padding: 7px 12px;
    margin-top: -8px;
    margin-left: 7px;
}
/*==================================================
  Buttons
==================================================== */

.btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    border-color: rgba(0, 0, 0, 0);
    white-space: normal;
    padding: 9px 12px;
    font-size: 13px;
    line-height: 1.49;
    border-radius: 3px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-font-smoothing: subpixel-antialiased;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus {
    outline: 0;
    outline-offset: -2px;
}
.btn:hover,
.btn:focus {
    color: #666666;
    text-decoration: none;
}
.btn:active,
.btn.active {
    outline: 0;
    background-image: none;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.65;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
}
.btn.btn-gradient {
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 0, 0, 0.07) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.18);
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background-repeat: repeat-x;
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.3) 1%, rgba(255, 255, 255, 0.15) 100%);
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 1%, rgba(255, 255, 255, 0.15) 100%);
}
.btn.btn-rounded {
    border-radius: 20px;
}
.btn-link {
    color: #4a89dc;
    font-weight: normal;
    cursor: pointer;
    border-radius: 0;
}
.btn-link,
.btn-link:active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
    border-color: transparent;
}
.btn-link:hover,
.btn-link:focus {
    color: #2363b6;
    text-decoration: underline;
    background-color: transparent;
}
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
    color: #777777;
    text-decoration: none;
}
.btn-lg,
.btn-group-lg > .btn {
    padding: 10px 16px;
    font-size: 17px;
    line-height: 1.33;
    border-radius: 3px;
}
.btn-sm,
.btn-group-sm > .btn {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}
.btn-xs,
.btn-group-xs > .btn {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 0px;
}
.btn-block {
    display: block;
    width: 100%;
}
.btn-block + .btn-block {
    margin-top: 5px;
}
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].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 0.1s ease;
    transition: opacity 0.1s ease;
}
.btn.btn-alt.item-active,
.btn.btn-alt:hover,
.btn.btn-alt:focus {
    color: #666 !important;
    background-color: #fefefe !important;
}
.btn.btn-alt.btn-gradient {
    background-color: #f0f0f0;
    text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.4);
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background-repeat: repeat-x;
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.9) 10%, rgba(255, 255, 255, 0.3) 100%);
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 10%, rgba(255, 255, 255, 0.3) 100%);
    border-color: rgba(0, 0, 0, 0.07) rgba(0, 0, 0, 0.08) rgba(0, 0, 0, 0.14);
    border-left: 4px solid #DDD;
}
.btn.btn-alt.btn-gradient:hover,
.btn.btn-alt.btn-gradient:focus {
    background-color: #eee;
}
.btn.btn-alt.item-checked {
    opacity: 1;
    color: #666;
    border-left-color: #70ca63 !important;
    transition: all 0.2s ease;
}
.holder-style {
    display: block;
    padding: 9px 16px;
    color: #AAA;
    background-color: #f1f1f1;
    outline: 2px dashed #d9d9d9;
    border: 0;
    -webkit-transition: all 0.15s ease;
    -moz-transition: all 0.15s ease;
    transition: all 0.15s ease;
}
.holder-style:hover,
.holder-style:focus {
    cursor: pointer;
    color: #777;
    background-color: #EEE;
    outline: 2px dashed #aaa;
    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:hover .holder-icon,
.holder-style:focus .holder-icon,
.holder-style.holder-active .holder-icon {
    color: #70ca63;
}
.btn-dimmer.btn,
.btn-dimmer .btn {
    opacity: 0.5;
}
.btn-dimmer.btn:hover,
.btn-dimmer .btn:hover,
.btn-dimmer.btn.item-active,
.btn-dimmer .btn.item-active {
    opacity: 1;
}
.btn-loading {
    opacity: 0.5;
    pointer-events: none;
}
.btn-loading:before {
    display: inline-block;
    margin-right: 5px;
    font: normal 14px/1 FontAwesome;
    font-size: inherit;
    content: "\f110";
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8);
}
.btn-loading i,
.btn-loading .fa {
    display: none;
}
/*==================================================
  Component Animations
==================================================== */

.fade {
    opacity: 0;
    -webkit-transition: opacity 0.15s linear;
    -o-transition: opacity 0.15s linear;
    transition: opacity 0.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 0.35s ease;
    -o-transition: height 0.35s ease;
    transition: height 0.35s ease;
}
/*==================================================
  Dropdown menus
==================================================== */

.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, 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: #ffffff;
    border: 1px solid #cccccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 1px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 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: #666666;
    font-weight: normal;
    line-height: 1.49;
    white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
    text-decoration: none;
    color: #595959;
    background-color: #f5f5f5;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
    color: #ffffff;
    text-decoration: none;
    outline: 0;
    background-color: #4a89dc;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
    color: #aaa;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
    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: #777777;
    white-space: nowrap;
}
.dropdown-backdrop {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 990;
}
.pull-right > .dropdown-menu {
    right: 0;
    left: auto;
}
.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;
    }
}
/*==================================================
  Button Groups
==================================================== */

.btn-group,
.btn-group-vertical {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
    position: relative;
    float: left;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
    z-index: 2;
}
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus {
    outline: 0;
}
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
    margin-left: -1px;
}
.btn-toolbar {
    margin-left: -5px;
}
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
    float: left;
}
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
    margin-left: 5px;
}
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
    border-radius: 0;
}
.btn-group > .btn:first-child {
    margin-left: 0;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
    border-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, 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, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn-group.open .dropdown-toggle.btn-link {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.btn .caret {
    margin-left: 0;
}
.btn-lg .caret {
    border-width: 5px 5px 0;
    border-bottom-width: 0;
}
.dropup .btn-lg .caret {
    border-width: 0 5px 5px;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
    display: block;
    float: none;
    width: 100%;
    max-width: 100%;
}
.btn-group-vertical > .btn-group > .btn {
    float: none;
}
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
    margin-top: -1px;
    margin-left: 0;
}
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
    border-radius: 0;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
    border-top-right-radius: 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="radio"],
[data-toggle="buttons"] > .btn > input[type="checkbox"] {
    position: absolute;
    z-index: -1;
    opacity: 0;
    filter: alpha(opacity=0);
}
/*==================================================
  Input Groups
==================================================== */

.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;
}
textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn,
select[multiple].input-group-lg > .form-control,
select[multiple].input-group-lg > .input-group-addon,
select[multiple].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: 0px;
}
select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
    height: 30px;
    line-height: 30px;
}
textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn,
select[multiple].input-group-sm > .form-control,
select[multiple].input-group-sm > .input-group-addon,
select[multiple].input-group-sm > .input-group-btn > .btn {
    height: auto;
}
.input-group-addon,
.input-group-btn,
.input-group .form-control {
    display: table-cell;
}
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
    border-radius: 0;
}
.input-group-addon,
.input-group-btn {
    width: 1%;
    white-space: nowrap;
    vertical-align: middle;
}
.input-group-addon {
    min-width: 40px;
    padding: 9px 12px;
    font-size: 13px;
    font-weight: normal;
    line-height: 1;
    color: #4a89dc;
    text-align: center;
    background-color: #fafafa;
    border: 1px solid #dddddd;
    border-radius: 0px;
}
.input-group-addon.input-sm {
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 0px;
}
.input-group-addon.input-lg {
    padding: 10px 16px;
    font-size: 17px;
    border-radius: 3px;
}
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
    margin-top: 0;
}
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
    border-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:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
    border-bottom-left-radius: 0;
    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:hover,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:active {
    z-index: 2;
}
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
    margin-right: -1px;
}
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
    margin-left: -1px;
}
/*==================================================
  Navs
==================================================== */

.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 12px;
}
.nav > li > a:hover,
.nav > li > a:focus {
    text-decoration: none;
    background-color: #eeeeee;
}
.nav > li.disabled > a {
    color: #777777;
}
.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
    color: #777777;
    text-decoration: none;
    background-color: transparent;
    cursor: not-allowed;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
    background-color: #eeeeee;
    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 #dddddd;
}
.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: #eeeeee #eeeeee #dddddd;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
    color: #555555;
    background-color: transparent;
    border: 1px solid #dddddd;
    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:hover,
.nav-tabs.nav-justified > .active > a:focus {
    border: 1px solid #dddddd;
}
@media (min-width: 768px) {
    .nav-tabs.nav-justified > li > a {
        border-bottom: 1px solid #dddddd;
        border-radius: 1px 1px 0 0;
    }
    .nav-tabs.nav-justified > .active > a,
    .nav-tabs.nav-justified > .active > a:hover,
    .nav-tabs.nav-justified > .active > a:focus {
        border-bottom-color: #ffffff;
    }
}
.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;
    border-radius: 3px;
}
.nav-pills > li {
    float: left;
}
.nav-pills > li > a {
    color: #888;
    padding: 8px 14px;
    border-radius: 1px;
}
.nav-pills > li > a.btn {
    border-radius: 3px;
}
.nav-pills > li + li {
    margin-left: 7px;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
    color: #FFF;
    background-color: #4a89dc;
}
.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;
}

.network-status-container:not(.alert-hidden) + .page-heading {
    margin-top: 0;
}

.page-heading.fixed {
    position: fixed;
    margin-right: 0;
    z-index: 19;
}
.page-heading.white {
    background-color: #ffffff;
}
.page-heading.signup-banner {
    margin-bottom: -60px;
}
.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:hover > a,
.page-tabs .nav-tabs > li:focus > a {
    border-color: #ddd;
}
.page-tabs .nav-tabs > li.active > a,
.page-tabs .nav-tabs > li.active > a:hover,
.page-tabs .nav-tabs > li.active > a:focus {
    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:last-child,
    .page-tabs .nav-tabs li.active:last-child {
        margin-bottom: 10px;
    }
    .page-tabs .nav-tabs > li > a:hover,
    .page-tabs .nav-tabs > li > a:focus {
        border: 1px solid #DDD;
    }
    .page-tabs .nav-tabs > li.active > a,
    .page-tabs .nav-tabs > li.active > a:hover,
    .page-tabs .nav-tabs > li.active > a:focus {
        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:hover,
.nav-tabs-justified > .active > a:focus {
    border: 1px solid #dddddd;
}
@media (min-width: 768px) {
    .nav-tabs-justified > li > a {
        border-bottom: 1px solid #dddddd;
        border-radius: 1px 1px 0 0;
    }
    .nav-tabs-justified > .active > a,
    .nav-tabs-justified > .active > a:hover,
    .nav-tabs-justified > .active > a:focus {
        border-bottom-color: #ffffff;
    }
}
.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: #444;
    border-bottom: 3px solid #4a89dc;
}
.nav-list li a {
    color: #AAA;
    font-weight: 600;
    border-bottom: 3px solid transparent;
}
.nav-list li a:hover,
.nav-list li a:focus {
    color: #444;
    background-color: transparent;
}
.nav-list.nav-list-sm li a {
    padding: 10px 8px;
}
/*==================================================
  Navbars
==================================================== */

.navbar {
    position: relative;
    min-height: 50px;
    margin-bottom: 19px;
    border: 1px solid transparent;
}
@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, 0.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-top .navbar-collapse,
    .navbar-static-top .navbar-collapse,
    .navbar-fixed-bottom .navbar-collapse {
        padding-left: 0;
        padding-right: 0;
    }
}
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
    max-height: 340px;
}
@media (max-width: 480px) and (orientation: landscape) {
    .navbar-fixed-top .navbar-collapse,
    .navbar-fixed-bottom .navbar-collapse {
        max-height: 200px;
    }
}
.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
    margin-right: -11px;
    margin-left: -11px;
}
@media (min-width: 480px) {
    .container > .navbar-header,
    .container-fluid > .navbar-header,
    .container > .navbar-collapse,
    .container-fluid > .navbar-collapse {
        margin-right: 0;
        margin-left: 0;
    }
}
.navbar-static-top {
    z-index: 1000;
    border-width: 0 0 1px;
}
@media (min-width: 480px) {
    .navbar-static-top {
        border-radius: 0;
    }
}
.navbar-fixed-top,
.navbar-fixed-bottom {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
@media (min-width: 480px) {
    .navbar-fixed-top,
    .navbar-fixed-bottom {
        border-radius: 0;
    }
}
.navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px;
}
.admin-user-login {
    position: fixed;
    top: -1px;
    right: 0;
    left: 0;
    margin-bottom: 0 !important;
    padding: 10px !important;
    text-align: center;
    z-index: 1030;
}
.admin-user-login .login-details {
    display: inline-block;
    margin-right: 20px;
    vertical-align: middle;
}
.admin-user-login .btn,
.admin-user-login .btn:hover,
.admin-user-login .btn:active {
    color: #fff;
    font-weight: normal;
    text-decoration: none;
    vertical-align: middle;
}
/*.admin-user-login + .navbar-fixed-top {*/
    /*top: 60px;*/
/*}*/
/*.admin-user-login ~ .navbar.navbar-fixed-top + #sidebar_left + #content_wrapper,*/
/*.admin-user-login ~ .navbar.navbar-fixed-top + #sidebar_left + .toggle_sidemenu_l.sidebar + #content_wrapper,*/
/*.admin-user-login ~ #sidebar_left,*/
/*.admin-user-login ~ #sidebar_left.nano > .nano-content {*/
    /*padding-top: 120px;*/
/*}*/
.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:hover,
.navbar-brand:focus {
    text-decoration: none;
}
@media (min-width: 480px) {
    .navbar > .container .navbar-brand,
    .navbar > .container-fluid .navbar-brand {
        margin-left: -11px;
    }
}
.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 > li > a,
    .navbar-nav .open .dropdown-menu .dropdown-header {
        padding: 5px 15px 5px 25px;
    }
    .navbar-nav .open .dropdown-menu > li > a {
        line-height: 19px;
    }
    .navbar-nav .open .dropdown-menu > li > a:hover,
    .navbar-nav .open .dropdown-menu > li > a:focus {
        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-left: -11px;
    margin-right: -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, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
    margin-top: 5.5px;
    margin-bottom: 5.5px;
}

.nav-mobile {
    display: none !important;
}
@media (max-width: 570px) {
    .navbar-nav {
        display: none;
    }

    .nav-mobile {
        display: block !important;
        float: right;
    }

    .nav-mobile .dropdown .sub-menu {
        width: 100%;
        padding: 0;
        list-style: none;
        background: rgba(0, 0, 0, 0.05);
    }

    .nav-mobile .dropdown .sub-menu li > a {
        display: block;
        color: #666666;
    }
    .nav-mobile .dropdown .sub-menu li > a:hover {
        background: rgba(0, 0, 0, 0.1);
        text-decoration: none;
    }
}
@media (min-width: 768px) {
    .navbar-form .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle;
    }
    .navbar-form .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle;
    }
    .navbar-form .input-group {
        display: inline-table;
        vertical-align: middle;
    }
    .navbar-form .input-group .input-group-addon,
    .navbar-form .input-group .input-group-btn,
    .navbar-form .input-group .form-control {
        width: auto;
    }
    .navbar-form .input-group > .form-control {
        width: 100%;
    }
    .navbar-form .control-label {
        margin-bottom: 0;
        vertical-align: middle;
    }
    .navbar-form .radio,
    .navbar-form .checkbox {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle;
    }
    .navbar-form .radio label,
    .navbar-form .checkbox label {
        padding-left: 0;
    }
    .navbar-form .radio input[type="radio"],
    .navbar-form .checkbox input[type="checkbox"] {
        position: relative;
        margin-left: 0;
    }
    .navbar-form .has-feedback .form-control-feedback {
        top: 0;
    }
}
@media (max-width: 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: #777777;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
    color: #5e5e5e;
    background-color: transparent;
}
.navbar-default .navbar-text {
    color: #777777;
}
.navbar-default .navbar-nav > li > a {
    color: #777777;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
    color: #333333;
    background-color: transparent;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
    color: #555555;
    background-color: #e7e7e7;
}
.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
    color: #cccccc;
    background-color: transparent;
}
.navbar-default .navbar-toggle {
    border-color: #dddddd;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    background-color: #dddddd;
}
.navbar-default .navbar-toggle .icon-bar {
    background-color: #888888;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
    border-color: #e7e7e7;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
    background-color: #e7e7e7;
    color: #555555;
}
@media (max-width: 479px) {
    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
        color: #777777;
    }
    .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
    .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
        color: #333333;
        background-color: transparent;
    }
    .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
    .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
    .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
        color: #555555;
        background-color: #e7e7e7;
    }
    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
        color: #cccccc;
        background-color: transparent;
    }
}
.navbar-default .navbar-link {
    color: #777777;
}
.navbar-default .navbar-link:hover {
    color: #333333;
}
.navbar-default .btn-link {
    color: #777777;
}
.navbar-default .btn-link:hover,
.navbar-default .btn-link:focus {
    color: #333333;
}
.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:hover,
.navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:focus {
    color: #cccccc;
}
.navbar-inverse {
    background-color: #222222;
    border-color: #080808;
}
.navbar-inverse .navbar-brand {
    color: #777777;
}
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
    color: #ffffff;
    background-color: transparent;
}
.navbar-inverse .navbar-text {
    color: #777777;
}
.navbar-inverse .navbar-nav > li > a {
    color: #777777;
}
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
    color: #ffffff;
    background-color: transparent;
}
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
    color: #ffffff;
    background-color: #080808;
}
.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
    color: #444444;
    background-color: transparent;
}
.navbar-inverse .navbar-toggle {
    border-color: #333333;
}
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
    background-color: #333333;
}
.navbar-inverse .navbar-toggle .icon-bar {
    background-color: #ffffff;
}
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
    border-color: #101010;
}
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
    background-color: #080808;
    color: #ffffff;
}
@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: #777777;
    }
    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
        color: #ffffff;
        background-color: transparent;
    }
    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
        color: #ffffff;
        background-color: #080808;
    }
    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
        color: #444444;
        background-color: transparent;
    }
}
.navbar-inverse .navbar-link {
    color: #777777;
}
.navbar-inverse .navbar-link:hover {
    color: #ffffff;
}
.navbar-inverse .btn-link {
    color: #777777;
}
.navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link:focus {
    color: #ffffff;
}
.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:focus {
    color: #444444;
}
.navbar-center {
    position: absolute;
    top: 0;
    left: 0;
    display: table;
    padding-left: 235px;
    width: 100%;
}
@media (max-width: 479px) {
    .navbar-center {
        display: block;
    }
}
.navbar-center .realm-name {
    display: table-cell;
    width: 100%;
    font-size: 18px;
    text-align: center;
    vertical-align: middle;
}
@media (max-width: 992px) {
    .navbar-center .realm-name {
        font-size: 15px;
    }
}
.realm-name .realm-icon {
    margin-right: 5px;
    color: #cacaca;
}
.navbar-center .account-controls {
    /*display: table-cell;*/
    /*max-width: 400px;*/
    /*width: 300px;*/
}
@media (max-width: 767px) {
    .navbar-center .account-controls {
        width: auto;
    }
}
.navbar .account-controls.nav > li.dropdown {
    float: right !important;
}
/*==================================================
  Breadcrumbs
==================================================== */

.breadcrumb {
    padding: 8px 15px;
    margin-bottom: 19px;
    list-style: none;
    background-color: #f5f5f5;
    border-radius: 1px;
}
.breadcrumb > li {
    display: inline-block;
}
.breadcrumb > li + li:before {
    content: "/\00a0";
    padding: 0 5px;
    color: #cccccc;
}
.breadcrumb > .active {
    color: #777777;
}
/*==================================================
  Paginations
==================================================== */

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 19px 0;
    border-radius: 1px;
}
.pagination > li {
    display: inline;
}
.pagination > li > a,
.pagination > li > span {
    position: relative;
    float: left;
    padding: 5px 12px;
    line-height: 1.49;
    text-decoration: none;
    color: #4a89dc;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    margin-left: -1px;
}
.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:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
    color: #2363b6;
    background-color: #eeeeee;
    border-color: #dddddd;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
    z-index: 2;
    color: #ffffff;
    background-color: #4a89dc;
    border-color: #4a89dc;
    cursor: default;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
    color: #777777;
    background-color: #ffffff;
    border-color: #dddddd;
    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: 0px;
    border-top-left-radius: 0px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
    border-bottom-right-radius: 0px;
    border-top-right-radius: 0px;
}
/*==================================================
  Pager Pagination
==================================================== */

.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: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 15px;
}
.pager li > a:hover,
.pager li > a:focus {
    text-decoration: none;
    background-color: #eeeeee;
}
.pager .next > a,
.pager .next > span {
    float: right;
}
.pager .previous > a,
.pager .previous > span {
    float: left;
}
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
    color: #777777;
    background-color: #ffffff;
    cursor: not-allowed;
}
/*==================================================
  Labels
==================================================== */

.label {
    display: inline-block;
    padding: 3px 8px 4px 8px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    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 0.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:hover,
a.label:focus {
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
}
.label:empty {
    display: none;
}
.btn .label {
    position: relative;
    top: -1px;
}
.button-examples .label {
    display: inline-block;
}
/*==================================================
  Badges
==================================================== */

.badge {
    display: inline-block;
    min-width: 10px;
    padding: .4em .6em;
    font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1;
    vertical-align: baseline;
    white-space: nowrap;
    text-align: center;
    background-color: #777777;
    border-radius: 1em;
}
.badge-rounded {
    border-radius: 1em;
}
.badge:empty {
    display: none;
}
.badge.badge-md {
    padding: .5em .8em;
    font-size: 14px;
}
.btn .badge {
    position: relative;
    top: -1px;
}
.btn-xs .badge {
    top: 0;
    padding: 1px 5px;
}
a.badge:hover,
a.badge:focus {
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
}
a.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
    color: #4a89dc;
    background-color: #ffffff;
}
.nav-pills > li > a > .badge {
    margin-left: 3px;
}
/*==================================================
  Jumbotron
==================================================== */

.jumbotron {
    padding: 30px;
    margin-bottom: 30px;
    color: inherit;
    background-color: #eeeeee;
}
.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;
    }
}

.hero {
    margin: -25px -20px;
    padding: 2em 2em 4em;
}

.hero.cloud-hero {
    background-image: url("../images/ui-elements/cloud-bg.jpeg");
    background-size: cover;
    background-position: center;
}

.hero.cloud-hero h1 {
    font-weight: normal;
    line-height: 50px;
}

/*===============================================
  Thumbnails
================================================= */

.thumbnail {
    display: block;
    padding: 4px;
    margin-bottom: 19px;
    line-height: 1.49;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 1px;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.thumbnail > img,
.thumbnail a > img {
    margin-left: auto;
    margin-right: auto;
}
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
    border-color: #4a89dc;
}
.thumbnail .caption {
    padding: 9px;
    color: #666666;
}
/*==================================================
  Alerts
==================================================== */

.alert {
    color: #ffffff;
    font-size: 14px;
    padding: 15px;
    margin-bottom: 19px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 1px;
}
.alert .close {
    color: #666666;
}
.alert .close:hover {
    color: #666666;
}
.alert hr {
    border-top-color: rgba(0, 0, 0, 0.1);
}
.alert h4 {
    margin-top: 0;
    color: inherit;
}
.alert .alert-link {
    color: #ffffff;
    font-weight: bold;
}
.alert > p,
.alert > ul {
    margin-bottom: 0;
}
.alert > p + p {
    margin-top: 5px;
}
.alert.alert-micro,
.alert .alert-sm {
    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: 0.3;
}
.alert-dismissable .close:hover,
.alert-dismissible .close:hover {
    color: #FFF;
    opacity: 1;
}
/*==================================================
  Progress Bars
==================================================== */

@-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;
    height: 19px;
    margin-bottom: 19px;
    background-color: #ddd;
    border-radius: 1px;
    box-shadow: none;
}
.progress-disabled {
    opacity: 0.6;
}
.name-disabled {
    opacity: 0.6;
}
.name-inline {
    display: inline-flex;
}
.unavailable-text:hover {
    text-decoration: underline;
}
.progress-bar {
    float: left;
    width: 0%;
    height: 100%;
    font-size: 12px;
    font-weight: 600;
    line-height: 19px;
    color: #ffffff;
    text-align: center;
    text-shadow: 0 1px 0 rgba(0,0,0,0.15);
    background-color: #999999;
    /*-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);*/
    /*box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);*/
    -webkit-transition: width 0.6s ease;
    -o-transition: width 0.6s ease;
    transition: width 0.6s ease;
}
.progress-striped .progress-bar,
.progress-bar-striped {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 40px 40px;
}
.progress.active .progress-bar,
.progress-bar.active {
    -webkit-animation: progress-bar-stripes 2s linear infinite;
    -o-animation: progress-bar-stripes 2s linear infinite;
    animation: progress-bar-stripes 2s linear infinite;
}
/*.progress-bar[aria-valuenow="1"],*/
/*.progress-bar[aria-valuenow="2"] {*/
    /*min-width: 30px;*/
/*}*/
.progress-bar[aria-valuenow="0"] {
    color: #777777;
    /*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 Groups
==================================================== */

.media {
    color: #999999;
    font-weight: 600;
    margin-top: 15px;
}
.media,.media-body {
    overflow: hidden;
    zoom:1
}
.media-body {
    width: 3000px;
}
.media-object {
    display: block;
}
.media-object.img-thumbnail {
    max-width: none;
}
.media-object.mw150 {
    display: table-cell;
    vertical-align: middle;
    min-width: 150px;
    max-width: 220px;
    height: 150px;
}
.media-left .w100 img {
    max-height: 100%;
}
.media:first-child {
    margin-top: 0;
}
.media-right,
.media > .pull-right {
    padding-left: 10px;
}
.media-left,
.media > .pull-left {
    padding-right: 10px;
}
.media-left,
.media-right,
.media-body {
    display: table-cell;
    vertical-align: top;
}
.media-left .w100 img {
    max-height: 100%;
}
.media-middle {
    vertical-align: middle;
}
.media-bottom {
    vertical-align: bottom;
}
.media-heading {
    color: #555555;
    margin-top: 0;
    margin-bottom: 5px;
}
.media-list {
    padding-left: 0;
    list-style: none;
}

/*==================================================
  List Groups
==================================================== */

.list-group {
    margin-bottom: 20px;
    padding-left: 0;
}
.list-group-item {
    position: relative;
    display: block;
    padding: 10px 15px;
    margin-bottom: -1px;
    background-color: #ffffff;
    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: #4a89dc;
}
a.list-group-item .list-group-item-heading {
    color: #333333;
}
a.list-group-item:hover,
a.list-group-item:focus {
    text-decoration: none;
    color: #4a89dc;
    background-color: #f5f5f5;
}
.list-group-item.disabled,
.list-group-item.disabled:hover,
.list-group-item.disabled:focus {
    background-color: #eeeeee;
    color: #777777;
}
.list-group-item.disabled .list-group-item-heading,
.list-group-item.disabled:hover .list-group-item-heading,
.list-group-item.disabled:focus .list-group-item-heading {
    color: inherit;
}
.list-group-item.disabled .list-group-item-text,
.list-group-item.disabled:hover .list-group-item-text,
.list-group-item.disabled:focus .list-group-item-text {
    color: #777777;
}
.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
    z-index: 2;
    color: #ffffff;
    background-color: #4a89dc;
    border-color: #4a89dc;
}
.list-group-item.active .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small,
.list-group-item.active:hover .list-group-item-heading > .small,
.list-group-item.active:focus .list-group-item-heading > .small {
    color: inherit;
}
.list-group-item.active .list-group-item-text,
.list-group-item.active:hover .list-group-item-text,
.list-group-item.active:focus .list-group-item-text {
    color: #f5f8fd;
}
.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;
}
/*==================================================
  Panels
==================================================== */

.panel {
    position: relative;
    margin-bottom: 20px;
    background-color: #ffffff;
    border-radius: 2px;
}
.panel.bg-primary h2 {
    margin-top: 7px !important;
    margin-bottom: 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 30px !important;
}
.panel.bg-primary h2 + h5 {
    margin-top: 2px;
}
.panel.panel-transparent {
    background: none;
    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: #666666;
}
.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-heading + .panel-menu,
.panel-menu + .panel-body,
.panel-body + .panel-menu,
.panel-body + .panel-body {
    border-top: 0;
}
.panel-body {
    position: relative;
    padding: 15px;
    border: 1px solid #e5e5e5;
}
.panel-body + .panel-footer {
    border-top: 0;
}
.panel-heading {
    position: relative;
    height: 40px;
    line-height: 36px;
    background: #fafafa;
    color: #666666;
    font-size: 13px;
    font-weight: 600;
    padding: 0 8px;
    border: 1px solid #e5e5e5;
    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-heading.panel-heading-sm {
    padding: 0 8px;
    height: 40px;
    font-size: 13px;
    color: #666;
    font-weight: 600;
    line-height: 36px;
    background: #fafafa;
}
.panel-heading.panel-heading-sm.panel-heading-search {
    height: 90px;
}
.panel-heading.panel-heading-sm .panel-title {
    font-size: 13px;
    color: #666;
    font-weight: 600;
    line-height: 36px;
}
.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;
    text-align: center;
}
.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;
}
.panel-heading + .list-group .list-group-item:first-child {
    border-top-width: 0;
}
.panel-body + .list-group .list-group-item:first-child {
    border-top-width: 0;
}
.list-group + .panel-footer {
    border-top-width: 0;
}
.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
    margin-bottom: 0;
}
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
    border-top-right-radius: 1px;
    border-top-left-radius: 1px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
    border-top-left-radius: 1px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
    border-top-right-radius: 1px;
}
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
    border-bottom-right-radius: 1px;
    border-bottom-left-radius: 1px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
    border-bottom-left-radius: 1px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
    border-bottom-right-radius: 1px;
}
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive {
    border-top: 1px solid #eeeeee;
}
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
    border-top: 0;
}
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
    border: 0;
}
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
}
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
}
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
    border-bottom: 0;
}
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
    border-bottom: 0;
}
.panel > .table-responsive {
    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-right: 35px;
}
.panel-group .accordion-icon:after {
    position: absolute;
    content: "\f068";
    font-family: "FontAwesome";
    font-size: 12px;
    font-style: normal;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    color: #555;
    right: 10px;
    top: 1px;
}
.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-heading + .panel-collapse > .panel-body {
    border-top: 0;
}
.panel-group .panel-footer {
    border-top: 0;
}
.panel-group .panel-footer + .panel-collapse .panel-body {
    border-bottom: 1px solid #eeeeee;
}
.panel img {
    display: block;
    margin: 20px auto;
}
.panel .select2 img,
.panel .select2-dropdown img {
    display: inline-block;
    margin-top: -2px;
    margin-bottom: 0;
}
.panel .panel-body.vertical-align {
    text-align: center;
    font: 0/0 a;
}
#content .panel .overflow-show {
    overflow: visible !important;
}
/*.panel .panel-body.vertical-align:before {*/
    /*content: "";*/
    /*display: inline-block;*/
    /*vertical-align: middle;*/
    /*height: 100%;*/
/*}*/
.panel .panel-body.vertical-align img,
.panel .panel-body.vertical-align .svg-container {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0;
    transform: translate(-50%, -50%);
}
.panel .panel-body.vertical-align .svg-container {
    width: 100%;
}
a.panel-link {
    color: #e7e7e7;
}
a.panel-link .bg-light {
    border-top: 1px solid #e7e7e7 !important;
}
a.panel-link .bg-light.lighter {
    background-color: #fff !important;
    border-top: 1px solid #CDCDCD !important;
}
a.panel-link:hover {
    text-decoration: none;
    cursor: pointer;
}
.panel-link:hover {
    cursor: pointer;
}
.panel-link:hover p {
    text-decoration: underline;
}
.panel-link .panel {
    -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;
}
.panel-link .panel:hover {
    width: 100%;
    box-shadow: 0 8px 35px rgba(0, 0, 0, .2);
}
.app-links {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
}
.app-links .panel-body,
.app-links .panel-link {
    display: flex;
}
.app-links .panel {
    flex-grow: 1;
}
.app-links .panel .btn {
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    margin-top: 20px;
}
.panel-link.no-hover .panel:hover {
    box-shadow: none;
    cursor: default;
}
.app-links .panel-body {
    align-items: center;
    background-image: url("/images/app-bg/app.png");
    background-size: cover;
    border-color: rgba(0,0,0,0.2);
    height: 100%;
    justify-content: center;
    min-height: 225px;
    padding: 24px 15px;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.panel-link.app .panel-body.bg-primary      { background-image: none; }
.panel-link.app .panel-body.bg-clx          { background-image: url("/images/app-bg/clx.png"); }
.panel-link.app .panel-body.bg-sip,
.panel-link.app .panel-body.bg-sipt         { background-image: url("/images/app-bg/sip.png"); }
.panel-link.app .panel-body.bg-eap          { background-image: url("/images/app-bg/eap.png"); }
.panel-link.app .panel-body.bg-ec           { background-image: url("/images/app-bg/ec.png"); }
.panel-link.app .panel-body.bg-phonebook    { background-image: url("/images/app-bg/phonebook.png"); }
.panel-link.app .panel-body.bg-dca          { background-image: url("/images/app-bg/dca.png"); }
.panel-link.app .panel-body.bg-new-dca      { background-image: url("/images/app-bg/new-dca.png"); }
.panel-link.app .panel-body.bg-view-dca     { background-image: url("/images/app-bg/view-dca.png"); }
.app-links .panel-link.disabled .panel-body.bg-primary {
    background-color: #828282 !important;
}
.panel-link.app .realm-icon:after {
    display: block;
    margin: 16px auto;
    width: 50px;
    height: 1px;
    background-color: #ffffff;
    content: "";
}
@media (max-width: 767px) {
    .app-links .panel-link,
    .app-links .panel {
        width: 100%;
        padding-right: 0;
        padding-left: 0;
    }
}
.panel-link.app h1 {
    margin: 0;
    font-size: 26px;
    font-weight: 400;
}
label.panel-link {
    display: block;
}
.panel-link .panel-btn {
    color: #666666;
    border-radius: 6px;
    border-color: #CDCDCD;
}
.panel-link .panel-btn h2 {
    font-weight: normal;
}
.panel-link.active .panel-btn {
    background-color: #EBF6FB;
    border-color: #32A8D9;
}
.panel-link-group .logo-container {
    height: 90%;
    margin: auto;
    position: relative;
    width: 90%;
}
.panel-link-group .logo-container img {
    height: auto;
    max-height: 100%;
    max-width: 100%;
    width: auto;
}
@media (min-width: 768px) {
    .panel-link-group {
        display: flex;
        flex-flow: row wrap;
    }
    .panel-link-group .panel-link {
        display: flex;
        flex: 0 1 auto;
        flex-direction: column;
    }
    .panel-link-group .panel-link .panel-tile,
    .panel-link-group .panel-link .panel-body.bg-light,
    .panel-link-group .panel-link .panel-body.bg-white {
        flex-grow: 1;
        height: 100%;
    }
}
a.panel-link.new {
    cursor: pointer;
}
.panel-link.new {
    margin-top: 15px;
}
.panel-link.new .panel-tile {
    text-align: center;
}
.panel-link.new .panel-body {
    border: none !important;
}
.panel-link.new .panel-body.logo-container {
    padding-bottom: 10px;
}
.panel-link.new .panel-body.logo-container + .panel-body {
    padding: 10px;
    padding-bottom: 30px;
    color: #666;
}
.panel-link.new .panel-body h2,
.panel-link.new .badge,
.panel-link.new .panel-body p {
    margin-bottom: 20px;
    text-decoration: none !important;
}
.panel-link.new .badge {
    display: inline-block;
}
.panel-link.new .badge.badge-md {
    padding-right: 20px;
    padding-left: 20px;
}
.panel-link.new .panel-body p {
    margin-top: 0;
    font-size: 14px;
}
.panel-link.new .panel-body p:last-child {
    margin-bottom: 0;
    margin-top: 100px;
}
.panel-link.new .panel-body .offnet-details hr {
    margin: 20px auto;
    width: 50px;
}
.panel-link.new.int-service .panel {
    background-color: transparent;
}
.panel-link.new.int-service .panel-body:not(.logo-container) {
    background-color: #fff;
}
.panel-link.new.int-service .logo-container {
    margin: 0 auto;
    width: 70%;
    max-width: 320px;
    background-color: #fff;
}

/** Customer Realm Selector Panels **/

.customer-realm-selector .panel:hover {
    background-color: #f9f9f9;
}

.customer-realm-selector .panel-body,
.customer-realm-selector .panel-body .app-details {
    align-items: center;
    display: flex;
}

.customer-realm-selector .panel-body {
    justify-content: space-between;
    padding: 15px;
    width: 100%;
}

.customer-realm-selector .panel-body .app-details {
    flex-grow: 1;
}

.customer-realm-selector .panel-body .app-details .realm-icon {
    margin-right: 20px;
}

.customer-realm-selector .panel-body .app-details h3 {
    font-weight: bold;
    margin: 0;
}

.customer-realm-selector .panel-body .controls a {
    margin-right: 30px;
    text-decoration: underline;
}

.customer-realm-selector .panel-body .controls .btn {
    min-width: 90px;
}

@media (max-width: 768px) {
    .customer-realm-selector .panel-body {
        flex-wrap: wrap;
    }
    .customer-realm-selector .panel-body .app-details {
        justify-content: center;
        margin-bottom: 20px;
    }
    .customer-realm-selector .panel-body .app-details,
    .customer-realm-selector .panel-body .controls {
        width: 100%;
    }
    .customer-realm-selector .panel-body .controls a,
    .customer-realm-selector .panel-body .controls .btn {
        display: inline-block;
        float: left;
        width: 50%;
    }
    .customer-realm-selector .panel-body .controls a {
        margin-right: 0;
    }
}

/** Connection Diagrams **/

.connection {
    position: relative;
}
.connection::before,
.connection::after {
    position: absolute;
    top: 194px;
    content: "";
    display: inline-block;
    height: 16px;
    background-image: url("/images/icons/connection-dot.svg");
    background-size: 16px 16px;
    background-repeat: repeat-x;
    z-index: 1;
}
.connection::before {
    left: 5%;
    width: 45%;
}
.connection::after {
    left: 50%;
    width: 45%;
}
.connection.ali-service::before,
.connection.aws-service::before,
.connection.aws-dc-service::before,
.connection.dec-service::before,
.connection.gcp-service::before,
.connection.ora-service::before,
.connection.ix-service::before,
.connection.service::before {
    top: 92px;
    width: 90%;
}
.connection.ali-service::after,
.connection.aws-service::after,
.connection.aws-dc-service::after,
.connection.dec-service::after,
.connection.gcp-service::after,
.connection.ora-service::after,
.connection.ix-service::after,
.connection.service::after{
    display: none;
}
.connection.msa-service::before,
.connection.msa-service::after,
.connection.msad-service::before,
.connection.msad-service::after {
    display: none;
}
.connection.msa-service .panel-body.msa .panel.msa-service,
.connection.msad-service .panel-body.msa .panel.msa-service {
    position: relative;
}
.connection.msa-service hr,
.connection.msad-service hr {
    display: block;
    margin: 15px 0;
    height: 16px;
    content: "";
    background-image: url("/images/icons/connection-dot.svg");
    background-repeat: repeat-x;
    background-size: 16px 16px;
    border: none;
}
.connection.int-service::before,
.connection.int-service::after,
.connection.eco-service::before,
.connection.eco-service::after {
    top: 94px;
}
.connection.connection-test::before {
    display: none;
}
.connection.connection-test::after {
    top: 60px;
    left: 15%;
    width: 70%;
}
.connection.primary-success::before,
.connection.primary-success::after,
.connection.int-service.primary-success::before,
.connection.int-service.primary-success::after,
.connection.eco-service.primary-success::before,
.connection.eco-service.primary-success::after,
.connection.msa-service.primary-success::before,
.connection.msa-service.secondary-success::after,
.connection.msa-service.primary-success .hr-primary,
.connection.msa-service.secondary-success .hr-secondary,
.connection.msad-service.primary-success .hr-primary,
.connection.msad-service.secondary-success .hr-secondary {
    background-image: url("/images/icons/connection-dot-green.svg");
}
.connection.primary-warning::before,
.connection.primary-warning::after,
.connection.int-service.primary-warning::before,
.connection.int-service.primary-warning::after,
.connection.eco-service.primary-warning::before,
.connection.eco-service.primary-warning::after,
.connection.msa-service.primary-warning::before,
.connection.msa-service.secondary-warning::after,
.connection.msa-service.primary-warning .hr-primary,
.connection.msa-service.secondary-warning .hr-secondary,
.connection.msad-service.primary-warning .hr-primary,
.connection.msad-service.secondary-warning .hr-secondary{
    background-image: url("/images/icons/connection-dot-orange.svg");
}
.connection.primary-danger::before,
.connection.primary-danger::after,
.connection.int-service.primary-danger::before,
.connection.int-service.primary-danger::after,
.connection.eco-service.primary-danger::before,
.connection.eco-service.primary-danger::after,
.connection.msa-service.primary-danger::before,
.connection.msa-service.secondary-danger::after,
.connection.msa-service.primary-danger .hr-primary,
.connection.msa-service.secondary-danger .hr-secondary,
.connection.msad-service.primary-danger .hr-primary,
.connection.msad-service.secondary-danger .hr-secondary {
    background-image: url("/images/icons/connection-dot-red.svg");
}
.connection .panel {
    z-index: 10;
}
.connection .connection-cloud {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;
    margin-top: -25px;
    margin-left: -95px;
    width: 190px;
    text-align: center;
}
.connection .connection-cloud h2 {
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
.connection .panel.int-service,
.connection .panel.eco-service {
    text-align: center;
}

/*.connection .panel.msa-service {*/
    /*display: inline-block;*/
    /*padding-top: 0;*/
    /*width: 120px;*/
    /*height: 120px;*/
/*}*/
.connection .int-service .logo-container,
.connection .eco-service .logo-container {
    padding-top: 24px !important;
}
.connection .int-service .logo-container img,
.connection .eco-service .logo-container img,
.connection .panel.msa-service img {
    display: inline-block;
}
.connection .int-service .logo-container img,
.connection .eco-service .logo-container img {
    margin: 0 auto;
}
.connection .panel-link.new .panel-body.logo-container .centered > img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.connection.msa-service table.column-responsive td.azure,
.connection.msad-service table.column-responsive td.azure {
    padding-left: 40px;
    width: 20%;
}
.connection.msa-service table.column-responsive td.port,
.connection.msad-service table.column-responsive td.port {
    width: 42%;
}
.connection .panel-link.new .panel {
    margin-bottom: 0;
}
@media screen and (max-width: 992px) {
    .connection::before,
    .connection.msa-service .panel-body.msa .panel.msa-service::before,
    .connection.msad-service .panel-body.msa .panel.msa-service::before,
    .connection::after,
    .connection.msa-service .panel-body.msa .panel.msa-service::after,
    .connection.msad-service .panel-body.msa .panel.msa-service::after {
        left: 50%;
        margin-left: -8px;
        width: 16px;
        height: 40%;
        background-size: 16px 16px;
        background-repeat: repeat-y;
    }
    .connection::before,
    .connection.int-service::before,
    .connection.eco-service::before,
    .connection.msa-service::before,
    .connection.msad-service::before {
        top: 50px !important;
    }

    .connection::after,
    .connection.int-service::after,
    .connection.eco-service::after,
    .connection.msa-service::after,
    .connection.msad-service::after {
        top: 650px !important;
    }

    .connection.ali-service::before,
    .connection.aws-service::before,
    .connection.aws-dc-service::before,
    .connection.dec-service::before,
    .connection.gcp-service::before,
    .connection.ora-service::before,
    .connection.ix-service::before {
        height: 90%;
    }

    .connection.msa-service .panel-body.msa .panel.msa-service::before,
    .connection.msa-service .panel-body.msa .panel.msa-service::after,
    .connection.msad-service .panel-body.msa .panel.msa-service::before,
    .connection.msad-service .panel-body.msa .panel.msa-service::after {
        top: 100px;
    }
    .connection.connection-test::after {
        top: 50px !important;
        left: 15%;
        width: 70%;
        height: 16px;
        background-repeat: repeat-x;
    }
    .connection .panel.msa-service,
    .connection .panel.msad-service {
        margin-top: 0;
        padding-top: 0;
    }

    .panel-body.vertical-align.msa.h-200:before,
    .panel.msa-service:before,
    .panel.msa-service:after,
    .panel.msad-service:before,
    .panel.msad-service:after {
        display: none;
    }

    .panel-body.msa.mw400,
    .connection.msa-service .bg-white.mw400,
    .panel-body.msad.mw400,
    .connection.msad-service .bg-white.mw400 {
        margin: 0 auto;
    }

    .connection.msa-service table.column-responsive td,
    .connection.msa-service table.column-responsive td.azure,
    .connection.msa-service table.column-responsive td.port,
    .connection.msad-service table.column-responsive td,
    .connection.msad-service table.column-responsive td.azure,
    .connection.msad-service table.column-responsive td.port {
        display: block;
        width: 100%;
    }

    .connection.msa-service table.column-responsive td.azure,
    .connection.msad-service table.column-responsive td.azure {
        padding-left: 10px !important;
    }

    .connection.msa-service table.column-responsive td.speed p,
    .connection.msad-service table.column-responsive td.speed p {
        display: block;
        margin-bottom: 25px !important;
        background: white;
        z-index: 100;
    }

    .connection.msa-service table.column-responsive td.speed p:first-child,
    .connection.msad-service table.column-responsive td.speed p:first-child {
        margin-top: 20px !important;
    }

    .connection.msa-service hr,
    .connection.msad-service hr {
        position: absolute;
        top: 0;
        left: 50%;
        width: 1000px;
        transform: translateX(-50%) rotate(90deg);
        z-index: -1;
    }

    .connection .panel-link.new .panel-body.logo-container .centered > img {
        position: relative;
        top: initial;
        left: initial;
        transform: none;
    }

    .connection.int-service .int-service,
    .connection.eco-service .int-service {
        margin-top: 40px;
        margin-bottom: 40px;
    }
}
@media screen and (max-width: 768px) {
    .connection.connection-test .panel {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .connection.connection-test .panel:first-child {
        margin-bottom: 80px;
    }
    .connection.connection-test .panel-body {
        padding-top: 0;
        padding-bottom: 0;
    }
    .connection.connection-test::after {
        top: 60px !important;
        left: 50%;
        margin-left: -8px;
        width: 16px;
        height: 150px;
        background-size: 16px 16px;
        background-repeat: repeat-y;
    }
}

/** EAP Service **/

.eap-service-connection {
    margin: 20px auto 0;
    min-width: 1200px;
    max-width: 1800px;
    text-align: center;
    overflow: auto;
}

.eap-service-connection.router-diagram:not(.unprotected) {
    min-height: 500px;
}

.eap-service-connection .port,
.eap-service-connection .port-graph,
.eap-service-connection .port-csp-ix,
.eap-service-connection .router,
.eap-service-connection .routers {
    position: relative;
    padding-right: 20px;
    padding-left: 20px;
    float: left;
    z-index: 2;
}

.router-diagram .port,
.router-diagram .router,
.router-diagram .port-graph,
.router-diagram .port-csp-ix {
    transform: translateY(114px);
}

.router-diagram.unprotected .port,
.router-diagram.unprotected .router,
.router-diagram.unprotected .port-graph,
.router-diagram.unprotected .port-csp-ix {
    transform: translateY(20px);
}

@media screen and (max-width: 1200px) {
    .router-diagram .port,
    .router-diagram .router,
    .router-diagram .port-graph,
    .router-diagram .port-csp-ix {
        transform: translateY(106px);
    }
}

/* 2 Section */

.section-2 .port,
.section-2 .port-graph,
.section-2 .port-csp-ix {
    width: 50%;
}

/* 3 Section */

.section-3 .port,
.section-3 .port-graph,
.section-3 .router,
.translation-diagram.section-3 .port-csp-ix > div {
    width: 33%;
}

.section-3 .port-csp-ix {
    width: 66%;
}

.section-3 .port-csp-ix > div {
    width: 50%;
    float: left;
}

.translation-diagram.section-3 .port-csp-ix {
    width: 75%;
}

.eap-service-connection.translation-diagram.section-3 .port-csp-ix,
.eap-service-connection.translation-diagram.section-5 .port-csp-ix {
    padding-right: 0;
    padding-left: 0;
}

/* 4 Section */

.section-4 .port,
.section-4 .port-graph,
.section-4 .port-csp-ix,
.section-4 .router,
.translation-diagram.section-3 .port {
    width: 25%;
}

/* 5 Section */

.section-5 .port,
.section-5 .port-graph,
.section-5 .router {
    width: 20%;
}

.eap-service-connection:not(.router-diagram).section-5 .port-csp-ix {
    width: 40%;
}

.eap-service-connection:not(.router-diagram).section-5 .port-csp-ix > div {
    margin-top: 0 !important;
    width: 50%;
    float: left;
}

/* 6 Section */

.router-diagram.section-5 .port,
.router-diagram.section-5 .port-csp-ix,
.translation-diagram.section-5 .port,
.translation-diagram.section-5 .port-graph,
.translation-diagram.section-5 .router,
.section-6 .port,
.section-6 .port-csp-ix {
    width: 16.5%;
}

.eap-service-connection.translation-diagram.section-5 .port-csp-ix {
    width: 49.5%;
}

.translation-diagram.section-3 .port-csp-ix > div.csp,
.translation-diagram.section-5 .port-csp-ix > div.csp {
    float: right;
}

.eap-service-connection.translation-diagram.section-6 .port,
.eap-service-connection.translation-diagram.section-6 .port-graph,
.eap-service-connection.translation-diagram.section-6 .router {
    width: 12.5%;
}

.eap-service-connection.translation-diagram.section-6 .routers {
    width: 25%;
}

.eap-service-connection.translation-diagram.section-6 .port-csp-ix {
    width: 37.5%;
}

.eap-service-connection.translation-diagram.section-8 .routers,
.eap-service-connection.translation-diagram.section-8 .port-csp-ix {
    width: 26%;
}

.eap-service-connection.translation-diagram.section-6 .port-csp-ix > div:first-child {
    padding: 0 20px;
}

/* 7 and 8 Section */

.section-7 .port,
.section-7 .port-graph,
.section-7 .router,
.section-7 .port-csp-ix,
.section-8 .port,
.section-8 .port-graph,
.section-8 .router,
.section-8 .port-csp-ix,
.section-9 .port {
    width: 11%;
}

.eap-service-connection.translation-diagram.section-8 .port,
.eap-service-connection.translation-diagram.section-8 .port-graph,
.eap-service-connection.translation-diagram.section-8 .router {
    width: 9%;
}

.eap-service-connection.translation-diagram.section-8 .routers,
.eap-service-connection.translation-diagram.section-8 .port-csp-ix {
    width: 27%;
}

.eap-service-connection.translation-diagram.section-8 .port-csp-ix {
    padding: 0;
}

.eap-service-connection .routers,
.eap-service-connection.translation-diagram.section-5 .port-csp-ix > div,
.eap-service-connection.translation-diagram.section-6 .port-csp-ix > div,
.eap-service-connection.translation-diagram.section-6 .port-csp-ix > .csp,
.eap-service-connection.translation-diagram.section-8 .port-csp-ix > div {
    width: 33%;
}

.eap-service-connection.translation-diagram.section-6 .port-csp-ix > .csp,
.eap-service-connection.translation-diagram.section-8 .port-csp-ix > .csp,
.eap-service-connection.translation-diagram.section-9 .port-csp-ix > .csp {
    float: right;
}

.eap-service-connection.translation-diagram.section-6 .port-csp-ix > div,
.eap-service-connection.translation-diagram.section-8 .port-csp-ix > div,
.eap-service-connection.translation-diagram.section-9 .port-csp-ix > div {
    float: left;
    transform: none;
}

.eap-service-connection.translation-diagram.section-8 .port-csp-ix > div:nth-child(2) {
    margin-top: 27px;
}

/** Section 9 **/
.section-9 .routers {
    width: 22%;
}

.section-9 .port-csp-ix {
    width: 44%;
}

.section-9 .port-csp-ix > div,
.section-9 .port-csp-ix > .csp {
    width: 25%;
}

/** Section 10 **/
.section-10 .port,
.section-10 .router,
.section-10 .port-csp-ix,
.section-10 .port-graph {
    width: 10%
}

.section-10 .routers {
    width: 20%;
}

.section-10 .port-csp-ix > .port {
    padding: 0;
    transform: none;
    width: 100%;
}

.eap-service-connection .routers .router {
    margin: 8px 0;
    width: 50% !important;
    transform: none;
}

.eap-service-connection img {
    position: relative;
    margin-top: 0;
}

.eap-service-connection .port img,
.eap-service-connection .port-graph img,
.eap-service-connection .port-csp-ix img,
.eap-service-connection .router img {
    max-height: 80px;
}

.eap-service-connection .routers .router img {
    margin-bottom: 0;
    width: 140px;
    min-height: 140px;
    max-height: 140px;
}

.eap-service-connection .port-csp-ix > div.csp img {
    position: relative;
    top: 50%;
    max-width: 200px;
    background-color: #fff;
    transform: translateY(-50%);
}

.eap-service-connection p {
    margin: 0;
}

.eap-service-connection p.regions {
    margin-bottom: 10px;
    color: #999999;
}

.section-8 .port-csp-ix > div:nth-child(2) p.regions {
    display: none;
}

.eap-service-connection p.regions i {
    margin-right: 5px;
}

.eap-service-connection p:not(.regions) {
    height: 36px;
    background: #fff;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 1);
    overflow: hidden;
}

.eap-service-connection .routers p {
    height: auto;
}

.eap-service-connection a {
    position: relative;
    display: inline-block;
    height: 100px;
}

.eap-service-connection .routers a {
    height: 140px;
}

.eap-service-connection.translation-diagram span.translation {
    display: block;
    margin-top: -18px;
    background: #fff;
}

.eap-service-connection.translation-diagram .port-csp-ix > div:last-child p.regions {
    display: none;
}

.eap-service-connection.translation-diagram .port-csp-ix > div.show-region:last-child p.regions {
    display: block;
}

.eap-service-connection.translation-diagram .port-csp-ix > div.show-region a {
    z-index: 2;
}

.eap-service-connection p > a {
    display: block;
    height: auto !important;
}

.eap-service-connection.section-6 .port-csp-ix > div.csp a img,
.eap-service-connection.section-8 .port-csp-ix > div.csp a img,
.eap-service-connection.section-9 .port-csp-ix > div.csp a img {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.eap-service-connection .port-csp-ix > div.csp.no-transform a {
    left: 0;
    transform: none;
}

.eap-service-connection .port-graph > div:nth-child(2),
.eap-service-connection .port-csp-ix > div.csp,
.eap-service-connection.translation-diagram .port-csp-ix > div.csp {
    margin-top: 40px !important;
}

.section-3 .port-csp-ix > div:nth-child(2) {
    margin-top: 0 !important;
}

.eap-service-connection .connection-logo {
    position: absolute;
    display: block;
    width: 50px;
    height: 50px;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 50%;
    background-size: 80%;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 3;
}

.eap-service-connection .connection-logo.bti        { background-image: url("/images/ui-elements/partners/bti.jpg"); }
.eap-service-connection .connection-logo.dcconnect  { background-image: url("/images/ui-elements/partners/dcconnect.jpg"); }
.eap-service-connection .connection-logo.juniper    { background-image: url("/images/ui-elements/partners/juniper.jpg"); }
.eap-service-connection .connection-logo.nokia      {
    background-image: url("/images/ui-elements/partners/nokia.jpg");
    background-color: #124191;
    background-size: 70%;
}

.eap-service-connection .connection-logo {
    right: -10px;
    bottom: 16px;
}

.eap-service-connection .status {
    position: absolute;
    display: block;
    height: 16px;
    background-image: url("/images/icons/connection-dot.svg");
    background-size: 16px 16px;
    background-repeat: repeat-x;
    z-index: -1;
}

.eap-service-connection .status.success { background-image: url("/images/icons/connection-dot-green.svg"); }
.eap-service-connection .status.warning { background-image: url("/images/icons/connection-dot-orange.svg"); }
.eap-service-connection .status.danger  { background-image: url("/images/icons/connection-dot-red.svg"); }

.eap-service-connection .no-hover a,
.eap-service-connection .no-hover a:hover {
    color: inherit;
    text-decoration: none;
    cursor: default;
    pointer-events: none;
}

.graph-pvx1,
.dcc-csp,
.section-6 .port4-csp,
.section-8 .port4-csp,
.section-5 .translation2-csp,
.section-3 .translation2-csp,
.section-6 .translation2-csp,
.section-8 .translation2-csp {
    transform: rotate(-90deg);
}

.section-6.translation-diagram .port4-csp,
.section-8.translation-diagram .port4-csp {
    transform: none;
}

.graph-pvx1,
.dcc-csp,
.section-6 .port4-csp,
.section-8 .port4-csp,
.section-5 .translation2-csp {
    top: 143px;
    left: 25%;
    width: 50%;
}

.section-2 .graph-pvx1 {
    left: 40%;
    width: 20%;
}


.section-3 .translation2-csp,
.section-6 .translation2-csp {
    top: 148px;
    left: 35%;
    width: 30%;
}

.section-8 .translation2-csp,
.section-9 .translation2-csp {
    top: 170px;
    left: 0;
    width: 100%;
}

.section-6.translation-diagram .port4-csp {
    width: 30%;
}

.pvx1-pvx2,
.pvx2-port1,
.port1-port2,
.port2-router1,
.port2-router3,
.port3-port4,
.router1-router2,
.router2-port3,
.router1-router4,
.router3-router4,
.router4-port3,
.translation1-translation2,
.section-9.translation-diagram .translation2-csp{
    right: -50%;
    left: 50%;
}

.pvx1-pvx2,
.pvx2-port1,
.port1-port2,
.port3-port4,
.port4-csp,
.translation1-translation2,
.section-6.translation-diagram .port4-csp,
.section-8.translation-diagram .port4-csp,
.section-9.translation-diagram .translation2-csp {
    top: 60px;
}

.port4-csp {
    right: 25%;
    left: 25%;
}

.router1-router2 {
    top: 78px;
}

.port2-router1,
.router2-router3,
.router4-port3 {
    transform: rotate(-45deg);
}

.port2-router1 {
    top: 20px;
}

.port2-router3,
.router1-router4,
.router2-port3 {
    transform: rotate(45deg);
}

.port2-router3 {
    top: 94px;
}

.router1-router4,
.router2-router3 {
    top: 160px;
}

.router2-router3 {
    right: 50%;
    left: -50%;
}

.router2-port3 {
    top: 110px;
}

.router3-router4,
.router4-port3 {
    top: auto;
}

.router3-router4 {
    bottom: 78px;
}

.router4-port3 {
    bottom: 114px;
}

.translation-diagram .port4-csp{
    right: 50%;
    left: 15%;
}

.section-9.translation-diagram  .port4-csp {
    right: 60%;
}

.section-8.translation-diagram .port4-csp {
    right: 15%;
    left: 15%;
    width: 38%;
}

.section-8.translation-diagram .translation1-translation2 {
    top: 35px;
}

.unprotected .port2-router1,
.unprotected .router2-router3,
.unprotected .router4-port3,
.unprotected .port2-router3,
.unprotected .router1-router4,
.unprotected .router2-port3{
    top: 60px;
    transform: none !important;
}
.unprotected .port2-router1,
.unprotected .router2-router3,
.unprotected .router4-port3 {
    top: 60px;
}
.unprotected .port2-router3,
.unprotected .router1-router4,
.unprotected .router2-port3,
.unprotected .router1-router2 {
    top: 72px;
}

.section-3.protected .graph-pvx1 {
    left: 30%;
    width: 40%;
}

.section-5 .port2-router1,
.section-5 .router2-router3,
.section-5 .router4-port3 {
    transform: rotate(-30deg);
}
.section-5 .port2-router3,
.section-5 .router1-router4,
.section-5 .router2-port3 {
    transform: rotate(30deg);
}

.section-5 .router3-router4,
.section-7 .router3-router4 {
    bottom: 58px;
}

.section-10 .router2-router3 {
    left: -70px;
    right: 30%;
    transform: rotate(-50deg);
}
.section-10 .router1-router4 {
    left: 30px;
    right: -70%;
    transform: rotate(50deg);
}

@media screen and (min-width: 1100px) and (max-width: 1400px) {
    .section-5 .port2-router1,
    .section-5 .router2-router3,
    .section-5 .router4-port3,
    .section-6 .port2-router1,
    .section-6 .router2-router3,
    .section-6 .router4-port3 {
        transform: rotate(-35deg);
    }
    .section-5 .port2-router3,
    .section-5 .router1-router4,
    .section-5 .router2-port3,
    .section-6 .port2-router3,
    .section-6 .router1-router4,
    .section-6 .router2-port3 {
        transform: rotate(35deg);
    }
    .section-10 .router2-router3 {
        transform: rotate(-45deg);
    }
    .section-10 .router1-router4 {
        transform: rotate(45deg);
    }
}

@media screen and (min-width: 1400px) {
    .port2-router1,
    .router2-router3,
    .router4-port3 {
        transform: rotate(-35deg);
    }
    .port2-router3,
    .router1-router4,
    .router2-port3 {
        transform: rotate(35deg);
    }
    .section-5 .port2-router1,
    .section-5 .router2-router3,
    .section-5 .router4-port3,
    .section-6 .port2-router1,
    .section-6 .router2-router3,
    .section-6 .router4-port3 {
        transform: rotate(-25deg);
    }
    .section-5 .port2-router3,
    .section-5 .router1-router4,
    .section-5 .router2-port3,
    .section-6 .port2-router3,
    .section-6 .router1-router4,
    .section-6 .router2-port3 {
        transform: rotate(25deg);
    }
    .section-5 .port2-router1,
    .section-5 .router4-port3 {
        bottom: 94px;
        transform: rotate(-20deg);
    }
    .section-5 .port2-router3,
    .section-5 .router2-port3 {
        transform: rotate(20deg);
    }
    .section-7 .port2-router1,
    .section-7 .router2-router3,
    .section-7 .router4-port3,
    .section-8 .port2-router1,
    .section-8 .router2-router3,
    .section-8 .router4-port3,
    .section-9 .port2-router1,
    .section-9 .router2-router3,
    .section-9 .router4-port3 {
        transform: rotate(-30deg);
    }
    .section-7 .port2-router3,
    .section-7 .router1-router4,
    .section-7 .router2-port3,
    .section-8 .port2-router3,
    .section-8 .router1-router4,
    .section-8 .router2-port3,
    .section-9 .port2-router3,
    .section-9 .router1-router4,
    .section-9 .router2-port3{
        transform: rotate(30deg);
    }
    .section-10 .router2-router3 {
        right: 40%;
        transform: rotate(-40deg);
    }
    .section-10 .router1-router4 {
        left: 40%;
        transform: rotate(40deg);
    }
}

/*==================================================
  Responsive Embeds
  Credit: Nicolas Gallagher and SUIT CSS.
==================================================== */

.embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object {
    position: absolute;
    top: 0;
    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%;
}
/*==================================================
  Wells
==================================================== */

.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, 0.05);*/
    /*box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);*/
}
.well blockquote {
    border-color: #ddd;
    border-color: rgba(0, 0, 0, 0.15);
}
.well-lg {
    padding: 24px;
    border-radius: 3px;
}
.well-sm {
    padding: 9px;
    border-radius: 0px;
}
.well.well-xs {
    padding: 6px;
    border-radius: 0px;
}
.well.well-clean {
    border-radius: 0;
    border-color: #DDD;
    box-shadow: none;
}
.well.highlight {
    background-color: #EBF6FB;
    border-color: #EBF6FB;
}

.well.table-layout {
    display: table;
    padding-left: 0;
    padding-right: 0;
}

.well.table-layout .media {
    display: table-cell;
    float: none;
    vertical-align: middle;

}

.well.table-layout .media .media-left,
.well.table-layout .media .media-right,
.well.table-layout .media .media-body {
    vertical-align: middle;
}

.well.table-layout .media .media-left > div {
    position: relative;
}

.well.table-layout .media .media-left > div > img {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 992px) {
    .well.table-layout .media {
        display: block;
    }
}

/*==================================================
  Close Icons
==================================================== */

.close {
    float: right;
    font-size: 19.5px;
    font-weight: bold;
    line-height: 1;
    color: #000000;
    text-shadow: 0 1px 0 #ffffff;
    opacity: 0.2;
    filter: alpha(opacity=20);
}
.close:hover,
.close:focus {
    color: #000000;
    text-decoration: none;
    cursor: pointer;
    opacity: 0.5;
    filter: alpha(opacity=50);
}
button.close {
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
}
/*==================================================
  Background Options
==================================================== */

.bg-tp {
    background-color: rgba(0, 0, 0, 0.5) !important;
}
.bg-gradient {
    border-color: rgba(0, 0, 0, 0.07) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.18);
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background-repeat: repeat-x;
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.3) 1%, rgba(255, 255, 255, 0.15) 100%);
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 1%, rgba(255, 255, 255, 0.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") no-repeat center left;
}
.bg-background.bg-topbar2 {
    background: url("../../../img/patterns/topbar-bg2.jpg") no-repeat center left;
}
.bg-background.bg-topbar3 {
    background: url("../../../img/patterns/topbar-bg3.jpg") no-repeat center left;
}
.bg-background.bg-psuedo-tp:before,
.bg-background.bg-psuedo-tp-dark:before,
.bg-background.bg-psuedo-tp-light:before {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}
.bg-background.bg-psuedo-tp-dark:before {
    background: rgba(0, 0, 0, 0.6);
}
.bg-background.bg-psuedo-tp-light:before {
    background: rgba(0, 0, 0, 0.2);
}
/*===============================================
  Tabs
================================================= */
/* Tabs Wrapper */

.tab-block {
    position: relative;
}
/* Tabs Content */

.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 Navigation
================================================= */

.tab-block .nav-tabs {
    position: relative;
    border: 0;
}
/* nav tab item */

.tab-block .nav-tabs > li {
    float: left;
    margin-bottom: -1px;
}
/* nav tab link */

.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;
}
/* nav tab link:hover */

.tab-block .nav-tabs > li > a:hover {
    background-color: #eeeeee;
}
/* nav tab active link:focus:hover */

.tab-block .nav-tabs > li.active > a,
.tab-block .nav-tabs > li.active > a:hover,
.tab-block .nav-tabs > li.active > a:focus {
    cursor: default;
    position: relative;
    z-index: 12;
    color: #555555;
    background: #FFF;
    border-color: #e5e5e5;
    border-bottom: 1px solid #FFF;
}
/*===============================================
  Tab Navigation - Tabs Left
================================================= */

.tabs-left {
    float: left;
}
/* nav tab item */

.tabs-left > li {
    float: none;
    margin: 0 -1px -1px 0;
}
/* nav tab item link */

.tabs-left > li > a {
    padding: 12px 16px;
    color: #777;
    font-weight: 600;
    border: 1px solid transparent;
    border-color: #DDD;
    background: #fafafa;
}
/* nav tab link:hover */
/* nav tab active link:focus:hover */

.tab-block .tabs-left > li.active > a,
.tab-block .tabs-left > li.active > a:hover,
.tab-block .tabs-left > li.active > a:focus {
    color: #555;
    border-color: #DDD #FFF #DDD #DDD;
    cursor: default;
    position: relative;
    z-index: 12;
    background: #FFF;
}
/*===============================================
  Tab Navigation - Tabs Right
================================================= */

.tabs-right {
    float: right;
}
/* nav tab item */

.tabs-right > li {
    float: none;
    margin: 0 0 -1px -1px;
}
/* nav tab item link */

.tabs-right > li > a {
    padding: 12px 16px;
    color: #777;
    font-weight: 600;
    border: 1px solid transparent;
    border-color: #DDD;
    background: #fafafa;
}
/* nav tab link:hover */
/* nav tab active link:focus:hover */

.tab-block .tabs-right > li.active > a,
.tab-block .tabs-right > li.active > a:hover,
.tab-block .tabs-right > li.active > a:focus {
    color: #555;
    border-color: #DDD #DDD #DDD #FFF;
    cursor: default;
    position: relative;
    z-index: 12;
    background: #FFF;
}
/*===============================================
  Tab Navigation - Tabs Right
================================================= */

.tabs-below {
    position: relative;
}
/* nav tab item */

.tabs-below > li {
    float: left;
    margin-top: -1px;
}
/* nav tab item link */

.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;
}
/* nav tab link:hover */
/* nav tab active link:focus:hover */

.tab-block .tabs-below > li.active > a,
.tab-block .tabs-below > li.active > a:hover,
.tab-block .tabs-below > li.active > a:focus {
    cursor: default;
    position: relative;
    z-index: 12;
    color: #555555;
    background: #FFF;
    border-color: #DDD;
    border-top: 1px solid #FFF;
}
/*===============================================
  Tab Navigation Option - Panel Based Tabs
  -----------------------------------------------
  Panel Tab Navigation must be placed inside
  ".panel-heading" see Docs for example
================================================= */

.panel-tabs {
    position: absolute;
    bottom: 0;
    right: 0;
}
/* nav tab item */

.panel-tabs > li {
    position: relative;
    float: left;
    margin-bottom: -1px;
}
/* nav tab item link */

.panel-tabs > li > a {
    line-height: 18px;
    border-radius: 0;
    padding: 10px 18px;
    border-left: 1px solid #DDD;
    font-size: 12px;
    color: #777;
}
/* nav tab item link:hover */

.panel-tabs > li > a:hover {
    background-color: transparent;
}
/* nav tab item active link:focus:hover */

.panel-tabs > li.active > a,
.panel-tabs > li.active > a:hover,
.panel-tabs > li.active > a:focus {
    color: #555555;
    cursor: default;
    background: #ffffff;
}
/* Unlike normal tabs, panel tabs alignment
 * to the rightside. This option aligns them left */

.panel-tabs-left {
    left: 0;
}
.panel-tabs-left > li > a {
    border-right: 1px solid #DDD;
    border-left: 1px solid transparent;
}
/*===============================================
  Tab Navigation - Justified
================================================= */

.tab-block .nav-tabs.nav-justified {
    top: 1px;
    margin-top: -1px;
}
/* nav tab link */

.tab-block .nav-tabs.nav-justified > li {
    float: none;
}
/* nav tab item link */

.tab-block .nav-tabs.nav-justified > li > a {
    padding: 11px;
}
/* tabs justified - bottom */

.tab-block .tab-content + .nav-tabs.nav-justified {
    top: -1px;
    margin-top: 0;
}
/* nav tab active link */

.tab-block .tab-content + .nav-tabs.nav-justified > li.active > a {
    border-top-color: #fff;
    border-bottom-color: #DDD;
}
/*===============================================
  Tab Navigation Option - Right Floating Tabs
  ------
  This settings refers to tabs that float from
  left to right, not tabs that are to the right
  of tab content
================================================= */

.nav-tabs.nav-tabs-right > li {
    float: right;
}
.nav-tabs.nav-tabs-right > li:first-child > a {
    margin-right: 0;
}
/*===============================================
  Tab Navigation Option - Active Item Border
================================================= */
/* tabs default */

.tab-block .tabs-border.nav-tabs > li.active > a {
    margin-top: -1px;
    border-top: 2px solid #4a89dc;
}
/* tabs left */

.tab-block .tabs-border.tabs-left > li.active > a {
    margin-left: -1px;
    border-left: 2px solid #4a89dc;
}
/* tabs right */

.tab-block .tabs-border.tabs-right > li.active > a {
    margin-right: -1px;
    border-right: 2px solid #4a89dc;
}
/* tabs bottom */

.tab-block .tabs-border.tabs-below > li.active > a {
    margin-bottom: -1px;
    border-bottom: 2px solid #4a89dc;
}
/* panel tabs */

.panel-tabs.panel-tabs-border > li.active > a {
    margin-top: -1px;
    border-top: 2px solid #4a89dc;
}
/* tabs justified */

.tab-block .tab-content + .tabs-border.nav-justified > li.active > a {
    border-bottom: 2px solid #4a89dc;
}
/*====================================================
  Tab Navigation Option - Active Item Inverse Border
====================================================== */

.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 #4a89dc;
}
/*====================================================
  Tab Navigation Option - Nav Background
====================================================== */
/* tabs default */

.tabs-bg.nav-tabs {
    background: #f5f5f5;
    border: 1px solid #DDD;
    border-bottom: none;
    padding: 10px 10px 0;
}
/* tabs bottom */

.tabs-bg.tabs-below {
    background: #f5f5f5;
    border: 1px solid #DDD;
    border-top: none;
    padding: 0 10px 6px;
}
/*===============================================
  Tab Navigation Option - Unstyled Tab Block
  ---------
  Removes container and active borders
  Used primarily in sidebars
================================================= */

.tab-block.sidebar-block .nav-tabs > li > a {
    border: 0;
    background: #ececec;
    padding: 16px 11px;
}
.tab-block.sidebar-block .nav-tabs > li.active > a {
    border: 0;
    background: #f8f8f8;
}
.tab-block.sidebar-block .tab-content {
    border: 0;
    background: transparent;
}
/*===============================================
  Tab Navigation Option - Tab Merge
  Color to Match
  ---------
  Change Active Tab BG Color so that it merges
  into a sibling panel-menu
================================================= */
/* bg-light colored panel-tabs styling */

.panel-tabs.panel-tabs-merge > li.active > a,
.panel-tabs.panel-tabs-merge > li.active > a:hover,
.panel-tabs.panel-tabs-merge > li.active > a:focus {
    background: #FAFAFA;
}
/*==================================================
  Pricing Tables
==================================================== */
/* Regular Pricing Plan */

.pricing-table .pricing-plan {
    margin: 30px -16px 20px -16px;
    border: 1px solid #DDD;
    background-color: #fafafa;
    text-align: center;
}
/* Plan Header */

.plan-header {
    height: 76px;
    background: #f4f4f4;
    padding: 25px 5px 20px;
}
/* Header Title */

.plan-header h2 {
    margin-bottom: 5px;
    font-weight: 200;
}
/* Header SubTitle */
/* Pricing Table Cost Figure */

.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;
}
/* Pricing Table Item Features */

.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;
}
/* Pricing Table Icons */

.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;
}
/* Pricing Table Sign Up Button*/

.plan-footer {
    border-top: 1px solid #e7e7e7;
}
.plan-footer .btn {
    margin: 20px 0;
    padding: 8px 26px;
}
/* Hero Pricing Plan Modifications */

.hero-plan {
    z-index: 10;
}
.hero-plan .pricing-plan {
    background-color: #f6f6f6;
    padding: 0 0 20px 0;
    margin: 0 -17px 20px -17px;
    border-bottom: 1px solid #BBB;
    -webkit-box-shadow: 0 0 20px rgba(100, 100, 100, 0.2);
    box-shadow: 0 0 20px rgba(100, 100, 100, 0.2);
}
.hero-plan .pricing-plan .pricing-title {
    color: #FFF;
    margin: -1px -1px 0 -1px;
}
.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 {
    font-weight: 400;
}
.pricing-compare .plan-desc h6 {
    font-weight: 400;
}
.pricing-compare .plan-desc span {
    color: #3078d7;
    font-size: 24px;
    padding: 13px 0 24px;
}
/*==================================================
  Switches - Created with Pure CSS, no js required
==================================================== */

div.switch label {
    display: block;
    position: relative;
    color: transparent;
    background: #ddd;
    text-indent: 100%;
    width: 52px;
    height: 26px;
    cursor: pointer;
    transition: left 0.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;
    background: #fff;
    position: absolute;
    top: 3px;
    left: 3px;
    width: 19px;
    height: 19px;
    -webkit-transition: left 0.15s ease-out;
    -moz-transition: left 0.15s ease-out;
    transition: left 0.15s ease-out;
}
div.switch input:checked + label {
    background: #2ba6cb;
}
div.switch input:checked + label:after {
    left: 29px;
}

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: #dddddd;
}
div.switch label:after {
    background: #ffffff;
}
div.switch input:checked + label {
    background: #2ba6cb;
}
/* Switch Sizes */

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;
}
/* Switch Option - Rounded */

div.switch.round {
    border-radius: 1000px;
}
div.switch.round label {
    border-radius: 26px;
}
div.switch.round label:after {
    border-radius: 26px;
}
/* Switch Option - Inline */

.switch.switch-inline {
    display: inline-block;
}
.switch.switch-inline + .switch.switch-inline {
    margin-left: 15px;
}
.admin-form .switch.switch-round > input + label:after {
    color: transparent !important;
    box-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
.admin-form label.disabled {
    opacity: 1;
}
.admin-form .switch > label.enabled-label, .admin-form .switch > label.disabled-label {
    height: 40px;
    width: 100px;
    font-size: 13px;
}
.admin-form .switch > input:checked + label.enabled-label {
    padding-left: 70px;
    padding-top: 5px;
    opacity: 0.5;
}
.admin-form .switch > input:checked + label.enabled-label:after, .admin-form .switch > label.disabled-label:after {
    margin: 0;
    width: 23px;
    height: 27px;
    opacity: 0.6;
}
.admin-form .switch > input:checked + label.enabled-label:before {
    top: 9px;
    left: 4px;
}
.admin-form .switch > label.disabled-label:before {
    right: 34px;
    top: 8px;
}
.admin-form .switch > label.disabled-label:after {
    margin-top: 4px;
    margin-left: 2px;
}
.admin-form .button[disabled], .admin-form .state-disabled .button, .admin-form input[disabled] + .radio, .admin-form input[disabled] + .checkbox, .admin-form .switch > input[disabled] + label.disabled-label {
    opacity: 1;
}
/*==================================================
  Radios and Checkboxes
==================================================== */

.radio-custom,
.checkbox-custom {
    background-color: transparent;
    color: inherit;
}
/* hide default input */

.radio-custom input,
.checkbox-custom input {
    display: none;
}
.checkbox-custom label:empty,
.radio-custom label:empty {
    padding-left: 10px;
}
/* radio container */

.radio-custom label {
    cursor: pointer;
    position: relative;
    padding-left: 32px;
    margin-right: 15px;
    margin-bottom: 5px;
}
/* radio border */

.radio-custom label:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 64px;
    width: 20px;
    height: 20px;
    border: 2px solid #666;
}
/* check radio icon */

.radio-custom input[type=radio]:checked + label:after,
.radio-custom input[type=checkbox]:checked + label:after {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    border-radius: 64px;
    width: 10px;
    height: 10px;
    color: #666;
    background-color: #666;
}
/* alt style - square */

.radio-custom.square label:before {
    border-radius: 2px;
}
.radio-custom.square input[type=radio]:checked + label:after,
.radio-custom.square input[type=checkbox]:checked + label:after {
    border-radius: 2px;
}
/* checkbox container */

.checkbox-custom label {
    cursor: pointer;
    position: relative;
    padding-top: 2px;
    padding-left: 32px;
    margin-right: 15px;
    margin-bottom: 5px;
}
/* checkbox border */

.checkbox-custom label:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 22px;
    height: 21px;
    background-color: #FFF;
    border: 1px solid #666;
    border-width: 2px;
    border-radius: 1px;
}
/* checked state icon */

.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);
}
/* alt style - filled bg ".fill" */

.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);
}
/* Small */
.checkbox-custom.small label {
    padding-left: 26px;
}
.checkbox-custom.small label:before {
     width: 18px;
     height: 18px;
 }
.checkbox-custom.small input[type=checkbox]:checked + label:after,
.checkbox-custom.small input[type=radio]:checked + label:after {
    left: 2px;
}
.checkbox-custom label input[type=checkbox] + .check {
    display: none;
}
.checkbox-custom label input[type=checkbox]:checked + .check {
    position: absolute;
    top: 3px;
    left: 3px;
    display: block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.checkbox-custom label input[type=checkbox]:checked + .check:before {
    content: "\f00c";
}
/*==================================================
  Icons
==================================================== */

.wf-loading .glyphicons,
.wf-loading .glyphicon,
.wf-loading .imoon,
.wf-loading .fa,
.wf-loading .iconsweets {
    opacity: 0 !important;
}
/* Font Awesome Fixed Width Helpers */

.fs15.fa-fw {
    width: 35px;
}
.fs16.fa-fw {
    width: 40px;
}
.fs17.fa-fw {
    width: 43px;
}
.fs18.fa-fw {
    width: 46px;
}
/* Icon Transitions */

.glyphicon,
.glyphicons,
.imoon,
.fa,
.iconsweets {
    opacity: 1;
    transition: opacity 0.1s ease-in;
    -moz-transition: opacity 0.1s ease-in;
    -webkit-transition: opacity 0.1s ease-in;
}
/* Glyphicon Pro and Halfling */

.glyphicons-2x,
.glyphicon-2x {
    font-size: 2em;
}
.glyphicons-3x,
.glyphicon-3x {
    font-size: 3em;
}
.glyphicons-4x,
.glyphicon-4x {
    font-size: 4em;
}
.glyphicons-5x,
.glyphicon-5x {
    font-size: 5em;
}
/* Icomoon Font Icons */

.imoon-2x {
    font-size: 2em;
}
.imoon-3x {
    font-size: 3em;
}
.imoon-4x {
    font-size: 4em;
}
.imoon-5x {
    font-size: 5em;
}
/* IconSweets2 Font Icons */

.iconsweets-2x {
    font-size: 2em;
}
.iconsweets-3x {
    font-size: 3em;
}
.iconsweets-4x {
    font-size: 4em;
}
.iconsweets-5x {
    font-size: 5em;
}
/* Buttons with Icons
* Cross browser problems were creating problems when
* an icon was given a larger font size than its sibling
* text. To fix Line height, vertical align, and top
* positioning have been redefined */

.btn .glyphicon,
.btn .glyphicons {
    top: -1px;
    vertical-align: middle;
    line-height: 0;
    font-size: 1.1em;
}
/* A Helper Class to Align Icons Right in Control-forms */

span.field-icon-right,
i.field-icon-right {
    position: absolute;
    right: 10px;
    top: 8px;
}
/* Icon Background and Borders
* properly align icons that have been placed inside of titles
* Useful for matching icon size to adjacent text
* Icon Background Shapes */

.icon-circle {
    top: 0;
    padding: 9px;
    position: relative;
    overflow: visible;
    border-radius: 64px;
}
.icon-square {
    top: 0;
    padding: 9px;
    border-radius: 4px;
}
/* Icon Background Sizes */

.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;
}
/* WIDGET SPECIFIC ICON STYLING
* ALL elements which use icons have been
* moved from their respective positions
* and placed here for easy icon styling */
/* Header Button Icons */

.navbar-menus > div > button > span,
.navbar-menus > div > button > i {
    font-size: 15px;
    vertical-align: middle;
}
/* Special on-hover styles for user dropdown menu */

.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 "Home" Icon */

.breadcrumb .fa,
.breadcrumb .fa {
    color: #777;
    font-size: 14px;
    margin-left: 1px;
    top: 0;
}
/* Panel Sidemenu Icons */

.panel-sidemenu ul.nav li.active .fa {
    color: #4a89dc;
}
.panel-sidemenu ul.nav li a:hover {
    background: none;
}
.panel-sidemenu ul.nav li .fa {
    width: 28px;
    color: #BBB;
    font-size: 18px;
}
/* Panel Tabs Icons */

.panel-tabs li .glyphicon,
.panel-tabs li .glyphicons,
.panel-tabs li .fa {
    font-size: 14px;
}
.panel-tabs .imoon,
.panel-tabs .iconsweets {
    font-size: 14px;
    vertical-align: middle;
}
/* Mildly styles a font awesome based icon group
 * used in occasionaly in panel heading. Look at
 * message widget on index.html for example */

.mini-action-icons .fa {
    position: relative;
    top: 2px;
    padding-right: 10px;
    color: #777;
    font-size: 16px;
    cursor: pointer;
}
/* Pricing Table Icons */

.pricing-tables .pricing-icons li .fa-times {
    color: #e74a4a;
}
.pricing-tables .pricing-icons li .fa-ellipsis-h {
    color: #555555;
}
/* Tab Navigation Icons */

.nav-tabs li .fa {
    font-size: 14px;
}
.nav-tabs li .fa.fa-caret-down {
    font-size: 12px;
}
/* Timeline Widget Icons */

.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;
}
/* Favicon sprite */

.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 - Demo purposes */

.news-sprite {
    width: 25px;
    height: 26px;
    vertical-align: middle;
    display: inline-block;
    background: url("../../../img/sprites/news-logo_sprite.png") no-repeat;
    background-position: 0 0;
}
.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 Icons */

.flag-xs,
.flag-sm,
.flag,
.flag-lg {
    display: inline-block;
    vertical-align: middle;
}
.flag-xs {
    width: 16px;
    height: 16px;
}
.flag-sm {
    width: 32px;
    height: 32px;
}
.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
=================================================*/

.panel-tile {
    position: relative;
    overflow: hidden;
}
.panel-tile .panel-body,
.panel-tile .panel-footer {
    border: 0;
}

/*===============================================
  Tile Icon BG
================================================= */

.icon-bg {
    position: absolute;
    opacity: 0.8;
    right: 0;
    top: 0;
    line-height: 100px;
    font-size: 100px;
}
.icon-bg.left {
    right: auto;
    left: 0;
}
/*===============================================
   Timeline Widget
=================================================*/

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:hover .timeline-icon,
ol.timeline-list li.timeline-item:focus .timeline-icon {
    opacity: 1;
}
ol.timeline-list li.timeline-item:after {
    content: "";
    position: absolute;
    display: block;
    left: 23px;
    top: 0;
    height: 100%;
    width: 3px;
    background: #E8E8E8;
}
ol.timeline-list li.timeline-item + .timeline-item {
    border-top: 1px solid #E8E8E8;
}
ol.timeline-list li.timeline-item .timeline-desc {
    letter-spacing: 0.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 a {
    padding: 0 2px;
    color: #3bafda;
}
ol.timeline-list li.timeline-item .timeline-icon {
    opacity: 0.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-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
=================================================*/

.task-widget {
    /* task widget panel body */
    /* task list */
    /* task list label */
    /* task item */
    /* task item handle */
    /* task item contextual handle - requires "warning, info, etc" */
    /* task item desc */
    /* task item menu(remove button) */
    /* Checked task item */
    /* Custom Small Checkboxes */
    /* Task Widget Contextuals */
    /* task menu - handle */
    /* task menu - remove */
}
.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: normal;
    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: #4a89dc;
}
.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 {
    background-color: #967adc;
}
.task-widget ul.task-list .task-item.system .task-handle:after {
    background-color: #37bc9b;
}
.task-widget ul.task-list .task-item.dark .task-handle:after {
    background-color: #3b3f4f;
}
.task-widget.task-alt {
    /* task widget mod */
    /* task widget list title */
    /* task list widget - border */
}
.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") no-repeat top left;
    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
=================================================*/

.calendar-widget {
    /* widget panel body */
    /* calendar container */
    /* calendar toolbar */
    /* calendar toolbar - date */
    /* calendar toolbar - btns */
    /* calendar toolbar - btns */
    /* calendar master bg */
    /* calendar other-month bg */
    /* calendar date thead */
    /* calendar date integer */
    /* calendar events */
    /* CALENDAR ALT STYLE */
}
.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: 0.2em;
    line-height: 0.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 {
    /* calendar header */
    /* event items */
}
.calendar-widget.calendar-alt .fc-toolbar {
    background: transparent;
    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
=================================================*/

.chat-widget {
    /* media image */
    /* media body */
    /* right media body arrow */
    /* right media arrow */
    /* media-status */
    /* chat widget footer */
}
.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:before,
.chat-widget .media-body:after {
    content: "";
    position: absolute;
    right: -9px;
    top: 12px;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 8px 0px 8px 9px;
    border-left-color: #777;
}
.chat-widget .media-body:after {
    border-left-color: #FFF;
}
.chat-widget .media-left + .media-body:before,
.chat-widget .media-left + .media-body:after {
    content: "";
    position: absolute;
    left: -9px;
    top: 12px;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 8px 9px 8px 0px;
    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: 0px;
    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
=================================================*/

.compose-widget {
    /* widget body */
    /* widget footer */
    /* editor text area */
    /* editor resizebar (hide) */
}
.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-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;
}
/*===============================================
   Tag Cloud Widget
=================================================*/

.tagcloud-widget {
    /* tagcloud widget labels */
}
.tagcloud-widget .panel-body .label {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 8px;
    line-height: 15px;
}
/*==================================================
  Modals
==================================================== */
.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 0.3s ease-out;
    -moz-transition: -moz-transform 0.3s ease-out;
    -o-transition: -o-transform 0.3s ease-out;
    transition: transform 0.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: #ffffff;
    border: 1px solid #999999;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 9px rgba(0, 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: #000000;
}
.modal-backdrop.fade {
    opacity: 0;
    filter: alpha(opacity=0);
}
.modal-backdrop.in {
    opacity: 0.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: 15px;
    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;
}
.modal .admin-form .section-divider span {
    background-color: #fff;
}
@media (min-width: 768px) {
    .modal-dialog {
        width: 600px;
        margin: 30px auto;
    }
    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }
    .modal-sm {
        width: 300px;
    }
    .modal-xl {
        width: 600px;
    }
}
@media (min-width: 992px) {
    .modal-lg {
        width: 900px;
    }
    .modal-xl {
        width: 900px;
    }
}
@media (min-width: 1200px) {
    .modal-xl {
        width: 1100px;
    }
}
@media (min-width: 1600px) {
    .modal-xl {
        width: 1500px;
    }
}
/*==================================================
  Tooltips
==================================================== */

.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: 0.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: #ffffff;
    text-align: center;
    text-decoration: none;
    background-color: #000000;
    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: #000000;
}
.tooltip.top-left .tooltip-arrow {
    bottom: 0;
    left: 5px;
    border-width: 5px 5px 0;
    border-top-color: #000000;
}
.tooltip.top-right .tooltip-arrow {
    bottom: 0;
    right: 5px;
    border-width: 5px 5px 0;
    border-top-color: #000000;
}
.tooltip.right .tooltip-arrow {
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-right-color: #000000;
}
.tooltip.left .tooltip-arrow {
    top: 50%;
    right: 0;
    margin-top: -5px;
    border-width: 5px 0 5px 5px;
    border-left-color: #000000;
}
.tooltip.bottom .tooltip-arrow {
    top: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000000;
}
.tooltip.bottom-left .tooltip-arrow {
    top: 0;
    left: 5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000000;
}
.tooltip.bottom-right .tooltip-arrow {
    top: 0;
    right: 5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000000;
}
/*===============================================
  S. Bootstrap Tooltips
================================================= */
/* white tooltips */

.tooltip-white.in {
    opacity: 1;
}
.tooltip-white {
    min-width: 60px;
    transition: opacity 0.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;
}
/*==================================================
  Popovers
==================================================== */

.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1060;
    display: none;
    padding: 1px;
    text-align: left;
    background-color: #ffffff;
    background-clip: padding-box;
    border: 1px solid #cccccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 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: normal;
    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: #999999;
    border-top-color: rgba(0, 0, 0, 0.25);
    bottom: -11px;
}
.popover.top > .arrow:after {
    content: " ";
    bottom: 1px;
    margin-left: -10px;
    border-bottom-width: 0;
    border-top-color: #ffffff;
}
.popover.right > .arrow {
    top: 50%;
    left: -11px;
    margin-top: -11px;
    border-left-width: 0;
    border-right-color: #999999;
    border-right-color: rgba(0, 0, 0, 0.25);
}
.popover.right > .arrow:after {
    content: " ";
    left: 1px;
    bottom: -10px;
    border-left-width: 0;
    border-right-color: #ffffff;
}
.popover.bottom > .arrow {
    left: 50%;
    margin-left: -11px;
    border-top-width: 0;
    border-bottom-color: #999999;
    border-bottom-color: rgba(0, 0, 0, 0.25);
    top: -11px;
}
.popover.bottom > .arrow:after {
    content: " ";
    top: 1px;
    margin-left: -10px;
    border-top-width: 0;
    border-bottom-color: #ffffff;
}
.popover.left > .arrow {
    top: 50%;
    right: -11px;
    margin-top: -11px;
    border-right-width: 0;
    border-left-color: #999999;
    border-left-color: rgba(0, 0, 0, 0.25);
}
.popover.left > .arrow:after {
    content: " ";
    right: 1px;
    border-right-width: 0;
    border-left-color: #ffffff;
    bottom: -10px;
}
/*==================================================
  Carousel
==================================================== */

.carousel {
    position: relative;
}
.carousel-inner {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.carousel-inner > .item {
    display: none;
    position: relative;
    -webkit-transition: 0.6s ease-in-out left;
    -o-transition: 0.6s ease-in-out left;
    transition: 0.6s ease-in-out left;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
    line-height: 1;
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
    display: block;
}
.carousel-inner > .active {
    left: 0;
}
.carousel-inner > .next,
.carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%;
}
.carousel-inner > .next {
    left: 100%;
}
.carousel-inner > .prev {
    left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
    left: 0;
}
.carousel-inner > .active.left {
    left: -100%;
}
.carousel-inner > .active.right {
    left: 100%;
}
.carousel-control {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 15%;
    opacity: 0.5;
    filter: alpha(opacity=50);
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.carousel-control.left {
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
    background-repeat: repeat-x;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
}
.carousel-control.right {
    left: auto;
    right: 0;
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
    background-repeat: repeat-x;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
}
.carousel-control:hover,
.carousel-control:focus {
    outline: 0;
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
    filter: alpha(opacity=90);
}
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-block;
}
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
    left: 50%;
    margin-left: -10px;
}
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
    right: 50%;
    margin-right: -10px;
}
.carousel-control .icon-prev,
.carousel-control .icon-next {
    width: 20px;
    height: 20px;
    margin-top: -10px;
    font-family: serif;
}
.carousel-control .icon-prev:before {
    content: '\2039';
}
.carousel-control .icon-next:before {
    content: '\203a';
}
.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 15;
    width: 60%;
    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 #ffffff;
    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: #ffffff;
}
.carousel-caption {
    position: absolute;
    left: 15%;
    right: 15%;
    bottom: 20px;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #ffffff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.carousel-caption .btn {
    text-shadow: none;
}
@media screen and (min-width: 768px) {
    .carousel-control .glyphicon-chevron-left,
    .carousel-control .glyphicon-chevron-right,
    .carousel-control .icon-prev,
    .carousel-control .icon-next {
        width: 30px;
        height: 30px;
        margin-top: -15px;
        font-size: 30px;
    }
    .carousel-control .glyphicon-chevron-left,
    .carousel-control .icon-prev {
        margin-left: -15px;
    }
    .carousel-control .glyphicon-chevron-right,
    .carousel-control .icon-next {
        margin-right: -15px;
    }
    .carousel-caption {
        left: 20%;
        right: 20%;
        padding-bottom: 30px;
    }
    .carousel-indicators {
        bottom: 20px;
    }
}
/*==================================================
  Utility Classes
==================================================== */

.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-footer:before,
.modal-footer:after,
#topbar:before,
#topbar:after {
    content: " ";
    display: table;
}
.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-footer:after,
#topbar:after {
    clear: both;
}
.center-block {
    float: none;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.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;
}

.text-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-height: 1.15em;
}

.hidden {
    display: none !important;
    visibility: hidden !important;
}
.affix {
    position: fixed;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
/*==================================================
  Responsive: Utility classes
==================================================== */

@-ms-viewport {
    width: device-width;
}
@media (max-width: 768px) {
    h1 {
        font-size: 25px;
    }
    h2 {
        font-size: 20px;
    }
    h3 {
        font-size: 16px;
    }
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg,
.visible-xl {
    display: none !important;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block,
.visible-xl-block,
.visible-xl-inline,
.visible-xl-inline-block {
    display: none !important;
}
@media (max-width: 767px) {
    .visible-xs {
        display: block !important;
    }
    table.visible-xs {
        display: table;
    }
    tr.visible-xs {
        display: table-row !important;
    }
    th.visible-xs,
    td.visible-xs {
        display: table-cell !important;
    }
}
@media (max-width: 767px) {
    .visible-xs-block {
        display: block !important;
    }
}
@media (max-width: 767px) {
    .visible-xs-inline {
        display: inline !important;
    }
}
@media (max-width: 767px) {
    .visible-xs-inline-block {
        display: inline-block !important;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm {
        display: block !important;
    }
    table.visible-sm {
        display: table;
    }
    tr.visible-sm {
        display: table-row !important;
    }
    th.visible-sm,
    td.visible-sm {
        display: table-cell !important;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm-block {
        display: block !important;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm-inline {
        display: inline !important;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm-inline-block {
        display: inline-block !important;
    }
}
@media (min-width: 992px) and (max-width: 1139px) {
    .visible-md {
        display: block !important;
    }
    table.visible-md {
        display: table;
    }
    tr.visible-md {
        display: table-row !important;
    }
    th.visible-md,
    td.visible-md {
        display: table-cell !important;
    }
}
@media (min-width: 992px) and (max-width: 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;
    }
    th.visible-lg,
    td.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;
    }
    th.visible-xl,
    td.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;
    }
}
.visible-print {
    display: none !important;
}
@media print {
    .visible-print {
        display: block !important;
    }
    table.visible-print {
        display: table;
    }
    tr.visible-print {
        display: table-row !important;
    }
    th.visible-print,
    td.visible-print {
        display: table-cell !important;
    }
}
.visible-print-block {
    display: none !important;
}
@media print {
    .visible-print-block {
        display: block !important;
    }
}
.visible-print-inline {
    display: none !important;
}
@media print {
    .visible-print-inline {
        display: inline !important;
    }
}
.visible-print-inline-block {
    display: none !important;
}
@media print {
    .visible-print-inline-block {
        display: inline-block !important;
    }
}
@media print {
    .hidden-print {
        display: none !important;
    }
}

/* ================================================
  A. Table Styling Helpers
=================================================== */
/* messaging table styles */

table tbody tr.message-read td {
    color: #999;
    background-color: #fbfbfb;
}
table tbody tr.message-unread td {
    background-color: #fff;
}
/* table header/footer styles */

table.tc-text-center-head thead th,
table.tc-text-center-head tfoot th {
    text-align: center;
}
table.tc-fs11-head thead th,
table.tc-fs11-head tfoot th {
    font-size: 12px;
}
table.tc-fs12-head thead th,
table.tc-fs12-head tfoot th {
    font-size: 12px;
}
/* special styles */

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;
}
/* special styles */

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;
}
/* special styles */

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;
}
/* special styles */

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;
}
/* special styles */

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;
}
/* text colors */

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: #4a89dc;
}
/* font weights */

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-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;
}
/* font sizes */

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;
}
/* text aligns */

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;
}
/* vertical aligns */

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.tc-icon-1 tbody tr.total td {
    font-size: 14px;
    font-weight: bold !important;
    color: #666666 !important;
}
/* table Checklist */

.table-checklist td {
    cursor: pointer;
}
.table-widget .tab-content {
    padding: 0;
    border: 0;
    overflow: hidden;
}
/* Table items (labels, badges, progress bars etc) */

.table-widget .progress {
    width: 80%;
    height: 13px;
    margin: 0;
}
.table-widget .label,
.table-widget .badge {
    margin-right: 7px;
}
/* Tables with the .table-checklist class become clickable
 * if you want text to have a line-through effect on click
 * add the .text-slash class to the element */

.table-checklist tr.task-checked {
    color: #bbbbbb;
}
.table-checklist tr.task-checked .text-slash {
    text-decoration: line-through;
}
/* Table item checked state - class added via JS */

.table-checklist tr.task-checked .label,
.table-checklist tr.task-checked .progress {
    opacity: 0.3;
}
/*==================================================
  Shared/Global Styles
==================================================== */

html {
    height: 100%;
    background: #e9e9e9;
}
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background: #e9e9e9;
    -webkit-font-smoothing: antialiased;
    /* Fix for webkit rendering */

    -webkit-text-size-adjust: 100%;
    font-size-adjust: 100%;
}
#main {
    position: relative;
    min-height: 100%;
}
/* psuedo background */

#main:before {
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
#content_wrapper,
#content-footer {
    position: relative;
    left: 0;
    margin-left: 230px;
}
/* Transitions */

body.onload-check .navbar,
body.onload-check .navbar-branding,
body.onload-check #sidebar_left,
body.onload-check #sidebar_right,
body.onload-check #content_wrapper,
body.onload-check #topbar {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
/*===============================================
   Navbar Settings
================================================= */
/* If header is fixed modify primary containers padding */

.navbar.navbar-fixed-top + #sidebar_left + #content_wrapper,
.navbar.navbar-fixed-top + #sidebar_left + .toggle_sidemenu_l.sidebar + #content_wrapper {
    padding-top: 60px;
    padding-bottom: 44px;
}
/*===============================================
   Sidebar Settings
================================================= */
/* Fixed Sidebar */

#sidebar_left.affix {
    position: fixed;
    height: 100%;
}
/* Scrollbar for Sidebars in Fixed Positions */

#sidebar_left.affix > .sidebar-menu {
    overflow-x: hidden;
    position: absolute;
    width: 100%;
    top: 85px;
    bottom: 52px;
    transition: top 0.2s ease-in-out;
}
#sidebar_left.affix > .email-menu + .sidebar-menu {
    overflow-x: hidden;
    position: absolute;
    width: 100%;
    top: 485px;
    bottom: 52px;
    transition: top 0.2s ease-in-out;
}
/* Corrects Pseudo sidebar bg when fixed */

#sidebar_left.affix:before {
    left: 0;
}
body.sidebar-hidden #sidebar_left.affix:before,
body.sidebar-rtl #sidebar_left.affix:before {
    left: -230px;
}
/* Sidebar User Area - Hidden */

.user-info.hidden,
.user-info.hidden + .user-divider {
    display: none;
}
body.usermenu-hidden .user-info,
body.usermenu-hidden .user-info + .user-divider {
    display: none;
}
body.usermenu-hidden #sidebar_left.affix .user-info + .user-divider + .sidebar-menu,
body.usermenu-hidden #sidebar_left.affix .user-info + .user-divider + .menu-widget + .sidebar-menu {
    top: 0;
}
#sidebar_left.affix > .menu-widget.menu-widget-open + .sidebar-menu {
    top: 250px;
}
/*===============================================
  Breadcrumbs Settings
================================================= */
/* fixed state */

#topbar.affix,
#topbar.fixed {
    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);
}
/* match content margin to topbar height */

#topbar.affix + #content,
#topbar.fixed + #content {
    margin-top: 51px;
}
#topbar.affix.alt + #content {
    margin-top: 71px;
}
/* fixed state - w/ open sidebar */

body.sb-l-o #topbar.affix {
    margin-left: 230px;
}
/* fixed state - w/ minified sidebar */

body.sb-l-m #topbar.affix {
    margin-left: 60px;
}
/* fixed state - w/ closed sidebar */

body.sb-l-c #topbar.affix {
    margin-left: 0px;
}
@media (max-width: 900px) {
    /* fixed state - w/ open sidebar */

    body.sb-l-o #topbar.affix {
        width: 100%;
        margin-left: 230px;
    }
    /* fixed state - w/ minified sidebar */

    body.sb-l-m #topbar.affix {
        width: auto;
        margin-left: 45px;
    }
    /* fixed state - w/ closed sidebar */

    body.sb-l-c #topbar.affix {
        width: 100%;
        margin-left: 0px;
    }
}
/* Prevents Demo Bug - if navbar is fixed
 * and also hidden grant proper margin spacing */

#topbar.affix.hidden + #content {
    margin-top: 0;
}
/* Topbar/Breadcrumbs Area - Hidden */

body.hidden-breadcrumbs #topbar {
    display: none;
}
/* for preview only - no real use in development enviroment */

body.sidebar-collapsed #sidebar:before {
    width: 40px;
}
/* ==============================================
   Navbar
================================================= */

.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 shadow option - Only activated for white navbars */
}
.navbar.navbar-shadow {
    -webkit-box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.08), 0px 2px 0px 0px rgba(0, 0, 0, 0.02);
    box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.08), 0px 2px 0px 0px rgba(0, 0, 0, 0.02);
}
/* Navbar Nav Item Containers */

.navbar .nav {
    margin: 0;
    /* Nav Items */
    /* Nav Links */
    /* Nav Item/Link States */
    /* Nav Item - Open Dropdown */
    /* Menu Item Divider - Small Circle */
}
.navbar .nav > li {
    float: left;
}
.navbar .nav > li > a {
    color: #666;
    font-size: 13px;
    font-weight: 600;
    padding-top: 20px;
    padding-bottom: 20px;
    height: 59px;
    max-height: 59px;
}
.navbar .nav > li.open > a,
.navbar .nav > li:hover > a,
.navbar .nav > li:focus > a,
.navbar .nav > li.active > a,
.navbar .nav > li > a:hover,
.navbar .nav > li > a:focus {
    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;
    /* Dropdown Links */
    /* Dropdown Top Arrow */
}
.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;
    border-style: solid;
    right: 11px;
    bottom: 100%;
    border-width: 0 10px 10px;
    border-bottom-color: #4a89dc;
}
.navbar .nav .menu-divider {
    color: rgba(0, 0, 0, 0.15);
    font-size: 8px;
    padding: 25px 10px;
}
/* Dropdown Helper - Item Divider */

.navbar .dropdown-menu .menu-divider {
    color: rgba(0, 0, 0, 0.2);
    font-size: 8px;
    padding: 25px 10px;
}
/* Dropdown Helper - Header Item */

.navbar .dropdown-menu > li.dropdown-header {
    padding: 8px;
    background: #fafafa;
    border-bottom: 1px solid #e5e5e5;
    /* Header Item - Title */
    /* Header Item - Label */
}
.navbar .avatar img {
    vertical-align: top;
}
.navbar .navbar-right .avatar .user-details {
    display: inline-block;
    /*margin-top: -3px;*/
    margin-left: 5px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 150px;
    line-height: 30px;
}
.navbar .navbar-right .avatar .user-details .small {
    display: block;
}
.navbar .navbar-right .sidebar-notification-badge:empty {
    margin-top: 0px;
}
.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;
}
/*==========================================================
  Navbar Misc Utility Styles
=========================================================== */
/* define height for panels with scrollers */

.scroller-navbar {
    max-height: 250px;
}
/* Negative margin helper to negate panel scroller padding */

.scroller-nm {
    margin: -12px;
}
/* Navbar Left Settings */

.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 Dropdown Carets
=========================================================== */
.navbar .navbar-right .avatar .caret {
    top: -11px;
}
.navbar .caret {
    position: relative;
    margin-left: 4px;
}
/* Alt Caret Style */

.navbar .caret.alt {
    width: 20px;
    height: 20px;
    text-align: center;
    color: inherit;
    margin: 0;
    border: 0;
}
.navbar li.dropdown .caret.alt:after {
    opacity: 0.75;
    font-size: 14px;
    display: inline-block;
    content: "\f107";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
}
.navbar li.dropdown.open .caret.alt:after {
    opacity: 1;
}
/*==========================================================
  Navbar Advanced Dropdown - Button Dropdowns
=========================================================== */

.navbar .navbar-btn {
    padding: 0 5px;
    /* split button mod */
    /* btn badges */
}
.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, 0.15);
    background-color: #f2f2f2;
    background-color: rgba(0, 0, 0, 0.045);
}
.navbar .navbar-btn.btn-group > .btn:hover {
    color: #333;
    border-color: rgba(0, 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: 0.95;
}
/* Modify buttons dropdown menus */

.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;
    border-style: solid;
    right: 11px;
    bottom: 100%;
    border-width: 0 10px 10px;
    border-bottom-color: #4a89dc;
}
/* Modify buttons inside contextuals navbars (bg-primary, etc) */

.navbar[class*='bg-'] .navbar-btn.btn-group > .btn {
    color: #BBB;
    color: rgba(255, 255, 255, 0.8);
    border-color: transparent;
    background-color: #f2f2f2;
    background-color: rgba(255, 255, 255, 0.2);
}
.navbar[class*='bg-'] .navbar-btn.btn-group > .btn:hover {
    color: #fff;
    color: #ffffff;
}
.navbar[class*='bg-'] .navbar-btn.btn-group.open > .btn,
.navbar[class*='bg-'] .navbar-btn.btn-group > .btn.active {
    color: #FFF;
    color: #ffffff;
}
/*==========================================================
  Navbar Dropdown Menu Helpers
=========================================================== */
/* Both the Menu Merge & the Disable Arrow Settings
 * do not use the top margin for dropdowns */

.navbar .nav > li.dropdown.menu-merge,
.navbar .nav > li.dropdown.disable-arrow {
    /* For btn dropdowns */
    /* For normal dropdowns */
}
.navbar .nav > li.dropdown.menu-merge > .navbar-btn.open .dropdown-menu,
.navbar .nav > li.dropdown.disable-arrow > .navbar-btn.open .dropdown-menu {
    margin-top: 15px;
}
.navbar .nav > li.dropdown.menu-merge.open .dropdown-menu,
.navbar .nav > li.dropdown.disable-arrow.open .dropdown-menu {
    margin-top: 1px;
}
/* Modify for style when in contextual navbars (bg-primary, etc) */

.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;
}
/* Disable Arrow Setting */

.navbar .nav > li.dropdown.disable-arrow.open .dropdown-menu:after,
.navbar .nav > li.dropdown.disable-arrow > .navbar-btn.open .dropdown-menu:after {
    display: none;
}
/* Modify for style when in contextual navbars (bg-primary, etc) */

.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 Advanced Dropdown - Media Lists
=========================================================== */

.navbar .media-list > li.media {
    margin: 0;
    padding: 10px;
    /* Media Item - Top Border */
    /* Media Item - Image */
    /* Media Item - Heading, small */
}
.navbar .media-list > li.media + li.media {
    border-top: 1px solid #EEE;
}
.navbar .media-list > li.media > a {
    padding: 0;
    padding-right: 10px;
    display: table-cell;
}
.navbar .media-list > li.media .media-heading small {
    color: #AAA;
}
/*==========================================================
  Navbar Advanced Dropdown - List Group
=========================================================== */

.navbar .nav .list-group > li.list-group-item {
    padding: 0;
    /* List-Group Link */
    /* List-Group Label */
    /* List-Group Icon */
}
.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;
}
/* Dropdown Header - Remove top border */

.navbar .list-group > li.dropdown-header + li.list-group-item {
    border-top: 0;
}
/* Dropdown Footer */

.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 0.4s ease;
    transition: background-color 0.4s ease;
}
.navbar .dropdown-menu > li.dropdown-footer a:hover {
    background-color: #efefef;
}
/*==========================================================
  Navbar Advanced Dropdown - Panels
=========================================================== */
/* Panel menu - modify spacing and remove top border */

.navbar .nav > li.dropdown {
    /* Panel Heading - remove top border */
    /* Panel menu - modify spacing and remove top border */
}
.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 - Logo/Text
=========================================================== */

.navbar-branding {
    position: relative;
    overflow: hidden;
    float: left;
    width: 230px;
    height: 60px;
    margin-right: 10px;
    background-color: transparent;
    z-index: 999;
    display: flex;
    align-items: center;
    /* Logo */
}
.navbar-branding .navbar-brand {
    color: #666;
    height: 40px;
    margin: 10px auto;
    width: 100%;
    line-height: 58px;
    padding: 0;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0.5px;
    background-position: center center;
}
/*.navbar-branding a.navbar-brand.logo-small {*/
    /*width: 152px;*/
/*}*/
.navbar-branding .navbar-brand b {
    font-weight: bold;
}
@media (max-width: 758px) {
    .sb-l-c .navbar-branding,
    .external-alt.sb-l-c .navbar-branding {
        width: 130px !important;
    }

    /*.navbar .navbar-right .avatar .user-details {*/
    /*    display: none;*/
    /*}*/
}
/*==========================================================
  Navbar Toggle Button - Collapses Sidebar
=========================================================== */

.toggle_sidemenu_l.sidebar {
    position: fixed;
    bottom: 0;
    left: 0;
    display: block;
    padding-top: 10px;
    height: 65px;
    font-size: 18px;
    color: #fff;
    text-align: center;
    background: #30363e;
    vertical-align: top;
    cursor: pointer;
    opacity: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 1030;
    transition: width 0.2s;
    animation-name: toggle-sidemenu-control;
    animation-delay: 2s;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}
.toggle_sidemenu_l.sidebar .fa {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
    vertical-align: top;
}
.sb-l-m .toggle_sidemenu_l.sidebar .fa.fa-arrow-left {
    margin-right: -1px;
    transform: rotate(180deg);;
}
.sb-l-o .toggle_sidemenu_l.sidebar {
    width: 230px;
}

.sb-l-m .toggle_sidemenu_l.sidebar {
    width: 60px;
}
@media (max-width: 767px) {
    .toggle_sidemenu_l.sidebar {
        display: none;
    }
}
@media (max-width: 900px) {
    .sb-l-m .toggle_sidemenu_l.sidebar {
        width: 45px;
    }
}
@keyframes toggle-sidemenu-control {
    from {
        opacity: 0;
        bottom: -10px;
    }
    to {
        bottom: 0;
        opacity: 1;
    }
}
.navbar-fixed-top .toggle_sidemenu_l {
    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;
}
/*==========================================================
  Navbar Left/Right Containers
=========================================================== */
/* Navbar Left */

.navbar-nav.navbar-left {
    float: left;
    position: relative;
    max-height: 60px;
}
.navbar-nav.navbar-left > li > a {
    padding-right: 12px;
    padding-left: 12px;
}
/* Navbar Right */

.navbar-nav.navbar-right,
.navbar-nav.navbar-right:last-child {
    float: right;
    margin: 0 15px 0 0;
}
/*==========================================================
  Navbar Forms - Specifically Search Form
=========================================================== */

.navbar-form {
    margin-top: 17px;
    margin-bottom: 17px;
    /* search bar */
}
.navbar-form.navbar-search input {
    height: 26px;
    padding: 0 12px;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    box-shadow: none;
    border-radius: 20px;
    border-color: #EEE;
}
.navbar-form.navbar-search input:focus {
    background-color: #fafafa;
    border-color: #f0f0f0;
}
/*==========================================================
  Navbar UserMenu Dropdown (last dropdown item)
=========================================================== */

.navbar .dropdown.open .btn-group.open .multiselect-container.dropdown-menu {
    margin-top: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-color: rgba(0, 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-status + .btn-group .multiselect-container.dropdown-menu,
#user-role + .btn-group .multiselect-container.dropdown-menu {
    top: 0 !important;
    position: relative !important;
    margin-top: 9px;
    margin-bottom: 3px;
    width: 212px;
}
#user-status + .btn-group .multiselect-container.dropdown-menu > li:first-child,
#user-role + .btn-group .multiselect-container.dropdown-menu > li:first-child,
#user-status + .btn-group .multiselect-container.dropdown-menu > li:first-child label,
#user-role + .btn-group .multiselect-container.dropdown-menu > li:first-child label {
    cursor: pointer;
    position: relative;
}
#user-status + .btn-group .multiselect-container.dropdown-menu > li:first-child:after,
#user-role + .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 0.15s ease;
    transition: color 0.15s ease;
}
#user-status + .btn-group .multiselect-container.dropdown-menu > li:first-child:hover:after,
#user-role + .btn-group .multiselect-container.dropdown-menu > li:first-child:hover:after {
    color: #4a89dc;
}
/*==========================================================
  Navbar Dropdown Menu Color Settings
=========================================================== */

.navbar .nav > li.dropdown.open .dropdown-menu,
.navbar .nav > li.dropdown .open .dropdown-menu {
    border-top-color: #4a89dc;
}
.navbar .nav > li.dropdown.open .dropdown-menu:after,
.navbar .nav > li.dropdown .open .dropdown-menu:after {
    border-bottom-color: #4a89dc;
}
.navbar .nav > li .dropdown-toggle + .dropdown-menu > .active > a,
.navbar .nav > li .dropdown-toggle + .dropdown-menu > .active > a:hover,
.navbar .nav > li .dropdown-toggle + .dropdown-menu > .active > a:focus {
    color: #ffffff;
    background-color: #4a89dc;
}
/*==========================================================
  Navbar Contextual/Skin Settings
  - Skins applied by adding a bg class to ".navbar"
  - For example: <div class="navbar bg-primary">
=========================================================== */

.navbar.bg-primary {
    background-color: #4a89dc;
}
.navbar.bg-primary .nav > li.open > a,
.navbar.bg-primary .nav > li:hover > a,
.navbar.bg-primary .nav > li:focus > a,
.navbar.bg-primary .nav > li.active > a,
.navbar.bg-primary .nav > li > a:hover,
.navbar.bg-primary .nav > li > a:focus {
    color: #FFF;
    background-color: #3078d7;
}
.navbar.bg-primary .nav > li.dropdown.open .dropdown-menu,
.navbar.bg-primary .nav > li.dropdown .open .dropdown-menu {
    border-top-color: #4a89dc;
}
.navbar.bg-primary .nav > li.dropdown.open .dropdown-menu:after,
.navbar.bg-primary .nav > li.dropdown .open .dropdown-menu:after {
    border-bottom-color: #4a89dc;
}
.navbar.bg-primary .nav > li.dropdown.open .dropdown-menu:after,
.navbar.bg-primary .nav > li.dropdown .open .dropdown-menu:after {
    border-bottom-color: #4a89dc;
}
.navbar.bg-primary .nav > li .dropdown-toggle + .dropdown-menu > .active > a,
.navbar.bg-primary .nav > li .dropdown-toggle + .dropdown-menu > .active > a:hover,
.navbar.bg-primary .nav > li .dropdown-toggle + .dropdown-menu > .active > a:focus {
    color: #FFF;
    background-color: #4a89dc;
}
.navbar.bg-success {
    background-color: #70ca63;
}
.navbar.bg-success .nav > li.open > a,
.navbar.bg-success .nav > li:hover > a,
.navbar.bg-success .nav > li:focus > a,
.navbar.bg-success .nav > li.active > a,
.navbar.bg-success .nav > li > a:hover,
.navbar.bg-success .nav > li > a:focus {
    color: #FFF;
    background-color: #5bc24c;
}
.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.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:hover,
.navbar.bg-success .nav > li .dropdown-toggle + .dropdown-menu > .active > a:focus {
    color: #FFF;
    background-color: #70ca63;
}
.navbar.bg-info {
    background-color: #3bafda;
}
.navbar.bg-info .nav > li.open > a,
.navbar.bg-info .nav > li:hover > a,
.navbar.bg-info .nav > li:focus > a,
.navbar.bg-info .nav > li.active > a,
.navbar.bg-info .nav > li > a:hover,
.navbar.bg-info .nav > li > a:focus {
    color: #FFF;
    background-color: #27a2cf;
}
.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.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:hover,
.navbar.bg-info .nav > li .dropdown-toggle + .dropdown-menu > .active > a:focus {
    color: #FFF;
    background-color: #3bafda;
}
.navbar.bg-warning {
    background-color: #f6bb42;
}
.navbar.bg-warning .nav > li.open > a,
.navbar.bg-warning .nav > li:hover > a,
.navbar.bg-warning .nav > li:focus > a,
.navbar.bg-warning .nav > li.active > a,
.navbar.bg-warning .nav > li > a:hover,
.navbar.bg-warning .nav > li > a:focus {
    color: #FFF;
    background-color: #f5b025;
}
.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.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:hover,
.navbar.bg-warning .nav > li .dropdown-toggle + .dropdown-menu > .active > a:focus {
    color: #FFF;
    background-color: #f6bb42;
}
.navbar.bg-danger {
    background-color: #e9573f;
}
.navbar.bg-danger .nav > li.open > a,
.navbar.bg-danger .nav > li:hover > a,
.navbar.bg-danger .nav > li:focus > a,
.navbar.bg-danger .nav > li.active > a,
.navbar.bg-danger .nav > li > a:hover,
.navbar.bg-danger .nav > li > a:focus {
    color: #FFF;
    background-color: #e63f24;
}
.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.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:hover,
.navbar.bg-danger .nav > li .dropdown-toggle + .dropdown-menu > .active > a:focus {
    color: #FFF;
    background-color: #e9573f;
}
.navbar.bg-alert {
    background-color: #967adc;
}
.navbar.bg-alert .nav > li.open > a,
.navbar.bg-alert .nav > li:hover > a,
.navbar.bg-alert .nav > li:focus > a,
.navbar.bg-alert .nav > li.active > a,
.navbar.bg-alert .nav > li > a:hover,
.navbar.bg-alert .nav > li > a:focus {
    color: #FFF;
    background-color: #8362d6;
}
.navbar.bg-alert .nav > li.dropdown.open .dropdown-menu,
.navbar.bg-alert .nav > li.dropdown .open .dropdown-menu {
    border-top-color: #967adc;
}
.navbar.bg-alert .nav > li.dropdown.open .dropdown-menu:after,
.navbar.bg-alert .nav > li.dropdown .open .dropdown-menu:after {
    border-bottom-color: #967adc;
}
.navbar.bg-alert .nav > li.dropdown.open .dropdown-menu:after,
.navbar.bg-alert .nav > li.dropdown .open .dropdown-menu:after {
    border-bottom-color: #967adc;
}
.navbar.bg-alert .nav > li .dropdown-toggle + .dropdown-menu > .active > a,
.navbar.bg-alert .nav > li .dropdown-toggle + .dropdown-menu > .active > a:hover,
.navbar.bg-alert .nav > li .dropdown-toggle + .dropdown-menu > .active > a:focus {
    color: #FFF;
    background-color: #967adc;
}
.navbar.bg-system {
    background-color: #37bc9b;
}
.navbar.bg-system .nav > li.open > a,
.navbar.bg-system .nav > li:hover > a,
.navbar.bg-system .nav > li:focus > a,
.navbar.bg-system .nav > li.active > a,
.navbar.bg-system .nav > li > a:hover,
.navbar.bg-system .nav > li > a:focus {
    color: #FFF;
    background-color: #30a487;
}
.navbar.bg-system .nav > li.dropdown.open .dropdown-menu,
.navbar.bg-system .nav > li.dropdown .open .dropdown-menu {
    border-top-color: #37bc9b;
}
.navbar.bg-system .nav > li.dropdown.open .dropdown-menu:after,
.navbar.bg-system .nav > li.dropdown .open .dropdown-menu:after {
    border-bottom-color: #37bc9b;
}
.navbar.bg-system .nav > li.dropdown.open .dropdown-menu:after,
.navbar.bg-system .nav > li.dropdown .open .dropdown-menu:after {
    border-bottom-color: #37bc9b;
}
.navbar.bg-system .nav > li .dropdown-toggle + .dropdown-menu > .active > a,
.navbar.bg-system .nav > li .dropdown-toggle + .dropdown-menu > .active > a:hover,
.navbar.bg-system .nav > li .dropdown-toggle + .dropdown-menu > .active > a:focus {
    color: #FFF;
    background-color: #37bc9b;
}
.navbar.bg-dark {
    background-color: #3b3f4f;
}
.navbar.bg-dark .nav > li.open > a,
.navbar.bg-dark .nav > li:hover > a,
.navbar.bg-dark .nav > li:focus > a,
.navbar.bg-dark .nav > li.active > a,
.navbar.bg-dark .nav > li > a:hover,
.navbar.bg-dark .nav > li > a:focus {
    color: #FFF;
    background-color: #2e313d;
}
.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.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:hover,
.navbar.bg-dark .nav > li .dropdown-toggle + .dropdown-menu > .active > a:focus {
    color: #FFF;
    background-color: #3b3f4f;
}
/* If Navbar has a contextual class we need to modify
 * several elements so there are not color conflictions
 */

.navbar[class*='bg-'] {
    border-bottom-color: transparent;
    box-shadow: none;
    /* Disable navbar shadow option for navbar bgs */
}
.navbar[class*='bg-'] .navbar-brand {
    color: #fff;
}
.navbar[class*='bg-'] .nav > li > a {
    color: #fff;
    color: rgba(255, 255, 255, 0.9);
}
.navbar[class*='bg-'] .nav > li.open > a {
    color: #fff;
    color: #ffffff;
}
.navbar[class*='bg-'] .caret.caret-tp {
    border-top-color: rgba(255, 255, 255, 0.3);
}
.navbar[class*='bg-'] #toggle_sidemenu_l,
.navbar[class*='bg-'] #toggle_sidemenu_l:hover,
.navbar[class*='bg-'] #toggle_sidemenu_l:focus {
    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, 0.8);
    background-color: #BBB;
    background-color: rgba(255, 255, 255, 0.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 Bug Fixes - Added via Update v1.2.
=========================================================== */
/* Modify whitespace for user menu dropdown - Firefox alignment bug fix */

.navbar .navbar-right > li:last-child > .dropdown-menu > li > a {
    white-space: inherit;
}
/*==========================================================
  Navbar Responsive Settings - Added via Update v1.2.
=========================================================== */

@media (max-width: 1100px) {
    .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: 21px 6px 19px;
        margin: 0;
        cursor: pointer;
        width: auto;
        float: left;
    }
    .navbar-form.navbar-search .form-group {
        margin: 0 !important;
    }
    .navbar-form.navbar-search:after {
        content: "\f02e";
        position: relative;
        font: normal normal 16px octicons;
        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;
    }
    .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 0.3s ease;
        transition: all 0.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: 0px 1px 0px 0px rgba(0, 0, 0, 0.08), 0px 2px 0px 0px rgba(0, 0, 0, 0.02) !important;
        box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.08), 0px 2px 0px 0px rgba(0, 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;
    }
}
/* Force Navbar Dropdowns to float and
 * to occupy 100% width at low resolutions
 */

@media (max-width: 767px) {
    .navbar-branding {
        margin-left: 15px;
        width: 190px;
    }
    .navbar-branding .navbar-brand {
        max-width: 120px;
    }
}

@media (max-width: 599px) {
    .sb-l-m .navbar > .navbar-right,
    .navbar .navbar-nav > li.dropdown,
    .navbar .navbar-nav > li.dropdown .navbar-btn, .navbar .nav-mobile > li.dropdown {
        position: static !important;
    }
    .navbar .navbar-right:last-child {
        margin-right: 0;
    }
    .navbar .nav > li.dropdown.open .dropdown-menu:after,
    .navbar .nav > li.dropdown > .open .dropdown-menu:after {
        display: none;
    }
    .navbar-left .dropdown-menu,
    .navbar-right .dropdown-menu,
    .navbar-left .open .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, 0.15);
        background-clip: padding-box;
        -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    }
    #user-status + .btn-group .multiselect-container.dropdown-menu,
    #user-role + .btn-group .multiselect-container.dropdown-menu {
        top: 34px !important;
        position: absolute !important;
        right: 0;
        left: auto;
    }
}
/*==========================================================
  Widget Modifications for Navbar Dropdown Use
=========================================================== */
/* Timeline Widget */

.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;
}
/* Chat Widget */

.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;
}
/* Alerts Widget */

.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: 0px 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 Trays
     A. Trays
     B. Tray Sizes
     C. Tray Bin
     D. Misc Tray Helpers
     E. Tray Navigation
     F. Tray Hover Settings
=================================================
   A. Content Trays
================================================= */
/*tray table layout*/

#content.table-layout {
    padding: 0;
}
#content.table-layout > div,
#content.table-layout > section,
#content.table-layout > span > div,
#content.table-layout > span > section,
#content.table-layout > aside,
#content.table-layout > span > aside {
    display: table-cell;
}

#content.table-layout > div,
#content.table-layout > section,
#content.table-layout > span > div,
#content.table-layout > span > section {
    vertical-align: top;
    padding: 25px 20px 50px;
}
#content.table-layout > aside,
#content.table-layout > span > aside {
    vertical-align: top;
}
/*trays*/

.tray-left,
.tray-right {
    position: relative;
    width: 250px;
    min-height: 100%;
    padding: 15px;
    border-right: 1px solid #DDD;
    background: #f5f5f5;
}
/*Right tray*/

.tray-right {
    border-left: 1px solid #DDD;
    border-right: 0;
}
/*Top tray*/

.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;
}
/*===============================================
   B. Tray Sizes
================================================= */

.tray200 {
    width: 200px;
}
.tray240 {
    width: 240px;
}
.tray270 {
    width: 270px;
}
.tray290 {
    width: 290px;
}
.tray300 {
    width: 300px;
}
.tray320 {
    width: 320px;
}
.tray350 {
    width: 350px;
}
.tray400 {
    width: 400px;
}
/* affixed tray widths - we subtract 1px to make
 * sure the parent left/right border is display */

.tray200 .tray-nav.affix {
    width: 199px;
}
.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;
}
/*===============================================
   C. Tray Bin
================================================= */
/* tray bin - great for organizing buttons and links
 * negative margin added to counter parent tray padding
 */

.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;
}
/*If navbar has a contextual bg we make menu links white*/

.tray-bin div[class*='col-'] {
    padding-left: 5px;
    padding-right: 5px;
}
/*traybin divider text. Used primarily in li navs*/

.tray-bin .nav-label {
    text-align: center;
    font-size: 12px;
    color: #999999;
    padding-left: 5px;
    margin-top: 20px;
    margin-bottom: 10px;
}
/*===============================================
   D. Misc Tray Helpers
================================================= */
/* often used as first title in tray */

.tray-title {
    margin-top: 10px;
    margin-bottom: 15px;
    padding: 0 5px 15px;
    border-bottom: 1px solid #e5e5e5;
}
/* Icon list commonly seen in tray header */

.icon-list {
    margin: 20px 0 30px;
    font-size: 14px;
    padding-left: 5px;
    list-style: none;
}
.icon-list li + li {
    padding-top: 10px;
}
/*===============================================
   E. Tray Navigation
================================================= */
/* tray navigation - negative margin added
 * to counter parent tray padding
 */

ul.tray-nav {
    margin: 15px -15px;
}
/* item link */

ul.tray-nav li a {
    width: 100%;
    padding: 11px 15px 11px 30px;
    color: #999;
    font-size: 13px;
    background: #f2f2f2;
    border-top: 1px solid #DDD;
}
/* item icon */

ul.tray-nav li a .fa {
    padding-right: 18px;
}
/* active item  */

ul.tray-nav li.active a {
    color: #666;
    background: #fbfbfb;
    transition: all 0.3s ease;
}
/* active item icon */

ul.tray-nav li.active a .fa {
    color: #4a89dc;
}
/*Tray nav style option - Arrow*/
/* active item bottom border */

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:before,
ul.tray-nav.tray-nav-arrow li.active a:after {
    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 0.3s ease;
}
ul.tray-nav.tray-nav-arrow li.active a:before {
    border-left-color: #888;
}
/* item hover */

ul.tray-nav.tray-nav-arrow li:hover a:after {
    border-left-color: #f8f8f8;
}
/*settings for arrows when used on a right aligned tray (.tray-right)*/
/* active item bottom border */

.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:before,
.tray-right ul.tray-nav.tray-nav-arrow li.active a:after {
    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;
}
/* item hover */

.tray-right ul.tray-nav.tray-nav-arrow li:hover a:after {
    border-left-color: transparent;
    border-right-color: #f8f8f8;
}
/*Tray nav style option - Bordered*/

.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: #4a89dc;
}
.tray-nav.tray-nav-border li:hover:after {
    background: #999;
}
/*modifcation for right side trays (.tray-right)*/

.tray-right .tray-nav.tray-nav-border li:after {
    left: 0;
    right: auto;
}
/*border skin contextuals*/

.tray-nav.tray-nav-border li.active.nav-primary:after {
    background: #4a89dc;
}
.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 {
    background: #967adc;
}
.tray-nav.tray-nav-border li.active.nav-system:after {
    background: #37bc9b;
}
.tray-nav.tray-nav-border li.active.nav-dark:after {
    background: #3b3f4f;
}
/* Tray elements fixed settings */

.tray-nav.affix,
.tray .tray-affix {
    top: 55px;
}
#topbar.affix + #content .tray-nav.affix,
#topbar.affix + #content .tray .tray-affix {
    top: 115px;
}
/* tray-nav animation helper class */

.tray-nav[data-nav-animate] li {
    display: none;
}
.tray-nav[data-nav-animate] li.animated {
    display: block;
}
/*===============================================
   F. Tray Hover Settings

   At <1000 window width javascript will add a
   "tray-rescale" class to the document body. This
   will shift the menu over out of sight and
   expand it only when the user hovers over the
   portion that's still visible
================================================= */

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: 1;
    opacity: 0.5;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
body.tray-rescale .tray-left,
body.tray-rescale .tray-right {
    right: -275px;
}
body.tray-rescale .tray-left {
    border-left: 1px solid #DDD;
}
/* adjust center tray to fill window width add needed
 padding to offset the partially hidden tray */

body.tray-rescale .tray-center {
    width: 100%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    padding-right: 58px !important;
}
body.tray-rescale .tray-top + .tray-center {
    padding-right: inherit !important;
}
/* adjust depending on tray size */

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;
}
/* on hover open the menus */

body.tray-rescale .tray-left:hover,
body.tray-rescale .tray-right:hover {
    opacity: 1;
    z-index: 999;
}
body.tray-rescale .tray-left:hover,
body.tray-rescale .tray-right:hover {
    right: 0px;
}
/* adjust any bootstrap affix settings if they exist */
/* Disable completely on resolutions <600 */

@media (max-width: 600px) {
    body.tray-rescale .tray-left,
    body.tray-rescale .tray-right {
        display: none;
    }
    body.tray-rescale .tray-center {
        padding-right: 13px !important;
    }
    body.tray-rescale #content.table-layout > div,
    body.tray-rescale #content.table-layout > section {
        padding: 10px 13px 40px !important;
    }
}
/* ==============================================
   LEFT SIDEBAR
    A. Sidebar Default/Open State
    B. Sidebar Active Item Borders
    C. Sidebar Misc Elements
    D. Sidebar Widgets/Menus
    E. Sidebar Minified State
    F. Sidebar Default Color Settings
    G. Sidebar Light Color Settings
    H. Sidebar Nano Plugin Settings
    I. Sidebar Responsive Settings
=================================================
  A. Default Open State
================================================= */
/* Sidebar Container */

#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 Content Container */

.sidebar-left-content {
    height: 100%;
}
/* Sidebar-Menu */

.sidebar-menu {
    padding-bottom: 60px;
}
/* Sidebar-Menu Top Level Items */

.sidebar-menu > li {
    margin: 0;
}
.sidebar-menu > li:first-child {
    padding-top: 4px;
}
/* Sidebar Menu Links */
/* Sidebar-Menu Top Level Links */

.sidebar-menu > li > a {
    padding: 0;
    line-height: 35px;
    height: 35px;
    overflow: hidden;
}
.sidebar-menu > li > a:hover {
    cursor: pointer;
}
/* Sidebar-Menu Top Level - Icon */

.sidebar-menu > li > a > span:nth-child(1):not(.phonebook-item) {
    float: left;
    top: 0;
    line-height: 35px;
    width: 38px;
    font-size: 13px;
    text-align: center;
    padding-left: 13px;
}
/* Sidebar-Menu Top Level - Title */

.sidebar-menu > li > a > span:nth-child(2) {
    font-weight: 600;
    padding-left: 6px;
}
/* Sidebar-Menu Top Level - Tray(holds labels,etc) */

.sidebar-menu li > a > .sidebar-title-tray {
    position: absolute;
    right: 13px;
    top: -2px;
}
/* Sidebar-Menu Top Level - Label */

.sidebar-menu li > a > .sidebar-title-tray .label {
    padding: .0em .4em .2em;
    font-size: 11px;
}
/* Sidebar-Menu Top Level - Caret */

.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;
}
/* Open Menu Item Caret - we simply flip the carets border */

.sidebar-menu li > a.menu-open > span.caret {
    border-top: 0;
    border-bottom: 5px solid;
}
/* Sidebar-Menu Sub Level */

.sidebar-menu > li > ul {
    clear: both;
    display: none;
    width: 230px;
    height: auto;
}
.sidebar-menu li > a.menu-open + ul {
    display: block;
}
/* Sidebar-Menu Sub Level Items */

.sidebar-menu > li > ul > li > a {
    padding: 11px 20px 11px 30px;
}
/* Sidebar-Menu Sub Level - first and last items */

.sidebar-menu > li > ul > li:first-child > a {
    padding-top: 14px;
}
.sidebar-menu > li > ul > li:last-child > a {
    padding-bottom: 17px;
}
/* Sidebar-Menu Sub Level Item - Title */

.sidebar-menu > li > ul > li > a > span:nth-child(1) ,
.sidebar-menu > li > ul > li > ul > li > a > span:nth-child(1){
    margin-right: 10px;
    font-size: 11px;
}
/* Sidebar-Menu Sub Level Item - Label */

.sidebar-menu > li > ul > li > a > span.label {
    float: right;
    line-height: 17px;
}
/* Sidebar-Menu Multi-level (submenu inside a submenu and so on) */

.sidebar-menu > li > ul > li ul {
    clear: both;
    display: none;
    width: 230px;
    height: auto;
}
/* Sidebar-Menu Multi-level - Links */

.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 Multi-level - Label(xs) */

.sidebar-menu > li > ul > li > ul li a .label.label-xs {
    float: right;
    line-height: 17px;
}
/*===============================================
  B. Sidebar-Menu Active Item Borders
================================================= */
/* Top Level - Active Item Border */

.sidebar-menu > li > a.menu-open:after,
.sidebar-menu > li.active > a:after,
.sidebar-menu > li:hover > a:after,
.sidebar-menu > li:focus > a:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: #AAA;
}
/* Sub Level - Active Item Border */

.sidebar-menu > li > ul > li > a.menu-open:after,
.sidebar-menu > li > ul > li.active > a:after,
.sidebar-menu > li > ul > li:hover > a:after,
.sidebar-menu > li > ul > li:focus > a:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: #AAA;
}
/* Multi Level - Active Item Border */

.sidebar-menu > li > ul > li > ul > li.active > a:after,
.sidebar-menu > li > ul > li > ul > li:hover > a:after,
.sidebar-menu > li > ul > li > ul > li:focus > a:after {
    content: "";
    position: absolute;
    left: 0;
    top: 5%;
    height: 90%;
    width: 3px;
    background: #999;
}
/*===============================================
  C. Sidebar Misc
================================================= */
/* Sidebar labels */

.sidebar-menu .sidebar-label {
    margin: 0 18px 20px;
    padding: 20px 5px;
    color: #e9e9e9;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.065em;
    text-transform: uppercase;
    border-bottom: 1px solid #858483;
}

.sidebar-menu .fa {
    text-align: center;
    width: 1.28571429em;
}

/* Sidebar Project Links */
/* Sidebar Progress Bars */

.sidebar-menu .sidebar-stat .progress {
    clear: both;
    background-color: #AAA;
    background-color: rgba(0, 0, 0, 0.15);
}
/* Sidebar Progress Bars Titles */

.sidebar-menu .sidebar-stat > a {
    height: auto;
    overflow: visible;
}
/* Sidebar Toggle Button */

.sidebar-toggle-mini {
    width: 35px;
    height: 32px;
    padding: 7px 0;
}
.sidebar-toggle-mini a {
    position: absolute;
    right: 0;
    display: block;
    text-align: center;
    padding: 6px 6px 5px;
    background-color: rgba(0, 0, 0, 0.15);
}
.sidebar-toggle-mini:hover span {
    color: #DDD;
    transition: all ease-in-out 0.3s;
}
.sidebar-toggle-mini span {
    position: relative;
    color: #888;
    font-size: 16px;
    transform: rotate(180deg);
}
/*===============================================
  D. Sidebar Widgets/Menus
================================================= */
/* Widget Wrapper */

.sidebar-widget {
    position: relative;
    padding: 8px 13px;
    height: 51px;
    /* Author Widget */
    /* Menu Widget - A Slide-Down Menu. Hidden by default */
}
.sidebar-widget + .sidebar-widget {
    margin-top: 15px;
}
.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: #AAA;
    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;
    /* Menu Links */
    /* Menu Title(hidden) */
    /* Menu Icons */
}
.sidebar-widget.menu-widget a {
    position: relative;
    display: block;
    padding: 12px 5px 12px;
    margin-bottom: 3px;
    transition: all 0.2s ease;
}
.sidebar-widget.menu-widget a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
.sidebar-widget.menu-widget a h5 {
    display: none;
}
.sidebar-widget.menu-widget a span {
    color: #dddddd;
    font-size: 24px;
    transition: all 0.3s ease;
}
.sidebar-widget.menu-widget a:hover span {
    color: #f6bb42;
}
.sidebar-widget.search-widget {
    height: 44px;
    background-color: #282d33;
    border-top: 1px solid #24282d;
    border-bottom: 1px solid #24282d;
}
.sidebar-widget.search-widget input,
.sidebar-widget.search-widget .input-group-addon {
    height: 26px;
    padding: 5px;
    font-size: 14px;
    color: #908885;
    border-color: transparent;
    background-color: transparent;
}
.sidebar-widget.search-widget input {
    padding-left: 0px;
    border-left: 0;
}
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;
    }
}
/*====================================================
  E. Sidebar Minified State
====================================================== */
/* Sidebar Minified State */

body.sb-l-m #sidebar_left {
    z-index: 1028;
    overflow: visible;
    width: 60px;
    height: 100%;
    left: 0;
    background-color: #30363e;
}
body.sb-l-m #sidebar_left:before {
    width: 60px;
}
/* Hide Multiple Sidebar Elements */

body.sb-l-m .sidebar-header,
body.sb-l-m #sidebar_left .sidebar-title,
body.sb-l-m #sidebar_left .sidebar-label,
body.sb-l-m #sidebar_left .sidebar-title-tray,
body.sb-l-m #sidebar_left .caret,
body.sb-l-m #sidebar_left .sidebar-proj,
body.sb-l-m #sidebar_left .sidebar-stat {
    display: none;
}
/* Only Icon is showing - Modify Padding to fit */

body.sb-l-m .sidebar-menu > li {
    padding: 7px 0;
}
/* Menu will be converted to on:hover - It requires overflow */

body.sb-l-m .sidebar-menu > li > a {
    overflow: visible;
}
/* Sidebar-Menu Top Level - Icon */

body.sb-l-m .sidebar-menu > li > a > span:nth-child(1) {
    color: #ccc;
    left: -1px;
    width: 60px;
    font-size: 18px;
    padding-left: 0;
}
/* Sidebar-Menu Top Level - Title */

body.sb-l-m .sidebar-menu > li > a > .sidebar-title {
    position: absolute;
    left: 60px;
    top: -4px;
    width: 210px;
    height: 44px;
    line-height: 44px;
    font-size: 14px;
    padding-left: 15px;
    border-left: 1px solid #222;
    background-color: transparent;
}
/* Menus have been converted to show only on:hover. Hide by default */

body.sb-l-m .sidebar-menu > li > a.menu-open + ul {
    display: none;
}
/* Menus have been converted. We display them on:hover */

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;
}
/* Sidebar-Menu Sub Level */

body.sb-l-m .sidebar-menu > li > ul {
    position: absolute;
    left: 60px;
    top: 38px;
    width: 210px;
    height: auto;
    border-left: 1px solid #222;
    padding-bottom: 7px;
    overflow: hidden;
}
/* Sidebar-Menu Multi Level */

body.sb-l-m .sidebar-menu > li > ul > li {
    overflow: hidden;
}
body.sb-l-m .sidebar-menu > li > ul > li ul {
    width: 210px;
}
/* Sidebar-Menu Sub Level - Link Padding */

body.sb-l-m .sidebar-menu li > ul > li > a {
    padding: 8px 15px 8px 15px;
}
/* Sidebar-Menu Multi Level - Link Padding */

body.sb-l-m .sidebar-menu li > ul > li > ul > li a {
    padding: 8px 15px 8px 20px;
}
/* Adjust Primary Content Container - Sidebar Minified */

body.sb-l-m #content_wrapper,
body.sb-l-m #content_wrapper #topbar.fixed,
body.sb-l-m #content_wrapper #content-footer {
    margin-left: 60px;
}
/* Primary Content Container - Sidebar Hidden */

body.sb-l-c.sb-l-m #content_wrapper,
body.sb-l-c.sb-l-m #content_wrapper #topbar.fixed,
body.sb-l-c.sb-l-m #content_wrapper #content-footer {
    margin-left: 0;
}
/* Adjust Navbar Logo/Branding - Sidebar Minified */

/*body.sb-l-m .navbar-branding {*/
    /*width: 60px;*/
/*}*/
/* Adjust Navbar Logo/Branding - Sidebar Hidden */

/*body.sb-l-m .navbar-brand {*/
    /*display: none;*/
/*}*/
/*=======================================================
  F. Sidebar Default Color Settings
========================================================= */
/* Sidebar Container */

#sidebar_left {
    background-color: #30363e;
}

/* Menu item Caret */

.sidebar-menu li > a > span.caret {
    color: #858483;
}
/* Open Menu item Caret */

.sidebar-menu li > a.menu-open > span.caret {
    color: #ffffff;
}
/* Top Level Menu Item - Text Color */

.sidebar-menu > li > a {
    color: #ffffff;
}
/* Top Level Menu Item - BG Color:hover */

.sidebar-menu > li > a:hover,
.sidebar-menu > li > a:focus,
.sidebar-menu > li > a:active {
    color: inherit;
    background-color: #3A424C;
}
/* Top Level Item - Border Color:hover */

.sidebar-menu > li:hover > a:after,
.sidebar-menu > li:focus > a:after {
    background: transparent;
}
/* Top Level Active Menu Item - BG Color */

.sidebar-menu > li.active > a {
    background-color: transparent;
}
/* Top Level Active Menu Item - Icon Color */

.sidebar-menu > li.active > a {
    background-color: #4a89dc;
}
.sidebar-menu > li.active > a > span {
    color: #fff;
}
/* Top Level Active Item - Border Color */

.sidebar-menu > li.active > a:after,
.sidebar-menu > li > a.menu-open:after {
    background: transparent;
}
/* Sub-Menu Item - BG Color */

.sidebar-menu > li > ul {
    background-color: #282d33;
}
/* Sub-Menu Item - BG Color:hover */

.sidebar-menu > li > ul > li > a {
    color: #bbbbbb;
}
/* Sub-Menu Item - BG Color:hover */

.sidebar-menu > li > ul > li > a:hover,
.sidebar-menu > li > ul > li > a:focus {
    color: inherit;
    background-color: transparent;
}
/* Sub-Menu Item - Border Color:hover */

.sidebar-menu > li > ul > li:hover > a:after,
.sidebar-menu > li > ul > li:focus > a:after {
    background: #4a89dc;
}
/* Sub-Menu Active Item - BG Color */

.sidebar-menu > li > ul > li.active > a {
    background-color: transparent;
}
/* Sub-Menu Active Item - Icon Color */

.sidebar-menu > li > ul > li.active > a > span:nth-child(1),
.sidebar-menu > li > ul > li > a.menu-open > span:nth-child(1) {
    color: #4a89dc;
}
/* Sub-Menu Active Item - Border Color */

.sidebar-menu > li > ul > li.active > a:after,
.sidebar-menu > li > ul > li > a.menu-open:after {
    background: #4a89dc;
}
/* Multi-Menu Item - BG Color */

.sidebar-menu > li > ul > li ul {
    background-color: #22262c;
}
/* Multi-level Item - BG Color:hover */

.sidebar-menu > li > ul > li > ul > li > a {
    color: #bbbbbb;
}

.sidebar-menu .st0{
    fill: #bbbbbb;
    stroke: #bbbbbb;
    stroke-width: 0.1;
}
.sidebar-menu .st1{
    fill: none;
    stroke: #bbbbbb;
    stroke-width: 0.25;
}
.sidebar-menu .st2{
    fill: none;
    stroke: #bbbbbb;
    stroke-width: 0.25;
}
.sidebar-menu > li > ul > li > a:focus .st0,
.sidebar-menu > li > ul > li > a:hover .st0{
    fill: #ffffff;
    stroke: #ffffff;
}

.sidebar-menu > li > ul > li > a:focus .st1,
.sidebar-menu > li > ul > li li > a:hover .st1{
    fill: none;
    stroke: #ffffff;
}

.sidebar-menu > li > ul > li > a:focus .st2,
.sidebar-menu > li > ul > li > a:hover .st2{
    fill: none;
    stroke: #ffffff;
}
.sidebar-menu > li > ul > li > ul > li > a:focus .st0,
.sidebar-menu > li > ul > li > ul > li > a:hover .st0{
    fill: #ffffff;
    stroke: #ffffff;
}

.sidebar-menu > li > ul > li > ul > li > a:focus .st1,
.sidebar-menu > li > ul > li > ul > li > a:hover .st1{
    fill: none;
    stroke: #ffffff;
}

.sidebar-menu > li > ul > li > ul > li > a:focus .st2,
.sidebar-menu > li > ul > li > ul > li > a:hover .st2{
    fill: none;
    stroke: #ffffff;
}
/* Multi-level Item - BG Color:hover */

.sidebar-menu > li > ul > li > ul > li > a:hover,
.sidebar-menu > li > ul > li > ul > li > a:focus {
    color: inherit;
    background-color: transparent;
}
/* Multi-level Active Item - Border Color:hover */

.sidebar-menu > li > ul > li > ul > li:hover > a:after,
.sidebar-menu > li > ul > li > ul > li:focus > a:after {
    background: #967adc;
}
/* Multi-level Active Item - BG Color */

.sidebar-menu > li > ul > li > ul > li.active > a {
    background: transparent;
}
/* Multi-level Active Item - Icon Color */

.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: #ffffff;
}
/* Multi-level Active Item - Border Color */

.sidebar-menu > li > ul > li > ul > li.active > a:after {
    background: #967adc;
}
/* Minified Sidebar - Title */

body.sb-l-m .sidebar-menu > li > a > .sidebar-title {
    background-color: #282d33;
}
/* Minified Sidebar - Active Icon */

body.sb-l-m .sidebar-menu > li.active > a > span:nth-child(1) {
    color: #fff;
}
/*=======================================================
  G. Sidebar Light Color Settings
     Applied via class to "#sidebar"
     eg: <aside id="sidebar_left" class="sidebar-light">
========================================================= */

#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:hover,
#sidebar_left.sidebar-light .sidebar-menu > li > a:focus,
#sidebar_left.sidebar-light .sidebar-menu > li > a:active {
    background-color: transparent;
}
#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: 0.4px;
}
#sidebar_left.sidebar-light .sidebar-menu > li.active > a > span:nth-child(1) {
    color: #4a89dc;
}
#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:hover,
#sidebar_left.sidebar-light .sidebar-menu > li > ul > li > a:focus {
    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: #4a89dc;
}
#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:hover,
#sidebar_left.sidebar-light .sidebar-menu > li > ul > li > ul > li > a:focus {
    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: transparent;
}
#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:hover > a:after,
#sidebar_left.sidebar-light .sidebar-menu > li > ul > li > ul > li:focus > a:after {
    background: #f6bb42;
}
#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 {
    color: #555;
}
#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;
}
/*==================================================
  H. Sidebar "Nano Scroller" Settings (Core Plugin)
==================================================== */

#sidebar_left.nano > .nano-content {
    padding-top: 60px;
}
#sidebar_left.affix.nano .tooltip {
    z-index: 9999 !important;
}
/* If the sidebar is minified we disable nanoscroll via css
 * otherwise nano scroll hides popout menus and the scroll is
 * needed to see submenus with many items */

body.sb-l-m #sidebar_left.nano {
    position: absolute;
}
body.sb-l-m #sidebar_left.nano > .nano-content {
    overflow: visible;
    right: 0 !important;
}
/* If the sidebar is minified and in mobile mode we hard disable
 * the entire plugin via a display !important */

body.sb-l-m.mobile-view .nano > .nano-pane {
    display: none !important;
}
/*==========================================================
  I. Sidebar Responsive Settings - Added via Update v1.2.
     If window <900px create even smaller minified sidebar
=========================================================== */

@media (max-width: 900px) {
    /* Sidebar Minified State */

    body.sb-l-m #sidebar_left {
        width: 45px;
    }
    body.sb-l-m #sidebar_left:before {
        width: 45px;
    }
    /* Sidebar-menu Top Level - Icon */

    body.sb-l-m .sidebar-menu > li > a > span:nth-child(1) {
        left: -1px;
        width: 45px;
        font-size: 18px;
    }
    /* Sidebar-menu Top Level - Title */

    body.sb-l-m .sidebar-menu > li > a > .sidebar-title {
        position: absolute;
        left: 45px;
        top: -4px;
        width: 210px;
        height: 44px;
        line-height: 44px;
        font-size: 14px;
        padding-left: 15px;
        border-left: 1px solid #222;
        background-color: #282d33;
    }
    /* Sidebar-menu Sub Level */

    body.sb-l-m .sidebar-menu > li > ul {
        position: absolute;
        left: 45px;
        top: 38px;
        width: 210px;
        height: auto;
        border-left: 1px solid #222;
        padding-bottom: 7px;
        overflow: hidden;
    }
    /* Sidebar-menu Multi Level */

    body.sb-l-m .sidebar-menu > li > ul > li ul {
        width: 210px;
    }
    /* Sidebar-menu Sub Level - Link Padding */

    body.sb-l-m .sidebar-menu li > ul > li > a {
        padding: 8px 20px 8px 20px;
    }
    /* Sidebar-menu Multi Level - Link Padding */

    body.sb-l-m .sidebar-menu li > ul > li > ul > li a {
        padding: 8px 20px 8px 35px;
    }
    /* Adjust Primary Content Container - Sidebar Minified */

    body.sb-l-m #content_wrapper,
    body.sb-l-m #content_wrapper #topbar.fixed,
    body.sb-l-m #content_wrapper #content-footer {
        margin-left: 45px;
    }
    /* Adjust Primary Content Container - Sidebar Hidden */

    body.sb-l-c.sb-l-m #content_wrapper,
    body.sb-l-c.sb-l-m #content_wrapper #topbar.fixed,
    body.sb-l-c.sb-l-m #content_wrapper #content-footer {
        margin-left: 0;
    }
    /* Adjust Navbar Logo/Branding - Hide Logo */


    /* Adjust Navbar Logo/Branding - Adjust Width */

    body.sb-l-o .navbar-branding,
    body.sb-l-m .navbar-branding {
        margin-right: 5px;
    }
    .external-alt.sb-l-c .navbar-branding {
        max-width: none;
    }
    /* Adjust Navbar Toggle - Sidebar Open */

    body.sb-l-o .navbar #toggle_sidemenu_l {
        transform: rotate(90deg);
    }
    /* Adjust Navbar Toggle - Sidebar Minified */

    body.sb-l-o.sb-l-m .navbar #toggle_sidemenu_l {
        transform: rotate(0deg);
    }
    /* Adjust Navbar Toggle - Sidebar Open + Minified */

    body.sb-l-o .navbar #toggle_sidemenu_l,
    body.sb-l-m .navbar #toggle_sidemenu_l {
        width: 45px;
    }
    /* Hide sidebar user menu button when the sidebar is
    collapsed. As it's not accessible in this mode*/

    .sb-l-o .navbar .sidebar-menu-toggle,
    .sb-l-c .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;
    }
}
/* ==============================================
   Right Sidebar
     A. Default Closed State
     B. Sidebar Right Panel Menu
     C. Nano Sidebar Scroller Settings
=================================================
  A. Default Closed State
================================================= */

#sidebar_right {
    position: fixed;
    width: 300px;
    height: 100%;
    top: 60px;
    right: -300px;
    border-left: 1px solid #ddd;
    background: #f8f8f8;
}
#sidebar_right .sidebar-right-header {
    width: 100%;
    height: 59px;
    padding: 4px 10px 4px 20px;
}
#sidebar_right .sidebar_right_content a:hover {
    text-decoration: none;
}
/*===============================================
   B. Sidebar Right Panel Menu
================================================= */

.title-divider {
    border-bottom: 1px solid #e8e8e8;
    padding: 0 5px 9px 5px;
}
#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;
}
/*===============================================
  C. Nano Sidebar Scroller Settings
================================================= */

#sidebar_right.nano > .nano-pane {
    background: rgba(0, 0, 0, 0.07);
}
#sidebar_right.nano > .nano-pane > .nano-slider {
    background: #444;
    background: #CCC;
}
/* ==============================================
    Sidebar Actions
     A. Sidebar Left Toggle
     B. Sidebar Right Toggle
     C. Left Sidebar Minified Helper
     D. Mobile Menu Modifications
=================================================
  A. Sidebar Left Toggle
================================================= */
/*left sidebar open*/


/*#content_wrapper.full-width, #content-footer.full-width {*/
/*    margin-left: 0px !important;*/
/*    left: 0 !important;*/
/*}*/

/*#content_wrapper.full-width #topbar, #content-footer.full-width topbar {*/
/*    margin-top: 60px;*/
/*}*/

.sb-l-o #sidebar_left {
    left: 0;
    overflow: hidden;
}
.sb-l-o #content_wrapper,
.sb-l-o #content_wrapper #content-footer {
    margin-left: 230px;
}
/*left sidebar closed*/

.sb-l-c #sidebar_left {
    left: -230px;
    overflow: hidden;
}
.sb-l-c #content_wrapper,
.sb-l-c #content_wrapper #content-footer {
    margin-left: 0;
}
/* Adjust navbar branding when closed */

.sb-l-c .navbar-branding {
    width: 60px;
}
.sb-l-c .navbar-brand {
    display: none;
}

.external-alt.sb-l-c .navbar-branding {
    width: 230px;
}
.external-alt.sb-l-c .navbar-brand {
    display: block;
}
.external-alt.sb-l-c .navbar-branding #toggle_sidemenu_l {
    display: none;
}
/*====================================================
  B. Sidebar Right Toggle
====================================================== */
/*Sidebar Right Open */

.sb-r-o #sidebar_right {
    right: 0;
}
.sb-r-o #content_wrapper {
    margin-right: 300px;
}
/*Sidebar Right Closed*/

.sb-r-c #sidebar_right {
    right: -300px;
}
.sb-r-c #content_wrapper {
    margin-right: 0;
}
/*====================================================
  C. Left Sidebar Minified Helper
====================================================== */

.sb-l-c.sb-l-m #sidebar_left {
    left: -60px;
}
/*hide sidebar user menu button when the sidebar is
collapsed. As it's not accessible in this mode*/

.sb-l-m .navbar .sidebar-menu-toggle,
.sb-l-c .navbar .sidebar-menu-toggle {
    margin-left: 10px;
    display: none;
}
/*===============================================
  D. Mobile Menu Modifications
================================================= */
/* At less than 1100px we collapse any open sidebars via
Media Queries. Theme Javscript will also add a a
".mobile-view" class so that you can do any needed
manipulation using an html class aswell */

@media (max-width: 1100px) {
    /* Sidebar Left Open/Default */

    #content_wrapper,
    .sb-l-o #content_wrapper {
        margin-left: 0;
        left: 230px;
    }
    /* Sidebar Left Minified */

    .sb-l-m #content_wrapper {
        left: 0;
    }
    /* Sidebar Left Closed */

    .sb-l-c #content_wrapper,
    .sb-l-c #content_wrapper #content-footer {
        margin-left: 0;
        left: 0;
    }
    /* Sidebar Right Open */

    .sb-r-o #content_wrapper {
        margin-right: 0;
        left: -300px;
    }
}
/* ==============================================
   Topbar
     A. Topbar
     B. Topbar Dropdown Menu
     C. Topbar Alternate Style
     D. Topbar Navigation - List
     E. Topbar Responsive Settings
=================================================
  A. Topbar
================================================= */

#topbar {
    z-index: 2;
    position: relative;
    width: 100%;
    min-height: 51px;
    padding: 10px 21px;
    background: #fafafa;
    border-bottom: 1px solid #e0e0e0;
}
#topbar .topbar-right {
    float: right;
}
/* Topbar Breadcrumbs */

.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: inherit;
}
.breadcrumb > li.crumb-active > a {
    color: #555;
    font-size: 18px;
}
/*Toggle sidemenu button*/

#toggle_sidemenu_r i.fa,
#toggle_sidemenu_r span.glyphicon,
#toggle_sidemenu_r span.glyphicons {
    margin-top: 2px;
}
/* toggle sidemenu button (when menu is open) */

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;
}
/* Toggle Right Sidebar - Badge */

.badge.badge-hero {
    position: relative;
    top: -12px;
    margin-left: -10px;
    padding: 2px 5px 3px;
    font-size: 11px;
}
/*===============================================
   B. Topbar - Alternate Style
      Requires ".alt" class on #topbar
================================================= */

#topbar.alt {
    min-height: 70px;
    padding: 20px 22px;
    background: #e7e7e7;
    border-bottom: 1px solid #ddd;
}
#topbar.alt .breadcrumb {
    font-size: 14px;
}
/*===============================================
   C. Topbar Dropmenu
================================================= */

#topbar-dropmenu {
    z-index: 1040;
    overflow: hidden;
    display: none;
    position: relative;
    padding: 17px 20px 10px;
    height: auto;
    width: 100%;
    /*background: url("../../../img/patterns/topbar-bg.jpg") repeat -60px top;*/
    -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.4) inset;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.4) inset;
}
#topbar-dropmenu:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
}
.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, 0.25);
    -webkit-transition: background 0.2s ease;
    transition: background 0.2s ease;
}
.topbar-menu .metro-tile:hover,
.topbar-menu .metro-tile:focus,
.topbar-menu .metro-tile:active {
    color: #fff;
    background: rgba(255, 255, 255, 0.4);
}
.topbar-menu .metro-tile span:first-child {
    font-size: 44px;
}
.topbar-menu .metro-tile .metro-title {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    font-size: 11px;
    font-weight: 600;
}
/* Topbar Menu Modal */

.metro-modal {
    z-index: 1030;
    cursor: pointer;
    position: fixed;
    display: none;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    /*background: rgba(0, 0, 0, 0.6);*/
}
#topbar-dropmenu,
#topbar-dropmenu:before {
    background: #EDEDED;
    box-shadow: none;
}
.topbar-menu {
    display: flex;
}
.topbar-menu > div[class*='col-'] {
    display: flex;
    flex: 1 1 auto;
}
.topbar-menu .metro-tile {
    width: 100%;
    height: auto;
    background: none;
    border-radius: 10px;
    flex-flow: column;
}
.topbar-menu .metro-tile:hover,
.topbar-menu .metro-tile:focus,
.topbar-menu .metro-tile:active {
    text-decoration: none;
}
.topbar-menu .metro-tile span:first-child {
    font-size: 5em;
}
.topbar-menu .metro-tile .metro-title {
    position: static;
    font-size: 22px;
}
@media (max-width:758px) {
    .topbar-menu {
        display: block;
    }
    .topbar-menu .metro-tile .metro-title {
        font-size: 17px;
    }
}
/* if topbar is fixed we force it relative upon topbar
 * dropmenu open as it will create scrolling problems */

#topbar-dropmenu.topbar-menu-open + #topbar.affix {
    position: relative !important;
    margin-left: auto !important;
}
/*===============================================
   D. Topbar Dropdown Menu - Alternate Style
      Requires ".alt" class on #topbar-dropmenu
      and bg classes on all ".metro-tiles"
================================================= */

#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: 0.85;
}
#topbar-dropmenu.alt .topbar-menu .metro-tile {
    opacity: 1;
    border: 1px solid rgba(0, 0, 0, 0.15);
}
#topbar-dropmenu.alt .topbar-menu .metro-tile:hover,
#topbar-dropmenu.alt .topbar-menu .metro-tile:focus,
#topbar-dropmenu.alt .topbar-menu .metro-tile:active {
    color: #fff;
    background: inherit;
}
#topbar-dropmenu.alt .topbar-menu .metro-tile .metro-title {
    bottom: 7px;
    font-size: 12px;
}
/*===============================================
   D. Topbar List Navigation
================================================= */

#topbar .nav.nav-list-topbar {
    margin: -10px 15px;
}
#topbar .nav.nav-list-topbar li a {
    padding: 16px 14px 12px;
}
#topbar .nav.nav-list-topbar li.active a {
    border-bottom: 3px solid #4a89dc;
}
/*===============================================
   E. Topbar Settings - Responsive
================================================= */

@media (max-width: 815px) {
    #topbar {
        padding: 10px 6px 10px 14px;
    }
    #topbar.alt {
        min-height: 40px;
        padding: 10px 6px 10px 14px;
    }
    #topbar .topbar-dropdown {
        display: none !important;
    }
}
@media (max-width: 700px) {
    #topbar .breadcrumb {
        padding-top: 3px;
        padding-left: 2px;
    }
    #topbar.alt .breadcrumb {
        padding-top: 5px;
    }
    #topbar .breadcrumb .crumb-active {
        display: none;
    }
    #topbar .breadcrumb > li.crumb-active + li:before {
        display: none;
    }
}
/* ==============================================
   Page Footer
================================================= */

#content-footer {
    color: #AAA;
    overflow: hidden;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 44px;
    padding: 12px 15px;
    background-color: #f8f8f8;
    border-top: 1px solid #DDD;
    -webkit-transition: all 0.0s ease;
    transition: all 0.0s ease;
    z-index: 20;
}
#content-footer b {
    color: #888;
}
#content-footer .footer-meta {
    padding-right: 30px;
}
#content-footer .footer-return-top {
    text-align: center;
    position: relative;
    display: inline-block;
    top: -3px;
    right: 5px;
    margin-top: -6px;
    width: 25px;
    height: 25px;
    background-color: #eaeaea;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
#content-footer .footer-return-top span {
    position: relative;
    top: 3px;
    color: #AAA;
    font-size: 12px;
    -webkit-transition: all 0.23s ease;
    transition: all 0.2s ease;
}
#content-footer .footer-return-top:hover {
    cursor: pointer;
    background-color: #e2e2e2;
}
#content-footer .footer-return-top:hover span {
    color: #666;
}
/* Fixed Setting */

#content-footer.affix {
    position: fixed;
    margin-left: 230px;
}
/* Match Sidebar States */

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;
    }
}
/* ================================================
   PAGES - In Order
      A. UI Animations Page
	  B. FAQ Page
	  C. Gallery.html
	  D. Calendar.html
	  E. Message Pages
	  F. Editors.html
	  G. External Pages
	  H. Invoice.html
	  I. Timeline.html
	  J. Map Pages
	  K. Profile.html
	  L. Error Pages
	  M. Ecommerce Pages // Added update v1.3
	  N. Search Result Page // Added update v1.4

 * This file is reserved for changes done on
 * a per-page basis. To create independent
 * page layouts an additional class was added
 * to the pages body. For example ui-animations.html
 * has an extra body class of ".ui-animations-page"

 * Note: Pages not listed here were made using
 * 100% reusable styles placed in theme.css
=================================================
  A. UI Animations Page
================================================= */

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 0.5s;
    transition: all ease 0.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 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
}
body.ui-animations-page.animation-running .tray-center:after {
    opacity: 0.75;
}
body.ui-animations-page.animation-running .btn.btn-alt {
    opacity: 0.5;
}
body.ui-animations-page.animation-running .btn.btn-alt.item-checked {
    opacity: 1;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}
/*===============================================
  C. Gallery Page
================================================= */

body.gallery-page #mix-container {
    padding: 15px;
    text-align: justify;
    font-size: 0.1px;
}
body.gallery-page #mix-container:after {
    content: "";
    display: inline-block;
    width: 100%;
}
body.gallery-page #mix-container .mix,
body.gallery-page #mix-container .gap {
    display: none;
    vertical-align: top;
    width: 23.5%;
    margin-bottom: 20px;
}
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 .mix,
    body.gallery-page #mix-container .gap {
        width: 31.5%;
    }
}
@media (max-width: 750px) {
    body.gallery-page #mix-container .mix,
    body.gallery-page #mix-container .gap {
        width: 48%;
    }
}
/*===============================================
  D. Calendar Page
================================================= */

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: none;
    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 span,
body.calendar-page .tray-left .ui-datepicker td a {
    background: #DDD;
    padding: .50em .20em;
}
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;
    }
}
/*===============================================
  E. Messages Page
================================================= */

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;
    padding: 11px 15px;
}
body.messages-page .nav-messages li a {
    color: #AAA;
}
body.messages-page .nav-messages li.active a,
body.messages-page .nav-messages li:hover a,
body.messages-page .nav-messages li:focus a {
    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 {
    background: #fcfcfc;
    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: 0;
    border-left: 1px solid #DDD;
    border-right: 1px solid #DDD;
}
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 .popped-out .dockmodal-body .quick-compose-form .note-editor .note-editable {
    background: #fff;
}
body.messages-page .dockmodal-body .quick-compose-form .note-editor .note-editable:focus,
body.messages-page .dockmodal-body .quick-compose-form .note-editor .note-editable:active {
    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;
    }
    /* creates a mini message tray, expands it on user hover */

    body.messages-page .message-tray {
        height: 175px;
        overflow: hidden;
        -webkit-transition: height 0.5s ease;
        transition: height 0.5s ease;
    }
    /* set to the height of your message menu */

    body.messages-page .message-tray:hover {
        height: 665px;
    }
}
@media (max-width: 600px) {
    body.messages-page.tray-rescale #content.table-layout .tray-center {
        padding: 0px !important;
    }
}
/*===============================================
  F. Editors Page
================================================= */

body.editors-page .panel .panel-heading {
    border-bottom-color: #CCC;
}
/*===============================================
  G. External Pages - login, register,
  screenlock, coming-soon, forgotpw
================================================= */

body.external-page {
    min-height: 0;
    overflow: auto;
}
body.external-page #main {
    overflow: hidden;
    background: url("../../../img/patterns/backgrounds/1.jpg") no-repeat top center #2d494d;
}
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;
    margin: 0 auto;
    margin-top: 8%;
}
body.external-page #content .panel {
    box-shadow: 0 1px 40px 0 rgba(0, 0, 0, 0.3);
}
body.external-page #content .panel-heading {
    padding: 32px 10px 15px;
}
body.external-page #content #request-account .panel-heading,
body.external-page #content #request-account-full .panel-heading,
body.external-page #content #trial-setup .panel-heading {
    padding: 19px 22px 18px;
}
body.external-page #login .logo-big {
    display: block;
}
body.external-page .login-links {
    font-size: 15px;
    color: #DDD;
}
body.external-page .login-links a {
    color: #DDD;
    font-weight: 300;
}
body.external-page .login-links a.active {
    color: #FFF;
    font-weight: 600;
}
body.external-page .login-links a:hover,
body.external-page .login-links a:focus {
    color: #FFF;
    text-decoration: none;
}
body.external-page .coming-soon-title {
    text-align: center;
    color: #FFF;
    font-size: 40px;
    font-weight: 400;
    margin-top: 70px;
    margin-bottom: 20px;
}
/*===============================================
  G. External Pages (ALT) - login, register,
  screenlock, coming-soon, forgotpw
// ================================================= */

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: #4a89dc;
}
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;
}
.admin-form #login,
#request-account.admin-form,
#request-account-full.admin-form {
    z-index: 1025;
}
.admin-form #login .panel,
#request-account.admin-form .panel,
#request-account-full.admin-form .panel {
    border: none;
    box-shadow: 0 12px 24px rgba(0,0,0,0.1) !important;
}
.admin-form #login a.button {
    line-height: 48px !important;
}
.admin-form #login .button {
    transition: none;
}
.admin-form #login #request-enterprise-resale-banner:after,
.admin-form #login #request-account-banner:after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    background-image: url("../images/ui-elements/request-account-bg.jpg");
    background-size: cover;
    opacity: 0.25;
    z-index: 0;
}
.admin-form #login #request-enterprise-resale-banner .panel-body,
.admin-form #login #request-account-banner .panel-body {
    z-index: 1;
}
.admin-form #login #request-enterprise-resale-banner h2,
.admin-form #login #request-account-banner h2 {
    font-weight: normal;
    text-shadow: 0 1px 5px rgba(0,0,0,0.26);
}
.admin-form #login #request-account-banner p {
    font-size: 1.15em;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0,0,0,0.26);
}
.admin-form #login #request-enterprise-resale-banner p a,
.admin-form #login #request-account-banner p a {
    text-decoration: underline;
}
.admin-form #login #request-account-banner p a:hover,
.admin-form #login #request-account-banner p a:active {
    color: #fff !important;
}
.admin-form #login #request-enterprise-resale-banner .request-content {
    display: flex;
    line-height: 22px;
    text-shadow: 0 1px 5px rgba(0,0,0,0.26);
    flex-wrap: wrap;
}
.admin-form #login #request-enterprise-resale-banner .request-content .account-type {
    display: flex;
    padding-right: 15px;
    padding-left: 15px;
    flex-direction: column;
}
.admin-form #login #request-enterprise-resale-banner .request-content .account-type a.button {
    margin-top: auto;
}
.login-bg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url("../images/ui-elements/login-bg.jpg");
    background-size: cover;
}
.login-bg:before {
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    opacity: 0.5;
}
@media (min-width:992px) {
    .admin-form #login .panel .login-controls {
        display: flex;
        align-items: stretch;
    }
    .admin-form #login #request-enterprise-resale-banner,
    .admin-form #login #request-account-banner {
        align-self: stretch;
        right: -1px;
    }
    .admin-form #login #request-enterprise-resale-banner .panel-body,
    .admin-form #login #request-account-banner .panel-body {
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
        height: 100%;
        align-items: center;
        justify-content: center;
        align-self: stretch;
    }
    .admin-form #login #request-enterprise-resale-banner .request-content {
        text-align: center;
    }
}
/*===============================================
  H. Invoice.html
================================================= */

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;
}
/*===============================================
  I. Timeline.html
================================================= */

body.timeline-page #main {
    min-height: 1400px;
}
body.timeline-page #content {
    padding: 8px 35px 50px 35px;
}
#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: #4a89dc;
}
#timeline .panel {
    position: relative;
    z-index: 11;
    overflow: visible;
    margin-bottom: 30px;
}
#timeline .panel:before,
#timeline .panel:after {
    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:before,
#timeline .right-column .panel:after {
    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:before {
        display: none;
    }
    #timeline > .row .panel:after {
        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: #eeeeee;
    box-shadow: 0 0 0 5px #eeeeee;
}
#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 > .right-column .timeline-item,
#timeline.timeline-single > .row > .left-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:before,
#timeline.timeline-single .panel:after {
    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;
}
/*===============================================
  J. Map Pages - Full, Vector
================================================= */

.maps-full-page,
.maps-vector-page {
    /*responsive expanding header styles*/
}
.maps-full-page #main,
.maps-vector-page #main,
.maps-full-page #content_wrapper,
.maps-vector-page #content_wrapper,
.maps-full-page #content,
.maps-vector-page #content,
.maps-full-page .map,
.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, 0.5);
    border-radius: 2px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.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;
}
/*===============================================
  K. Profile.html
================================================= */

body.profile-page #content .tab-block .nav-tabs > li > a {
    padding: 9px 35px;
}
/*===============================================
  L. Error Pages - 404, 500 (plus alt pages)
================================================= */

.error-page #main:before {
    background: #F5F5F5;
}
.error-page #return-arrow {
    top: 75px;
    padding-top: 0;
}
.error-page .error-title {
    font-size: 140px;
    font-weight: 800;
    text-align: center;
    padding-top: 60px;
    margin-bottom: 20px;
    line-height: 120px;
}
.error-page .error-subtitle {
    font-weight: 400;
    text-align: center;
    font-size: 40px;
    color: #AAA;
    margin-bottom: 80px;
}
.error-page .mid-section {
    position: relative;
    width: 100%;
    height: 215px;
    background: #FFF;
    border-top: 1px solid #E6E6E6;
    border-bottom: 1px solid #E6E6E6;
}
.error-page .mid-content {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
    padding: 50px 20px 35px;
}
.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 #4a89dc;
    background: #FBFBFB;
}
.error-page .error-page.alt .error-title {
    padding-top: 110px;
}
.error-page #search-widget {
    background: #f1f1f1;
}
.error-page .error-icon {
    font-size: 80px;
    position: relative;
    top: -10px;
}
.error-page .error-text {
    font-size: 120px;
    text-align: center;
    text-shadow: 0 2px #FFF;
    color: #888;
    width: 100%;
}
/*===============================================
  M. Ecommerce Page - Added update v1.3
================================================= */

.ecommerce-page {
    /* fileupload field styling */
    /*select filter dropdowns - psuedo placeholder */
    /* creates extra spacing for first timeline item */
    /* bg-light style of bootstrap-tags input */
}
.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: black !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:hover,
.ecommerce-page input.bg-light + .bootstrap-tagsinput .tag:focus {
    background-color: #FAFAFA;
}
/*===============================================
  N. Search Results Page - Added update v1.4
================================================= */

.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;
}
/*===============================================
  O. Bootstrap Timeout Page - Added update v1.4
================================================= */

#session-timeout-dialog .modal-dialog {
    width: 102%;
    height: 100%;
    background: rgba(255, 255, 255, 0.93);
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 15%;
    text-align: center;
    border-radius: 1px;
}
#session-timeout-dialog .modal-content {
    background: none;
    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;
}
/*==================================================
  Theme Skin - Controlled by skin settings.less
==================================================== */
/* BACKGROUND CONTEXTUALS
 */

.bg-primary {
    background-color: #4a89dc !important;
    color: #f5f8fd;
}
a.bg-primary:hover {
    background-color: #276ecc !important;
}
.bg-primary .text-muted {
    color: #c5dcfa;
}
.bg-primary .text-darken {
    color: #276ecc;
}
.bg-primary.light {
    background-color: #649ae1 !important;
}
.bg-primary.lighter {
    background-color: #75a5e4 !important;
}
.bg-primary.dark {
    background-color: #3078d7 !important;
}
.bg-primary.darker {
    background-color: #276ecc !important;
}
.bg-primary .open > a,
.bg-primary .open > a:hover,
.bg-primary .open > a:focus {
    color: #ffffff;
}
.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:hover,
.bg-success .open > a:focus {
    color: #ffffff;
}
.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:hover,
.bg-info .open > a:focus {
    color: #ffffff;
}
.bg-warning {
    background-color: #f6bb42 !important;
    color: #ffffff;
}
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:hover,
.bg-warning .open > a:focus {
    color: #ffffff;
}
.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:hover,
.bg-danger .open > a:focus {
    color: #ffffff;
}
.bg-alert {
    background-color: #967adc !important;
    color: #ffffff;
}
.bg-alert small {
    color: #fff;
}
a.bg-alert:hover {
    background-color: #7652d1 !important;
}
.bg-alert .text-muted {
    color: #f5f2fd;
}
.bg-alert .text-darken {
    color: #7652d1;
}
.bg-alert.light {
    background-color: #a992e2 !important;
}
.bg-alert.lighter {
    background-color: #b6a2e7 !important;
}
.bg-alert.dark {
    background-color: #8362d6 !important;
}
.bg-alert.darker {
    background-color: #7652d1 !important;
}
.bg-alert .open > a,
.bg-alert .open > a:hover,
.bg-alert .open > a:focus {
    color: #ffffff;
}
.bg-system {
    background-color: #37bc9b !important;
    color: #cef1e8;
}
a.bg-system:hover {
    background-color: #2b957a !important;
}
.bg-system .text-muted {
    color: #9eeeda;
}
.bg-system .text-darken {
    color: #2b957a;
}
.bg-system.light {
    background-color: #48c9a9 !important;
}
.bg-system.lighter {
    background-color: #58ceb1 !important;
}
.bg-system.dark {
    background-color: #30a487 !important;
}
.bg-system.darker {
    background-color: #2b957a !important;
}
.bg-system .open > a,
.bg-system .open > a:hover,
.bg-system .open > a:focus {
    color: #ffffff;
}
.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:hover,
.bg-dark .open > a:focus {
    color: #ffffff;
}
.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 {
    background-color: #FAFAFA;
    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;
}
/* BADGES CONTEXTUALS
 * linked labels get darker on :hover
 */

.badge-default {
    background-color: #777777;
}
.badge-default[href]:hover,
.badge-default[href]:focus {
    background-color: #5e5e5e;
}
.badge-primary {
    background-color: #4a89dc;
}
.badge-primary[href]:hover,
.badge-primary[href]:focus {
    background-color: #276ecc;
}
.badge-success,
.badge-primary-success,
.badge-secondary-success {
    background-color: #70ca63;
}
.badge-success[href]:hover,
.badge-success[href]:focus {
    background-color: #4fbb3f;
}
.badge-info {
    background-color: #3bafda;
}
.badge-info[href]:hover,
.badge-info[href]:focus {
    background-color: #2494be;
}
.badge-warning,
.badge-primary-warning,
.badge-secondary-warning {
    background-color: #f6bb42;
}
.badge-warning[href]:hover,
.badge-warning[href]:focus {
    background-color: #f4a911;
}
.badge-danger,
.badge-primary-danger,
.badge-secondary-danger {
    background-color: #e9573f;
}
.badge-danger[href]:hover,
.badge-danger[href]:focus {
    background-color: #dc3519;
}
.badge-alert {
    background-color: #967adc;
}
.badge-alert[href]:hover,
.badge-alert[href]:focus {
    background-color: #7652d1;
}
.badge-system {
    background-color: #37bc9b;
}
.badge-system[href]:hover,
.badge-system[href]:focus {
    background-color: #2b957a;
}
.badge-dark {
    background-color: #3b3f4f;
}
.badge-dark[href]:hover,
.badge-dark[href]:focus {
    background-color: #252832;
}
/* LABELS CONTEXTUALS
 */

.label-muted {
    background-color: #aaaaaa;
}
.label-muted[href]:hover,
.label-muted[href]:focus {
    background-color: #919191;
}
.label-default {
    background-color: #777777;
}
.label-default[href]:hover,
.label-default[href]:focus {
    background-color: #5e5e5e;
}
.label-primary {
    background-color: #4a89dc;
}
.label-primary[href]:hover,
.label-primary[href]:focus {
    background-color: #276ecc;
}
.label-success {
    background-color: #70ca63;
}
.label-success[href]:hover,
.label-success[href]:focus {
    background-color: #4fbb3f;
}
.label-info {
    background-color: #3bafda;
}
.label-info[href]:hover,
.label-info[href]:focus {
    background-color: #2494be;
}
.label-warning {
    background-color: #f6bb42;
}
.label-warning[href]:hover,
.label-warning[href]:focus {
    background-color: #f4a911;
}
.label-danger {
    background-color: #e9573f;
}
.label-danger[href]:hover,
.label-danger[href]:focus {
    background-color: #dc3519;
}
.label-alert {
    background-color: #967adc;
}
.label-alert[href]:hover,
.label-alert[href]:focus {
    background-color: #7652d1;
}
.label-system {
    background-color: #37bc9b;
}
.label-system[href]:hover,
.label-system[href]:focus {
    background-color: #2b957a;
}
.label-dark {
    background-color: #3b3f4f;
}
.label-dark[href]:hover,
.label-dark[href]:focus {
    background-color: #252832;
}
/* BUTTON CONTEXTUALS
 */

.btn-default,
.btn-grey {
    color: #666666;
    background-color: #f0f0f0;
    border-color: rgba(0, 0, 0, 0.1);
}
.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default,
.btn-grey:hover,
.btn-grey:focus,
.btn-grey:active,
.btn-grey.active,
.open > .dropdown-toggle.btn-grey {
    color: #666666;
    background-color: #eaeaea;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default,
.btn-grey:active,
.btn-grey.active,
.open > .dropdown-toggle.btn-grey {
    background-image: none;
}
.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
    background-color: #f0f0f0;
    border-color: #dddddd;
}
.btn-default .badge {
    color: #f0f0f0;
    background-color: #666666;
}
.btn-default.btn-gradient {
    text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.4);
    border-color: rgba(0, 0, 0, 0.07) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.09);
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.9) 10%, rgba(255, 255, 255, 0.3) 100%);
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 10%, rgba(255, 255, 255, 0.3) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#80ffffff', endColorstr='#00ffffff', GradientType=0);
}
.btn-default.light {
    background-color: #FAFAFA;
}
.btn-default.light:hover,
.btn-default.light:focus,
.btn-default.light:active,
.btn-default.light.active,
.open > .dropdown-toggle.btn-default.light {
    background-color: #ececec;
}
.btn-default.dark {
    background-color: #e8e8e8;
}
.btn-default.dark:hover,
.btn-default.dark:focus,
.btn-default.dark:active,
.btn-default.dark.active,
.open > .dropdown-toggle.btn-default.dark {
    background-color: #e1e1e1;
}
.btn-primary {
    color: #ffffff;
    background-color: #4a89dc;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
    color: #ffffff;
    background-color: #2a74d6;
    border-color: rgba(0, 0, 0, 0.05);
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
    background-image: none;
}
.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
    background-color: #4a89dc;
    border-color: #4a89dc;
}
.btn-primary .badge {
    color: #4a89dc;
    background-color: #ffffff;
}
.btn-primary.light {
    background-color: #649ae1;
}
.btn-primary.light:hover,
.btn-primary.light:focus,
.btn-primary.light:active,
.btn-primary.light.active,
.open > .dropdown-toggle.btn-primary.light {
    background-color: #3078d7;
}
.btn-primary.dark {
    background-color: #3078d7;
}
.btn-primary.dark:hover,
.btn-primary.dark:focus,
.btn-primary.dark:active,
.btn-primary.dark.active,
.open > .dropdown-toggle.btn-primary.dark {
    background-color: #266ac3;
}
.btn-success {
    color: #ffffff;
    background-color: #70ca63;
}
.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
    color: #ffffff;
    background-color: #56c046;
    border-color: rgba(0, 0, 0, 0.05);
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
    background-image: none;
}
.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success.active {
    background-color: #70ca63;
    border-color: #70ca63;
}
.btn-success .badge {
    color: #70ca63;
    background-color: #ffffff;
}
.btn-success.light {
    background-color: #85d27a;
}
.btn-success.light:hover,
.btn-success.light:focus,
.btn-success.light:active,
.btn-success.light.active,
.open > .dropdown-toggle.btn-success.light {
    background-color: #5bc24c;
}
.btn-success.dark {
    background-color: #5bc24c;
}
.btn-success.dark:hover,
.btn-success.dark:focus,
.btn-success.dark:active,
.btn-success.dark.active,
.open > .dropdown-toggle.btn-success.dark {
    background-color: #4cb33d;
}
.btn-info {
    color: #ffffff;
    background-color: #3bafda;
}
.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
    color: #ffffff;
    background-color: #269dc9;
    border-color: rgba(0, 0, 0, 0.05);
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
    background-image: none;
}
.btn-info.disabled,
.btn-info[disabled],
fieldset[disabled] .btn-info,
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled:active,
.btn-info[disabled]:active,
fieldset[disabled] .btn-info:active,
.btn-info.disabled.active,
.btn-info[disabled].active,
fieldset[disabled] .btn-info.active {
    background-color: #3bafda;
    border-color: #3bafda;
}
.btn-info .badge {
    color: #3bafda;
    background-color: #ffffff;
}
.btn-info.light {
    background-color: #55badf;
}
.btn-info.light:hover,
.btn-info.light:focus,
.btn-info.light:active,
.btn-info.light.active,
.open > .dropdown-toggle.btn-info.light {
    background-color: #27a2cf;
}
.btn-info.dark {
    background-color: #27a2cf;
}
.btn-info.dark:hover,
.btn-info.dark:focus,
.btn-info.dark:active,
.btn-info.dark.active,
.open > .dropdown-toggle.btn-info.dark {
    background-color: #228eb6;
}
.btn-warning {
    color: #fff !important;
    background-color: #f6bb42;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
    color: #735B34;
    background-color: #f4ae1d;
    border-color: rgba(0, 0, 0, 0.05);
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
    background-image: none;
}
.btn-warning.disabled,
.btn-warning[disabled],
fieldset[disabled] .btn-warning,
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled:active,
.btn-warning[disabled]:active,
fieldset[disabled] .btn-warning:active,
.btn-warning.disabled.active,
.btn-warning[disabled].active,
fieldset[disabled] .btn-warning.active {
    background-color: #f6bb42;
    border-color: #f6bb42;
}
.btn-warning .badge {
    color: #f6bb42;
    background-color: #ffffff;
}
.btn-warning.light {
    background-color: #f7c65f;
}
.btn-warning.light:hover,
.btn-warning.light:focus,
.btn-warning.light:active,
.btn-warning.light.active,
.open > .dropdown-toggle.btn-warning.light {
    background-color: #f5b025;
}
.btn-warning.dark {
    background-color: #f5b025;
}
.btn-warning.dark:hover,
.btn-warning.dark:focus,
.btn-warning.dark:active,
.btn-warning.dark.active,
.open > .dropdown-toggle.btn-warning.dark {
    background-color: #efa50b;
}
.btn-danger {
    color: #ffffff;
    background-color: #e9573f;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
    color: #ffffff;
    background-color: #e5391d;
    border-color: rgba(0, 0, 0, 0.05);
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
    background-image: none;
}
.btn-danger.disabled,
.btn-danger[disabled],
fieldset[disabled] .btn-danger,
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled:active,
.btn-danger[disabled]:active,
fieldset[disabled] .btn-danger:active,
.btn-danger.disabled.active,
.btn-danger[disabled].active,
fieldset[disabled] .btn-danger.active {
    background-color: #e9573f;
    border-color: #e9573f;
}
.btn-danger .badge {
    color: #e9573f;
    background-color: #ffffff;
}
.btn-danger.light {
    background-color: #ec6f5a;
}
.btn-danger.light:hover,
.btn-danger.light:focus,
.btn-danger.light:active,
.btn-danger.light.active,
.open > .dropdown-toggle.btn-danger.light {
    background-color: #e63f24;
}
.btn-danger.dark {
    background-color: #e63f24;
}
.btn-danger.dark:hover,
.btn-danger.dark:focus,
.btn-danger.dark:active,
.btn-danger.dark.active,
.open > .dropdown-toggle.btn-danger.dark {
    background-color: #d33218;
}
.btn-alert {
    color: #ffffff;
    background-color: #967adc;
}
.btn-alert:hover,
.btn-alert:focus,
.btn-alert:active,
.btn-alert.active,
.open > .dropdown-toggle.btn-alert {
    color: #ffffff;
    background-color: #7e5cd4;
    border-color: rgba(0, 0, 0, 0.05);
}
.btn-alert:active,
.btn-alert.active,
.open > .dropdown-toggle.btn-alert {
    background-image: none;
}
.btn-alert.disabled,
.btn-alert[disabled],
fieldset[disabled] .btn-alert,
.btn-alert.disabled:hover,
.btn-alert[disabled]:hover,
fieldset[disabled] .btn-alert:hover,
.btn-alert.disabled:focus,
.btn-alert[disabled]:focus,
fieldset[disabled] .btn-alert:focus,
.btn-alert.disabled:active,
.btn-alert[disabled]:active,
fieldset[disabled] .btn-alert:active,
.btn-alert.disabled.active,
.btn-alert[disabled].active,
fieldset[disabled] .btn-alert.active {
    background-color: #967adc;
    border-color: #967adc;
}
.btn-alert .badge {
    color: #967adc;
    background-color: #ffffff;
}
.btn-alert.light {
    background-color: #a992e2;
}
.btn-alert.light:hover,
.btn-alert.light:focus,
.btn-alert.light:active,
.btn-alert.light.active,
.open > .dropdown-toggle.btn-alert.light {
    background-color: #8362d6;
}
.btn-alert.dark {
    background-color: #8362d6;
}
.btn-alert.dark:hover,
.btn-alert.dark:focus,
.btn-alert.dark:active,
.btn-alert.dark.active,
.open > .dropdown-toggle.btn-alert.dark {
    background-color: #704acf;
}
.btn-system {
    color: #ffffff;
    background-color: #37bc9b;
}
.btn-system:hover,
.btn-system:focus,
.btn-system:active,
.btn-system.active,
.open > .dropdown-toggle.btn-system {
    color: #ffffff;
    background-color: #2e9e83;
    border-color: rgba(0, 0, 0, 0.05);
}
.btn-system:active,
.btn-system.active,
.open > .dropdown-toggle.btn-system {
    background-image: none;
}
.btn-system.disabled,
.btn-system[disabled],
fieldset[disabled] .btn-system,
.btn-system.disabled:hover,
.btn-system[disabled]:hover,
fieldset[disabled] .btn-system:hover,
.btn-system.disabled:focus,
.btn-system[disabled]:focus,
fieldset[disabled] .btn-system:focus,
.btn-system.disabled:active,
.btn-system[disabled]:active,
fieldset[disabled] .btn-system:active,
.btn-system.disabled.active,
.btn-system[disabled].active,
fieldset[disabled] .btn-system.active {
    background-color: #37bc9b;
    border-color: #37bc9b;
}
.btn-system .badge {
    color: #37bc9b;
    background-color: #ffffff;
}
.btn-system.light {
    background-color: #48c9a9;
}
.btn-system.light:hover,
.btn-system.light:focus,
.btn-system.light:active,
.btn-system.light.active,
.open > .dropdown-toggle.btn-system.light {
    background-color: #30a487;
}
.btn-system.dark {
    background-color: #30a487;
}
.btn-system.dark:hover,
.btn-system.dark:focus,
.btn-system.dark:active,
.btn-system.dark.active,
.open > .dropdown-toggle.btn-system.dark {
    background-color: #298d74;
}
.btn-dark {
    color: #ffffff;
    background-color: #3b3f4f;
}
.btn-dark:hover,
.btn-dark:focus,
.btn-dark:active,
.btn-dark.active,
.open > .dropdown-toggle.btn-dark {
    color: #ffffff;
    background-color: #2b2e39;
    border-color: rgba(0, 0, 0, 0.05);
}
.btn-dark:active,
.btn-dark.active,
.open > .dropdown-toggle.btn-dark {
    background-image: none;
}
.btn-dark.disabled,
.btn-dark[disabled],
fieldset[disabled] .btn-dark,
.btn-dark.disabled:hover,
.btn-dark[disabled]:hover,
fieldset[disabled] .btn-dark:hover,
.btn-dark.disabled:focus,
.btn-dark[disabled]:focus,
fieldset[disabled] .btn-dark:focus,
.btn-dark.disabled:active,
.btn-dark[disabled]:active,
fieldset[disabled] .btn-dark:active,
.btn-dark.disabled.active,
.btn-dark[disabled].active,
fieldset[disabled] .btn-dark.active {
    background-color: #3b3f4f;
    border-color: #3b3f4f;
}
.btn-dark .badge {
    color: #3b3f4f;
    background-color: #ffffff;
}
.btn-dark.light {
    background-color: #484d61;
}
.btn-dark.light:hover,
.btn-dark.light:focus,
.btn-dark.light:active,
.btn-dark.light.active,
.open > .dropdown-toggle.btn-dark.light {
    background-color: #2e313d;
}
.btn-dark.dark {
    background-color: #2e313d;
}
.btn-dark.dark:hover,
.btn-dark.dark:focus,
.btn-dark.dark:active,
.btn-dark.dark.active,
.open > .dropdown-toggle.btn-dark.dark {
    background-color: #21232c;
}
.btn-ghost {
    color: #ffffff !important;
    background-color: rgba(255,255,255,0.1) !important;
    border: 2px solid #fff !important;
}
.btn-ghost:hover,
.btn-ghost:focus,
.btn-ghost:active,
.btn-ghost.active,
.open > .dropdown-toggle.btn-ghost {
    color: #ffffff;
    background-color: rgba(255,255,255,0.25) !important;
}
.btn-ghost:active,
.btn-ghost.active,
.open > .dropdown-toggle.btn-ghost {
    background-image: none;
}
.btn-ghost.disabled,
.btn-ghost[disabled],
fieldset[disabled] .btn-ghost,
.btn-ghost.disabled:hover,
.btn-ghost[disabled]:hover,
fieldset[disabled] .btn-ghost:hover,
.btn-ghost.disabled:focus,
.btn-ghost[disabled]:focus,
fieldset[disabled] .btn-ghost:focus,
.btn-ghost.disabled:active,
.btn-ghost[disabled]:active,
fieldset[disabled] .btn-ghost:active,
.btn-ghost.disabled.active,
.btn-ghost[disabled].active,
fieldset[disabled] .btn-ghost.active {
    background-color: #e9573f;
    border-color: #e9573f;
}
.btn-ghost .badge {
    color: #e9573f;
    background-color: #ffffff;
}
.btn-ghost.light {
    background-color: #ec6f5a;
}
.btn-ghost.light:hover,
.btn-ghost.light:focus,
.btn-ghost.light:active,
.btn-ghost.light.active,
.open > .dropdown-toggle.btn-ghost.light {
    background-color: #e63f24;
}
.btn-ghost.dark {
    background-color: #e63f24;
}
.btn-ghost.dark:hover,
.btn-ghost.dark:focus,
.btn-ghost.dark:active,
.btn-ghost.dark.active,
.open > .dropdown-toggle.btn-ghost.dark {
    background-color: #d33218;
}
/* ALT BUTTON CONTEXTUALS
 */

.btn.btn-alt.btn-default {
    border-left-color: #AAA;
}
.btn.btn-alt.btn-primary {
    border-left-color: #4a89dc;
}
.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 {
    border-left-color: #967adc;
}
.btn.btn-alt.btn-system {
    border-left-color: #37bc9b;
}
.btn.btn-alt.btn-dark {
    border-left-color: #3b3f4f;
}
/* CHECKBOX/RADIO CONTEXTUALS
 */

.radio.radio-primary label:before,
.radio-custom.radio-primary label:before,
.checkbox-custom.checkbox-primary label:before {
    border-color: #649ae1;
}
.radio.radio-primary input[type=radio]:checked + label:after,
.radio-custom.radio-primary input[type=radio]:checked + label:after,
.radio-custom.radio-primary input[type=checkbox]:checked + label:after,
.checkbox-custom.checkbox-primary input[type=checkbox]:checked + label:after,
.checkbox-custom.checkbox-primary input[type=radio]:checked + label:after {
    background-color: #649ae1;
    color: #649ae1;
}
.checkbox-custom.fill.checkbox-primary label:before {
    background-color: #649ae1;
}
.radio-custom.radio-success label:before,
.checkbox-custom.checkbox-success label:before {
    border-color: #85d27a;
}
.radio-custom.radio-success input[type=radio]:checked + label:after,
.radio-custom.radio-success input[type=checkbox]:checked + label:after,
.checkbox-custom.checkbox-success input[type=checkbox]:checked + label:after,
.checkbox-custom.checkbox-success input[type=radio]:checked + label:after {
    background-color: #85d27a;
    color: #85d27a;
}
.checkbox-custom.fill.checkbox-success label:before {
    background-color: #85d27a;
}
.radio-custom.radio-info label:before,
.checkbox-custom.checkbox-info label:before {
    border-color: #55badf;
}
.radio-custom.radio-info input[type=radio]:checked + label:after,
.radio-custom.radio-info input[type=checkbox]:checked + label:after,
.checkbox-custom.checkbox-info input[type=checkbox]:checked + label:after,
.checkbox-custom.checkbox-info input[type=radio]:checked + label:after {
    background-color: #55badf;
    color: #55badf;
}
.checkbox-custom.fill.checkbox-info label:before {
    background-color: #55badf;
}
.radio-custom.radio-warning label:before,
.checkbox-custom.checkbox-warning label:before {
    border-color: #f7c65f;
}
.radio-custom.radio-warning input[type=radio]:checked + label:after,
.radio-custom.radio-warning input[type=checkbox]:checked + label:after,
.checkbox-custom.checkbox-warning input[type=checkbox]:checked + label:after,
.checkbox-custom.checkbox-warning input[type=radio]:checked + label:after {
    background-color: #f7c65f;
    color: #f7c65f;
}
.checkbox-custom.fill.checkbox-warning label:before {
    background-color: #f7c65f;
}
.radio-custom.radio-danger label:before,
.checkbox-custom.checkbox-danger label:before {
    border-color: #ec6f5a;
}
.radio-custom.radio-danger input[type=radio]:checked + label:after,
.radio-custom.radio-danger input[type=checkbox]:checked + label:after,
.checkbox-custom.checkbox-danger input[type=checkbox]:checked + label:after,
.checkbox-custom.checkbox-danger input[type=radio]:checked + label:after {
    background-color: #ec6f5a;
    color: #ec6f5a;
}
.checkbox-custom.fill.checkbox-danger label:before {
    background-color: #ec6f5a;
}
.radio-custom.radio-alert label:before,
.checkbox-custom.checkbox-alert label:before {
    border-color: #a992e2;
}
.radio-custom.radio-alert input[type=radio]:checked + label:after,
.radio-custom.radio-alert input[type=checkbox]:checked + label:after,
.checkbox-custom.checkbox-alert input[type=checkbox]:checked + label:after,
.checkbox-custom.checkbox-alert input[type=radio]:checked + label:after {
    background-color: #a992e2;
    color: #a992e2;
}
.checkbox-custom.fill.checkbox-alert label:before {
    background-color: #a992e2;
}
.radio-custom.radio-system label:before,
.checkbox-custom.checkbox-system label:before {
    border-color: #48c9a9;
}
.radio-custom.radio-system input[type=radio]:checked + label:after,
.radio-custom.radio-system input[type=checkbox]:checked + label:after,
.checkbox-custom.checkbox-system input[type=checkbox]:checked + label:after,
.checkbox-custom.checkbox-system input[type=radio]:checked + label:after {
    background-color: #48c9a9;
    color: #48c9a9;
}
.checkbox-custom.fill.checkbox-system label:before {
    background-color: #48c9a9;
}
.radio-custom.radio-dark label:before,
.checkbox-custom.checkbox-dark label:before {
    border-color: #484d61;
}
.radio-custom.radio-dark input[type=radio]:checked + label:after,
.radio-custom.radio-dark input[type=checkbox]:checked + label:after,
.checkbox-custom.checkbox-dark input[type=checkbox]:checked + label:after,
.checkbox-custom.checkbox-dark input[type=radio]:checked + label:after {
    background-color: #484d61;
    color: #484d61;
}
.checkbox-custom.fill.checkbox-dark label:before {
    background-color: #484d61;
}
.radio-custom.radio-light label:before,
.checkbox-custom.checkbox-light label:before {
    border-color: #eee;
}
.radio-custom.radio-light input[type=radio]:checked + label:after,
.radio-custom.radio-light input[type=checkbox]:checked + label:after,
.checkbox-custom.checkbox-light input[type=checkbox]:checked + label:after,
.checkbox-custom.checkbox-light input[type=radio]:checked + label:after {
    background-color: #666;
    color: #666 !important;
}
.checkbox-custom.fill.checkbox-light label:before {
    background-color: #eee;
}
.radio-custom.radio-disabled label:before,
.checkbox-custom.checkbox-disabled label:before {
    border-color: #b9b9b9;
}
.radio-custom.radio-disabled input[type=radio]:checked + label:after,
.radio-custom.radio-disabled input[type=checkbox]:checked + label:after,
.checkbox-custom.checkbox-disabled input[type=checkbox]:checked + label:after,
.checkbox-custom.checkbox-disabled input[type=radio]:checked + label:after {
    background-color: #b9b9b9;
    color: #b9b9b9;
}
.checkbox-custom.fill.checkbox-disabled label:before {
    background-color: #b9b9b9;
}
/* LISTGROUP CONTEXTUALS
 * Add modifier classes to change text and background color on individual items.
 * Organizationally, this must come after the `:hover` states.
 */

.list-group-item-primary {
    color: #1f57a1;
    border-color: #97bbeb;
    background-color: #caddf5;
}
a.list-group-item-primary {
    color: #1f57a1;
}
a.list-group-item-primary .list-group-item-heading {
    color: inherit;
}
a.list-group-item-primary:hover,
a.list-group-item-primary:focus {
    color: #1f57a1;
    background-color: #dbe8f8;
}
a.list-group-item-primary.active,
a.list-group-item-primary.active:hover,
a.list-group-item-primary.active:focus {
    color: #fff;
    background-color: #4a89dc;
    border-color: #4a89dc;
}
.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:hover,
a.list-group-item-success:focus {
    color: #3f9532;
    background-color: #e7f6e4;
}
a.list-group-item-success.active,
a.list-group-item-success.active:hover,
a.list-group-item-success.active:focus {
    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:hover,
a.list-group-item-info:focus {
    color: #1c7393;
    background-color: #cdebf6;
}
a.list-group-item-info.active,
a.list-group-item-info.active:hover,
a.list-group-item-info.active:focus {
    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:hover,
a.list-group-item-warning:focus {
    color: #c88a0a;
    background-color: #fef7e8;
}
a.list-group-item-warning.active,
a.list-group-item-warning.active:hover,
a.list-group-item-warning.active:focus {
    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:hover,
a.list-group-item-danger:focus {
    color: #bc2d16;
    background-color: #fcebe8;
}
a.list-group-item-danger.active,
a.list-group-item-danger.active:hover,
a.list-group-item-danger.active:focus {
    color: #fff;
    background-color: #e9573f;
    border-color: #e9573f;
}
.list-group-item-alert {
    color: #542fb2;
    border-color: #c6b7ec;
    background-color: #ece7f9;
}
a.list-group-item-alert {
    color: #542fb2;
}
a.list-group-item-alert .list-group-item-heading {
    color: inherit;
}
a.list-group-item-alert:hover,
a.list-group-item-alert:focus {
    color: #542fb2;
    background-color: #f9f7fd;
}
a.list-group-item-alert.active,
a.list-group-item-alert.active:hover,
a.list-group-item-alert.active:focus {
    color: #fff;
    background-color: #967adc;
    border-color: #967adc;
}
.list-group-item-system {
    color: #206d5a;
    border-color: #77d7c0;
    background-color: #a7e5d6;
}
a.list-group-item-system {
    color: #206d5a;
}
a.list-group-item-system .list-group-item-heading {
    color: inherit;
}
a.list-group-item-system:hover,
a.list-group-item-system:focus {
    color: #206d5a;
    background-color: #b7eadd;
}
a.list-group-item-system.active,
a.list-group-item-system.active:hover,
a.list-group-item-system.active:focus {
    color: #fff;
    background-color: #37bc9b;
    border-color: #37bc9b;
}
.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:hover,
a.list-group-item-dark:focus {
    color: #3b3f4f;
    background-color: #c8cbd6;
}
a.list-group-item-dark.active,
a.list-group-item-dark.active:hover,
a.list-group-item-dark.active:focus {
    color: #fff;
    background-color: #3b3f4f;
    border-color: #3b3f4f;
}
/* PANEL CONTEXTUALS
 */

.panel-primary.panel-border {
    border-color: #4a89dc;
}
.admin-form .panel-primary .panel-heading {
    color: #ffffff;
}
.panel-primary > .panel-heading {
    color: #ffffff;
    background-color: #4a89dc;
    border-color: #4a89dc;
}
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #4a89dc;
}
.panel-primary > .panel-heading .badge {
    color: #4a89dc;
    background-color: #ffffff;
}
.panel-primary > .panel-heading > .panel-title {
    color: #999;
}
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #4a89dc;
}
.panel-primary > .panel-body.fill {
    color: #FFF;
    border-color: #82ade7;
    background-color: #82ade7;
}
.panel-primary > .panel-body.border {
    border: 3px solid #4a89dc;
}
.panel-success.panel-border {
    border-color: #70ca63;
}
.panel-success > .panel-heading {
    color: #ffffff;
    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: #ffffff;
}
.panel-success > .panel-heading > .panel-title {
    color: #ffffff;
}
.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: #ffffff;
    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: #ffffff;
}
.panel-info > .panel-heading > .panel-title {
    color: #ffffff;
}
.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: #735B34;
    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: #ffffff;
}
.panel-warning > .panel-heading > .panel-title {
    color: #735B34;
}
.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: #ffffff;
    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: #ffffff;
}
.panel-danger > .panel-heading > .panel-title {
    color: #ffffff;
}
.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: #967adc;
}
.panel-alert > .panel-heading {
    color: #ffffff;
    background-color: #967adc;
    border-color: #967adc;
}
.panel-alert > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #967adc;
}
.panel-alert > .panel-heading .badge {
    color: #967adc;
    background-color: #ffffff;
}
.panel-alert > .panel-heading > .panel-title {
    color: #ffffff;
}
.panel-alert > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #967adc;
}
.panel-alert > .panel-body.fill {
    color: #FFF;
    border-color: #bfaeea;
    background-color: #bfaeea;
}
.panel-alert > .panel-body.border {
    border: 3px solid #967adc;
}
.panel-system.panel-border {
    border-color: #37bc9b;
}
.panel-system > .panel-heading {
    color: #ffffff;
    background-color: #37bc9b;
    border-color: #37bc9b;
}
.panel-system > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #37bc9b;
}
.panel-system > .panel-heading .badge {
    color: #37bc9b;
    background-color: #ffffff;
}
.panel-system > .panel-heading > .panel-title {
    color: #ffffff;
}
.panel-system > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #37bc9b;
}
.panel-system > .panel-body.fill {
    color: #FFF;
    border-color: #64d2b6;
    background-color: #64d2b6;
}
.panel-system > .panel-body.border {
    border: 3px solid #37bc9b;
}
.panel-dark.panel-border {
    border-color: #3b3f4f;
}
.panel-dark > .panel-heading {
    color: #ffffff;
    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: #ffffff;
}
.panel-dark > .panel-heading > .panel-title {
    color: #ffffff;
}
.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;
}
.admin-form .panel-footer {
    background-color: #fafafa !important;
    border-color: #e5e5e5 !important;
}
/* PROGRESS BAR CONTEXTUALS
 */

.progress-bar-default {
    background-color: #999999;
}
.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, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-primary {
    background-color: #4a89dc;
}
.progress-bar-primary.light {
    background-color: #5993df;
}
.progress-bar-primary.dark {
    background-color: #3b7fd9;
}
.progress-striped .progress-bar-primary {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-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, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-info {
    background-color: #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, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-warning {
    background-color: #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, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-danger {
    background-color: #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, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-alert {
    background-color: #967adc;
}
.progress-bar-alert.light {
    background-color: #a188e0;
}
.progress-bar-alert.dark {
    background-color: #8b6cd8;
}
.progress-striped .progress-bar-alert {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-system {
    background-color: #37bc9b;
}
.progress-bar-system.light {
    background-color: #3ec7a5;
}
.progress-bar-system.dark {
    background-color: #33ae90;
}
.progress-striped .progress-bar-system {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-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, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
/* SWITCH CONTEXTUALS
 */

div.switch.switch-primary input:checked + label {
    background-color: #4a89dc;
}
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: #967adc;
}
div.switch.switch-system input:checked + label {
    background-color: #37bc9b;
}
div.switch.switch-dark input:checked + label {
    background-color: #3b3f4f;
}
/* TABLE BG CONTEXTUALS
 * Exact selectors below required to override `.table-striped`
 * and prevent inheritance to nested tables.
 */

.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
    color: #a9a9a9;
    border-color: #ffffff;
    background-color: #ffffff;
}
.table > thead > tr.active + tr > th,
.table > tbody > tr.active + tr > th,
.table > tfoot > tr.active + tr > th,
.table > thead > tr.active + tr > td,
.table > tbody > tr.active + tr > td,
.table > tfoot > tr.active + tr > td {
    border-top: 1px solid #ffffff;
}
.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
    background-color: #ffffff;
}
.table > thead > tr > td.default,
.table > tbody > tr > td.default,
.table > tfoot > tr > td.default,
.table > thead > tr > th.default,
.table > tbody > tr > th.default,
.table > tfoot > tr > th.default,
.table > thead > tr.default > td,
.table > tbody > tr.default > td,
.table > tfoot > tr.default > td,
.table > thead > tr.default > th,
.table > tbody > tr.default > th,
.table > tfoot > tr.default > th {
    color: #b3b3b3;
    border-color: #ffffff;
    background-color: #ffffff;
}
.table > thead > tr.default + tr > th,
.table > tbody > tr.default + tr > th,
.table > tfoot > tr.default + tr > th,
.table > thead > tr.default + tr > td,
.table > tbody > tr.default + tr > td,
.table > tfoot > tr.default + tr > td {
    border-top: 1px solid #ffffff;
}
.table-hover > tbody > tr > td.default:hover,
.table-hover > tbody > tr > th.default:hover,
.table-hover > tbody > tr.default:hover > td,
.table-hover > tbody > tr:hover > .default,
.table-hover > tbody > tr.default:hover > th {
    background-color: #ffffff;
}
.table > thead > tr > td.primary,
.table > tbody > tr > td.primary,
.table > tfoot > tr > td.primary,
.table > thead > tr > th.primary,
.table > tbody > tr > th.primary,
.table > tfoot > tr > th.primary,
.table > thead > tr.primary > td,
.table > tbody > tr.primary > td,
.table > tfoot > tr.primary > td,
.table > thead > tr.primary > th,
.table > tbody > tr.primary > th,
.table > tfoot > tr.primary > th {
    color: #1f57a1;
    border-color: #97bbeb;
    background-color: #caddf5;
}
.table > thead > tr.primary + tr > th,
.table > tbody > tr.primary + tr > th,
.table > tfoot > tr.primary + tr > th,
.table > thead > tr.primary + tr > td,
.table > tbody > tr.primary + tr > td,
.table > tfoot > tr.primary + tr > td {
    border-top: 1px solid #97bbeb;
}
.table-hover > tbody > tr > td.primary:hover,
.table-hover > tbody > tr > th.primary:hover,
.table-hover > tbody > tr.primary:hover > td,
.table-hover > tbody > tr:hover > .primary,
.table-hover > tbody > tr.primary:hover > th {
    background-color: #dbe8f8;
}
.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
    color: #3f9532;
    border-color: #afe1a8;
    background-color: #d9f1d5;
}
.table > thead > tr.success + tr > th,
.table > tbody > tr.success + tr > th,
.table > tfoot > tr.success + tr > th,
.table > thead > tr.success + tr > td,
.table > tbody > tr.success + tr > td,
.table > tfoot > tr.success + tr > td {
    border-top: 1px solid #afe1a8;
}
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
    background-color: #e7f6e4;
}
.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
    color: #1c7393;
    border-color: #88cfe9;
    background-color: #bce4f2;
}
.table > thead > tr.info + tr > th,
.table > tbody > tr.info + tr > th,
.table > tfoot > tr.info + tr > th,
.table > thead > tr.info + tr > td,
.table > tbody > tr.info + tr > td,
.table > tfoot > tr.info + tr > td {
    border-top: 1px solid #88cfe9;
}
.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
    background-color: #cdebf6;
}
.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
    color: #c88a0a;
    border-color: #fadb9a;
    background-color: #fdf0d4;
}
.table > thead > tr.warning + tr > th,
.table > tbody > tr.warning + tr > th,
.table > tfoot > tr.warning + tr > th,
.table > thead > tr.warning + tr > td,
.table > tbody > tr.warning + tr > td,
.table > tfoot > tr.warning + tr > td {
    border-top: 1px solid #fadb9a;
}
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
    background-color: #fef7e8;
}
.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
    color: #bc2d16;
    border-color: #f4ab9f;
    background-color: #fadbd6;
}
.table > thead > tr.danger + tr > th,
.table > tbody > tr.danger + tr > th,
.table > tfoot > tr.danger + tr > th,
.table > thead > tr.danger + tr > td,
.table > tbody > tr.danger + tr > td,
.table > tfoot > tr.danger + tr > td {
    border-top: 1px solid #f4ab9f;
}
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
    background-color: #fcebe8;
}
.table > thead > tr > td.alert,
.table > tbody > tr > td.alert,
.table > tfoot > tr > td.alert,
.table > thead > tr > th.alert,
.table > tbody > tr > th.alert,
.table > tfoot > tr > th.alert,
.table > thead > tr.alert > td,
.table > tbody > tr.alert > td,
.table > tfoot > tr.alert > td,
.table > thead > tr.alert > th,
.table > tbody > tr.alert > th,
.table > tfoot > tr.alert > th {
    color: #542fb2;
    border-color: #c6b7ec;
    background-color: #ece7f9;
}
.table > thead > tr.alert + tr > th,
.table > tbody > tr.alert + tr > th,
.table > tfoot > tr.alert + tr > th,
.table > thead > tr.alert + tr > td,
.table > tbody > tr.alert + tr > td,
.table > tfoot > tr.alert + tr > td {
    border-top: 1px solid #c6b7ec;
}
.table-hover > tbody > tr > td.alert:hover,
.table-hover > tbody > tr > th.alert:hover,
.table-hover > tbody > tr.alert:hover > td,
.table-hover > tbody > tr:hover > .alert,
.table-hover > tbody > tr.alert:hover > th {
    background-color: #f9f7fd;
}
.table > thead > tr > td.system,
.table > tbody > tr > td.system,
.table > tfoot > tr > td.system,
.table > thead > tr > th.system,
.table > tbody > tr > th.system,
.table > tfoot > tr > th.system,
.table > thead > tr.system > td,
.table > tbody > tr.system > td,
.table > tfoot > tr.system > td,
.table > thead > tr.system > th,
.table > tbody > tr.system > th,
.table > tfoot > tr.system > th {
    color: #206d5a;
    border-color: #77d7c0;
    background-color: #a7e5d6;
}
.table > thead > tr.system + tr > th,
.table > tbody > tr.system + tr > th,
.table > tfoot > tr.system + tr > th,
.table > thead > tr.system + tr > td,
.table > tbody > tr.system + tr > td,
.table > tfoot > tr.system + tr > td {
    border-top: 1px solid #77d7c0;
}
.table-hover > tbody > tr > td.system:hover,
.table-hover > tbody > tr > th.system:hover,
.table-hover > tbody > tr.system:hover > td,
.table-hover > tbody > tr:hover > .system,
.table-hover > tbody > tr.system:hover > th {
    background-color: #b7eadd;
}
.table > thead > tr > td.dark,
.table > tbody > tr > td.dark,
.table > tfoot > tr > td.dark,
.table > thead > tr > th.dark,
.table > tbody > tr > th.dark,
.table > tfoot > tr > th.dark,
.table > thead > tr.dark > td,
.table > tbody > tr.dark > td,
.table > tfoot > tr.dark > td,
.table > thead > tr.dark > th,
.table > tbody > tr.dark > th,
.table > tfoot > tr.dark > th {
    color: #3b3f4f;
    border-color: #999eb3;
    background-color: #bcbfcd;
}
.table > thead > tr.dark + tr > th,
.table > tbody > tr.dark + tr > th,
.table > tfoot > tr.dark + tr > th,
.table > thead > tr.dark + tr > td,
.table > tbody > tr.dark + tr > td,
.table > tfoot > tr.dark + tr > td {
    border-top: 1px solid #999eb3;
}
.table-hover > tbody > tr > td.dark:hover,
.table-hover > tbody > tr > th.dark:hover,
.table-hover > tbody > tr.dark:hover > td,
.table-hover > tbody > tr:hover > .dark,
.table-hover > tbody > tr.dark:hover > th {
    background-color: #c8cbd6;
}
/* TEXT COLOR CONTEXTUALS
 */

.text-body {
    color: #666666;
}

.text-white {
    color: #ffffff;
}
a.text-white:hover {
    color: #808080;
}
.text-white-light {
    color: #ffffff;
}
.text-white-lighter {
    color: #ffffff;
}
.text-white-dark {
    color: #f6f6f6;
}
.text-white-darker {
    color: #ececec;
}
.text-muted {
    color: #999999;
}
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: #4a89dc;
}
a.text-primary:hover {
    color: #061221;
}
.text-primary-light {
    color: #5993df;
}
.text-primary-lighter {
    color: #6a9ee2;
}
.text-primary-dark {
    color: #3b7fd9;
}
.text-primary-darker {
    color: #2a74d6;
}
.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: #967adc;
}
a.text-alert:hover {
    color: #211245;
}
.text-alert-light {
    color: #a188e0;
}
.text-alert-lighter {
    color: #ae98e4;
}
.text-alert-dark {
    color: #8b6cd8;
}
.text-alert-darker {
    color: #7e5cd4;
}
.text-system {
    color: #37bc9b;
}
a.text-system:hover {
    color: #000000;
}
.text-system-light {
    color: #3ec7a5;
}
.text-system-lighter {
    color: #4ecbac;
}
.text-system-dark {
    color: #33ae90;
}
.text-system-darker {
    color: #2e9e83;
}
.text-dark {
    color: #3b3f4f;
}
a.text-dark:hover {
    color: #000000;
}
.text-dark-light {
    color: #434759;
}
.text-dark-lighter {
    color: #4b5065;
}
.text-dark-dark {
    color: #333745;
}
.text-dark-darker {
    color: #2b2e39;
}
.text-warning-text {
    color: #735B34;
}
.text-tp {
    color: rgba(0, 0, 0, 0.2);
}
a.text-tp:hover {
    color: rgba(0, 0, 0, 0.3);
}
/* BLOCKQUOTE CONTEXTUALS
 */

blockquote.blockquote-primary {
    border-color: #4a89dc;
}
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 {
    border-color: #967adc;
}
blockquote.blockquote-system {
    border-color: #37bc9b;
}
blockquote.blockquote-dark {
    border-color: #3b3f4f;
}
/* DROPCAP CONTEXTUALS
 */

.dropcap.dropcap-default:first-letter {
    color: #666;
}
.dropcap.dropcap-primary:first-letter {
    color: #4a89dc;
}
.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 {
    color: #967adc;
}
.dropcap.dropcap-system:first-letter {
    color: #37bc9b;
}
.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: #4a89dc;
}
.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 {
    background-color: #967adc;
}
.dropcap.dropcap-fill.dropcap-system:first-letter {
    background-color: #37bc9b;
}
.dropcap.dropcap-fill.dropcap-dark:first-letter {
    background-color: #3b3f4f;
}
.dropcap.dropcap-fill.dropcap-muted:first-letter {
    color: #888;
    background-color: #f0f0f0;
}
/* ALERT CONTEXTUALS
 */

.alert-primary {
    background-color: #6c9fe3;
}
.alert-primary.alert-border-right {
    border-right-color: #2567bf;
}
.alert-primary.alert-border-top {
    border-top-color: #2567bf;
}
.alert-primary.alert-border-bottom {
    border-bottom-color: #2567bf;
}
.alert-primary.alert-border-left {
    border-left-color: #2567bf;
}
.alert-primary.light {
    background-color: #8ab3e8;
}
.alert-primary.dark {
    background-color: #3d81da;
}
.alert-primary.pastel {
    color: #2363b6;
    background-color: #caddf5;
    border-color: rgba(0, 0, 0, 0.1);
}
.alert-primary.pastel .alert-link {
    color: #2363b6;
}
.alert-primary.pastel.alert-micro {
    border-color: #75a5e4;
}
.alert-primary.pastel .close {
    color: #2363b6;
}
.alert-primary.pastel .close:hover {
    color: #2363b6;
}
.alert-success {
    color: #45613A;
    background-color: #98d478;
}
.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, 0.1);
}
.alert-success.pastel .alert-link {
    color: #47a839;
}
.alert-success.pastel.alert-micro {
    border-color: #93d789;
}
.alert-success.pastel .close {
    color: #47a839;
}
.alert-success.pastel .close:hover {
    color: #47a839;
}
.alert-info {
    color: #435E6B;
    background-color: #98ceec;
}
.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, 0.1);
}
.alert-info.pastel .alert-link {
    color: #2084a9;
}
.alert-info.pastel.alert-micro {
    border-color: #66c1e2;
}
.alert-info.pastel .close {
    color: #2084a9;
}
.alert-info.pastel .close:hover {
    color: #2084a9;
}
.alert-warning {
    color: #735B34;
    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, 0.1);
}
.alert-warning.pastel .alert-link {
    color: #e19b0b;
}
.alert-warning.pastel.alert-micro {
    border-color: #f8cd73;
}
.alert-warning.pastel .close {
    color: #e19b0b;
}
.alert-warning.pastel .close:hover {
    color: #e19b0b;
}
.alert-danger {
    color: #6E342E;
    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, 0.1);
}
.alert-danger.pastel .alert-link {
    color: #c52f17;
}
.alert-danger.pastel.alert-micro {
    border-color: #ee7f6d;
}
.alert-danger.pastel .close {
    color: #c52f17;
}
.alert-danger.pastel .close:hover {
    color: #c52f17;
}
.alert-alert {
    background-color: #b09ae4;
}
.alert-alert.alert-border-right {
    border-right-color: #6d46ce;
}
.alert.alert-border-left-success {
    border-left-color: #70ca63;
}
.alert-alert.alert-border-top {
    border-top-color: #6d46ce;
}
.alert-alert.alert-border-bottom {
    border-bottom-color: #6d46ce;
}
.alert-alert.alert-border-left {
    border-left-color: #6d46ce;
}
.alert-alert.light {
    background-color: #c6b7ec;
}
.alert-alert.dark {
    background-color: #8c6ed9;
}
.alert-alert.pastel {
    color: #663dcc;
    background-color: #f6f3fc;
    border-color: rgba(0, 0, 0, 0.1);
}
.alert-alert.pastel .alert-link {
    color: #663dcc;
}
.alert-alert.pastel.alert-micro {
    border-color: #b6a2e7;
}
.alert-alert.pastel .close {
    color: #663dcc;
}
.alert-alert.pastel .close:hover {
    color: #663dcc;
}
.alert-system {
    color: #0A4E3D;
    background-color: #50ccad;
}
.alert-system.alert-border-right {
    border-right-color: #288971;
}
.alert-system.alert-border-top {
    border-top-color: #288971;
}
.alert-system.alert-border-bottom {
    border-bottom-color: #288971;
}
.alert-system.alert-border-left {
    border-left-color: #288971;
}
.alert-system.light {
    background-color: #6cd4ba;
}
.alert-system.dark {
    background-color: #34b091;
}
.alert-system.pastel {
    color: #26816a;
    background-color: #a7e5d6;
    border-color: rgba(0, 0, 0, 0.1);
}
.alert-system.pastel .alert-link {
    color: #26816a;
}
.alert-system.pastel.alert-micro {
    border-color: #58ceb1;
}
.alert-system.pastel .close {
    color: #26816a;
}
.alert-system.pastel .close:hover {
    color: #26816a;
}
.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.pastel,
.alert-default.light {
    background-color: #fdfdfd;
    border-color: rgba(0, 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.pastel,
.alert-dark.light {
    color: #676e89;
    background-color: #d0d3dc;
}
.alert-dark.pastel .alert-link,
.alert-dark.light .alert-link {
    color: #51566c;
}
.alert-dark.dark {
    background-color: #4a4f63;
}
/* DROPDOWNS - ACTIVE ITEM CONTEXTUALS
 */

.dropdown-toggle.btn-primary + .dropdown-menu > .active > a,
.dropdown-toggle.btn-primary + .dropdown-menu > .active > a:hover,
.dropdown-toggle.btn-primary + .dropdown-menu > .active > a:focus {
    color: #FFF;
    background-color: #4a89dc;
}
.dropdown-toggle.btn-success + .dropdown-menu > .active > a,
.dropdown-toggle.btn-success + .dropdown-menu > .active > a:hover,
.dropdown-toggle.btn-success + .dropdown-menu > .active > a:focus {
    color: #FFF;
    background-color: #70ca63;
}
.dropdown-toggle.btn-info + .dropdown-menu > .active > a,
.dropdown-toggle.btn-info + .dropdown-menu > .active > a:hover,
.dropdown-toggle.btn-info + .dropdown-menu > .active > a:focus {
    color: #FFF;
    background-color: #3bafda;
}
.dropdown-toggle.btn-warning + .dropdown-menu > .active > a,
.dropdown-toggle.btn-warning + .dropdown-menu > .active > a:hover,
.dropdown-toggle.btn-warning + .dropdown-menu > .active > a:focus {
    color: #FFF;
    background-color: #f6bb42;
}
.dropdown-toggle.btn-danger + .dropdown-menu > .active > a,
.dropdown-toggle.btn-danger + .dropdown-menu > .active > a:hover,
.dropdown-toggle.btn-danger + .dropdown-menu > .active > a:focus {
    color: #FFF;
    background-color: #e9573f;
}
.dropdown-toggle.btn-alert + .dropdown-menu > .active > a,
.dropdown-toggle.btn-alert + .dropdown-menu > .active > a:hover,
.dropdown-toggle.btn-alert + .dropdown-menu > .active > a:focus {
    color: #FFF;
    background-color: #967adc;
}
.dropdown-toggle.btn-system + .dropdown-menu > .active > a,
.dropdown-toggle.btn-system + .dropdown-menu > .active > a:hover,
.dropdown-toggle.btn-system + .dropdown-menu > .active > a:focus {
    color: #FFF;
    background-color: #37bc9b;
}
.dropdown-toggle.btn-dark + .dropdown-menu > .active > a,
.dropdown-toggle.btn-dark + .dropdown-menu > .active > a:hover,
.dropdown-toggle.btn-dark + .dropdown-menu > .active > a:focus {
    color: #FFF;
    background-color: #3b3f4f;
}
/*====================================================
  Nav Pill Contextuals - Active Item
====================================================== */
/* pills primary */

.nav-pills.nav-primary > li.active > a,
.nav-pills.nav-primary > li.active > a:hover,
.nav-pills.nav-primary > li.active > a:focus {
    background-color: #4a89dc;
}
/* pills success */

.nav-pills.nav-success > li.active > a,
.nav-pills.nav-success > li.active > a:hover,
.nav-pills.nav-success > li.active > a:focus {
    background-color: #70ca63;
}
/* pills info */

.nav-pills.nav-info > li.active > a,
.nav-pills.nav-info > li.active > a:hover,
.nav-pills.nav-info > li.active > a:focus {
    background-color: #3bafda;
}
/* pills warning */

.nav-pills.nav-warning > li.active > a,
.nav-pills.nav-warning > li.active > a:hover,
.nav-pills.nav-warning > li.active > a:focus {
    background-color: #f6bb42;
}
/* pills danger */

.nav-pills.nav-danger > li.active > a,
.nav-pills.nav-danger > li.active > a:hover,
.nav-pills.nav-danger > li.active > a:focus {
    background-color: #e9573f;
}
/* pills alert */

.nav-pills.nav-alert > li.active > a,
.nav-pills.nav-alert > li.active > a:hover,
.nav-pills.nav-alert > li.active > a:focus {
    background-color: #967adc;
}
/* pills system */

.nav-pills.nav-system > li.active > a,
.nav-pills.nav-system > li.active > a:hover,
.nav-pills.nav-system > li.active > a:focus {
    background-color: #37bc9b;
}
/* pills dark */

.nav-pills.nav-dark > li.active > a,
.nav-pills.nav-dark > li.active > a:hover,
.nav-pills.nav-dark > li.active > a:focus {
    background-color: #3b3f4f;
}
@media (max-width: 767px) {
    .nav-pills > li {
        float: none;
    }
    .nav-pills > li + li {
        margin-left: 0px;
    }
}
/*====================================================
  Tab Block Contextuals - Active Item Border
====================================================== */
/* tabs primary */
/* tabs top */

.tab-block .tabs-border.nav-tabs.tabs-primary > li.active > a {
    border-top-color: #4a89dc;
}
/* tabs left */

.tab-block .tabs-border.tabs-left.tabs-primary > li.active > a {
    border-left-color: #4a89dc;
}
/* tabs right */

.tab-block .tabs-border.tabs-right.tabs-primary > li.active > a {
    border-right-color: #4a89dc;
}
/* tabs bottom */

.tab-block .tabs-border.tabs-below.tabs-primary > li.active > a {
    border-bottom-color: #4a89dc;
}
/* panel tabs */

.panel-tabs.panel-tabs-border.tabs-primary > li.active > a {
    border-top-color: #4a89dc;
}
/* tabs success */
/* tabs top */

.tab-block .tabs-border.nav-tabs.tabs-success > li.active > a {
    border-top-color: #70ca63;
}
/* tabs left */

.tab-block .tabs-border.tabs-left.tabs-success > li.active > a {
    border-left-color: #70ca63;
}
/* tabs right */

.tab-block .tabs-border.tabs-right.tabs-success > li.active > a {
    border-right-color: #70ca63;
}
/* tabs bottom */

.tab-block .tabs-border.tabs-below.tabs-success > li.active > a {
    border-bottom-color: #70ca63;
}
/* panel tabs */

.panel-tabs.panel-tabs-border.tabs-success > li.active > a {
    border-top-color: #70ca63;
}
/* tabs info */
/* tabs top */

.tab-block .tabs-border.nav-tabs.tabs-info > li.active > a {
    border-top-color: #3bafda;
}
/* tabs left */

.tab-block .tabs-border.tabs-left.tabs-info > li.active > a {
    border-left-color: #3bafda;
}
/* tabs right */

.tab-block .tabs-border.tabs-right.tabs-info > li.active > a {
    border-right-color: #3bafda;
}
/* tabs bottom */

.tab-block .tabs-border.tabs-below.tabs-info > li.active > a {
    border-bottom-color: #3bafda;
}
/* panel tabs */

.panel-tabs.panel-tabs-border.tabs-info > li.active > a {
    border-top-color: #3bafda;
}
/* tabs warning */
/* tabs top */

.tab-block .tabs-border.nav-tabs.tabs-warning > li.active > a {
    border-top-color: #f6bb42;
}
/* tabs left */

.tab-block .tabs-border.tabs-left.tabs-warning > li.active > a {
    border-left-color: #f6bb42;
}
/* tabs right */

.tab-block .tabs-border.tabs-right.tabs-warning > li.active > a {
    border-right-color: #f6bb42;
}
/* tabs bottom */

.tab-block .tabs-border.tabs-below.tabs-warning > li.active > a {
    border-bottom-color: #f6bb42;
}
/* panel tabs */

.panel-tabs.panel-tabs-border.tabs-warning > li.active > a {
    border-top-color: #f6bb42;
}
/* tabs danger */
/* tabs top */

.tab-block .tabs-border.nav-tabs.tabs-danger > li.active > a {
    border-top-color: #e9573f;
}
/* tabs left */

.tab-block .tabs-border.tabs-left.tabs-danger > li.active > a {
    border-left-color: #e9573f;
}
/* tabs right */

.tab-block .tabs-border.tabs-right.tabs-danger > li.active > a {
    border-right-color: #e9573f;
}
/* tabs bottom */

.tab-block .tabs-border.tabs-below.tabs-danger > li.active > a {
    border-bottom-color: #e9573f;
}
/* panel tabs */

.panel-tabs.panel-tabs-border.tabs-danger > li.active > a {
    border-top-color: #e9573f;
}
/* tabs alert */
/* tabs top */

.tab-block .tabs-border.nav-tabs.tabs-alert > li.active > a {
    border-top-color: #967adc;
}
/* tabs left */

.tab-block .tabs-border.tabs-left.tabs-alert > li.active > a {
    border-left-color: #967adc;
}
/* tabs right */

.tab-block .tabs-border.tabs-right.tabs-alert > li.active > a {
    border-right-color: #967adc;
}
/* tabs bottom */

.tab-block .tabs-border.tabs-below.tabs-alert > li.active > a {
    border-bottom-color: #967adc;
}
/* panel tabs */

.panel-tabs.panel-tabs-border.tabs-alert > li.active > a {
    border-top-color: #967adc;
}
/* tabs system */
/* tabs top */

.tab-block .tabs-border.nav-tabs.tabs-system > li.active > a {
    border-top-color: #37bc9b;
}
/* tabs left */

.tab-block .tabs-border.tabs-left.tabs-system > li.active > a {
    border-left-color: #37bc9b;
}
/* tabs right */

.tab-block .tabs-border.tabs-right.tabs-system > li.active > a {
    border-right-color: #37bc9b;
}
/* tabs bottom */

.tab-block .tabs-border.tabs-below.tabs-system > li.active > a {
    border-bottom-color: #37bc9b;
}
/* panel tabs */

.panel-tabs.panel-tabs-border.tabs-system > li.active > a {
    border-top-color: #37bc9b;
}
/* tabs dark */
/* tabs top */

.tab-block .tabs-border.nav-tabs.tabs-dark > li.active > a {
    border-top-color: #3b3f4f;
}
/* tabs left */

.tab-block .tabs-border.tabs-left.tabs-dark > li.active > a {
    border-left-color: #3b3f4f;
}
/* tabs right */

.tab-block .tabs-border.tabs-right.tabs-dark > li.active > a {
    border-right-color: #3b3f4f;
}
/* tabs bottom */

.tab-block .tabs-border.tabs-below.tabs-dark > li.active > a {
    border-bottom-color: #3b3f4f;
}
/* panel tabs */

.panel-tabs.panel-tabs-border.tabs-dark > li.active > a {
    border-top-color: #3b3f4f;
}
/* ==============================================
   III. DEMO PAGES
	  - Global Changes

 * This file is reserved for changes required only
 * for the themes demo. These styles may be vital
 * to themes appearance but often times will not
 * be useful in a true production environment.

 * For example each slider in sliders.html has a
 * margin of 65px, a large number only needed
 * because six sliders have been stacked on top
 * of each other. This would most likely not
 * happen in a real enviroment.
=================================================
 A. Global/Shared
================================================= */

.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: 0.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: 0px;
    font-size: 16px;
}
#return-arrow:hover {
    opacity: 1;
}
/*===============================================
  timeline.html/timeline-single.html
================================================= */

body.timeline-page .panel-clone {
    display: none;
}
/*===============================================
  pages-calendar-page.html
================================================= */

.calendar-page .tray-left {
    padding: 15px 18px;
}
.calendar-page .tray-left .fc-event {
    margin-left: 2px;
    margin-right: 2px;
    background: #FFF;
}
/*===============================================
  ui-icons.html
================================================= */

.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: #4a89dc;
}
.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
================================================= */

#skin-toolbox {
    z-index: 999;
    overflow: visible !important;
    position: fixed;
    top: 120px;
    right: -230px;
    width: 230px;
    -webkit-transition: right 0.1s ease-in-out;
    -moz-transition: right 0.1s ease-in-out;
    transition: right 0.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;
}
/*===============================================
  Source Code Viewer
================================================= */

.bs-component {
    position: relative;
}
#source-button {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 100;
    font-weight: 600;
}
#source-modal {
    /* source code modal styles */
    /* highlight js styles */
}
#source-modal .modal-header {
    background-color: #fafafa;
}
#source-modal .btn-clipboard {
    letter-spacing: 0.5px;
}
#source-modal .hljs {
    padding: 10px 13px;
}
/*===============================================
  AdminDock Example Page
================================================= */
/* Demo styles */

#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;
}
/*===================================================
   PRINT STYLES - Designed soley for Invoice Page
   Problems will arise if you attempt to use
   these styles globally
=====================================================*/

@media print {
    .invoice-page {
        /* Reset + Hide Primary Page Components */
        /* Modify Primary Container */
        /* Shorten and center page */
        /* Remove all Panel Borders */
        /* Hide Image Logo and reveal Text logo */
        /* Modify Invoice Container */
        /* Modify Invoice Panels */
        /* Modify Invoice Panels */
    }
    .invoice-page header.navbar,
    .invoice-page #sidebar_left,
    .invoice-page #sidebar_right,
    .invoice-page #topbar,
    .invoice-page #skin-toolbox,
    .invoice-page .panel-heading,
    .invoice-page .invoice-buttons {
        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: none;
    }
    .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;
    }
}
/*===============================================
  Bootstrap Edits
================================================= */

.editable-click,
a.editable-click,
a.editable-click:hover {
    color: inherit;
    border-bottom: none;
}
a.no-hover:hover {
    color: inherit;
    box-shadow: none;
    -webkit-box-shadow: none;
}
.fs26 .editable-click:after,
.fs26 a.editable-click:after,
.fs26 a.editable-click:hover:after,
.popover .editable-click:after,
.popover a.editable-click:after,
.popover a.editable-click:hover:after {
    content: "\f040";
    display: inline-block;
    margin-left: 10px;
    font-family: FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
}
.fs26 .editable-click:after,
.fs26 a.editable-click:after,
.fs26 a.editable-click:hover:after {
    font-size: 0.6em !important;
    color: rgba(0, 0, 0, 0.2);
}
.editable-unsaved {
    font-weight: normal;
}
.popover .editable-click:after,
.popover a.editable-click:after,
.popover a.editable-click:hover:after {
    font-size: 0.8em !important;
    color: rgba(0, 0, 0, 0.15);
}
.editable-input input.form-control {
    max-width: 270px;
}
.loading-overlay-container.fullscreen {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999;
}
body.sb-l-o.sb-r-c .loading-overlay-container.fullscreen {
    left: 230px;
}
body.sb-l-m.sb-r-c .loading-overlay-container.fullscreen {
    left: 60px;
}
body.sb-l-o.sb-r-c .loading-overlay-container.fullscreen,
body.sb-l-m.sb-r-c .loading-overlay-container.fullscreen {
    top: 60px;
}
body > #main > .admin-user-login .loading-overlay-container.fullscreen {
    top: 102px;
}
.disabled-overlay {
    z-index: 1000;
    border: none;
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-color: rgba(233, 233, 233,0.6);
    /*opacity: 0.6;*/
    cursor: auto;
    position: absolute;
}
.disabled-overlay.white {
    background-color: rgba(255, 255, 255,0.6);
}
.disabled-overlay {
    -moz-animation-duration: 0.5s;
    -webkit-animation-duration: 0.5s;
    -ms-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -moz-animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
    -ms-animation-timing-function: linear;
    animation-timing-function: linear;
    -moz-animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
    -ms-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
.disabled-overlay.fadeOut {
    -moz-animation-name: fadeOut;
    -webkit-animation-name: fadeOut;
    -ms-animation-name: fadeOut;
    animation-name: fadeOut;
}
@-moz-keyframes fadeOut { 0% { opacity: 0.6; visibility: visible; }  100% { opacity: 0; visibility: hidden; }}
@-webkit-keyframes fadeOut { 0% { opacity: 0.6; visibility: visible; }  100% { opacity: 0; visibility: hidden; }}
@-ms-keyframes fadeOut { 0% { opacity: 0.6; visibility: visible; } 100% { opacity: 0; visibility: hidden; }}
@keyframes fadeOut { 0% { opacity: 0.6; visibility: visible; } 100% { opacity: 0; visibility: hidden;  }}

.disabled-overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 4em;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    transform: translate(-50%, -50%);
}

.disabled-overlay a:hover {
    cursor: auto;
}
/*===============================================
  Icons
================================================= */

table.tc-icon-1 tbody td:first-child .service-icon,
table.service-icon-table .service-icon {
    display: block;
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
}
table.service-icon-table .service-icon {
    display: inline-block;
}
.port-status {
    display: block;
    width: 100px;
    height: 100px;
    background-size: 100px 100px;
}
.port-status.success {
    background-image: url(/images/icons/port-up.svg);
}
.port-status.danger {
    background-image: url(/images/icons/port-down.svg);
}
.service-icon.int {
    background-image: url(/images/icons/int-logo.svg);
}
.service-icon.aws {
    background-image: url(/images/icons/aws-logo.svg);
}
.service-icon.gcp {
    background-image: url(/images/icons/google-cloud-platform-logo.svg);
}
.service-icon.msa {
    background-image: url(/images/icons/msa-logo.svg);
}
.service-icon.msad {
    background-image: url(/images/icons/msad-logo.svg);
}
/*===============================================
  User accounts
================================================= */

.profile-image {
    margin: 20px auto;
    text-align: center;
    /*border: 2px #adadad solid;*/
    border-radius: 50%;
    overflow: hidden;
}
.profile-image > span {
    display: block;
    width: 1000px;
    height: 100%;
    margin-left: -450px;
    /* -(width-container width)/2 */
}
.profile-image.w150 > span {
    margin-left: -425px;
}
.profile-image > span > img {
    display: inline-block;
    margin: 0 auto;
    max-height: 100%;
}
.navbar .profile-image {
    display: inline-block;
    margin: 0;
    vertical-align: top;
}
.dataTable .profile-image {
    margin: 2px auto;
    width: 50px;
    height: 50px;
}
.dataTable .profile-image > span {
    margin-left: -475px;
}
.navbar .profile-image > span {
    width: 200px;
    margin-left: -85px;
}
/* ==============================================
    RESPONSIVE STYLES
      A. Content
	  B. Topbar

* These styles control various aspects of the
* site which benefit from being responsive
=================================================
  A. Content
================================================= */

#content {
    padding: 15px 8px 40px 11px;
}
.page-heading {
    margin-left: -10px;
    margin-right: -8px;
}
/* content padding on large resolutions */

@media (min-width: 1100px) {
    #content {
        padding: 25px 20px 50px 21px;
    }
    .page-heading {
        margin-left: -21px;
        margin-right: -20px;
    }
}
/* Adds top padding to md columns as a spacer
 * when they are mobile stacked */

@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-3 + .col-md-3,
    #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;
    }
}
@media (max-width: 991px) {
    .col-md-2 {
        padding-top: 10px;
    }
}
@media (max-width: 815px) {
    #content .panel .panel-body {
        overflow: hidden !important;
        min-width: 0 !important;
    }
    #content .panel .panel-body.overflow-show {
        overflow: visible !important;
    }
}
#content .panel .panel-body.scrollable {
    overflow: scroll !important;
}
/* =================================================
Documentation
================================================= */

.snippet pre {
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: inherit;
    background-color: transparent;
    border: none;
    border-radius: 4px;
    white-space: normal;
}
.snippet.block pre {
    border-radius: 0;
}
.snippet.block pre code {
    display: block;
    padding: 20px;
}
.documentation-table {
    margin: 20px 0 40px;
    width: 100%;
}
.documentation-table td,
.documentation-table th {
    vertical-align: top;
    padding: 0.8em;
    border: 1px solid #cccccc;
}
.documentation-table .nt {
    vertical-align: top;
    color: #2f6f9f;
}
.documentation-table li:not(:last-child) {
    margin-bottom: 10px;
}
.documentation-table ul {
    margin-bottom: 0;
    padding-left: 30px;
}

/* =================================================
Highcharts fixes
================================================= */

.btn.reset-graph-zoom {
    position: absolute;
    top: -6px;
    right: 20px;
    z-index: 10;
}
.highcharts-contextmenu hr {
    margin: 5px 0;
    border-color: #e7e7e7;
}

.multi-graph {
    border-right: 1px solid #CDCDCD;
}

.multi-graph + .multi-graph {
    padding-left: 20px;
}

.multi-graph:last-child {
    border-right: none;
}

/* =================================================
Pricing sliders
================================================= */

.ui-slider-horizontal.ui-slider-pips {
    margin-top: 3.4em;
}

.ui-slider-float .ui-slider-tip,
.ui-slider-float .ui-slider-tip-label {
    margin-left: -40px;
    padding: 5px;
    width: 80px;
    height: 30px;
    color: #626262;
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.ui-slider-float .ui-slider-tip:before,
.ui-slider-float .ui-slider-pip .ui-slider-tip-label:before {
    border-top-color: rgba(0, 0, 0, 0.3);
}

.ui-slider-float .ui-slider-handle:hover .ui-slider-tip,
.ui-slider-float .ui-slider-handle.ui-state-hover .ui-slider-tip,
.ui-slider-float .ui-slider-handle:focus .ui-slider-tip,
.ui-slider-float .ui-slider-handle.ui-state-focus .ui-slider-tip,
.ui-slider-float .ui-slider-handle.ui-state-active .ui-slider-tip,
.ui-slider-float .ui-slider-pip:hover .ui-slider-tip-label {
    top: -36px;
}

/* =================================================
Enterprise connectivity service
================================================= */

.page-heading.primary.new {
    padding: 60px 20px !important;
}

.page-heading.primary.new h1 {
    margin: 0;
    margin-bottom: 10px;
    font-size: 2.77em;
    color: #ffffff;
}

.page-heading.primary.new + .panel.new,
.page-heading.primary.new + .panel-group-min {
    margin-top: -70px;
}

.page-heading.primary.new + .panel-group-min {

}

.panel.new {
    box-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.panel.new .panel-body,
.panel.new .panel-footer {
    padding: 34px 25px;
    border: 1px solid #CDCDCD;
}

.panel.new .panel-footer {
    background-color: #fff;
}

.panel.new .panel-body + .panel-body {
    border-top: none;
}

.panel.new .panel-body + .panel-footer {
    padding-top: 10px;
}

.panel.new.hover {
    cursor: pointer;
    -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;
}

.panel.new.hover:hover {
    box-shadow: 0 12px 26px rgba(0, 0, 0, .15);
    transform: translateY(-3px);
}

.fs28 .editable-click:after,
.fs28 a.editable-click:after,
.fs28 a.editable-click:hover:after {
    content: "\f040";
    display: inline-block;
    margin-left: 10px;
    font-family: FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
}
.fs28 .editable-click:after,
.fs28 a.editable-click:after,
.fs28 a.editable-click:hover:after {
    font-size: 0.6em !important;
    color: #9F9F9F;
}

.stat.new h2 {
    margin-top: 34px;
    margin-bottom: 10px;
    font-weight: 400;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.stat.new span.text-muted {
    font-size: 14px;
}

.br-r.new,
.br-b.new {
    border-color: #CDCDCD !important;
}

p {
    margin-bottom: 20px;
}

/*ol,*/
/*ul{*/
    /*margin-bottom: 20px;*/
/*}*/

/*ol li,*/
/*ul li {*/
    /*margin-bottom: 10px;*/
/*}*/

/*li ol,*/
/*li ul {*/
    /*margin-top: 10px;*/
/*}*/

/*.nav li ol,*/
/*.nav li ul,*/
/*.nav li {*/
    /*margin: 0;*/
/*}*/

/*ol.breadcrumb li,*/
/*ul.dropdown-menu li {*/
    /*margin-bottom: 0;*/
/*}*/

.panel.new ol,
.panel.new ul {
    margin-bottom: 20px;
}

.panel.new ol li,
.panel.new ul li {
    margin-bottom: 10px;
}

.panel.new ol li ol,
.panel.new ol li ul,
.panel.new ol li ol,
.panel.new ul li ul {
    margin-top: 10px;
    margin-bottom: 10px;
}

.panel.new .dropdown-menu li {
    margin-bottom: 0;
}

.alert a,
.alert a:hover,
.alert a:active {
    color: inherit;
    font-weight: bold;
    text-decoration: underline;
}

.user-guide-screen {
    border: 1px solid #CDCDCD;
}

/* =================================================
Add service
================================================= */

li.error:before {
    position: absolute;
    top: 12px;
    right: 10px;
    display: inline-block;
    content: "\f071";
    font: normal normal normal 20px/1 FontAwesome;
    color: #e9745e;
    z-index: 1024;
}

li.active.error:before {
    display: none;

}

/* ===============================================
Calendar
================================================= */

.ui-datepicker {
    margin: 0;
    width: auto;
    border: 1px solid #CDCDCD;
    box-shadow: 0 6px 23px rgba(48, 66, 65, 0.25) !important;
}

/*.ui-datepicker:after {*/
    /*content: "";*/
    /*position: absolute;*/
    /*width: 0;*/
    /*height: 0;*/
    /*border-color: transparent;*/
    /*border-style: solid;*/
    /*left: 14px;*/
    /*bottom: 100%;*/
    /*border-width: 0 10px 10px;*/
    /*border-bottom-color: #30363e;*/
/*}*/

.ui-datepicker table {
    margin-bottom: 0;
}

.ui-datepicker .ui-datepicker-header {
    padding-bottom: 3px;
    border-bottom: none;
}

.ui-datepicker .ui-datepicker-header,
.ui-datepicker th {
    background: #30363e;
}

.ui-datepicker .ui-datepicker-title {
    color: #FFFFFF;
    font-weight: 400;
}
.ui-datepicker th {
    color: #bbbbbb;
}

.ui-datepicker td {
    padding: 6px;
}

.ui-datepicker td a,
.ui-datepicker td span {
    padding: 0.25em;
    width: 24px;
    height: 24px;
}

.ui-datepicker td a {
    color: #626262 !important;
    border-radius: 50%;
}

.ui-datepicker .ui-state-default,
.ui-datepicker .ui-widget-content .ui-state-default,
.ui-datepicker .ui-widget-header .ui-state-default {
    background: none !important;
    border: none !important;
}

.ui-datepicker .ui-state-active {
    color: #ffffff !important;
}

.ui-datepicker .ui-state-hover {
    background: #D8D8D8 !important;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next,
.ui-datepicker .ui-datepicker-prev.ui-state-hover,
.ui-datepicker .ui-datepicker-next.ui-state-hover {
    top: 10px;
    font-size: 12px;
    font-weight: bold;
    color: #ffffff !important;
    background: transparent !important;
}

.ui-datepicker .ui-datepicker-prev {
    left: 5px;
}

.ui-datepicker .ui-datepicker-next {
    right: 5px;
}

/*.ui-datepicker .ui-state-disabled span {*/
    /*color: #666;*/
/*}*/

.ui-datepicker .ui-widget-content {
    width: 100%;
}

.ui-datepicker-buttonpane {
    padding: 0;
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-state-default {
    margin: 0;
    padding: 15px 10px;
    width: 50%;
    border-right: 1px solid #ddd !important;
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-state-default + button.ui-state-default {
    border: none !important;
}

.text-underline {
    text-decoration: underline;
}

.svg-container {
    position: relative;
    height: 300px !important;
}

.svg-container.h-40 {
    height: 40px !important;
}

.svg-container.h-60 {
    height: 60px !important;
}

.svg-container.h-80 {
    height: 80px !important;
}

.svg-container.h-100 {
    height: 100px !important;
}

.svg-container.h-250 {
    height: 250px !important;
}

.svg-container svg {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    max-height: 100%;
}

.svg-container.centered svg {
    left: 50%;
    transform: translateX(-50%);
}

.svg-container.text-muted svg path {
    fill: #999999 !important;
}

.panel .panel-body.vertical-align .svg-container.centered svg {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#botty .float {
    position: absolute;
    animation: infiny-mascot-float 3s linear infinite;
}

ul.error-list {
    margin-top: 10px;
    padding-left: 20px;
}

ul.error-list li {
    color: #e9573f;
}

@media (min-width: 480px) {
    #service-details .dl-horizontal dt {
        float: left;
        width: 160px;
        clear: left;
        text-align: right;
        overflow: auto;
        text-overflow: inherit;
        white-space: normal;
    }

    #service-details .dl-horizontal dd {
        margin-left: 180px;
    }
}


[v-cloak] { display:none; }

/* ===============================================
What's New
================================================= */

.release-details {
    margin-bottom: 35px;
    padding-bottom: 10px;
    border-bottom: 1px solid #DDDDDD;
}

.release-details:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.release-details h2.release-name {
    margin-top: 0;
}

.release-details .status.badge {
    margin: 10px 0 20px;
    padding-right: 15px;
    padding-left: 15px;
    font-size: 16px;
}

.release-details ul,
.release-details ol {
    margin-bottom: 20px;
}

.release-details:last-child ul:last-child,
.release-details:last-child ol:last-child{
    margin-bottom: 0;
}

.release-details ul li,
.release-details ol li, .release-details p {
    font-size: 16px;
    line-height: 33px;
}

.release-details h1,
.release-details h2,
.release-details h3,
.release-details h4,
.release-details h5,
.release-details h6 {
    margin-top: 0;
}
#content .panel .panel-body.release-panel-body {
    background: #fafafa;
}
#content .panel .panel-body.release-panel-body .white {
    background: #ffffff;
}
@media (max-width: 815px) {
    #content .panel .panel-body.release-panel-body {
        overflow: unset !important;
    }
}
#release-nav {
    position: sticky;
    top: 80px;
    padding-left: 40px;
    margin-top: 20px;
}

#release-nav h3 {
    margin-left: 14px;
}

#release-nav ul li {
    font-size: 16px;
    line-height: 26px;
}

#release-nav ul li a {
    padding-top: 4px;
    padding-bottom: 4px;
    width: 100%;
}

#release-nav ul li a,
#release-nav ul li a:hover,
#release-nav ul li.active a {
    background-color: transparent !important;
}
#release-nav ul li.active a:before {
    position: absolute;
    top: 9px;
    left: 0px;
    display: block;
    height: 16px;
    width: 2px;
    content: "";
}

#release-nav ul li a.back-top {
    margin-top: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #A6A6A6;
}

#release-nav ul li.active a.back-top:before {
    display: none;
}

.sidebar-notification-badge:empty {
    margin-top: 13px;
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 1px solid #fff;
    border-radius: 50%;
    top: 15px;
    right: 5px;
    position: absolute;
}
.sidebar-notification-badge.mobile-notification-badge {
    position: absolute;
    left: 36px;
    top: 12px;
}

/*==================================================
  TINY MCE
==================================================== */

.mce-container html, .mce-container * html, .mce-widget html, .mce-widget * html, .mce-reset html,
.mce-container body, .mce-container * body, .mce-widget body, .mce-widget * body, .mce-reset body,
.mce-edit-area iframe html,
.mce-edit-area iframe body,
body.mce-content-body {
    padding: 20px;
    background: #fff !important;
}
.mce-content-body:not([dir=rtl])[data-mce-placeholder]:not(.mce-visualblocks)::before {
    left: 21px !important;
}

/* ===============================================
Partner Carousel
================================================= */

#partner-carousel,
#partner-carousel .slick-slider {
    width: 100%;
}

#partner-carousel {
    height: 45px;
    opacity: 0;
    animation-name: fadeIn;
    animation-delay: 0.5s;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
}

#partner-carousel h2 {
    margin: 0 0 20px;
    font-size: 20px;
    text-align: center;
}

#partner-carousel .slick-slider,
#partner-carousel img {
    opacity: 0;
    animation-name: fadeIn;
    animation-delay: 1s;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
}

#partner-carousel .slick-arrow {
    position: absolute;
    top: 1px;
    display: block;
    height: 50px;
    font-size: 0;
    background: transparent;
    border: none;
    opacity: 0.4;
}

#partner-carousel .slick-arrow:hover {
    opacity: 0.8;
}

#partner-carousel .slick-slide:focus,
#partner-carousel .slick-arrow:focus,
#partner-carousel img:focus,
#partner-carousel a:focus {
    outline-width: 0;
    outline-style: none;
}

#partner-carousel .slick-arrow.slick-prev {
    left: 0;
}

#partner-carousel .slick-arrow.slick-next {
    right: 0;
}

#partner-carousel .slick-arrow:after {
    display: block;
    font-family: FontAwesome;
    font-size: 22px;
}

#partner-carousel .slick-arrow.slick-prev:after {
    content: "\f0a8";
}

#partner-carousel .slick-arrow.slick-next:after {
    content: "\f0a9";
}

#partner-carousel .slick-list {
    margin: 0 40px;
}

#partner-carousel .slick-slide {
    margin: 0 12px;
    width: 33%;
    height: 50px;
    text-align: center;
}

#partner-carousel .slick-slide > a {
    display: flex;
    height: 100%;
}

#partner-carousel img {
    display: inline-block;
    margin: auto;
    width: auto;
    max-width: 140px;
    height: auto;
    max-height: 100%;
}

#partner-carousel + .topbar-right {
    margin-top: 11px;
}

/*==================================================
  Accordions
==================================================== */

.accordion .panel-heading {
    padding: 0;
}

.accordion .panel-heading a {
    padding: 10px;
    padding-left: 20px;
}

.accordion .fa-accordion {
    line-height: inherit;
    float: right;
}

.accordion .fa-accordion:before,
.accordion a.collapsed .fa-accordion:before {
    content: "\f078";
}

.accordion a:not(.collapsed) .fa-accordion:before {
    content: "\f077";
}

/*==================================================
  Datacentre Access Control
==================================================== */

/* Datacentre logo */

.datacentre-logo {
    margin-top: 20px;
}

.datacentre-logo img {
    width: auto;
    max-width: 240px;
    height: auto;
    max-height: 180px;
}

/*==================================================
  Audit Logs
==================================================== */

.log-list {
    position: relative;
    min-height: 400px;
}

.audit-log-item .panel-body {
    padding-bottom: 0;
}

.audit-log-item .media-body {
    padding: 0 8px;
}

.audit-log-item h4 {
    margin-bottom: 0;
    font-weight: normal;
}

.audit-log-item .change-table {
    display: table;
    margin-top: 10px;
    padding-left: 90px;
    width: 100%;
}

.audit-log-item .change-table .change {
    display: table-row;
}

.audit-log-item .change-table .change div {
    padding: 24px 8px 14px;
    font-size: 16px;
    color: #666666;
    border-top: 1px solid #ddd;
}

.audit-log-item .change-table .change .change-name {
    width: 240px;
}

.audit-log-item .change-table .change .change-name,
.audit-log-item .change-table .change .change-details {
    display: table-cell;
}

.audit-log-item .change-table strong {
    font-weight: 900;
}

.audit-log-item .change-table span.original,
.audit-log-item .change-table span.update {
    display: inline-block;
    margin-bottom: 10px;
    padding: 3px 8px;
}

.audit-log-item .change-table span.original {
    margin-right: 10px;
    color: #999999;
    text-decoration: line-through;
    background-color: #FBDDD9;
}

.audit-log-item .change-table span.update {
    background-color: #E2F4E0;
}

.audit-log-footer-controls .pagination {
    margin-top: 0;
}

.audit-log-footer-controls span.count {
    display: block;
    margin-top: 0;
    margin-bottom: 19px;
    font-size: 1.3em;
    line-height: 47px;
}

.badge.badge-outline.badge-default {
    color: #A6A6A6;
    background-color: transparent;
    border: 1px solid #A6A6A6;
}

.badge.badge-outline.badge-default:not(.badge-rounded) {
    border-radius: 4px;
}

@media (max-width: 768px) {
    .audit-log-item .fa-stack {
        font-size: 2em;
    }
    .audit-log-item .media-right {
        display: block;
        margin: 20px 0 25px;
        padding-left: 0;
    }
    .audit-log-item .media-right,
    .audit-log-item .media-right .badge,
    .audit-log-item .change-table .change .change-name,
    .audit-log-item .change-table .change .change-details {
        display: block;
    }
    .audit-log-item .change-table {
        padding-left: 0;
    }
    .audit-log-item .change-table .change .change-name {
        display: block;
        padding-bottom: 10px;
        max-width: none;
    }
    .audit-log-item .change-table .change .change-details {
        padding-top: 0;
        border-top: none;
    }
}

@media (max-width: 992px) {
    .audit-log-item .change-table span.original,
    .audit-log-item .change-table span.update {
        display: block;
    }
    .audit-log-item .change-table span.original {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .audit-log-footer-controls span.count {
        display: block;
        text-align: center;
    }
}

@media (min-width: 992px) {
    .audit-log-footer-controls .pagination {
        float: right;
    }
}

/*==================================================
  Datacentre Access Control
==================================================== */

/* Datacentre logo */

.datacentre-logo {
    margin-top: 20px;
}

.datacentre-logo img {
    width: auto;
    max-width: 240px;
    height: auto;
    max-height: 180px;
}


/* Requests Pages */

div.avatar {
    position: relative;
    padding-top: 100%;
    width: 100%;
    object-fit: cover;
}

div.avatar.w40 {
    padding-top: 40px;
}

div.avatar.w75 {
    padding-top: 75px;
}

div.avatar img {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

/*#content .content.table-layout {*/
/*position: absolute;*/
/*top: 111px;*/
/*right: 0;*/
/*bottom: 44px;*/
/*left: 0;*/
/*height: 100%;*/
/*}*/

/*.admin-user-login > #content .content.table-layout {*/
/*top: 171px;*/
/*}*/

.table-layout>span>aside.calendar-tray {
    position: fixed;
    top: 111px;
    right: auto;
    padding: 0 20px 60px;
    width: 363px;
    opacity: 1;
    background-color: #fff;
}

.table-layout>span>aside.calendar-tray:hover {
    right: auto;
}

.table-layout>span>aside.calendar-tray .scroll-content {
    position: fixed;
    padding: 20px;
    padding-left: 0;
    width: 343px;
    height: calc(100% - 154px);
    overflow-y: scroll;
}

.panel-group-min .panel + .panel,
.admin-form .panel-group-min .panel + .panel {
    margin-top: 0;
}

.panel-group-min .panel-heading,
.admin-form .panel-group-min .panel-heading {
    padding: 0 8px;
    height: 60px;
    background-color: #fff;
    border-right: none;
    border-bottom: none;
    border-left: none;
}

.panel-group-min .panel-heading a,
.admin-form .panel-group-min .panel-heading a {
    height: 60px;
    font-size: 18px;
    font-weight: normal;
    line-height: 58px;
    text-decoration: none;
}

.panel-group-min .panel-heading a:hover,
.admin-form .panel-group-min .panel-heading a:hover {
    color: inherit;
}

.panel-group-min .panel-heading a .fa.caret,
.admin-form .panel-group-min .panel-heading a .fa.caret {
    margin-right: 15px;
    line-height: 58px;
    border: none;
    float: right;
}

.panel-group-min .panel-heading .svg-container {
    display: inline-block;
    margin-right: 5px;
    margin-top: 8px;
    vertical-align: top;
}

.panel-group-min .panel-heading a:not(.collapsed) .fa.caret:before,
.admin-form .panel-group-min .panel-heading a:not(.collapsed) .fa.caret:before {
    content: "\f0d8";
}

.panel-group-min .panel-heading a.collapsed .fa.caret:before,
.admin-form .panel-group-min .panel-heading a.collapsed .fa.caret:before {
    content: "\f0d7";
}

.panel-group-min .panel-heading.text-muted,
.admin-form .panel-group-min .panel-heading.text-muted {
    color: #626262 !important;
}

.panel-group-min .panel-body,
.admin-form .panel-group-min .panel-body {
    padding: 0 10px 20px;
    border: none;
}

.panel-group-min .panel-body,
.admin-form .panel-group-min .panel-body {
    padding: 0 10px 20px;
    border: none;
}

#caleandar .cld-main {
    width: 100%;
}

#caleandar .cld-datetime {
    margin-bottom: 20px;
    padding-bottom: 20px;
    width: 100%;
    max-width: none;
    font-size: 24px;
    border-bottom: 1px solid #ddd;
}

#caleandar .cld-datetime .today {
    top: 2px;
    width: calc(100% - 80px);
}

#caleandar .cld-datetime .cld-nav {
    margin-top: 0;
    padding: 10px 14px;
    width: 40px;
    height: 40px;
    font-size: 13px;
    color: #666666;
    text-align: center;
    background: #f0f0f0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}

#caleandar .cld-datetime .cld-nav:hover,
#caleandar .cld-datetime .cld-nav:active {
    background-color: #eaeaea;
}

#caleandar .cld-datetime .cld-nav:active {
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

#caleandar .cld-datetime .cld-nav svg {
    display: none;
}

#caleandar .cld-datetime .cld-nav:after {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

#caleandar .cld-datetime .cld-nav.cld-rwd:after {
    content: "\f053";
}

#caleandar .cld-datetime .cld-nav.cld-fwd:after {
    content: "\f054";
}

#caleandar .cld-labels .cld-label {
    font-size: 16px;
    font-weight: bold;
}

#caleandar .cld-number {
    position: relative;
    top: -3px;
    display: block;
    margin: 0;
    padding: 10px;
    width: auto;
    min-width: 0;
    height: auto;
    font-size: 18px;
    border: none;
}

#caleandar .cld-day:hover {
    background: #eaeaea;
    border-radius: 60px;
    cursor: pointer;
}

#caleandar .cld-number.eventday:after {
    position: absolute;
    bottom: 5px;
    left: 50%;
    display: block;
    width: 6px;
    height: 6px;
    content: "";
    background: #AAA;
    border-radius: 50%;
    transform: translateX(-50%);
}

#caleandar .cld-number.eventday:hover {
    background: transparent;
}

#caleandar .cld-day.today {
    border-radius: 60px;
}


#caleandar .cld-day.today .cld-number {
    background: transparent;
}

#caleandar .cld-day.today .cld-number.eventday:after {
    background: #fff;
}

#caleandar .cld-title {
    display: none !important;
}

#caleandar .cld-day.prevMonth,
#caleandar .cld-day.nextMonth {
    cursor: default;
}

#caleandar .cld-day.prevMonth:hover,
#caleandar .cld-day.nextMonth:hover {
    background: transparent;
}

/*.table-layout>div {*/
/*vertical-align: top;*/
/*}*/

/*.tray-center > .page-heading {*/
/*margin: 0;*/
/*}*/

.calendar-tray + .tray-center {
    padding-left: 383px !important;
}

.calendar-tray + .tray-center .page-heading {
    padding: 20px;
    border-left: 1px solid #ddd;
}

.calendar-tray + .tray-center .page-heading.fixed + div {
    margin-top: 78px;
}

.calendar-tray + .tray-center .page-heading.fixed.search + div {
    margin-top: 140px;
}

/*.calendar-tray + .tray-center .page-heading .panel {*/
/*display: table;*/
/*width: 100%;*/
/*}*/

/*.calendar-tray + .tray-center .page-heading .row {*/
/*display: table-row;*/
/*}*/

.calendar-tray + .tray-center .page-heading .collapse-controls,
.calendar-tray + .tray-center .page-heading .date,
.calendar-tray + .tray-center .page-heading .sort-controls {
    display: table-cell;
    vertical-align: middle;
}

.calendar-tray + .tray-center .page-heading .collapse-controls .btn-group {
    width: 194px;
}

.calendar-tray + .tray-center .page-heading .date {
    width: 3000px;
}

.calendar-tray + .tray-center .page-heading .sort-controls .select2 {
    width: 240px !important;
}

.tray-center > .page-heading.request-list-controls h2 {
    margin: 0;
    text-align: center;
}

.btn-title > div {
    display: table-row;
}

.btn-title h1,
.btn-title h1 + .btn {
    display: table-cell;
    vertical-align: top;
}

.btn-title h1 {
    margin-bottom: 0;
    padding-top: 25px;
    width: 3000px;
    line-height: 39px;
}

.btn-title h1.collapse-title span {
    display: inline-block;
    cursor: pointer;
}

.btn-title h1 + .btn {
    margin-top: 25px;
}

.btn-title .visitor-count {
    display: block;
    margin-top: 8px;
    margin-bottom: 20px;
    font-size: 16px;
    color: #999999;
}

.request-list .request {
    margin-bottom: 20px;
    background-color: #fff;
}

.request-list .request .media,
.request-list .request .media-body {
    overflow: visible;
}

.request-list .request .media,
.request-list .request .well {
    border: 1px solid #ddd;
}

.request-list .request .media {
    padding: 20px;
    border-bottom: none;
}

.request-list .request .media-heading {
    line-height: 1.5;
}
.request-list .request .media-heading span {
    margin-right: 8px;
}

.request-list .request .media-heading span.caret {
    margin-right: 0;
}

.request-list .request .media-heading .btn-group {
    vertical-align: bottom;
}

.request-list .request .media-heading .btn-group .btn-xs {
    padding-right: 9px;
    padding-left: 9px;
    border-radius: 18px;
}

.request-list .request .company,
.request-list .request .eta {
    display: block;
    color: #999999;
    font-weight: normal;
}

.request-list .request .company {
    margin-bottom: 6px;
}

.request-list .request .media-right .btn {
    white-space: nowrap;
}

.request-list .request .well {
    margin: 0;
    padding: 10px 20px;
    font-size: 16px;
}

@media (max-width: 767px) {
    .table-layout>span>aside.calendar-tray {
        position: absolute;
        top: 190px;
        right: 0;
        left: 0;
        padding-left: 0;
        width: 100%;
        z-index: 20;
    }
    .table-layout>span>aside.calendar-tray .scroll-content {
        padding: 20px;
        width: auto;
    }
    #caleandar .cld-datetime .today {
        top: 7px;
        font-size: 18px;
    }
    body.tray-rescale .calendar-tray + .tray-center {
        display: block !important;
        padding-right: 20px !important;
        padding-left: 20px !important;
    }
    .calendar-tray + .tray-center .page-heading .date {
        margin-top: 20px;
    }
    .btn-title > div,
    .btn-title h1,
    .btn-title h1 + .btn {
        display: block;
        width: 100%;
    }
    .btn-title h1 {
        padding-top: 0;
    }
    .btn-title h1 + .btn {
        margin-top: 10px;
        margin-bottom: 10px;
        float: none !important;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .table-layout>span>aside.calendar-tray,
    .table-layout>span>aside.calendar-tray:hover {
        right: auto;
        width: 333px;
        z-index: 19;
    }
    .table-layout>span>aside.calendar-tray .scroll-content {
        width: 311px;
    }
    #content.table-layout > span > .calendar-tray + div {
        padding-right: 20px !important;
        padding-left: 352px !important;
    }
}

@media (max-width: 992px) {
    .table-layout>span>aside.calendar-tray {
        opacity: 1;
    }
    .calendar-tray + .tray-center .page-heading {
        position: relative;
        margin-right: -21px;
        margin-left: -21px;
    }
    .calendar-tray + .tray-center .page-heading .collapse-controls .btn-group {
        display: table;
        margin-bottom: 20px;
        width: 100%;
        table-layout: fixed;
        border-collapse: collapse;
    }
    .calendar-tray + .tray-center .page-heading .date {
        margin-bottom: 20px;
        width: auto;
    }
    .calendar-tray + .tray-center .page-heading .collapse-controls .btn-group .btn {
        display: table-cell;
        width: 50%;
        float: none;
    }
    .calendar-tray + .tray-center .page-heading.fixed + div,
    .calendar-tray + .tray-center .page-heading.fixed.search + div {
        margin-top: 0;
    }
    .calendar-tray + .tray-center .page-heading .collapse-controls,
    .calendar-tray + .tray-center .page-heading .date,
    .calendar-tray + .tray-center .page-heading .sort-controls {
        display: block;
    }
    .request-list .request .media-left,
    .request-list .request .media-body .btn-group,
    .request-list .request .media-right,
    .request-list .request .media-right .btn {
        display: block;
    }
    .request-list .request .avatar {
        margin: 0 auto 20px;
        padding-top: 75px;
        height: 75px;
    }
    .request-list .request .media-body {
        text-align: center;
    }
    .request-list .request .media-heading span {
        margin-right: 0;
        font-size: 16px;
    }
    .request-list .request .media-body .btn-group .btn {
        margin: 15px 0;
        padding-top: 5px;
        padding-bottom: 5px;
        width: 100%;
    }
    .request-list .request .media-body .company {
        margin-bottom: 15px;
        font-size: 15px;
    }
    .request-list .request .media-right {
        padding-left: 0;
    }
    .request-list .request .media-right .btn {
        width: 100%;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {
    .calendar-tray + .tray-center .page-heading {
        margin-left: -21px;
    }
    .calendar-tray + .tray-center .page-heading.fixed + div {
        margin-top: 138px;
    }
    .calendar-tray + .tray-center .page-heading.fixed.search + div {
        margin-top: 202px;
    }
    .calendar-tray + .tray-center .page-heading .date h2 {
        text-align: right;
    }
    .calendar-tray + .tray-center .page-heading .sort-controls {
        display: block;
        margin-top: 20px;
    }
}

.text-stat h2,
.text-stat h3,
.text-stat h5 {
    margin-top: 0;
}

.text-stat h2 {
    line-height: 30px;

}

.text-stat h3 {
    line-height: 25px;
}

.text-stat h5 {
    margin-bottom: 25px;
    color: #999999;
}

.text-stat h2.text-success,
.text-stat h3.text-success,
.text-stat h5.text-success {
    color: #70ca63;
}

.text-stat h2.text-info,
.text-stat h3.text-info,
.text-stat h5.text-info {
    color: #3bafda;
}

.text-stat h2.text-warning,
.text-stat h3.text-warning,
.text-stat h5.text-warning {
    color: #f6bb42;
}

.text-stat h2.text-danger,
.text-stat h3.text-danger,
.text-stat h5.text-danger {
    color: #e9573f;
}

.text-stat h2.text-muted,
.text-stat h3.text-muted,
.text-stat h5.text-muted {
    color: #999999;
}

.text-stat h2.text-default,
.text-stat h3.text-default,
.text-stat h5.text-default {
    color: #626262;
}

/*==================================================
  Buy Port
==================================================== */

ul.selectable-list {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: scroll;
}

ul.selectable-list li {
    padding: 0;
}

ul.selectable-list li a {
    display: block;
    position: relative;
    padding: 15px 20px 15px 20px;
    color: #626262;
}

ul.selectable-list li a:hover {
    background-color: #F5FBFD;
    text-decoration: none;
    cursor: pointer;
}
ul.selectable-list li a.unavailable {
    background-color: #FAFAFA;
}

ul.selectable-list li.active a {
    background-color: #EBF6FB;
}

/* New stuff */

ul.selectable-list .cell-item {
    position: relative;
    padding-left: 125px;
    vertical-align: middle;
    background-size: 125px;
    background-repeat: no-repeat;
    background-position-y: center;
    min-height: 90px;
}

ul.selectable-list .cell-item .cell-title {
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    padding: 0 15px;
}

ul.selectable-list .cell-item-icons {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

#buy-ports ul.selectable-list .cell-item {
    min-height: 60px;
}

/* Old stuff */

ul.selectable-list li .img-panel,
ul.selectable-list li .name {
    display: table-cell;
    vertical-align: middle;
}
ul.selectable-list li .name.name-with-icons {
    width: 44%;
    padding-left: 2px;
}

ul.selectable-list li .port-count {
    color: #888888;
    font-size: 12px;
    margin-top: 7px;
}

ul.selectable-list li .img-panel.map,
ul.selectable-list li .img-panel.logo {
    padding-right: 25px;
    height: 60px;
}

ul.selectable-list li .img-panel.logo {
    width: 125px;
}

ul.selectable-list li .img-panel.map {
    width: 75px;
}

ul.selectable-list li .img-panel.flag-16 {
    padding-right: 10px;
    width: 31px;
}

ul.selectable-list li .img-panel.flag-24 {
    padding-right: 15px;
    width: 39px;
    height: 24px;
}

ul.selectable-list li .img-panel.flag-24 + .name {
    font-size: 15px;
}

ul.selectable-list li .img-panel img {
    margin: 0 auto !important;
    max-height: 100%;
}

ul.selectable-list li .img-panel img {
    margin: 0 auto !important;
    max-height: 100%;
}

ul.selectable-list li .img-panel.map img {
    max-width: 60px;
    max-height: 60px;
}

ul.selectable-list li .img-panel.logo img {
    max-width: 105px;
    max-height: 60px;
}

.selectable-list.empty,
.selectable-list.selected-item {
    display: table;
    padding: 30px;
    width: 100%;
    text-align: center;
    vertical-align: middle;
}

.selectable-list.empty > div,
.selectable-list.selected-item > div {
    display: table-cell;
    color: #999;
    vertical-align: middle;
}

.selectable-list.selected-item > div .svg-container {
    margin-bottom: 20px;
}

.selectable-list.selected-item > div img.logo {
    margin-top: 0;
    max-width: 140px;
    max-height: 100px;
}

.selectable-list.selected-item > div h2,
.selectable-list.selected-item > div h3 {
    margin-top: 0;
    margin-bottom: 18px;
    line-height: 1.25;
}

.selectable-list.selected-item > div h2 {
    font-size: 20px;
}

.selectable-list.selected-item > div h3 {
    font-size: 16px;
}

table.buy-port-pricing-table {
    margin-bottom: 0;
}

table.buy-port-pricing-table > thead > tr > th {
    border-color: #ddd;
}

table.buy-port-pricing-table th,
table.buy-port-pricing-table td {
    text-align: center;
}

table.buy-port-pricing-table td {
    padding: 15px 5px !important;
    border: none !important;
}

table.buy-port-pricing-table th:first-child,
table.buy-port-pricing-table td:first-child {
    text-align: left;
}

table.buy-port-pricing-table td .select2-container {
    margin: 0 auto;
    min-width: 70px;
}

.filter-table.inline .panel-title,
.filter-table.inline .selectable-list a > div,
.selected-sipt-supplier .panel-title,
.selected-sipt-supplier li > div {
    display: inline-block;
    vertical-align: middle;
}

.selected-sipt-supplier li > div.double-line .data,
.filter-table.inline .selectable-list a > div.double-line .data {
    display: block;
    line-height: 2em;
}

.selected-sipt-supplier li {
    padding: 8px 20px !important;
}

@media (max-width: 767px) {
    .selected-sipt-supplier li > div,
    .filter-table.inline.sipt-suppliers .selectable-list a > div {
        display: block;
        width: 100%;
    }
    .selected-sipt-supplier li > div .data .visible-xs,
    .filter-table.inline.sipt-suppliers .selectable-list .data .visible-xs {
        display: inline-block !important;
        font-weight: bold;
    }
}

@media (min-width: 767px) {
    .selected-sipt-supplier li > div:first-child,
    .selected-sipt-supplier .panel-title:first-child,
    .filter-table.inline.sipt-suppliers .panel-title:first-child,
    .filter-table.inline.sipt-suppliers .selectable-list a > div:first-child {
        width: 50%;
    }

    .selected-sipt-supplier li > div:nth-child(2),
    .selected-sipt-supplier .panel-title:nth-child(2),
    .filter-table.inline.sipt-suppliers .panel-title:nth-child(2),
    .filter-table.inline.sipt-suppliers .selectable-list a > div:nth-child(2) {
        width: 20%;
    }

    .selected-sipt-supplier li > div:nth-child(3),
    .selected-sipt-supplier li > div:last-child,
    .selected-sipt-supplier .panel-title:nth-child(3),
    .selected-sipt-supplier .panel-title:last-child,
    .filter-table.inline.sipt-suppliers .panel-title:nth-child(3),
    .filter-table.inline.sipt-suppliers .panel-title:last-child,
    .filter-table.inline.sipt-suppliers .selectable-list a > div:nth-child(3),
    .filter-table.inline.sipt-suppliers .selectable-list a > div:last-child {
        text-align: center;
        width: 14%;
    }
}

@media (max-width: 992px) {
    .filter-table .panel-heading-sm {
        border-top: 1px solid #ddd;
    }
    .filter-table .list-panel .panel-heading-sm {
        border-top: none;
    }
    .filter-table .selectable-list {
        max-height: 470px;
    }
}

@media (min-width: 992px) {
    .filter-table .list-panel:not(:last-child) {
        padding-right: 0;
        border-right: 1px solid #ddd;
    }
    .filter-table .list-panel:not(:first-child) {
        padding-left: 0;
    }
    .filter-table .selectable-list {
        height: 470px;
    }
    #buy-ports .area-list,
    #buy-ports .city-list {
        padding-right: 0;
        border-right: 1px solid #ddd;
    }
    #buy-ports .city-list,
    #buy-ports .datacentre-list {
        padding-left: 0;
    }
}

/** Split tables **/

.panel-body.split {
    padding: 0;
    padding-right: 52px;
}

.panel-body.split .panel-heading {
    margin: 0 11px;
}

.panel-body.split ul.selectable-list {
    padding-right: 11px;
    padding-left: 11px;
}

@media (max-width: 992px) {
    .panel-body.split {
        padding: 0;
    }
}

/*==================================================
  Empty State
==================================================== */

.empty-state {
    margin: 40px 0;
    text-align: center;
}

.empty-state i.fa {
    margin-bottom: 20px;
    font-size: 80px;
}

.empty-state i.fa,
.empty-state h3,
.empty-state h4 {
    color: #999999;
}

.empty-state i.fa.text-danger   { color: #e9573f; }
.empty-state i.fa.text-info     { color: #3bafda; }
.empty-state i.fa.text-success  { color: #70ca63; }
.empty-state i.fa.text-warning  { color: #f6bb42; }

.empty-state h2 + .btn {
    margin-top: 30px;
}

.empty-state.inline i.fa,
.empty-state.inline h2,
.empty-state.inline h3 {
    display: inline-block;
    margin-bottom: 0;
}

.empty-state.inline i.fa {
    margin-right: 10px;
}

.empty-state.inline i.fa.small {
    font-size: 24px;
}

/*==================================================
  Status List
==================================================== */

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

ul.status-list li {
    display: table;
    padding: 10px 0;
    width: 100%;
    border-bottom: 1px solid #ddd;
}

ul.status-list li span.status,
ul.status-list li span.message {
    display: table-cell;
}

ul.status-list li span.status {
    padding-right: 10px;
    width: 84px;
    vertical-align: top;
}

ul.status-list li span.message {
    vertical-align: middle;
}

ul.status-list li span.message.bold {
    font-weight: bold;
}

ul.status-list .badge {
    display: block;
}

ul.status-list li span.message ul {
    margin-top: 5px;
}

ul.status-list li span.message li {
    display: list-item;
    margin-bottom: 5px;
    padding: 0;
    border: none;
}

/*==================================================
  Pricing Totals Table
==================================================== */

table.totals  {
    float: right;
    font-size: 16px;
    text-align: right;
}

table.totals td {
    padding-top: 6px;
    padding-bottom: 6px;
}

table.totals td:last-child  {
    font-weight: bold;
}

table.totals tr.grand-total td:last-child {
    color: #70ca63;
    font-size: 24px;
    padding-top: 0;
}
/*==================================================
  Document Repository Table
==================================================== */

a.download {
    display: block;
    height: 30px;
    margin: auto;
    width: 30px;
}

a.download img {
    margin: 0 auto;
    max-height: 100%;
    max-width: 100%;
}
a.left {
    margin: 0 auto;
    float: left;
}
/*==================================================
  Update spans
==================================================== */
.change-detail {
    font-weight: bold;
    padding: 2px 6px;
}

.change-detail.original { background-color: #FBDDD9;}
.change-detail.update   { background-color: #E2F4E0;}

/*==================================================
  Custom Drop Zone
==================================================== */

.drop,
.drop-area {
    min-height: 180px;
    width: 100%;
}

.drop.drop-inline,
.drop.drop-inline .drop-area {
    min-height: 110px;
}

.drop {
    background-color: #f5f5f5;
    border: 2px dashed #d8d8d8;
    border-radius: 6px;
    cursor: pointer;
    display: block;
    transition: all 0.15s ease-in-out;
}

.dragging .drop {
    background-color: #E0EDF4;
    border-color: #89B9D4;
}

.drop-area {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    justify-content: center;
}

.drop-area .attachment {
    background-color: #fff;
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    margin: 15px;
    max-width: 240px;
    min-width: 180px;
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.2s;
    width: calc(25% - 30px);
}

.drop-area .attachment:hover {
    box-shadow: 0 3px 30px rgba(0,0,0,0.15);
}

.drop-area .delete-attachment {
    font-size: 20px;
    right: 10px;
    position: absolute;
    top: 10px;
    z-index: 2;
}

.drop-area .delete-attachment .fa-circle {
    text-shadow: 0 2px 2px rgba(0,0,0,0.25);
}

.drop-area .drop-message {
    align-self: center;
    color: #999999;
    font-size: 1.5em;
    margin: 25px 10px;
    text-align: center;
    transition: color 0.15s ease-in-out;
}

.dragging .drop-area .drop-message {
    color: #5690B1;
}

.drop-area .drop-message i.fa {
    font-size: 1.2em;
    margin-right: 5px;
    vertical-align: middle;
}

.drop:not(.drop-inline) .drop-area .drop-message i.fa {
    display: block;
    font-size: 3.5em;
    margin: 0 0 10px;
}

.drop-area .error {
    flex-basis: 100%;
    margin-left: 15px;
    margin-right: 15px;
}

.drop-area .filename {
    border-top: 1px solid #d8d8d8;
    padding: 15px 12px;
}

.drop-area .preview {
    overflow: hidden;
    padding-top: 100%;
    position: relative;
    width: 100%;
}

.drop-area .preview img,
.drop-area .preview i.fa {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.drop-area .preview img {
    height: 100%;
    margin: 0;
    object-fit: cover;
    width: 100%;
}

.drop-area .preview i.fa {
    color: #d8d8d8;
    font-size: 6em;
    margin-top: 5px;
}

/*==================================================
  Badge Outline
==================================================== */

.badge-outline.new.badge-default {
    background-color: #F0F0F0;
    border: 1px solid #A0A0A0;
    color: #626262;
}

.badge-outline.new.badge-danger {
    background-color: #FBDBD5;
    border: 1px solid #E9573F;
    color: #A83E2D;
}

.badge-outline.new.badge-info {
    background-color: #D4EEF7;
    border: 1px solid #3BAFDA;
    color: #2A7E9D;
}

.badge-outline.new.badge-success {
    background-color: #E0F4DD;
    border: 1px solid #70CA63;
    color: #509047;
}

.badge-outline.new.badge-warning {
    background-color: #FEF1D6;
    border: 1px solid #F6BB42;
    color: #B0862F;
}

/*==================================================
  Support Tickets
==================================================== */

.attachment-list {
    display: flex;
    flex-wrap: wrap;
}

.attachment-list .attachment {
    background-color: #ffffff;
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    color: #626262;
    display: inline-block;
    margin: 10px;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    width: calc(25% - 22px);
}

.attachment-list .attachment:hover {
    box-shadow: 0 3px 30px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.attachment-list .attachment .filename {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.attachment-list .attachment .preview {
    color: #d8d8d8;
    height: 52px;
    margin-bottom: 10px;
    margin-top: 5px;
}

.chat-container {
    overflow-y: scroll !important;
    padding: 20px;
}

@media (max-width: 815px) {
    #content .panel .panel-body.chat-container {
        overflow-y: scroll !important;
    }
}

.chat-container .chat-item {
    margin-bottom: 25px;
}

.chat-container .chat-item .author {
    color: #999999;
    margin-top: 10px;
}

.chat-container .chat-item.customer .author {
    margin-right: 55px;
    text-align: right;
}

.chat-container .chat-item.support .author {
    margin-left: 55px;
}

.chat-container .chat-item .author .small {
    text-transform: capitalize;
}

.chat-container .chat-item .chat-content {
    align-items: flex-end;
    display: flex;
}

.chat-container .chat-item.customer .chat-content {
    flex-flow: row-reverse;
}

.chat-container .chat-item .chat-bubble {
    border-radius: 20px;
    font-size: 16px;
    line-height: 1.6;
    padding: 20px;
}

.chat-container .chat-item .chat-bubble .attachment {
    min-width: 260px;
    width: calc(33% - 22px);
}

.chat-container .chat-item .chat-bubble .date {
    display: block;
    font-size: 0.9em;
    font-style: italic;
    margin-top: 10px;
    opacity: 0.8;
    text-align: right;
}

.chat-container .chat-item.customer .chat-bubble  {
    background-color: #e9e9e9;
    border-bottom-right-radius: 4px;
    margin-right: 15px;
}

.chat-container .chat-item.support .chat-bubble   {
    background-color: #EAD7E8;
    border-bottom-left-radius: 4px;
    margin-left: 15px;
}

/*==================================================
  Network Status Updates
==================================================== */

.status-update {
    border-bottom: 1px solid #CDCDCD;
    padding-top: 20px;
    padding-bottom: 20px;
}

.status-update:last-child {
    border-bottom: none;
}

.status-update .badge,
.status-update h3,
.status-update p {
    margin-bottom: 12px;
}

.status-update .date {
    color: #999999;
    font-size: 14px;
    margin-bottom: 0;
}

.status-update h3 {
    margin-top: 10px;
}

.status-update p {
    font-size: 16px;
    white-space: pre-line !important;
}

.status-update-update.media {
    margin-top: 22px;
}

.status-update-update.media .badge {
    margin-top: 10px;
}

.status-update.media .media-body,
.status-update-update.media .media-body {
    color: #666666;
}

.status-update.media .media-body .date,
.status-update.media .media-body p,
.status-update-update.media .media-body .date,
.status-update-update.media .media-body p {
    font-weight: 400;
    white-space: pre-line !important;
}

/*==================================================
  Progress Steps
==================================================== */

.progress-steps {
    border-bottom: 1px solid #DDDDDD;
    display: table;
    list-style: none;
    margin-bottom: 25px;
    padding-bottom: 25px;
    padding-left: 0;
}

.progress-steps .media:not(.active):not(.complete) {
    opacity: 0.6;
}

.progress-steps .active,
.progress-steps .complete {
    opacity: 1;
}

.progress-steps .count {
    background-color: #999999;
    border-radius: 50%;
    color: #ffffff;
    font-size: 36px;
    height: 64px;
    line-height: 63px;
    text-align: center;
    width: 64px;
}

.progress-steps .complete .count {
    background-color: #70ca63;
}

.progress-steps li {
    display: table-cell;
}

.progress-steps .media-body,
.progress-steps .media-left {
    vertical-align: middle;
}

.progress-steps .media-body {
    color: #999999;
}

.progress-steps .media-body h3 {
    color: #626262;
    margin-top: 0;
}

.progress-steps .media-left {
    padding-right: 20px;
}

#network-integrations .app-details img {
    display: inline-block;
    height: 30px;
    margin: 0 2em 0 1em;
}
@media (max-width: 767px) {
    #provisioning-status-modal .modal-body {
        padding: 10px;
    }
}
#provisioning-status-modal .icon {
    height: 250px;
    text-align: center;
    color: #B6B6B6;
}

#provisioning-status-modal .table>tbody>tr.active>td,
#provisioning-status-modal .table>tbody>tr.active>th,
#provisioning-status-modal .table>tbody>tr>td.active,
#provisioning-status-modal .table>tbody>tr>th.active,
#provisioning-status-modal .table>tfoot>tr.active>td,
#provisioning-status-modal .table>tfoot>tr.active>th,
#provisioning-status-modal .table>tfoot>tr>td.active,
#provisioning-status-modal .table>tfoot>tr>th.active,
#provisioning-status-modal .table>thead>tr.active>td,
#provisioning-status-modal .table>thead>tr.active>th,
#provisioning-status-modal .table>thead>tr>td.active,
#provisioning-status-modal .table>thead>tr>th.active {
    background-color: #EAF6FB !important;
    transition: color 1s;
}
#provisioning-status-modal .table>tbody>tr>td.active .icon-container.plug .plug-1 {
    position: absolute;
    left: 18px;
    top: 18px;
    width: 100%;
}
#provisioning-status-modal .table>tbody>tr>td.active .icon-container.plug .plug-2 {
    position: absolute;
    left: -17px;
    bottom: 17px;
    width: 100%;
}
#provisioning-status-modal .table>tbody>tr>td.active.animate .icon-container.plug .plug-2,
#provisioning-status-modal .table>tbody>tr>td.active.animate .icon-container.plug .plug-1 {
    position: absolute;
    left: 0;
    top: 0;
}
#provisioning-status-modal th, #provisioning-status-modal td {
    text-align: center;
    border: 1px solid #ddd;
    font-size: 18px;
    height: 70px;
    color: #B6B6B6;
    width: auto;
}
#provisioning-status-modal th p {
    margin-bottom: 0;
}
@media (max-width: 767px) {
    #provisioning-status-modal th p {
        font-size: 13px;
    }
    #provisioning-status-modal th {
        padding: 5px;
    }
}
#provisioning-status-modal .fa-check-circle {
    font-size: 120px;
}

#provisioning-status-modal table {
    max-width: 750px;
    background-color: white;
    margin: auto;
}
#provisioning-status-modal .table {
    border: 2px solid #ddd;
}
#provisioning-status-modal .text {
    text-align: center;
    padding: 10px;
    font-size: 15pt;
}
#provisioning-status-modal .number-circle {
    width: 65px;
    height: 65px;
    line-height: 61px;
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
    border: 2px solid #999999;
    color: #999999;
}
@media (max-width: 767px) {
    #provisioning-status-modal .number-circle {
        width: 32px;
        line-height: 28px;
        height: 32px;
    }
    #provisioning-status-modal .table>tbody>tr>td.active .icon-container.plug .plug-2 {
        position: absolute;
        bottom: 9px;
        left: -9px;
    }
    #provisioning-status-modal .table>tbody>tr>td.active .icon-container.plug .plug-1 {
        position: absolute;
        left: 9px;
        top: 9px;
    }
}
#provisioning-status-modal ul {
    list-style: none;
    text-align: center;
    padding-left: 0;
}
#provisioning-status-modal li {
    display: inline-block;
}
#provisioning-status-modal .line {
    height: 3px;
    width: 130px;
    background-color: #999999;
    margin: 10px;
}
@media (max-width: 767px) {
    #provisioning-status-modal .line {
        width: 36px;
        margin: 6px;
    }
}
#provisioning-status-modal .circle-active {
    transition: color 1s;
}
#provisioning-status-modal .circle-complete {
    background-color: #6FCB6D;
    color: white;
    border-color: #6FCB6D;
    transition: background-color 1s;
}
#provisioning-status-modal .circle-complete + .line-container .line {
    background-color: #6FCB6D;
}
#provisioning-status-modal .icon-container {
    height: 110px;
    width: 110px;
    position: relative;
    margin: 45px auto;
}
#provisioning-status-modal .table>tbody>tr>td.animate .icon-container.cogs .fa-cog {
    animation: cog-spin 5s infinite linear;
    animation-origin: center center;
}
#provisioning-status-modal .icon-container.cogs .fa-cog {
    position: absolute;
}
#provisioning-status-modal .table>tbody>tr>td .icon-container.cogs .fa-cog.cog-1 {
    left: -10px;
    top: 20px;
    font-size: 70px;
    animation-direction: reverse;
    animation-duration: 10s;
}
@media (max-width: 767px) {
    #provisioning-status-modal .table>tbody>tr>td .icon-container.cogs .fa-cog.cog-1 {
        font-size: 35px;
        top: 10px;
    }
}
#provisioning-status-modal .icon-container.cogs .fa-cog.cog-2,
#provisioning-status-modal .icon-container.cogs .fa-cog.cog-3 {
    right: 0;
    font-size: 50px;
}
@media (max-width: 767px) {
    #provisioning-status-modal .icon-container.cogs .fa-cog.cog-2,
    #provisioning-status-modal .icon-container.cogs .fa-cog.cog-3 {
        font-size: 25px;
    }
}
#provisioning-status-modal .icon-container.cogs .fa-cog.cog-2 {
    top: 0;
}
#provisioning-status-modal .icon-container.cogs .fa-cog.cog-3 {
    bottom: 0;
}
#provisioning-status-modal .fa-plug {
    transform: rotate(90deg);
    font-size: 60px;
}
#provisioning-status-modal .icon-container.plug .plug-1,
#provisioning-status-modal .icon-container.plug .plug-2 {
    position: absolute;
    left: 0;
}
#provisioning-status-modal .table>tbody>tr>td.animate .icon-container.plug .plug-1 {
    animation: plug1 2s linear infinite;
}
#provisioning-status-modal .table>tbody>tr>td.animate .icon-container.plug .plug-2 {
    animation: plug2 2s linear infinite;
}
#provisioning-status-modal .table>tbody>tr>td.animate .icon-container.plug .plug-1,
#provisioning-status-modal .table>tbody>tr>td.animate .icon-container.plug .plug-2 {
    animation-direction: alternate;
}
#provisioning-status-modal .icon-container.globe {
    border-radius: 50%;
    overflow: hidden;
    background-image: url("/images/ui-elements/maps/world-map-white.png");
    background-size: 210px;
}
@media (max-width: 767px) {
    #provisioning-status-modal .icon-container.globe {
        background-size: 105px;
    }
}
.provisioning-date-badge {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
}
.provisioning-date-small {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 10px;
}
.provisioning-date-small-admin {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.provisioning-date-text {
    color: #999999;
}
.provisioning-date-date {
    color: #95358c;
}
#provisioning-status-modal .table>tbody>tr>td.animate .icon-container.globe {
    animation: globespin 8s linear infinite;
}
#provisioning-status-modal .table>tbody>tr>td:not(.active) .icon-container {
    filter: grayscale(100%) opacity(50%);
}
#provisioning-status-modal .icon-container.provision-failed {
    width: 217px;
    height: 150px;
    margin: 10px auto;
}
#provisioning-status-modal .icon-container.provision-failed .fa-cog,
#provisioning-status-modal .icon-container.provision-failed .wrench {
    position: absolute;
}
#provisioning-status-modal .icon-container.provision-failed .cog-1 {
    font-size: 90px;
    top: 29px;
    left: 0;
}
#provisioning-status-modal .icon-container.provision-failed .cog-2 {
    font-size: 54px;
    top: 86px;
    left: 67px;
}
#provisioning-status-modal .icon-container.provision-failed .wrench {
    top: 0;
    right: 0;
}
#provisioning-status-modal .icon-container.provision-failed .fa-cog {
    animation: cog-spin 20s infinite linear;
    animation-origin: center center;
}
#provisioning-status-modal .icon-container.provision-failed .cog-1 {
    animation-direction: reverse;
    animation-duration: 30s;
}

@keyframes cog-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(359deg);
    }
}
@keyframes plug1 {
    0% {
        transform: translate(0,0);
    }
    85%,100% {
        transform: translate(18%,18%);
    }
}
@keyframes plug2 {
    0% {
        transform: translate(0,0);
    }
    85%,100% {
        transform: translate(-15%,-15%);
    }
}
@keyframes globespin {
    0%   {
        background-position-x: 0;
    }
    100% {
        background-position-x: 210px;
    }
}
.flex-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    flex-wrap: wrap;
    overflow: hidden;
}
.flex-col > :nth-last-child(1) {
    margin-top: auto;
}
.phonebook-porting-reference-title::after {
    content: '';
    height: 2px;
    width: calc(100% + 40px);
    background: rgba(149, 53, 140, 1);
    display: block;
    margin-top: 13px;
    position: relative;
    left: -20px;
}

.phonebook-porting-reference-text {
    margin: 5px 0 20px 0;
}
.phonebook-porting-reference {
    border: 1px solid rgba(149, 53, 140, 0.5);
    padding: 20px;
    margin: 0 auto 22px;
    min-height: 180px;
}
.phonebook-porting-icon {
    color: rgba(149, 53, 140, 1);
    font-size: 18px;
}

@media (min-width: 992px) {
    .text-md-right {
        text-align: right;
    }
}
@media (max-width: 992px) {
    .provisioning-date-small {
        margin-right: 20px;
        margin-top: 0;
    }
    /*.provisioning-date-text {*/
    /*    margin-right: 10px;*/
    /*}*/
}
@media (max-width: 768px) {
    .provisioning-date-small {
        margin-right: 0;
        margin-top: 10px;
    }
}
@media (min-width: 2083px) {
    .provisioning-date-small {
        margin-top: 0;
        margin-right: 10px;
    }
}




@media (min-width: 992px) {
    .phonebook-porting .col-md-11 {
        float: none;
    }
}
@media (max-width: 1335px) {
    .phonebook-porting-reference-title {
        font-size: 22px;
    }
    .phonebook-porting-reference-text {
        margin: 20px 0 50px 0;
    }
    .phonebook-porting-reference {
        padding: 10px;
    }
}
@media (max-width: 1175px) {
    .phonebook-porting-reference-title {
        font-size: 20px;
    }
}
.phonebook-porting-line {
    background: rgba(149, 53, 140, 1);
    max-width: 374px;
    height: 1px;
    margin: auto;
}
.phonebook-porting h1 {
    margin-top: 0;
}

.number-porting-request button {
    margin-left: 10px;
}
.phonebook-porting {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
@media (max-width: 990px) {
    .phonebook-porting {
        display: contents;
    }
    .phonebook-porting-reference {
        height: 200px;
    }
    .phonebook-porting-reference-text {
        height: 50px;
        margin: 20px 0;
    }
}
@media (max-width: 470px) {
    .phonebook-porting-reference {
        height: 250px;
    }
    .phonebook-porting-reference-text {
        height: 100px;
    }
}
.description-field {
    width: 100%;
    margin-bottom: 10px;
}

.phonebook-porting-request-number {
    margin: 0;
}
.customer .phonebook-porting-request-operator {
    /*margin: 0 150px 0 50px;*/
}
.customer .phonebook-porting-request-channel {
    /*margin-right: 20px; */
}
.phonebook-porting-request-channel-notes {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.phonebook-porting-info-icon {
    font-size: 25px;
}

.number-porting-request-btn button {
    margin-left: 30px;
}
.number-porting-badge {
    /*padding: 0.4em 1.2em;*/
    min-width: 80px;
    margin-right: 15px;
}
.number-porting-request-delete {
    display: inline;
    position: absolute;
    top: 105px;
    left: 150px;
}
.phonebook-porting-request-panel {
    margin: 0;
}
.number-porting-empty-state {
    text-align: center;
    background-color: #fafafa;
    border: 1px solid #e5e5e5;
}
.number-porting-empty-state-title {
    margin-bottom: 20px;
}
.number-porting-empty-state-btn {
    margin-bottom: 0;
}
.phonebook-porting-no-pricing-banner {
    width: 100%;
}
.icon-line {
    width: 50px;
    height: 5px;
}
.no-pricing-icons {
    display: inline-flex;
    font-size: 50px;
    margin-bottom: 10px;
}
.no-pricing-icons-modal-1 {
    display: table-caption;
    font-size: 40px;
    animation: appear 2s ease-in-out;
    animation-direction: alternate;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
    position: relative;
    bottom: 10px;
}
@keyframes appear {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
.no-pricing-icons-modal-2 {
    margin: 0 80px;
    font-size: 100px;
    opacity: 0;
    animation: appear 1s ease-in-out;
    animation-direction: alternate;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
    animation-delay: 1s;
}
.no-pricing-icons-modal-3 {
    display: table-caption;
    font-size: 40px;
    opacity: 0;
    animation: appear 1s ease-in-out;
    animation-direction: alternate;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
    animation-delay: 2s;
    position: relative;
    bottom: 10px;
}
#demo-2 {
    background-size: 8px 4px;
    background-repeat: repeat-x;
    background-position: 0% bottom;

    animation-name: border-dance, appear;
    animation-duration: 10s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}
@keyframes border-dance {
    from {background-position: 0% bottom;}
    to {background-position: 100% bottom;}
}
.animation-container {
    max-height: 220px;
    max-width: 330px;
    position: relative;
    margin: auto;
}
.moving-line {
    position: absolute;
    top: 20px;
    width: 95px;
    left: 30px;
}
@media (max-width: 991px) {
    .moving-line {
        top: 15px;
    }
}
.moving-line-2 {
    left: 190px;
}
.moving-line p {
    visibility: hidden;
}

.phonebook-porting-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

/*.phonebook-porting-request-pagination {*/
/*    margin-top: -50px;*/
/*}*/
@media (max-width: 990px) {
    .phonebook-porting-request-operator {
        /*margin: 0 50px;*/
    }
    .phonebook-porting-request-number {
        margin: 0 20px 0 0;
    }
}
@media (max-width: 800px) {
    .phonebook-porting-badge {
        margin-right: 0;
    }
}
.number-porting-small-text {
    min-height: 2.5em;
}

.phonebook-porting-request-panel.customer {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap !important;
}
.number-translations-drop-down {
    display: inline-block;
}
.number-porting-notes-alert {
    min-width: 25%;
    margin-left: auto;
}

.phonebook-porting-request-panel.customer > * {
    margin: 0 0 1em;
    align-self: flex-start;
    flex: 0 1 auto;
}

.phonebook-porting-request-panel.customer > :nth-last-child(1) {
    margin-right: 0;
}
.sm-align-items-center {
    align-items: center;
}

@media screen and (min-width: 576px) {

    .phonebook-porting-request-panel.customer {
        flex-direction: row;
    }
    .flex-wrap {
        flex-wrap: wrap;
    }
    .align-items-baseline {
        align-items: baseline;
    }
    .align-items-center {
        align-items: center;
    }
    .justify-content-center {
        justify-content: flex-end;
    }
    .phonebook-porting-request-panel.customer > * {
        margin: 0 1em 0 0;
        align-self: center;
    }

    .phonebook-porting-request-panel.customer .ml-auto {
        margin-left: auto;
    }

}


@media screen and (min-width: 768px) {
    .phonebook-porting-request-panel.customer > * {
        margin: 0 4em 0 0;
        align-self: unset;
    }
}

/* Number porting admin side */
.loading-state {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    font-size: 2em;
    background: rgba(255, 255, 255, 0.6);
    z-index: 1;
}

.btn-primary.no-focus:focus {
    background: #95358c !important;
}
.number-pricing-table {
    border: 1px solid #DDD;
}
.number-pricing-table >.table-bordered > thead > tr > th, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > td {
    border: 1px solid #DDD;
    width: 30%;
}
.number-pricing-table.table tbody > tr:first-child > td {
    border: 1px solid #DDD;
}
.number-pricing-table.table.table-bordered th:last-child, table.table-bordered td:last-child {
    border-right-width: 1px;
}
.phonebook-porting-reference.request {
    min-height: 100px;
    padding: 10px;
}
.number-pricing-table.modal-table {
    width: 100%;
}
.number-pricing-table.modal-table th {
    font-weight: 600;
}
.pricing-link {
    margin-right: 20px;
    margin-left: 20px;
}
.receiving-location-text {
    margin-bottom: 10px;
}
.nav.nav-tabs > li > a:focus {
    background-color: #95358c;
    color: white;
    border-radius: 10px 10px 0 0;
}
.nav.nav-tabs > li > a:hover {
    background-color: #f2f2f2;
    color: #95358c;
    border-radius: 10px 10px 0 0;
}
.nav.nav-tabs > li {
    width: 50%;
    text-align: center;
}
.nav.nav-tabs > li > a.active {
    background-color: #95358c;
    color: white;
    border-radius: 10px 10px 0 0;
}
.nav.nav-tabs {
    margin-bottom: 20px;
}
.address-selected {
    margin-left: 20px;
}
.modal-stats {
    background-color: #fafafa;
    border-color: #e5e5e5;
    margin-bottom: 20px;
    margin-right: 0;
    margin-left: 0;
}
.address-selected-1 {
    border: 1px solid rgba(149, 53, 140, 0.5);
    margin-right: 20px;
    padding: 10px;
}
.selections {
    margin-bottom: 20px;
    margin-left: 20px;
}
.status-badge {
    min-width: 100px;
    height: 30px;
    font-size: 16px;
}
.button-row {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
/*.admin-form .btn-danger, .admin-form .btn-danger:hover, .admin-form .btn-danger:focus, .admin-form .btn-danger:active .cancel-button {*/
/*    margin-right: 20px;*/
/*}*/
.number-porting-details-buttons-row {
    margin-top: 20px;
}
.flex-col .porting-request {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
}
.flex-col .porting-request > :nth-last-child(1) {
    margin-top: auto;
}
@media (max-width: 990px) {
    .phonebook-porting-reference {
        height: 200px;
    }
}
@media (max-width: 990px) {
    .phonebook-porting-reference.details {
        height: 100px;
    }
}

.supporting-files {
    background-color: #fafafa;
    padding: 0 25px 25px 25px;
    border: 1px solid #E7E5E1;
}

.supporting-files [type=button] {
    padding: 20px 0 0 0;
    cursor: pointer;
}
@media (max-width: 570px) {
    button.admin-pricing-button {
        margin-top: 5px;
    }
}
.badge-trash-col {
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
    align-self: baseline;
}
/*.phonebook-porting-badge.customer {*/
/*    display: flex;*/
/*}*/
.number-porting-badge {
    align-self: center;
}
.status-date {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}
.text-stat.stat-badge {
    padding-right: 25px;
}
.date-requested-stat {
    margin-right: 30px;
    display: flex;
}
@media (max-width: 792px) {
    .status-date {
        justify-content: space-evenly;
    }
    .text-stat.stat-badge {
        padding-right: 0;
    }
}
.fa-download.supporting-files-add {
    font-size: 20px;
}
.fa-trash.supporting-files-add {
    font-size: 20px;
}
.status-badge.text-capitalize.badge.badge-text.badge-success {
    padding: .4em .4em;
}

.d-flex {
    display: flex;
}
.long-title-container{
    width:100%;
    word-wrap:break-word;
}
.d-inline-block {
    display: inline-block;
}

.number-restrictions-text p {
    margin-bottom: 5px;
}

.supporting-files.translations {
    background-color: white;
    padding: 0 20px 20px 20px;
    border: none;
}

.justify-space-between {
    justify-content: space-between;
}
.justify-end {
    justify-content: flex-end;
}
.flex-row-reverse {
    flex-direction: row-reverse;
}
@media (max-width: 767px) {
    .flex-xs-column-reverse {
        flex-direction: column-reverse;
    }
    .number-porting-notes-alert {
        margin-left: 10px;
    }
}
@media (max-width: 991px) {
    .number-porting-small-text {
        min-height: 1em;
    }
}
.number-porting-item .fa-trash-o {
    font-size: 20px;
}
.number-porting-item .fa-pencil {
    font-size: 15px;
    margin-top: 2px;
}
.number-translations-toggle {
    display: inline-flex;
    align-items: center;
    margin-top: -3px;
    margin-bottom: 9px;
    margin-bottom: 13px;
}
.number-translations-input {
    margin-top: -9px;
}
.number-porting-btn-group {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: flex-end;
}
.number-porting-provisioning-container {
    max-width: 200px;
}
.provisioning-date-digits {
    white-space: nowrap;
}

.buy-numbers-summary-title {
    font-size: 20px;
    font-weight: 400;
}
.buy-numbers-summary {
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.buy-numbers-summary-icon {
    margin-left: auto;
    font-size: 2rem;
}
.buy-numbers-summary-icon-smaller {
    margin-left: auto;
    font-size: 1.5rem;
}
.buy-numbers-select {
    border: 1px solid grey;
    margin: 5px;
    padding: 5px;
}
.buy-numbers-select-all-checkbox {
    height: 20px;
    width: 20px;
    border: 2px solid #95358c;
}
.buy-numbers-select-all {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.buy-numbers-checkbox {
    opacity: 0;
    font-size: 2rem;
}
.buy-numbers-select-all-text {
    font-size: 14px;
    margin-right: 10px;
    font-weight: 400;
}
.buy-numbers-headings {
    display: inline-flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}
.buy-numbers-restrictions-panel {
    display: flow-root;
}
.buy-numbers-headings-text {
    font-weight: 600;
}
.buy-numbers-number-item {
    border: 1px solid #dddddd;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.buy-numbers-number-item.selected {
    background: #F5F5F5;
}

.buy-numbers-number-item .checkbox-label {
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #dddddd;
    margin: 0;
}

.buy-numbers-number-item .checkbox-custom {
    margin-top: -10px;
    margin-right: -4px;
}


.buy-numbers-number-checkbox-border {
    height: 60px;
    width: 60px;
    border-left: 1px solid #dddddd;
    display: flex;
    align-items: center;
    justify-content: center;
}
.buy-numbers-check {
    display: none;
    color: #95358c;
}
.buy-numbers-checkbox.checked ~ .buy-numbers-check {
    display: block;
    margin-top: -17px;
    margin-left: 2px;
}
.buy-numbers-number-checkbox-border .fa-trash {
    padding: 16px;
    font-size: 1.2em;
}
.btn.btn-link.buy-numbers-accordion-btn {
    margin-left: auto;
    transition: 0.3s ease-in-out;
    cursor: pointer;
    margin-right: 23px;
}
.btn.btn-link.buy-numbers-accordion-btn.collapsed,
.buy-numbers-summary.collapsed .buy-numbers-accordion-btn,
.buy-numbers-order-country.collapsed .buy-numbers-accordion-btn {
    transform: rotate(45deg);
    transition: 0.3s ease-in-out;
}
.buy-numbers-order-country {
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
}
.buy-numbers-number-responsive {
    display: none;
}
.buy-numbers-order {
    margin-bottom: 10px;
}
.buy-numbers-search {
    border: 1px solid #dddddd;
    padding: 10px;
    width: 100%;
}
.buy-numbers-number-list {
    overflow-y: scroll;
    border: 1px solid #dddddd;
    margin-top: 10px;
    max-height: 195px;
}
.buy-numbers-number-list-item {
    list-style: none;
    padding: 5px;
}
.buy-numbers-number-list-item:active,
.buy-numbers-number-list-item:focus,
.buy-numbers-number-list-item.active{
    background: #95358c;
    color: white;
}
.buy-numbers-translation-empty {
    padding: 24px;
}
.buy-numbers-number-translation-selected {
    border: 1px solid #95358c;
}
.buy-numbers-translation-input.gui-input {
    width: 90%;
    height: 30px;
}
.buy-numbers-translation-input:focus {
    border: 1px solid #999;
}
.buy-numbers-search-disabled {
    background: #F5F5F5;
    border: 1px solid #e3e3e3;
    border-radius: 1px;
    padding: 10px;
    width: 100%;
}
.buy-numbers-searching-spinner {
    font-size: 3rem;
    color: #95358c;
}
.buy-numbers-icon-container {
    height: 60px;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}
.buy-numbers-no-results-cross {
    position: relative;
    top: 0;
    left: 30px;
    font-size: 2.5rem;
}
.buy-numbers-searching-phone {
    color: #95358c;
    font-size: 5rem;
    align-self: center;
    position: relative;
    right: 15%;
}
.buy-numbers-translation-title {
    padding-left: 13px;
    font-size: 14px;
}
.buy-numbers-add-button {
    display: inline-flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.buy-numbers-select-all-responsive {
    display: none;
}
.buy-numbers-amount-selector {
    display: inline-block;
    width: auto;
}
.buy-numbers-amount-selector .select2-selection {
    border-radius: 5px;
    background: white;
}
.buy-numbers-number-select {
    align-items: center;
}
.buy-numbers-number-list-item-empty {
    min-height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.buy-numbers-pricing-table.table tbody > tr:first-child > td{
    border-top: 1px solid #ddd;
}

#number-search .select-all-checkbox {
    margin-right: -4px;
}

@media (max-width: 992px) {
    .buy-numbers-headings {
        display: none;
    }
    .buy-numbers-number-responsive {
        display: block;
        margin-bottom: 10px;
    }
    .buy-numbers-translation-title {
        padding-left: 28px;
    }
    .buy-numbers-search-select {
        margin-top: 20px;
    }
    .buy-numbers-select-all-responsive {
        display: flex;
    }
}
@media (max-width: 1139px) {
    .buy-numbers-search-field {
        margin-bottom: 10px;
    }
}
@media (max-width: 768px) {
    .buy-numbers-number {
        margin-top: 20px;
    }
    .buy-numbers-order {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 1040px) {
    .ui-slider-float .ui-slider-tip, .ui-slider-float .ui-slider-tip-label {
        background-color: initial;
    }
}

@media screen and (max-width: 1040px) {
    .ui-slider-float .ui-slider-tip:after, .ui-slider-float .ui-slider-pip .ui-slider-tip-label:after {
        content: " ";
        width: 0;
        height: 0;
        border: 5px solid rgba(255,255,255,0);
        border-top-color: rgba(255,255,255,1);
        position: absolute;
        bottom: -10px;
        left: 50%;
        margin-left: -5px;
    }
}

#manage-renewals .headlines h2 {
    white-space: nowrap;
}

#release-note-pip {
    position: absolute;
    top: 15px;
    font-size: 16px;
    right: 5px;
}
#mobile-release-note-pip {
    position: absolute;
    left: 28px;
    top: 10px;
}

.navbar-nav .fa-question-circle {
    line-height: 20px;
}
.navbar-nav .fa-gift {
    line-height: 20px;
}
.navbar-nav .dropdown-toggle .fa-briefcase {
    vertical-align: -4px;
}

.nav-mobile .network-status-icon {
    width: 18px;
    height: 18px;
}

.navbar-nav .network-status-icon {
    width: 19px;
    height: 19px;
}
@media(max-width: 769px) {
    .navbar .nav > li > a {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
}
.navbar .nav > li > a.avatar {
    padding-top: 15px;
    padding-bottom: 15px;
}
.user-details.company {
    margin-left: -2px !important;
}

.clx-l2-sc-icon{
  margin-top: 0.35rem;
  margin-bottom: -0.25rem;
}
.clx-l2-icon-bg {
  outline: 1px solid #d1d5db;
  outline-offset: -4px;
}
.clx-l2-icon-bg:hover {
  --tw-bg-opacity: 1;
  background: linear-gradient(to bottom, rgb(243 244 246 / var(--tw-bg-opacity)) 0%, rgb(243 244 246 / var(--tw-bg-opacity)) 100%) no-repeat center !important;
}

#clxPartnerBillingDashboard .cost-revenue-legend  {
    list-style: none;
    display: flex;
    padding: 0;
    flex-direction: row-reverse;
    margin: 0;
}
#clxPartnerBillingDashboard .product-legend  {
    list-style: none;
    display: flex;
    padding: 0;
    flex-direction: column;
    margin: 0;
}
#clxPartnerBillingDashboard .expander.collapsed {
    height: 55px;
}
#clxPartnerBillingDashboard .cost-revenue-legend > li, #clxPartnerBillingDashboard .product-legend > li {
    /*flex-grow: 1;*/
    padding: 5px 15px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.5s, opacity 0.25s;
}
#clxPartnerBillingDashboard .cost-revenue-legend > li .legend-color, #clxPartnerBillingDashboard .product-legend > li .legend-color {
    width: 25px;
    height: 15px;
    display: inline-block;
    border-radius: 4px;
    vertical-align: middle;
    margin-top: 1px;
    margin-right: 10px;
    border: 1px solid;
    transition: background 0.5s;
    box-shadow: 2px 2px 5px 0 rgba(204, 204, 204, 0.75);
}
#clxPartnerBillingDashboard .cost-revenue-legend > li.line .legend-color, #clxPartnerBillingDashboard .product-legend > li.line .legend-color {
    height: 4px;
    border-width: 2px;
}
#clxPartnerBillingDashboard .cost-revenue-legend > li.line:not(.active) .legend-color, #clxPartnerBillingDashboard .product-legend > li.line:not(.active) .legend-color  {
    background-color: #ffffff !important;
    border-width: 1px;
}
#clxPartnerBillingDashboard .cost-revenue-legend > li:not(.active) .legend-color, #clxPartnerBillingDashboard .product-legend > li:not(.active) .legend-color  {
    background-color: #ffffff !important;
}
#clxPartnerBillingDashboard .cost-revenue-legend > li:not(.active) .label-text, #clxPartnerBillingDashboard .product-legend > li:not(.active) .label-text  {
    text-decoration: line-through;
}
#clxPartnerBillingDashboard .cost-revenue-legend > li:hover, #clxPartnerBillingDashboard .product-legend > li:hover {
    opacity: 0.7;
}
#clxPartnerBillingDashboard .cost-revenue-legend > li .label-text, #clxPartnerBillingDashboard .product-legend > li .label-text {
    font-size: 12px;
    display: inline-block;
}
#clxPartnerBillingDashboard .cost-revenue-legend > li .value, #clxPartnerBillingDashboard .product-legend > li .value {
    font-size: 24px;
    font-weight: bold;
}
#clxPartnerBillingDashboard .cost-revenue-legend > li:first-child, #clxPartnerBillingDashboard .product-legend > li:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
#clxPartnerBillingDashboard .cost-revenue-legend > li:last-child, #clxPartnerBillingDashboard .product-legend > li:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}
#clxPartnerBillingDashboard h3.panel-header {
    margin-top: 0px;
}
#clxPartnerBillingDashboard .dt-panelmenu {
    background: none;
}
#clxPartnerBillingDashboard .dt-panelfooter {
    background: none;
    position: absolute;
    bottom: 0;
    right: 20px;
    left: 20px;
}

#clxPartnerBillingDashboard .dataTables_scroll {
    padding-bottom: 55px;
}

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

#clxPartnerBillingDashboard #customerCostRevenueDataTable td:first-child:before {
    content: "\f007";
    font-family: 'FontAwesome';
    font-size: 20px;
    display: inline-block;
    margin-right: 10px;
}
#clxPartnerBillingDashboard #customerCostRevenueDataTable td:first-child {
    max-width: 0px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
@media(max-width: 681px) {
    #clxPartnerBillingDashboard #productCostRevenueDataTable td:first-child, #clxPartnerBillingDashboard #productCostRevenueDataTable th:first-child {
        display: none;
    }
    #clxPartnerBillingDashboard #productCostRevenueDataTable td:nth-child(2) {
        max-width: 0px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}
#productLegendContainer .product-legend li  {
    display: flex;
}

#productLegendContainer .product-legend li .legend-color  {
    flex-shrink: 0;
}
#productLegendContainer .product-legend li .label-text  {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex-grow: 1;
}

#clxPartnerBillingDashboard .dt-panelmenu {
    display: none;
}

#clxPartnerBillingDashboard .dt-panelfooter .pagination a {
    border-radius: 4px;
    border: none;
}

#clxPartnerBillingDashboard .dt-panelfooter .paginate_button.previous a {
    font-size: 0;
    border: none;
}

#clxPartnerBillingDashboard .dt-panelfooter .paginate_button.previous a:before {
    content: "\f0d9";
    font-family: 'FontAwesome';
    display: block;
    font-size: 13px;
}

#clxPartnerBillingDashboard .dt-panelfooter .paginate_button.next a {
    font-size: 0;
    border: none;
}

#clxPartnerBillingDashboard .dt-panelfooter .paginate_button.next a:before {
    content: "\f0da";
    font-family: 'FontAwesome';
    display: block;
    font-size: 13px;
}

#clxPartnerBillingDashboard .filters-toggle {
    display: inline-block;
}
#clxPartnerBillingDashboard .filters-toggle:not(.collapsed){
    margin-bottom: 15px;
}
#clxPartnerBillingDashboard .filters-toggle:after {
    content: "\f0d8";
    font-family: FontAwesome;
    display: inline-block;
    margin-left: 5px;
}
#clxPartnerBillingDashboard .filters-toggle.collapsed:after {
    transform: rotate(180deg);
}
#clxPartnerBillingDashboard .filter-tag {
    display: inline-block;
    background: #ebf6fb;
    padding: 4px 8px;
    margin: 0 4px 2px 0;
    border-radius: 4px;
}

#clxPartnerBillingDashboard .filter-tag:before {
    content: '\f0b0';
    font-family: 'FontAwesome';
    margin-right: 5px;
}

#clxPartnerBillingDashboard .cost-revenue-chart-container {
    height: 320px;
    width: 100%;
    position: relative;
}

#clxPartnerBillingDashboard .products-chart-container {
    max-height: 300px;
    position: relative;
    width: 100%;
    min-height: 300px;
    height: 50vw;
    margin-left: -20px;
}
#clxPartnerBillingDashboard .expander .content.closed {
    position: relative;
}
@media (min-width: 576px) {
    #clxPartnerBillingDashboard .products-chart-container {
        padding-right: 150px;
    }
    #clxPartnerBillingDashboard #productLegendContainer {
        position: absolute;
        top: 10px;
        right: 0;
    }
}

.tabbed-modal .modal-header {
    font-size: 20px;
    font-weight: bold;
    border-bottom: 1px solid rgb(218, 218, 218);
}


.billing-cards {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    position: relative;
}

.billing-cards .card {
    margin: 0 10px 20px 10px;
    display: flex;
    flex: 1;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: space-between;
}

@media  only screen and (max-width: 1200px) {
    .billing-cards .card {
        flex: 1 1 355px;
    }
}

@media  only screen and (max-width: 800px) {
    .billing-cards .card {
        flex: 1 1 300px;
    }
}

.billing-cards .card .card-icon {
    flex-grow: 0;
    align-items: center;
    align-content: center;
    padding: 10px 0 10px 10px;
}

.billing-cards .card .card-icon img {
    height: auto;
    width: 100%;
    max-width: 75px;
}

.billing-cards .card .card-content {
    flex: 1;
    padding: 10px 10px 10px 0;
    text-align: center;
    flex-direction: column;
    align-items: center;
    display: flex;
    align-content: center;
    height: 100%;
}

.billing-cards .card .card-content > * {
    width: 100%;
}

.billing-cards .card .card-content > span {
    align-self: flex-start;
    flex: 999;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: space-around;
    padding-bottom: 10px;
}

.billing-cards .card .card-content > div {
    align-self: flex-end;
    flex: 1;
}

.billing-cards .card .card-content hr {
    width: 50px;
    margin: 0 auto 5px;
}

@media (min-width: 1140px) {
    .lg-flex {
        display: flex;
    }
}
.flex {
    display: flex !important;
}
.fg-1 {
    flex-grow: 1;
}
.fs-0 {
    flex-shrink: 0;
}
.flex.justify-center {
    justify-content: center;
}
@media(min-width: 768px) {
    .flex-sm {
        display: flex !important;
    }
}
@media(min-width: 992px) {
    .flex-md {
        display: flex !important;
    }
}
@media(min-width: 1140px) {
    .flex-lg {
        display: flex !important;
    }
}
.static {
    position: static !important;
}

.diff-wrapper.diff {
    background: repeating-linear-gradient(-45deg, whitesmoke, whitesmoke 0.5em, #e8e8e8 0.5em, #e8e8e8 1em);
    border-collapse: collapse;
    border-spacing: 0;
    border: 1px solid #e1e1e1;
    color: #333333;
    empty-cells: show;
    font-family: monospace;
    font-size: 13px;
    width: 100%;
    word-break: break-all;
}
.diff-wrapper.diff th {
    font-weight: 700;
}
.diff-wrapper.diff td {
    vertical-align: baseline;
}
.diff-wrapper.diff td,
.diff-wrapper.diff th {
    border-collapse: separate;
    border: none;
    padding: 1px 2px;
    background: #fff;
}
.diff-wrapper.diff td:empty:after,
.diff-wrapper.diff th:empty:after {
    content: " ";
    visibility: hidden;
}
.diff-wrapper.diff td a,
.diff-wrapper.diff th a {
    color: #000;
    cursor: inherit;
    pointer-events: none;
}
.diff-wrapper.diff thead th {
    background: #f9f9f9;
    border-bottom: 1px solid #e1e1e1;
    padding: 16px 10px;
    text-align: left;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    color: #626262;
}
.diff-wrapper.diff tbody.skipped {
    border-top: 1px solid black;
}
.diff-wrapper.diff tbody.skipped td,
.diff-wrapper.diff tbody.skipped th {
    display: none;
}
.diff-wrapper.diff tbody th {
    background: #f3f3f3;
    border-right: 1px solid #e1e1e1;
    text-align: right;
    vertical-align: top;
    width: 4em;
    word-break: normal;

}
.diff-wrapper.diff tbody th.sign {
    background: #fff;
    border-right: none;
    padding: 1px 0;
    text-align: center;
    width: 1em;
}
.diff-wrapper.diff tbody th.sign.del {
    background: #feeef0;
}
.diff-wrapper.diff tbody th.sign.ins {
    background: #e6ffed;
}
.diff-wrapper.diff.diff-html {
    white-space: pre-wrap;
}
.diff-wrapper.diff.diff-html.diff-combined .change.change-rep .rep {
    white-space: normal;
}
.diff-wrapper.diff.diff-html .change.change-eq .old,
.diff-wrapper.diff.diff-html .change.change-eq .new {
    background: #fff;
}
.diff-wrapper.diff.diff-html .change .old {
    background: #ffe6eb;
}
.diff-wrapper.diff.diff-html .change .new {
    background: #e0ffe7;
}
.diff-wrapper.diff.diff-html .change .rep {
    background: #fef6d9;
}
.diff-wrapper.diff.diff-html .change .old.none,
.diff-wrapper.diff.diff-html .change .new.none,
.diff-wrapper.diff.diff-html .change .rep.none {
    background: transparent;
    cursor: not-allowed;
}
.diff-wrapper.diff.diff-html .change ins,
.diff-wrapper.diff.diff-html .change del {
    font-weight: bold;
    text-decoration: none;
}
.diff-wrapper.diff.diff-html .change ins {
    background: #94f094;
}
.diff-wrapper.diff.diff-html .change del {
    background: #f09494;
}

#provisioning-modal .modal-body .row {
    width: 80%;
    margin: 0 auto;
}

#provisioning-modal .modal-body .message {
    margin-top: 2em;
    font-size: 18px;
}

#provisioning-modal .icon-container, .success-animated .icon-container {
    height: 110px;
    width: 110px;
    position: relative;
    margin: 20px auto;
    margin-bottom: 25px;
}

#provisioning-modal .icon-container.check .fa {
    font-size: 100px;
    margin-top: 15px;
}

#provisioning-modal .icon-container.cogs .fa {
    position: absolute;
}
#provisioning-modal .icon-container .fa {
    color: #A9A9A9;
}
#provisioning-modal .complete .icon-container .fa, #provisioning-modal .animate .icon-container .fa {
    color: #95358c;
}

#provisioning-modal .icon-container.cogs .fa-cog.cog-1 {
    left: -10px;
    top: 20px;
    font-size: 70px;
    animation-direction: reverse !important;
    animation-duration: 10s;
}

#provisioning-modal .icon-container.cogs .fa-cog.cog-2,
#provisioning-modal .icon-container.cogs .fa-cog.cog-3 {
    right: 0;
    font-size: 50px;
}

#provisioning-modal .icon-container.cogs .fa-cog.cog-2 {
    top: 0;
}
#provisioning-modal .icon-container.cogs .fa-cog.cog-3 {
    bottom: 0;
}

#provisioning-modal .animate .icon-container.cogs .fa-cog {
    animation: cog-spin 5s infinite linear;
    animation-origin: center center;
}

#provisioning-modal .fa-plug {
    transform: rotate(90deg);
    font-size: 60px;
}
#provisioning-modal .icon-container.plug .plug-1,
#provisioning-modal .icon-container.plug .plug-2 {
    position: absolute;
    left: 0;
    fill: #A9A9A9;
}
#provisioning-modal .animate .icon-container.plug .plug-1 {
    animation: plug1 2s linear infinite;
}
#provisioning-modal .animate .icon-container.plug .plug-2 {
    animation: plug2 2s linear infinite;
}
#provisioning-modal .animate .icon-container.plug .plug-1,
#provisioning-modal .animate .icon-container.plug .plug-2 {
    animation-direction: alternate;
    fill: #95358c;
}
#provisioning-modal .complete .icon-container.plug .plug-1,
#provisioning-modal .complete .icon-container.plug .plug-2 {
    fill: #95358c;
}
#provisioning-modal .icon-container.globe {
    border-radius: 50%;
    overflow: hidden;
    background-image: url("/images/ui-elements/maps/world-map-white.png");
    background-size: 210px;
    background-color: #A9A9A9;
    border: 3px solid #A9A9A9;
}

#provisioning-modal .animate .icon-container.globe {
    animation: globespin 8s linear infinite;
    border-color: #95358c;
    background-color: #95358c;
}

#provisioning-modal .complete .icon-container.globe {
    border-color: #95358c;
    background-color: #95358c;
}

#provisioning-modal .complete .fa,
#provisioning-modal .complete svg,
#provisioning-modal .complete .globe {
    animation: none !important;
}

#provisioning-modal .complete .plug-1 {
    transform: translate(18%,18%) !important;
}

#provisioning-modal .complete .plug-2 {
    transform: translate(-15%,-15%) !important;
}

#provisioning-modal .numeral {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 2em auto 0;
    margin-bottom: 25px;
    width: 50px;
    height: 50px;
    border: 2px solid rgb(98, 98, 98);
    border-radius: 50%;
    font-size: 1.5em;
}

#provisioning-modal .animate .numeral {
    border-color: #95358c;
    color: #95358c;
    font-weight: bold;
    border-width: 3px;
}

#provisioning-modal .numeral .fa {
    display: none;
}

#provisioning-modal .complete .numeral {
    border-color: rgb(118, 190, 99) !important;
    background-color: rgb(118, 190, 99) !important;
    color: #ffffff !important;
}
#provisioning-modal .complete .numeral .fa {
    display: block;
}
#provisioning-modal .complete .numeral .num {
    display: none;
}

.animated-check {
    height: 130px;
    width: 130px;
    position: absolute;
    top: -18px;
    left: 20px;
}

#provisioning-modal .animate .animated-check path, .success-animated .animate .animated-check path {
    fill: none;
    stroke: #95358c;
    stroke-width: 3;
    stroke-dasharray: 23;
    stroke-dashoffset: 23;
    animation: draw-check 4s linear infinite;
    animation-delay: 0.5s;
    stroke-linecap: round;
    stroke-linejoin: round;
}
#provisioning-modal .animate .animated-check path.background, .success-animated .animate .animated-check path.background {
    fill: none;
    stroke: #ffffff;
    stroke-width: 6;
    stroke-dasharray: 23;
    stroke-dashoffset: 23;
    animation: draw-check 4s linear infinite;
    animation-delay: 0.5s;
    stroke-linecap: butt;
    stroke-linejoin: bevel;
}

#provisioning-modal .complete .animated-check path, .success-animated .complete .animated-check path {
    fill: none;
    stroke: #95358c;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}
#provisioning-modal .complete .animated-check path.background, .success-animated .complete .animated-check path.background {
    fill: none;
    stroke: #ffffff;
    stroke-width: 6;
    stroke-linecap: butt;
    stroke-linejoin: bevel;
}

.animated-check {
    height: 130px;
    width: 130px;
    position: absolute;
    top: -18px;
    left: 20px;
}

#provisioning-status-modal .icon-container.check .animated-check path, .success-animated .icon-container.check .animated-check path {
    fill: none;
    stroke: #95358c;
    stroke-width: 3;
    stroke-dasharray: 23;
    stroke-dashoffset: 23;
    animation: draw-check 3s linear forwards;
    animation-delay: 0.5s;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.success-animated {
    position: relative;
}
#provisioning-status-modal .icon-container.check .fa-square-o, .success-animated .icon-container.check .fa-square-o {
    font-size: 100px;
    color: #95358c;
}

#provisioning-status-modal .icon-container.check .animated-check, .success-animated .icon-container.check .animated-check  {
    top: -30px;
    left: 20px;
}

#provisioning-status-modal .icon-container.check .animated-check path.background, .success-animated .icon-container.check .animated-check path.background {
    fill: none;
    stroke: #ffffff;
    stroke-width: 6;
    stroke-dasharray: 23;
    stroke-dashoffset: 23;
    animation: draw-check 3s linear forwards;
    animation-delay: 0.5s;
    stroke-linecap: butt;
    stroke-linejoin: bevel;
}

@keyframes draw-check {
    20%, 100% {
        stroke-dashoffset: 0;
    }
}

div#timezone-alert-container {
    position: fixed;
    bottom: 49px;
    margin-left: 20px;
    max-width: 420px;
    right: 34px;
    z-index: 99999;
}
div#timezone-alert-container .alert {
    margin-bottom: 0px;
}
div#timezone-alert-container .alert:before {
    content: "";
    position: absolute;
    top: 100%;
    right: 24px;
    margin-left: -10px;
    border: 10px solid transparent;
    border-top-color: #d8d8d8;
}
div#timezone-alert-container .alert:after {
    content: "";
    position: absolute;
    top: 99%;
    right: 24px;
    margin-left: -10px;
    border: 10px solid transparent;
    border-top-color: #f0f0f0;
}
div#timezone-alert-container .alert.alert-info:before {
    border-top-color: #87b8d4;
}
div#timezone-alert-container .alert.alert-info:after {
    border-top-color: #98ceec;
}
div#timezone-alert-container .alert.alert-warning:before {
    border-top-color: #dfb55f;
}
div#timezone-alert-container .alert.alert-warning:after {
    border-top-color: #f8c969;
}
div#timezone-alert-container .alert.alert-danger:before {
    border-top-color: #d56a59;
}
div#timezone-alert-container .alert.alert-danger:after {
    border-top-color: #ed7764;
}
div#timezone-alert-container .alert.alert-success:before {
    border-top-color: #89be6c;
}
div#timezone-alert-container .alert.alert-success:after {
    border-top-color: #98d478;
}

.lag-table {
    border: 1px solid #e5e5e5;
    height: 375px;
    overflow-y: scroll;
    margin-bottom:10px;
}
.lag-table .lag {
    cursor: pointer;
    position: relative;
}
.lag-table .lag.locked {
    cursor: default !important;
}
.lag-table.available .lag:before {
    position: absolute;
    right: 10px;
    top: calc(50% - 12px);
    font-family: 'FontAwesome';
    content: '\f055';
    color: #70ca63;
    font-size: 20px;
}
.lag-table.available .lag.disabled:before {
    display: none;
}
.lag-table .lag.locked:before {
    content: '\f023' !important;
    color: #626262 !important;
}
.lag-table.selected .lag:before {
    position: absolute;
    right: 10px;
    top: calc(50% - 12px);
    font-family: 'FontAwesome';
    content: '\f00d';
    color: #e9573f;
    font-size: 20px;
}
.lag-table.selected .lag.disabled:before {
    display: none;
}
.lag-table .lag:hover {
    background: #f1f1f1;
}
.lag-table .lag.locked:hover {
    background: #ffffff;
}
.lag-table .lag:nth-child(odd) {
    background: #f7f6f6;
}
.lag-table .lag:nth-child(odd):hover {
    background: #e5e5e5;
}
.lag-table .lag.locked:nth-child(odd):hover {
    background: #f7f6f6;
}
#new-lag-cabling-buttons .btn input {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}

#new-lag-cabling-buttons .btn  {
    color: #666666;
    border-radius: 6px;
    border-color: #CDCDCD;
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 100%;
}
#new-lag-cabling-buttons .btn.active  {
    background-color: #EBF6FB;
    border-color: #32A8D9;
}

.phonebook-icon {
    width: 16px;
    height: 16px;
    margin-left: 17px
}